diff --git a/applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js b/applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js
index b02f60a765..16d933e691 100644
--- a/applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js
+++ b/applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js
@@ -10,30 +10,32 @@
/*
button handling
*/
-async function handleAction(ev) {
+function handleAction(ev) {
+ var ifaceValue;
if (ev === 'restart') {
- fs.exec_direct('/etc/init.d/travelmate', [ev])
+ ifaceValue = String(uci.get('travelmate', 'global', 'trm_iface') || 'trm_wwan');
+ return fs.exec('/sbin/ifup', [ifaceValue])
+ .then(fs.exec('/etc/init.d/travelmate', ['restart']))
}
if (ev === 'setup') {
- var ifaceValue = String(uci.get('travelmate', 'global', 'trm_iface') || '');
+ 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('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('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('input', { 'class': 'cbi-input-text', 'id': 'metric', 'placeholder': '100', 'maxlength': '3', 'spellcheck': 'false' }),
+ '\xa0\xa0\xa0',
+ _('The interface metric')
])
]),
E('div', { 'class': 'right' }, [
@@ -44,18 +46,18 @@ async function handleAction(ev) {
' ',
E('button', {
'class': 'cbi-button cbi-button-positive important',
- 'click': ui.createHandlerFn(this, function(ev) {
+ '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');
- }
- });
+ zone = document.getElementById('zone').value || 'wan',
+ metric = document.getElementById('metric').value || '100';
+ L.resolveDefault(fs.exec('/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'))
@@ -67,28 +69,28 @@ async function handleAction(ev) {
if (ev === 'qrcode') {
return Promise.all([
uci.load('wireless')
- ]).then(function() {
+ ]).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 --')])];
+ 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_sid = i;
w_device = w_sections[i].device;
- w_ssid = w_sections[i].ssid;
+ 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) {
+ 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_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';
@@ -97,17 +99,17 @@ async function handleAction(ev) {
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) {
+ 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!');
+ result.textContent = _('The QR-Code could not be generated!');
}
});
}
else {
- result.innerHTML = '';
+ result.textContent = '';
}
}
}, optionsAP);
@@ -135,13 +137,13 @@ async function handleAction(ev) {
}
return view.extend({
- load: function() {
+ load: function () {
return Promise.all([
uci.load('travelmate')
]);
},
- render: function(result) {
+ render: function (result) {
var m, s, o;
m = new form.Map('travelmate', 'Travelmate', _('Configuration of the travelmate package to enable travel router functionality. \
@@ -151,11 +153,11 @@ return view.extend({
/*
poll runtime information
*/
- pollData: poll.add(function() {
- return L.resolveDefault(fs.stat('/tmp/trm_runtime.json'), null).then(function(res) {
+ 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) {
+ L.resolveDefault(fs.read_direct('/tmp/trm_runtime.json'), null).then(function (res) {
if (res) {
var info = JSON.parse(res);
if (status && info) {
@@ -206,12 +208,6 @@ return view.extend({
}
});
}
- else {
- if (status && status.classList.contains("spinning")) {
- status.textContent = '-';
- status.classList.remove("spinning");
- }
- }
});
}, 1);
@@ -219,53 +215,68 @@ return view.extend({
runtime information and buttons
*/
s = m.section(form.NamedSection, 'global');
- s.render = L.bind(function(view, section_id) {
+ 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('h3', _('Information')),
+ E('div', { 'class': 'cbi-value' }, [
+ E('label', { 'class': 'cbi-value-title', 'style': 'padding-top:0rem' }, _('Status / Version')),
+ E('div', { 'class': 'cbi-value-field spinning', 'id': 'status', 'style': 'color:#37c' }, '\xa0')
+ ]),
+ E('div', { 'class': 'cbi-value' }, [
+ E('label', { 'class': 'cbi-value-title', 'style': 'padding-top:0rem' }, _('Station ID')),
+ E('div', { 'class': 'cbi-value-field', 'id': 'station_id', 'style': 'color:#37c' }, '-')
+ ]),
+ E('div', { 'class': 'cbi-value' }, [
+ E('label', { 'class': 'cbi-value-title', 'style': 'padding-top:0rem' }, _('Station MAC')),
+ E('div', { 'class': 'cbi-value-field', 'id': 'station_mac', 'style': 'color:#37c' }, '-')
+ ]),
+ E('div', { 'class': 'cbi-value' }, [
+ E('label', { 'class': 'cbi-value-title', 'style': 'padding-top:0rem' }, _('Station Interface')),
+ E('div', { 'class': 'cbi-value-field', 'id': 'station_interface', 'style': 'color:#37c' }, '-')
+ ]),
+ E('div', { 'class': 'cbi-value' }, [
+ E('label', { 'class': 'cbi-value-title', 'style': 'padding-top:0rem' }, _('WPA Flags')),
+ E('div', { 'class': 'cbi-value-field', 'id': 'wpa_flags', 'style': 'color:#37c' }, '-')
+ ]),
+ E('div', { 'class': 'cbi-value' }, [
+ E('label', { 'class': 'cbi-value-title', 'style': 'padding-top:0rem' }, _('Run Flags')),
+ E('div', { 'class': 'cbi-value-field', 'id': 'run_flags', 'style': 'color:#37c' }, '-')
+ ]),
+ E('div', { 'class': 'cbi-value' }, [
+ E('label', { 'class': 'cbi-value-title', 'style': 'padding-top:0rem' }, _('Ext. Hooks')),
+ E('div', { 'class': 'cbi-value-field', 'id': 'ext_hooks', 'style': 'color:#37c' }, '-')
+ ]),
+ E('div', { 'class': 'cbi-value' }, [
+ E('label', { 'class': 'cbi-value-title', 'style': 'padding-top:0rem' }, _('Last Run')),
+ E('div', { 'class': 'cbi-value-field', 'id': 'run', 'style': '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) {
+ '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...') ]),
+ }, [_('AP QR-Codes...')]),
'\xa0',
E('button', {
- 'class': 'cbi-button cbi-button-reset',
- 'click': ui.createHandlerFn(this, function() {
+ 'class': 'cbi-button cbi-button-negative',
+ 'click': ui.createHandlerFn(this, function () {
+ return handleAction('restart');
+ })
+ }, [_('Restart Interface')]),
+ '\xa0',
+ E('button', {
+ 'class': 'cbi-button cbi-button-negative',
+ 'click': ui.createHandlerFn(this, function () {
return handleAction('setup');
})
- }, [ _('Interface Wizard...') ])
+ }, [_('Interface Wizard...')])
])
]);
}, o, this);
@@ -276,9 +287,8 @@ return view.extend({
*/
s = m.section(form.NamedSection, 'global', 'travelmate', _('Settings'));
s.addremove = false;
- s.tab('general', _('General Settings'));
+ 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.
')); /* @@ -290,8 +300,11 @@ return view.extend({ 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 = s.taboption('general', form.Value, 'trm_radio', _('Radio Selection'), _('Restrict travelmate to a single radio or change the overall scanning order.')); + o.value('radio0', _('use the first radio only (radio0)')); + o.value('radio1', _('use the second radio only (radio1)')); + o.value('radio0 radio1', _('use both radios, normal sort order (radio0 radio1)')); + o.value('radio1 radio0', _('use both radios, reverse sort order (radio1 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\'.')); @@ -307,13 +320,19 @@ return view.extend({ o.default = 1; 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; + 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; + o = s.taboption('general', form.Value, 'trm_maxautoadd', _('Limit AutoAdd'), _('Limit the maximum number of automatically added open uplinks. To disable this limitation set it to \'0\'.')); + o.depends('trm_autoadd', '1'); + o.placeholder = '5'; + o.datatype = 'range(0,30)'; + o.rmempty = true; /* additional settings tab @@ -349,19 +368,20 @@ return view.extend({ 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://detectportal.firefox.com', 'Firefox (default)'); o.value('http://connectivity-check.ubuntu.com', 'Ubuntu'); + o.value('http://captive.apple.com', 'Apple'); 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.value('Mozilla/5.0 (X11; Linux x86_64; rv:90.0) Gecko/20100101 Firefox/90.0', 'Firefox (default)'); + o.value('Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.131 Safari/537.36', 'Chromium'); + o.value('Mozilla/5.0 (Macintosh; Intel Mac OS X 11_5_1) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.1.2 Safari/605.1.15', 'Safari'); + o.value('Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.131 Safari/537.36 Edg/92.0.902.55', 'Edge'); + o.value('Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.131 Safari/537.36 OPR/77.0.4054.277', 'Opera'); o.optional = true; o.rmempty = true; @@ -374,30 +394,6 @@ return view.extend({ 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 */ diff --git a/applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js b/applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js index 2e149ad9b5..53bc2ec5aa 100644 --- a/applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js +++ b/applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js @@ -8,11 +8,38 @@ 'require network'; 'require tools.widgets as widgets'; +/* + change the status of travelmate stations +*/ +function handleToggle(sid) { + var w_device, w_ssid, w_bssid, t_sections, row, element, value, enabled; + + w_device = uci.get('wireless', sid, 'device'); + w_ssid = uci.get('wireless', sid, 'ssid'); + w_bssid = uci.get('wireless', sid, 'bssid'); + t_sections = uci.sections('travelmate', 'uplink'); + + for (var i = 0; i < t_sections.length; i++) { + if (t_sections[i].device === w_device && t_sections[i].ssid === w_ssid && t_sections[i].bssid === w_bssid) { + value = t_sections[i]['enabled']; + value = (value == 0 ? 1 : 0); + enabled = (value == 0 ? 'No' : 'Yes'); + uci.set('travelmate', t_sections[i]['.name'], 'enabled', value); + uci.save().then(function () { + row = document.querySelector('.cbi-section-table-row[data-sid="%s"]'.format(sid)); + element = row.querySelector('.cbi-value-field'); + element.textContent = enabled; + row.setAttribute('style', 'opacity: 0.5; color: #37c !important;'); + }); + } + } +} + /* remove wireless and stale travelmate sections */ function handleRemove(sid) { - var w_sections, t_sections, match, changes; + var w_sections, t_sections, match, row; uci.remove('wireless', sid); w_sections = uci.sections('wireless', 'wifi-iface'); @@ -29,14 +56,17 @@ function handleRemove(sid) { uci.remove('travelmate', t_sections[i]['.name']); } } - uci.save(); + return uci.save().then(function () { + row = document.querySelector('.cbi-section-table-row[data-sid="%s"]'.format(sid)); + row.setAttribute('style', 'opacity: 0.5; color: #a22 !important;'); + }); } /* add missing travelmate sections */ function handleSectionsAdd(iface) { - var w_sections, t_sections, match, changes; + var w_sections, t_sections, match; w_sections = uci.sections('wireless', 'wifi-iface'); t_sections = uci.sections('travelmate', 'uplink'); @@ -69,9 +99,9 @@ function handleSectionsAdd(iface) { function handleSectionsVal(action, section_id, option, value) { var date, oldValue, w_device, w_ssid, w_bssid, t_sections; - w_device = uci.get('wireless', section_id, 'device'); - w_ssid = uci.get('wireless', section_id, 'ssid'); - w_bssid = uci.get('wireless', section_id, 'bssid'); + w_device = uci.get('wireless', section_id, 'device'); + w_ssid = uci.get('wireless', section_id, 'ssid'); + w_bssid = uci.get('wireless', section_id, 'bssid'); t_sections = uci.sections('travelmate', 'uplink'); for (var i = 0; i < t_sections.length; i++) { @@ -83,7 +113,7 @@ function handleSectionsVal(action, section_id, option, value) { if (option === 'enabled') { oldValue = t_sections[i][option]; if (oldValue !== value && value === '0') { - date = new Date(new Date().getTime() - new Date().getTimezoneOffset()*60*1000).toISOString().substr(0,19).replace(/-/g, '.').replace('T', '-'); + date = new Date(new Date().getTime() - new Date().getTimezoneOffset() * 60 * 1000).toISOString().substr(0, 19).replace(/-/g, '.').replace('T', '-'); uci.set('travelmate', t_sections[i]['.name'], 'con_end', date); } else if (oldValue !== value && value === '1') { @@ -103,10 +133,10 @@ function handleSectionsVal(action, section_id, option, value) { update travelmate status */ function handleStatus() { - poll.add(function() { - L.resolveDefault(fs.stat('/var/state/travelmate.refresh'), null).then(function(res) { + poll.add(function () { + L.resolveDefault(fs.stat('/var/state/travelmate.refresh'), null).then(function (res) { if (res) { - L.resolveDefault(fs.read_direct('/var/state/travelmate.refresh'), null).then(function(res) { + L.resolveDefault(fs.read_direct('/var/state/travelmate.refresh'), null).then(async function (res) { fs.remove('/var/state/travelmate.refresh'); if (res && res === 'ui_reload') { location.reload(); @@ -116,36 +146,35 @@ function handleStatus() { uci.unload('wireless'); uci.unload('travelmate'); } - return Promise.all([ + await Promise.all([ uci.load('wireless'), uci.load('travelmate') - ]).then(function() { - var item, value, - container = document.querySelectorAll('.cbi-section-table-row[data-sid]'); - for (var i = 0; i < container.length; i++) { - item = container[i].querySelector('.cbi-value-field[data-title="Enabled"]'); - value = handleSectionsVal('get', container[i].getAttribute('data-sid'), 'enabled'); - item.textContent = (value == 0 ? 'No' : 'Yes'); - } - }); + ]); + var rows, item, value; + rows = document.querySelectorAll('.cbi-section-table-row[data-sid]'); + for (var i = 0; i < rows.length; i++) { + item = rows[i].querySelector('.cbi-value-field[data-title="Enabled"]'); + value = handleSectionsVal('get', rows[i].getAttribute('data-sid'), 'enabled'); + item.textContent = (value == 0 ? 'No' : 'Yes'); + } } }); } }); - return L.resolveDefault(fs.stat('/tmp/trm_runtime.json'), null).then(function(res) { + return L.resolveDefault(fs.stat('/tmp/trm_runtime.json'), null).then(function (res) { if (res) { - L.resolveDefault(fs.read_direct('/tmp/trm_runtime.json'), null).then(function(res) { + L.resolveDefault(fs.read_direct('/tmp/trm_runtime.json'), null).then(function (res) { if (res) { var info = JSON.parse(res); if (info) { var t_device, t_ssid, t_bssid, oldUplinkView, newUplinkView, - uplinkId = info.data.station_id.trim().split('/'), - oldUplinkView = document.getElementsByName('uplinkStation'), - w_sections = uci.sections('wireless', 'wifi-iface'); + uplinkId = info.data.station_id.trim().split('/'), + oldUplinkView = document.getElementsByName('uplinkStation'), + w_sections = uci.sections('wireless', 'wifi-iface'); t_device = uplinkId[0]; - t_bssid = uplinkId[uplinkId.length-1]; - for (var i = 1; i < uplinkId.length-1; i++) { + t_bssid = uplinkId[uplinkId.length - 1]; + for (var i = 1; i < uplinkId.length - 1; i++) { if (!t_ssid) { t_ssid = uplinkId[i]; } @@ -185,29 +214,31 @@ function handleStatus() { } return view.extend({ - load: function() { + load: function () { return Promise.all([ + L.resolveDefault(fs.exec_direct('/etc/init.d/travelmate', ['assoc']), {}), uci.load('wireless'), uci.load('travelmate') ]); }, - render: function() { + render: function (result) { var m, s, o, - iface = uci.get('travelmate', 'global', 'trm_iface') || 'trm_wwan'; + iface = uci.get('travelmate', 'global', 'trm_iface') || 'trm_wwan'; m = new form.Map('wireless'); m.chain('travelmate'); s = m.section(form.GridSection, 'wifi-iface', null, _('Overview of all configured uplinks for travelmate.
" 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 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:319 msgid "ProActive Uplink Switch" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:306 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:319 msgid "" "Proactively scan and switch to a higher prioritized uplink, despite of an " "already existing connection." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:422 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:418 msgid "Profile used by 'msmtp' for travelmate notification E-Mails." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:114 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:116 msgid "QR-Code Overview" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:293 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:303 msgid "Radio Selection" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:314 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:323 msgid "Randomize MAC Addresses" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:407 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:403 msgid "Receiver address for travelmate notification E-Mails." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:115 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:264 +msgid "Remove" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:262 +msgid "Remove this network" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:117 msgid "" "Render the QR-Code of the selected Access Point to comfortably transfer the " "WLAN credentials to your mobile devices." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:592 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:726 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')." +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:272 +msgid "Restart Interface" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:326 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:303 +msgid "" +"Restrict travelmate to a single radio or change the overall scanning order." +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:345 msgid "Retry limit to connect to an uplink." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:241 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:242 msgid "Run Flags" msgstr "تشغيل الإشارات" -#: 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:729 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:284 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:445 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:707 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:862 msgid "SSID" msgstr "SSID" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:725 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:858 msgid "SSID (hidden)" msgstr "" -#: 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:834 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:63 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:967 msgid "Save" msgstr "إحفض" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:346 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:365 msgid "Scan Buffer Size" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:557 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:691 msgid "Scan on" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:523 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:607 msgid "Script Arguments" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:412 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:408 msgid "Sender address for travelmate notification E-Mails." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:404 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:400 msgid "Sends notification E-Mails after every succesful uplink connect." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:368 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:388 msgid "Service Priority" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:277 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:288 msgid "Settings" msgstr "إعدادات" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:331 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:350 msgid "Signal Quality Threshold" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:524 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:608 msgid "" "Space separated list of additional arguments passed to the Auto Login " "Script, i.e. username and password" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:579 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:713 msgid "Starting wireless scan on '" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:229 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:226 msgid "Station ID" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:235 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:234 msgid "Station Interface" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:232 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:230 msgid "Station MAC" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:226 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:222 msgid "Status / Version" msgstr "الحالة / الإصدار" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:571 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:705 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:781 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:388 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:914 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:782 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:389 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:915 msgid "TTLS" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:105 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:107 msgid "The QR-Code could not be generated!" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:31 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:33 msgid "The firewall zone name" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:36 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:38 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 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:660 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 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:370 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 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:388 msgid "The selected priority will be used for travelmate processes." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:359 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:379 msgid "" "The selected user agent will be used for connectivity- and captive portal " "checks." @@ -590,22 +608,28 @@ msgstr "" msgid "The syslog output, pre-filtered for travelmate related messages only." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:56 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:58 msgid "The uplink interface has been updated." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:26 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:28 msgid "The uplink interface name" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:20 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:490 +msgid "" +"This option is selected by default if this uplink was added automatically " +"and counts as 'Open Uplink'." +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:23 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 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:413 msgid "Topic for travelmate notification E-Mails." msgstr "" @@ -613,49 +637,53 @@ msgstr "" msgid "Travelmate" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:209 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:239 msgid "Travelmate Settings" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:301 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:314 msgid "Treat missing internet availability as an error." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:321 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:340 msgid "Trigger Delay" msgstr "تأخير الزناد" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:359 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:507 +msgid "Use the specified MAC address for this uplink." +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:379 msgid "User Agent" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:380 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:628 msgid "VPN Hook" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:389 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:660 msgid "VPN Interface" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:383 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:645 msgid "VPN Service" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:281 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:240 msgid "VPN Settings" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:290 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:300 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:764 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:307 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:897 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:765 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:308 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:898 msgid "WPA Ent. (TKIP)" msgstr "" @@ -663,101 +691,101 @@ msgstr "" 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:755 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:298 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:888 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:756 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:299 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:889 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:757 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:300 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:890 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:766 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:309 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:899 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:767 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:310 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:900 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:758 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:301 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:891 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:759 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:302 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:892 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:762 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:305 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:895 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:763 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:306 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:896 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:752 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:295 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:885 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:753 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:296 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:886 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:754 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:297 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:887 msgid "WPA2 Pers. (TKIP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:761 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:894 msgid "WPA2/WPA3 Ent." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:268 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:304 msgid "WPA2/WPA3 Ent. (CCMP)" 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:751 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:294 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:884 msgid "WPA2/WPA3 Pers. (CCMP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:760 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:893 msgid "WPA3 Ent." 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:303 msgid "WPA3 Ent. (CCMP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:768 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:901 msgid "WPA3 OWE (CCMP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:257 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:750 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:293 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:883 msgid "WPA3 Pers. (SAE)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:581 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:715 msgid "Wireless Scan" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:208 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:238 msgid "Wireless Settings" msgstr "" @@ -765,21 +793,40 @@ msgstr "" msgid "Wireless Stations" msgstr "" -#: 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:798 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:406 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:931 msgid "auth=MSCHAPV2" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:369 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:797 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:405 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:930 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:769 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:312 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:902 msgid "none" msgstr "لا شيء" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:306 +msgid "use both radios, normal sort order (radio0 radio1)" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:307 +msgid "use both radios, reverse sort order (radio1 radio0)" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:304 +msgid "use the first radio only (radio0)" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:305 +msgid "use the second radio only (radio1)" +msgstr "" + +#~ msgid "Delete this network" +#~ msgstr "احذف هذه الشبكة" + #~ msgid "Action" #~ msgstr "إجراء" diff --git a/applications/luci-app-travelmate/po/bg/travelmate.po b/applications/luci-app-travelmate/po/bg/travelmate.po index f2fc8acbbd..3ead75e97e 100644 --- a/applications/luci-app-travelmate/po/bg/travelmate.po +++ b/applications/luci-app-travelmate/po/bg/travelmate.po @@ -10,101 +10,108 @@ msgstr "" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Generator: Weblate 4.8-dev\n" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:73 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:75 msgid "-- AP Selection --" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:261 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:265 msgid "AP QR-Codes..." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:823 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:956 msgid "Add Uplink %q" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:679 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:813 msgid "Add Uplink..." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:280 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:291 msgid "Additional Settings" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:321 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:340 msgid "" "Additional trigger delay in seconds before travelmate processing begins." msgstr "" -#: 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:787 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:396 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:920 msgid "Authentication" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:484 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:489 +msgid "Auto Added Open Uplink" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:568 msgid "Auto Login Script" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:310 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:327 msgid "AutoAdd Open Uplinks" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:467 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:551 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 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:319 msgid "ProActive Uplink Switch" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:306 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:319 msgid "" "Proactively scan and switch to a higher prioritized uplink, despite of an " "already existing connection." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:422 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:418 msgid "Profile used by 'msmtp' for travelmate notification E-Mails." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:114 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:116 msgid "QR-Code Overview" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:293 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:303 msgid "Radio Selection" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:314 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:323 msgid "Randomize MAC Addresses" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:407 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:403 msgid "Receiver address for travelmate notification E-Mails." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:115 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:264 +msgid "Remove" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:262 +msgid "Remove this network" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:117 msgid "" "Render the QR-Code of the selected Access Point to comfortably transfer the " "WLAN credentials to your mobile devices." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:592 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:726 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')." +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:272 +msgid "Restart Interface" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:326 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:303 +msgid "" +"Restrict travelmate to a single radio or change the overall scanning order." +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:345 msgid "Retry limit to connect to an uplink." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:241 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:242 msgid "Run Flags" msgstr "" -#: 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:729 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:284 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:445 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:707 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:862 msgid "SSID" msgstr "SSID" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:725 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:858 msgid "SSID (hidden)" msgstr "" -#: 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:834 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:63 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:967 msgid "Save" msgstr "Запази" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:346 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:365 msgid "Scan Buffer Size" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:557 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:691 msgid "Scan on" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:523 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:607 msgid "Script Arguments" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:412 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:408 msgid "Sender address for travelmate notification E-Mails." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:404 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:400 msgid "Sends notification E-Mails after every succesful uplink connect." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:368 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:388 msgid "Service Priority" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:277 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:288 msgid "Settings" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:331 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:350 msgid "Signal Quality Threshold" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:524 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:608 msgid "" "Space separated list of additional arguments passed to the Auto Login " "Script, i.e. username and password" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:579 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:713 msgid "Starting wireless scan on '" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:229 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:226 msgid "Station ID" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:235 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:234 msgid "Station Interface" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:232 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:230 msgid "Station MAC" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:226 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:222 msgid "Status / Version" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:571 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:705 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:781 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:388 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:914 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:782 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:389 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:915 msgid "TTLS" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:105 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:107 msgid "The QR-Code could not be generated!" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:31 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:33 msgid "The firewall zone name" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:36 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:38 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 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:660 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 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:370 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 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:388 msgid "The selected priority will be used for travelmate processes." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:359 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:379 msgid "" "The selected user agent will be used for connectivity- and captive portal " "checks." @@ -589,22 +607,28 @@ msgstr "" msgid "The syslog output, pre-filtered for travelmate related messages only." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:56 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:58 msgid "The uplink interface has been updated." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:26 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:28 msgid "The uplink interface name" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:20 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:490 +msgid "" +"This option is selected by default if this uplink was added automatically " +"and counts as 'Open Uplink'." +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:23 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 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:413 msgid "Topic for travelmate notification E-Mails." msgstr "" @@ -612,49 +636,53 @@ msgstr "" msgid "Travelmate" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:209 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:239 msgid "Travelmate Settings" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:301 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:314 msgid "Treat missing internet availability as an error." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:321 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:340 msgid "Trigger Delay" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:359 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:507 +msgid "Use the specified MAC address for this uplink." +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:379 msgid "User Agent" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:380 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:628 msgid "VPN Hook" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:389 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:660 msgid "VPN Interface" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:383 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:645 msgid "VPN Service" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:281 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:240 msgid "VPN Settings" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:290 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:300 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:764 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:307 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:897 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:765 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:308 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:898 msgid "WPA Ent. (TKIP)" msgstr "" @@ -662,101 +690,101 @@ msgstr "" 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:755 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:298 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:888 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:756 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:299 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:889 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:757 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:300 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:890 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:766 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:309 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:899 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:767 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:310 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:900 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:758 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:301 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:891 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:759 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:302 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:892 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:762 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:305 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:895 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:763 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:306 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:896 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:752 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:295 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:885 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:753 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:296 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:886 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:754 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:297 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:887 msgid "WPA2 Pers. (TKIP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:761 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:894 msgid "WPA2/WPA3 Ent." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:268 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:304 msgid "WPA2/WPA3 Ent. (CCMP)" 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:751 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:294 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:884 msgid "WPA2/WPA3 Pers. (CCMP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:760 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:893 msgid "WPA3 Ent." 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:303 msgid "WPA3 Ent. (CCMP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:768 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:901 msgid "WPA3 OWE (CCMP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:257 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:750 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:293 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:883 msgid "WPA3 Pers. (SAE)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:581 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:715 msgid "Wireless Scan" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:208 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:238 msgid "Wireless Settings" msgstr "" @@ -764,17 +792,33 @@ msgstr "" msgid "Wireless Stations" msgstr "" -#: 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:798 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:406 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:931 msgid "auth=MSCHAPV2" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:369 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:797 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:405 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:930 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:769 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:312 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:902 msgid "none" msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:306 +msgid "use both radios, normal sort order (radio0 radio1)" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:307 +msgid "use both radios, reverse sort order (radio1 radio0)" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:304 +msgid "use the first radio only (radio0)" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:305 +msgid "use the second radio only (radio1)" +msgstr "" diff --git a/applications/luci-app-travelmate/po/bn_BD/travelmate.po b/applications/luci-app-travelmate/po/bn_BD/travelmate.po index 9b5eaa9d55..3ee25fec48 100644 --- a/applications/luci-app-travelmate/po/bn_BD/travelmate.po +++ b/applications/luci-app-travelmate/po/bn_BD/travelmate.po @@ -4,101 +4,108 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:73 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:75 msgid "-- AP Selection --" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:261 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:265 msgid "AP QR-Codes..." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:823 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:956 msgid "Add Uplink %q" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:679 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:813 msgid "Add Uplink..." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:280 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:291 msgid "Additional Settings" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:321 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:340 msgid "" "Additional trigger delay in seconds before travelmate processing begins." msgstr "" -#: 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:787 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:396 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:920 msgid "Authentication" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:484 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:489 +msgid "Auto Added Open Uplink" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:568 msgid "Auto Login Script" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:310 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:327 msgid "AutoAdd Open Uplinks" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:467 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:551 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 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:319 msgid "ProActive Uplink Switch" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:306 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:319 msgid "" "Proactively scan and switch to a higher prioritized uplink, despite of an " "already existing connection." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:422 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:418 msgid "Profile used by 'msmtp' for travelmate notification E-Mails." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:114 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:116 msgid "QR-Code Overview" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:293 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:303 msgid "Radio Selection" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:314 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:323 msgid "Randomize MAC Addresses" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:407 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:403 msgid "Receiver address for travelmate notification E-Mails." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:115 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:264 +msgid "Remove" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:262 +msgid "Remove this network" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:117 msgid "" "Render the QR-Code of the selected Access Point to comfortably transfer the " "WLAN credentials to your mobile devices." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:592 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:726 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')." +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:272 +msgid "Restart Interface" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:326 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:303 +msgid "" +"Restrict travelmate to a single radio or change the overall scanning order." +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:345 msgid "Retry limit to connect to an uplink." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:241 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:242 msgid "Run Flags" msgstr "" -#: 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:729 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:284 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:445 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:707 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:862 msgid "SSID" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:725 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:858 msgid "SSID (hidden)" msgstr "" -#: 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:834 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:63 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:967 msgid "Save" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:346 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:365 msgid "Scan Buffer Size" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:557 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:691 msgid "Scan on" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:523 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:607 msgid "Script Arguments" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:412 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:408 msgid "Sender address for travelmate notification E-Mails." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:404 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:400 msgid "Sends notification E-Mails after every succesful uplink connect." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:368 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:388 msgid "Service Priority" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:277 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:288 msgid "Settings" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:331 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:350 msgid "Signal Quality Threshold" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:524 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:608 msgid "" "Space separated list of additional arguments passed to the Auto Login " "Script, i.e. username and password" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:579 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:713 msgid "Starting wireless scan on '" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:229 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:226 msgid "Station ID" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:235 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:234 msgid "Station Interface" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:232 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:230 msgid "Station MAC" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:226 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:222 msgid "Status / Version" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:571 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:705 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:781 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:388 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:914 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:782 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:389 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:915 msgid "TTLS" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:105 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:107 msgid "The QR-Code could not be generated!" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:31 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:33 msgid "The firewall zone name" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:36 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:38 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 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:660 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 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:370 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 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:388 msgid "The selected priority will be used for travelmate processes." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:359 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:379 msgid "" "The selected user agent will be used for connectivity- and captive portal " "checks." @@ -583,22 +601,28 @@ msgstr "" msgid "The syslog output, pre-filtered for travelmate related messages only." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:56 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:58 msgid "The uplink interface has been updated." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:26 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:28 msgid "The uplink interface name" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:20 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:490 +msgid "" +"This option is selected by default if this uplink was added automatically " +"and counts as 'Open Uplink'." +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:23 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 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:413 msgid "Topic for travelmate notification E-Mails." msgstr "" @@ -606,49 +630,53 @@ msgstr "" msgid "Travelmate" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:209 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:239 msgid "Travelmate Settings" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:301 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:314 msgid "Treat missing internet availability as an error." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:321 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:340 msgid "Trigger Delay" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:359 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:507 +msgid "Use the specified MAC address for this uplink." +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:379 msgid "User Agent" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:380 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:628 msgid "VPN Hook" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:389 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:660 msgid "VPN Interface" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:383 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:645 msgid "VPN Service" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:281 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:240 msgid "VPN Settings" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:290 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:300 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:764 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:307 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:897 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:765 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:308 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:898 msgid "WPA Ent. (TKIP)" msgstr "" @@ -656,101 +684,101 @@ msgstr "" 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:755 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:298 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:888 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:756 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:299 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:889 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:757 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:300 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:890 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:766 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:309 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:899 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:767 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:310 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:900 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:758 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:301 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:891 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:759 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:302 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:892 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:762 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:305 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:895 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:763 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:306 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:896 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:752 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:295 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:885 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:753 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:296 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:886 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:754 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:297 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:887 msgid "WPA2 Pers. (TKIP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:761 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:894 msgid "WPA2/WPA3 Ent." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:268 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:304 msgid "WPA2/WPA3 Ent. (CCMP)" 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:751 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:294 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:884 msgid "WPA2/WPA3 Pers. (CCMP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:760 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:893 msgid "WPA3 Ent." 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:303 msgid "WPA3 Ent. (CCMP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:768 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:901 msgid "WPA3 OWE (CCMP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:257 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:750 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:293 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:883 msgid "WPA3 Pers. (SAE)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:581 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:715 msgid "Wireless Scan" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:208 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:238 msgid "Wireless Settings" msgstr "" @@ -758,17 +786,33 @@ msgstr "" msgid "Wireless Stations" msgstr "" -#: 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:798 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:406 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:931 msgid "auth=MSCHAPV2" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:369 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:797 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:405 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:930 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:769 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:312 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:902 msgid "none" msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:306 +msgid "use both radios, normal sort order (radio0 radio1)" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:307 +msgid "use both radios, reverse sort order (radio1 radio0)" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:304 +msgid "use the first radio only (radio0)" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:305 +msgid "use the second radio only (radio1)" +msgstr "" diff --git a/applications/luci-app-travelmate/po/ca/travelmate.po b/applications/luci-app-travelmate/po/ca/travelmate.po index bd7ccc93ec..fb3ec30995 100644 --- a/applications/luci-app-travelmate/po/ca/travelmate.po +++ b/applications/luci-app-travelmate/po/ca/travelmate.po @@ -10,101 +10,108 @@ msgstr "" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Generator: Weblate 4.5.1\n" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:73 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:75 msgid "-- AP Selection --" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:261 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:265 msgid "AP QR-Codes..." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:823 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:956 msgid "Add Uplink %q" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:679 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:813 msgid "Add Uplink..." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:280 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:291 msgid "Additional Settings" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:321 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:340 msgid "" "Additional trigger delay in seconds before travelmate processing begins." msgstr "" -#: 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:787 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:396 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:920 msgid "Authentication" msgstr "Autenticació" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:484 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:489 +msgid "Auto Added Open Uplink" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:568 msgid "Auto Login Script" msgstr "Script d’inici de sessió automàtic" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:310 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:327 msgid "AutoAdd Open Uplinks" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:467 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:551 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 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:319 msgid "ProActive Uplink Switch" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:306 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:319 msgid "" "Proactively scan and switch to a higher prioritized uplink, despite of an " "already existing connection." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:422 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:418 msgid "Profile used by 'msmtp' for travelmate notification E-Mails." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:114 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:116 msgid "QR-Code Overview" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:293 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:303 msgid "Radio Selection" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:314 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:323 msgid "Randomize MAC Addresses" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:407 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:403 msgid "Receiver address for travelmate notification E-Mails." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:115 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:264 +msgid "Remove" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:262 +msgid "Remove this network" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:117 msgid "" "Render the QR-Code of the selected Access Point to comfortably transfer the " "WLAN credentials to your mobile devices." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:592 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:726 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')." +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:272 +msgid "Restart Interface" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:326 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:303 +msgid "" +"Restrict travelmate to a single radio or change the overall scanning order." +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:345 msgid "Retry limit to connect to an uplink." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:241 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:242 msgid "Run Flags" msgstr "" -#: 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:729 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:284 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:445 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:707 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:862 msgid "SSID" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:725 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:858 msgid "SSID (hidden)" msgstr "SSID (amagat)" -#: 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:834 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:63 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:967 msgid "Save" msgstr "Desar" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:346 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:365 msgid "Scan Buffer Size" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:557 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:691 msgid "Scan on" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:523 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:607 msgid "Script Arguments" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:412 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:408 msgid "Sender address for travelmate notification E-Mails." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:404 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:400 msgid "Sends notification E-Mails after every succesful uplink connect." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:368 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:388 msgid "Service Priority" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:277 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:288 msgid "Settings" msgstr "Paràmetres" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:331 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:350 msgid "Signal Quality Threshold" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:524 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:608 msgid "" "Space separated list of additional arguments passed to the Auto Login " "Script, i.e. username and password" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:579 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:713 msgid "Starting wireless scan on '" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:229 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:226 msgid "Station ID" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:235 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:234 msgid "Station Interface" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:232 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:230 msgid "Station MAC" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:226 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:222 msgid "Status / Version" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:571 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:705 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:781 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:388 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:914 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:782 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:389 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:915 msgid "TTLS" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:105 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:107 msgid "The QR-Code could not be generated!" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:31 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:33 msgid "The firewall zone name" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:36 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:38 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 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:660 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 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:370 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 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:388 msgid "The selected priority will be used for travelmate processes." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:359 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:379 msgid "" "The selected user agent will be used for connectivity- and captive portal " "checks." @@ -589,22 +607,28 @@ msgstr "" msgid "The syslog output, pre-filtered for travelmate related messages only." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:56 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:58 msgid "The uplink interface has been updated." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:26 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:28 msgid "The uplink interface name" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:20 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:490 +msgid "" +"This option is selected by default if this uplink was added automatically " +"and counts as 'Open Uplink'." +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:23 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 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:413 msgid "Topic for travelmate notification E-Mails." msgstr "" @@ -612,49 +636,53 @@ msgstr "" msgid "Travelmate" msgstr "Travelmate" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:209 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:239 msgid "Travelmate Settings" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:301 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:314 msgid "Treat missing internet availability as an error." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:321 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:340 msgid "Trigger Delay" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:359 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:507 +msgid "Use the specified MAC address for this uplink." +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:379 msgid "User Agent" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:380 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:628 msgid "VPN Hook" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:389 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:660 msgid "VPN Interface" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:383 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:645 msgid "VPN Service" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:281 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:240 msgid "VPN Settings" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:290 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:300 msgid "Verbose Debug Logging" msgstr "Enregistrament detallat de depuració" -#: 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:764 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:307 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:897 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:765 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:308 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:898 msgid "WPA Ent. (TKIP)" msgstr "" @@ -662,101 +690,101 @@ msgstr "" 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:755 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:298 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:888 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:756 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:299 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:889 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:757 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:300 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:890 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:766 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:309 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:899 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:767 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:310 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:900 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:758 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:301 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:891 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:759 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:302 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:892 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:762 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:305 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:895 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:763 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:306 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:896 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:752 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:295 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:885 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:753 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:296 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:886 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:754 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:297 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:887 msgid "WPA2 Pers. (TKIP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:761 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:894 msgid "WPA2/WPA3 Ent." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:268 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:304 msgid "WPA2/WPA3 Ent. (CCMP)" 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:751 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:294 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:884 msgid "WPA2/WPA3 Pers. (CCMP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:760 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:893 msgid "WPA3 Ent." 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:303 msgid "WPA3 Ent. (CCMP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:768 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:901 msgid "WPA3 OWE (CCMP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:257 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:750 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:293 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:883 msgid "WPA3 Pers. (SAE)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:581 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:715 msgid "Wireless Scan" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:208 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:238 msgid "Wireless Settings" msgstr "" @@ -764,21 +792,37 @@ msgstr "" msgid "Wireless Stations" msgstr "" -#: 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:798 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:406 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:931 msgid "auth=MSCHAPV2" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:369 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:797 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:405 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:930 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:769 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:312 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:902 msgid "none" msgstr "" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:306 +msgid "use both radios, normal sort order (radio0 radio1)" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:307 +msgid "use both radios, reverse sort order (radio1 radio0)" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:304 +msgid "use the first radio only (radio0)" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:305 +msgid "use the second radio only (radio1)" +msgstr "" + #~ msgid "Action" #~ msgstr "Acció" diff --git a/applications/luci-app-travelmate/po/cs/travelmate.po b/applications/luci-app-travelmate/po/cs/travelmate.po index 931d19bbb8..a4fb301f33 100644 --- a/applications/luci-app-travelmate/po/cs/travelmate.po +++ b/applications/luci-app-travelmate/po/cs/travelmate.po @@ -10,101 +10,108 @@ msgstr "" "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" "X-Generator: Weblate 4.7-dev\n" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:73 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:75 msgid "-- AP Selection --" msgstr "-- výběr přístupového bodu --" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:261 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:265 msgid "AP QR-Codes..." msgstr "QR kódy AP" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:823 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:956 msgid "Add Uplink %q" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:679 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:813 msgid "Add Uplink..." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:280 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:291 msgid "Additional Settings" msgstr "Další nastavení" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:321 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:340 msgid "" "Additional trigger delay in seconds before travelmate processing begins." msgstr "" -#: 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:787 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:396 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:920 msgid "Authentication" msgstr "Ověřování se" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:484 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:489 +msgid "Auto Added Open Uplink" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:568 msgid "Auto Login Script" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:310 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:327 msgid "AutoAdd Open Uplinks" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:467 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:551 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 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:319 msgid "ProActive Uplink Switch" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:306 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:319 msgid "" "Proactively scan and switch to a higher prioritized uplink, despite of an " "already existing connection." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:422 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:418 msgid "Profile used by 'msmtp' for travelmate notification E-Mails." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:114 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:116 msgid "QR-Code Overview" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:293 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:303 msgid "Radio Selection" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:314 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:323 msgid "Randomize MAC Addresses" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:407 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:403 msgid "Receiver address for travelmate notification E-Mails." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:115 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:264 +msgid "Remove" +msgstr "Odstranit" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:262 +msgid "Remove this network" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:117 msgid "" "Render the QR-Code of the selected Access Point to comfortably transfer the " "WLAN credentials to your mobile devices." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:592 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:726 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')." +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:272 +msgid "Restart Interface" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:326 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:303 +msgid "" +"Restrict travelmate to a single radio or change the overall scanning order." +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:345 msgid "Retry limit to connect to an uplink." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:241 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:242 msgid "Run Flags" msgstr "" -#: 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:729 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:284 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:445 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:707 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:862 msgid "SSID" msgstr "SSID" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:725 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:858 msgid "SSID (hidden)" msgstr "" -#: 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:834 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:63 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:967 msgid "Save" msgstr "Uložit" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:346 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:365 msgid "Scan Buffer Size" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:557 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:691 msgid "Scan on" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:523 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:607 msgid "Script Arguments" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:412 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:408 msgid "Sender address for travelmate notification E-Mails." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:404 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:400 msgid "Sends notification E-Mails after every succesful uplink connect." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:368 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:388 msgid "Service Priority" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:277 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:288 msgid "Settings" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:331 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:350 msgid "Signal Quality Threshold" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:524 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:608 msgid "" "Space separated list of additional arguments passed to the Auto Login " "Script, i.e. username and password" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:579 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:713 msgid "Starting wireless scan on '" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:229 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:226 msgid "Station ID" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:235 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:234 msgid "Station Interface" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:232 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:230 msgid "Station MAC" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:226 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:222 msgid "Status / Version" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:571 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:705 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:781 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:388 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:914 msgid "TLS" msgstr "TLS" -#: 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:782 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:389 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:915 msgid "TTLS" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:105 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:107 msgid "The QR-Code could not be generated!" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:31 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:33 msgid "The firewall zone name" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:36 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:38 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 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:660 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 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:370 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 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:388 msgid "The selected priority will be used for travelmate processes." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:359 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:379 msgid "" "The selected user agent will be used for connectivity- and captive portal " "checks." @@ -589,22 +607,28 @@ msgstr "" msgid "The syslog output, pre-filtered for travelmate related messages only." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:56 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:58 msgid "The uplink interface has been updated." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:26 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:28 msgid "The uplink interface name" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:20 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:490 +msgid "" +"This option is selected by default if this uplink was added automatically " +"and counts as 'Open Uplink'." +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:23 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 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:413 msgid "Topic for travelmate notification E-Mails." msgstr "" @@ -612,49 +636,53 @@ msgstr "" msgid "Travelmate" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:209 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:239 msgid "Travelmate Settings" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:301 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:314 msgid "Treat missing internet availability as an error." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:321 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:340 msgid "Trigger Delay" msgstr "Prodleva spuštění" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:359 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:507 +msgid "Use the specified MAC address for this uplink." +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:379 msgid "User Agent" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:380 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:628 msgid "VPN Hook" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:389 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:660 msgid "VPN Interface" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:383 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:645 msgid "VPN Service" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:281 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:240 msgid "VPN Settings" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:290 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:300 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:764 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:307 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:897 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:765 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:308 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:898 msgid "WPA Ent. (TKIP)" msgstr "" @@ -662,101 +690,101 @@ msgstr "" 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:755 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:298 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:888 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:756 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:299 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:889 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:757 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:300 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:890 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:766 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:309 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:899 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:767 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:310 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:900 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:758 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:301 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:891 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:759 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:302 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:892 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:762 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:305 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:895 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:763 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:306 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:896 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:752 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:295 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:885 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:753 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:296 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:886 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:754 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:297 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:887 msgid "WPA2 Pers. (TKIP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:761 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:894 msgid "WPA2/WPA3 Ent." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:268 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:304 msgid "WPA2/WPA3 Ent. (CCMP)" 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:751 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:294 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:884 msgid "WPA2/WPA3 Pers. (CCMP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:760 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:893 msgid "WPA3 Ent." 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:303 msgid "WPA3 Ent. (CCMP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:768 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:901 msgid "WPA3 OWE (CCMP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:257 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:750 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:293 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:883 msgid "WPA3 Pers. (SAE)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:581 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:715 msgid "Wireless Scan" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:208 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:238 msgid "Wireless Settings" msgstr "" @@ -764,21 +792,37 @@ msgstr "" msgid "Wireless Stations" msgstr "" -#: 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:798 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:406 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:931 msgid "auth=MSCHAPV2" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:369 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:797 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:405 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:930 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:769 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:312 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:902 msgid "none" msgstr "" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:306 +msgid "use both radios, normal sort order (radio0 radio1)" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:307 +msgid "use both radios, reverse sort order (radio1 radio0)" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:304 +msgid "use the first radio only (radio0)" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:305 +msgid "use the second radio only (radio1)" +msgstr "" + #~ msgid "Action" #~ msgstr "Akce" @@ -827,9 +871,6 @@ msgstr "" #~ msgstr "" #~ "Volby pro další doplnění pro případ, že výchozí hodnoty nejsou vhodné." -#~ msgid "Remove" -#~ msgstr "Odstranit" - #~ msgid "Restart" #~ msgstr "Restart" diff --git a/applications/luci-app-travelmate/po/de/travelmate.po b/applications/luci-app-travelmate/po/de/travelmate.po index d45b6baba7..e545f93cc7 100644 --- a/applications/luci-app-travelmate/po/de/travelmate.po +++ b/applications/luci-app-travelmate/po/de/travelmate.po @@ -10,45 +10,49 @@ msgstr "" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Generator: Weblate 4.5.2-dev\n" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:73 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:75 msgid "-- AP Selection --" msgstr "-- AP-Auswahl --" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:261 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:265 msgid "AP QR-Codes..." msgstr "AP QR-Codes..." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:823 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:956 msgid "Add Uplink %q" msgstr "Uplink hinzufügen %q" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:679 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:813 msgid "Add Uplink..." msgstr "Uplink hinzufügen..." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:280 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:291 msgid "Additional Settings" msgstr "Zusätzliche Einstellungen" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:321 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:340 msgid "" "Additional trigger delay in seconds before travelmate processing begins." msgstr "Zusätzliche Trigger-Verzögerung in Sekunden, bevor Travelmate startet." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:360 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:787 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:396 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:920 msgid "Authentication" msgstr "Authentifizierung" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:484 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:489 +msgid "Auto Added Open Uplink" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:568 msgid "Auto Login Script" msgstr "Auto-Login-Skript" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:310 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:327 msgid "AutoAdd Open Uplinks" msgstr "Automatisch offene Uplinks hinzufügen" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:467 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:551 msgid "" "Automatically (re-)enable the uplink after n minutes, e.g. after " "failed login attempts.
" @@ -426,19 +443,11 @@ msgstr "" "Bitte beachten Sie: Für E-Mail-Benachrichtigungen muss das Paket mstmp" "em> separat eingerichtet werden.
" -#: 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 "" -"Bitte beachten Sie: Für VPN-Verbindungen muss das Paket Wireguard " -"oder OpenVPN separat eingerichtet werden.
" - -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:306 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:319 msgid "ProActive Uplink Switch" msgstr "ProActive-Uplink-Switch" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:306 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:319 msgid "" "Proactively scan and switch to a higher prioritized uplink, despite of an " "already existing connection." @@ -446,29 +455,37 @@ msgstr "" "Trotz einer bereits bestehenden Verbindung proaktiv scannen und zu einem " "Uplink mit höherer Priorität wechseln." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:422 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:418 msgid "Profile used by 'msmtp' for travelmate notification E-Mails." msgstr "" "Profil, das von 'msmtp' zur Benachrichtigung von Travelmate-E-Mails " "verwendet wird." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:114 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:116 msgid "QR-Code Overview" msgstr "QR-Code Übersicht" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:293 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:303 msgid "Radio Selection" msgstr "Funkmodulauswahl" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:314 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:323 msgid "Randomize MAC Addresses" msgstr "MAC-Adressen randomisieren" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:407 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:403 msgid "Receiver address for travelmate notification E-Mails." msgstr "Empfängeradresse für Travelmate-Benachrichtigungs-E-Mails." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:115 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:264 +msgid "Remove" +msgstr "Entfernen" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:262 +msgid "Remove this network" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:117 msgid "" "Render the QR-Code of the selected Access Point to comfortably transfer the " "WLAN credentials to your mobile devices." @@ -476,76 +493,77 @@ msgstr "" "Legen Sie den QR-Code des ausgewählten Access Points vor, um die WLAN-" "Anmeldeinformationen bequem auf Ihre Mobilgeräte zu übertragen." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:592 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:726 msgid "Repeat Scan" msgstr "Scan wiederholen" -#: 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')." +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:272 +msgid "Restart Interface" msgstr "" -"Beschränken Sie Travelmate auf ein einzelnes Funkmodul oder ändern Sie die " -"gesamte Scanreihenfolge (z. B. 'radio1 radio0')." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:326 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:303 +msgid "" +"Restrict travelmate to a single radio or change the overall scanning order." +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:345 msgid "Retry limit to connect to an uplink." msgstr "Wiederholungslimit für eine Verbindung zu einem Uplink." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:241 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:242 msgid "Run Flags" msgstr "Laufzeit-Flags" -#: 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:729 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:284 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:445 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:707 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:862 msgid "SSID" msgstr "SSID" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:725 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:858 msgid "SSID (hidden)" msgstr "SSID (versteckt)" -#: 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:834 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:63 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:967 msgid "Save" msgstr "Speichern" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:346 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:365 msgid "Scan Buffer Size" msgstr "Scan-Puffergröße" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:557 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:691 msgid "Scan on" msgstr "Weiterscannen" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:523 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:607 msgid "Script Arguments" msgstr "Skriptargumente" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:412 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:408 msgid "Sender address for travelmate notification E-Mails." msgstr "Absenderadresse für Travelmate-Benachrichtigungs-E-Mails." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:404 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:400 msgid "Sends notification E-Mails after every succesful uplink connect." msgstr "" "Sendet nach jeder erfolgreichen Uplink-Verbindung Benachrichtigungs-E-Mails." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:368 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:388 msgid "Service Priority" msgstr "Servicepriorität" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:277 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:288 msgid "Settings" msgstr "Einstellungen" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:331 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:350 msgid "Signal Quality Threshold" msgstr "Signalqualitätsschwelle" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:524 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:608 msgid "" "Space separated list of additional arguments passed to the Auto Login " "Script, i.e. username and password" @@ -553,72 +571,68 @@ msgstr "" "Durch Leerzeichen getrennte Liste zusätzlicher Argumente, die an das " "automatische Anmeldeskript übergeben werden, z.B. Benutzername und Kennwort" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:579 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:713 msgid "Starting wireless scan on '" msgstr "Starten des drahtlosen Scans am '" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:229 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:226 msgid "Station ID" msgstr "Stations-ID" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:235 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:234 msgid "Station Interface" msgstr "Stationsschnittstelle" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:232 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:230 msgid "Station MAC" msgstr "Stations-MAC" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:226 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:222 msgid "Status / Version" msgstr "Status / Version" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:571 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:705 msgid "Strength" msgstr "Stärke" -#: 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:781 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:388 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:914 msgid "TLS" msgstr "TLS" -#: 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:782 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:389 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:915 msgid "TTLS" msgstr "TTLS" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:105 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:107 msgid "The QR-Code could not be generated!" msgstr "Der QR-Code konnte nicht generiert werden!" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:31 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:33 msgid "The firewall zone name" msgstr "Der Name der Firewall-Zone" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:36 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:38 msgid "The interface metric" msgstr "Die Schnittstellenmetrik" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:395 -msgid "The lan network device, e.g. 'br-lan'." -msgstr "Das LAN-Netzwerkgerät, z.B. 'br-lan'." - -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:389 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:660 msgid "The logical vpn network interface, e.g. 'wg0' or 'tun0'." msgstr "Die logische VPN-Netzwerkschnittstelle, z.B. 'wg0' oder 'tun0'." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:351 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:370 msgid "" "The selected URL will be used for connectivity- and captive portal checks." msgstr "" "Die ausgewählte URL wird für Konnektivitäts- und Captive-Portal-Prüfungen " "verwendet." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:368 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:388 msgid "The selected priority will be used for travelmate processes." msgstr "Die ausgewählte Priorität wird für Travelmate-Prozesse verwendet." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:359 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:379 msgid "" "The selected user agent will be used for connectivity- and captive portal " "checks." @@ -632,15 +646,21 @@ msgstr "" "Die Syslog-Ausgabe, die nur für Travelmate-bezogene Nachrichten vorgefiltert " "ist." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:56 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:58 msgid "The uplink interface has been updated." msgstr "Die Uplink-Schnittstelle wurde aktualisiert." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:26 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:28 msgid "The uplink interface name" msgstr "Der Name der Uplink-Schnittstelle" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:20 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:490 +msgid "" +"This option is selected by default if this uplink was added automatically " +"and counts as 'Open Uplink'." +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:23 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 " @@ -651,7 +671,7 @@ msgstr "" "Alias-Netzwerkschnittstelle mit allen erforderlichen Netzwerk- und Firewall-" "Einstellungen." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:417 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:413 msgid "Topic for travelmate notification E-Mails." msgstr "Thema für Travelmate-Benachrichtigungs-E-Mails." @@ -659,49 +679,53 @@ msgstr "Thema für Travelmate-Benachrichtigungs-E-Mails." msgid "Travelmate" msgstr "Travelmate" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:209 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:239 msgid "Travelmate Settings" msgstr "Travelmate-Einstellungen" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:301 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:314 msgid "Treat missing internet availability as an error." msgstr "Fehlende Internetverfügbarkeit als Fehler behandeln." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:321 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:340 msgid "Trigger Delay" msgstr "Verzögerung der Trigger-Bedingung" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:359 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:507 +msgid "Use the specified MAC address for this uplink." +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:379 msgid "User Agent" msgstr "User-Agent" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:380 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:628 msgid "VPN Hook" msgstr "VPN-Hook" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:389 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:660 msgid "VPN Interface" msgstr "VPN-Schnittstelle" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:383 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:645 msgid "VPN Service" msgstr "VPN-Dienst" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:281 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:240 msgid "VPN Settings" msgstr "VPN-Einstellungen" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:290 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:300 msgid "Verbose Debug Logging" msgstr "Ausführliche Debug-Protokollierung" -#: 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:764 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:307 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:897 msgid "WPA Ent. (CCMP)" msgstr "WPA Ent. (CCMP)" -#: 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:765 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:308 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:898 msgid "WPA Ent. (TKIP)" msgstr "WPA Ent. (TKIP)" @@ -709,101 +733,101 @@ msgstr "WPA Ent. (TKIP)" msgid "WPA Flags" msgstr "WPA-Flags" -#: 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:755 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:298 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:888 msgid "WPA Pers." msgstr "WPA Pers." -#: 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:756 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:299 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:889 msgid "WPA Pers. (CCMP)" msgstr "WPA Pers. (CCMP)" -#: 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:757 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:300 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:890 msgid "WPA Pers. (TKIP)" msgstr "WPA Pers. (TKIP)" -#: 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:766 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:309 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:899 msgid "WPA/WPA2 Ent. (CCMP)" msgstr "WPA/WPA2 Ent. (CCMP)" -#: 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:767 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:310 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:900 msgid "WPA/WPA2 Ent. (TKIP)" msgstr "WPA/WPA2 Ent. (TKIP)" -#: 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:758 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:301 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:891 msgid "WPA/WPA2 Pers. (CCMP)" msgstr "WPA/WPA2 Pers. (CCMP)" -#: 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:759 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:302 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:892 msgid "WPA/WPA2 Pers. (TKIP)" msgstr "WPA/WPA2 Pers. (TKIP)" -#: 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:762 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:305 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:895 msgid "WPA2 Ent. (CCMP)" msgstr "WPA2 Ent. (CCMP)" -#: 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:763 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:306 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:896 msgid "WPA2 Ent. (TKIP)" msgstr "WPA2 Ent. (TKIP)" -#: 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:752 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:295 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:885 msgid "WPA2 Pers." msgstr "WPA2 Pers." -#: 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:753 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:296 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:886 msgid "WPA2 Pers. (CCMP)" msgstr "WPA2 Pers. (CCMP)" -#: 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:754 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:297 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:887 msgid "WPA2 Pers. (TKIP)" msgstr "WPA2 Pers. (TKIP)" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:761 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:894 msgid "WPA2/WPA3 Ent." msgstr "WPA2/WPA3 Ent." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:268 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:304 msgid "WPA2/WPA3 Ent. (CCMP)" msgstr "WPA2/WPA3 Ent. (CCMP)" -#: 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:751 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:294 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:884 msgid "WPA2/WPA3 Pers. (CCMP)" msgstr "WPA2/WPA3 Pers. (CCMP)" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:760 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:893 msgid "WPA3 Ent." msgstr "WPA3 Ent." -#: 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:303 msgid "WPA3 Ent. (CCMP)" msgstr "WPA3 Ent. (CCMP)" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:768 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:901 msgid "WPA3 OWE (CCMP)" msgstr "WPA3 OWE (CCMP)" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:257 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:750 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:293 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:883 msgid "WPA3 Pers. (SAE)" msgstr "WPA3 Pers. (SAE)" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:581 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:715 msgid "Wireless Scan" msgstr "Drahtloser Scan" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:208 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:238 msgid "Wireless Settings" msgstr "Drahtlose Einstellungen" @@ -811,21 +835,66 @@ msgstr "Drahtlose Einstellungen" msgid "Wireless Stations" msgstr "Drahtlose Stationen" -#: 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:798 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:406 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:931 msgid "auth=MSCHAPV2" msgstr "auth=MSCHAPV2" -#: 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:797 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:405 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:930 msgid "auth=PAP" msgstr "auth=PAP" -#: 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:769 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:312 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:902 msgid "none" msgstr "kein" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:306 +msgid "use both radios, normal sort order (radio0 radio1)" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:307 +msgid "use both radios, reverse sort order (radio1 radio0)" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:304 +msgid "use the first radio only (radio0)" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:305 +msgid "use the second radio only (radio1)" +msgstr "" + +#~ msgid "Automatically handle VPN (re-) connections." +#~ msgstr "Automatisch den Auf- und Abbau von VPN-Verbindungen regeln." + +#~ msgid "Del" +#~ msgstr "Löschen" + +#~ msgid "Delete this network" +#~ msgstr "Dieses Netzwerk löschen" + +#~ msgid "LAN Device" +#~ msgstr "LAN-Gerät" + +#~ msgid "" +#~ "Please note: VPN connections require the separate setup of the " +#~ "Wireguard or OpenVPN package.
" +#~ msgstr "" +#~ "Bitte beachten Sie: Für VPN-Verbindungen muss das Paket Wireguard" +#~ "em> oder OpenVPN separat eingerichtet werden.
" + +#~ msgid "" +#~ "Restrict travelmate to a single radio or change the overall scanning " +#~ "order (e.g. 'radio1 radio0')." +#~ msgstr "" +#~ "Beschränken Sie Travelmate auf ein einzelnes Funkmodul oder ändern Sie " +#~ "die gesamte Scanreihenfolge (z. B. 'radio1 radio0')." + +#~ msgid "The lan network device, e.g. 'br-lan'." +#~ msgstr "Das LAN-Netzwerkgerät, z.B. 'br-lan'." + #~ msgid "" #~ "Configuration of the travelmate package to to enable travel router " #~ "functionality. For further information 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 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:319 msgid "ProActive Uplink Switch" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:306 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:319 msgid "" "Proactively scan and switch to a higher prioritized uplink, despite of an " "already existing connection." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:422 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:418 msgid "Profile used by 'msmtp' for travelmate notification E-Mails." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:114 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:116 msgid "QR-Code Overview" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:293 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:303 msgid "Radio Selection" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:314 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:323 msgid "Randomize MAC Addresses" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:407 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:403 msgid "Receiver address for travelmate notification E-Mails." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:115 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:264 +msgid "Remove" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:262 +msgid "Remove this network" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:117 msgid "" "Render the QR-Code of the selected Access Point to comfortably transfer the " "WLAN credentials to your mobile devices." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:592 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:726 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')." +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:272 +msgid "Restart Interface" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:326 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:303 +msgid "" +"Restrict travelmate to a single radio or change the overall scanning order." +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:345 msgid "Retry limit to connect to an uplink." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:241 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:242 msgid "Run Flags" msgstr "" -#: 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:729 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:284 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:445 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:707 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:862 msgid "SSID" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:725 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:858 msgid "SSID (hidden)" msgstr "" -#: 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:834 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:63 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:967 msgid "Save" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:346 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:365 msgid "Scan Buffer Size" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:557 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:691 msgid "Scan on" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:523 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:607 msgid "Script Arguments" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:412 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:408 msgid "Sender address for travelmate notification E-Mails." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:404 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:400 msgid "Sends notification E-Mails after every succesful uplink connect." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:368 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:388 msgid "Service Priority" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:277 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:288 msgid "Settings" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:331 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:350 msgid "Signal Quality Threshold" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:524 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:608 msgid "" "Space separated list of additional arguments passed to the Auto Login " "Script, i.e. username and password" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:579 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:713 msgid "Starting wireless scan on '" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:229 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:226 msgid "Station ID" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:235 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:234 msgid "Station Interface" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:232 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:230 msgid "Station MAC" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:226 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:222 msgid "Status / Version" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:571 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:705 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:781 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:388 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:914 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:782 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:389 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:915 msgid "TTLS" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:105 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:107 msgid "The QR-Code could not be generated!" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:31 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:33 msgid "The firewall zone name" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:36 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:38 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 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:660 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 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:370 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 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:388 msgid "The selected priority will be used for travelmate processes." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:359 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:379 msgid "" "The selected user agent will be used for connectivity- and captive portal " "checks." @@ -589,22 +607,28 @@ msgstr "" msgid "The syslog output, pre-filtered for travelmate related messages only." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:56 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:58 msgid "The uplink interface has been updated." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:26 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:28 msgid "The uplink interface name" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:20 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:490 +msgid "" +"This option is selected by default if this uplink was added automatically " +"and counts as 'Open Uplink'." +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:23 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 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:413 msgid "Topic for travelmate notification E-Mails." msgstr "" @@ -612,49 +636,53 @@ msgstr "" msgid "Travelmate" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:209 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:239 msgid "Travelmate Settings" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:301 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:314 msgid "Treat missing internet availability as an error." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:321 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:340 msgid "Trigger Delay" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:359 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:507 +msgid "Use the specified MAC address for this uplink." +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:379 msgid "User Agent" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:380 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:628 msgid "VPN Hook" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:389 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:660 msgid "VPN Interface" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:383 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:645 msgid "VPN Service" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:281 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:240 msgid "VPN Settings" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:290 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:300 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:764 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:307 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:897 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:765 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:308 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:898 msgid "WPA Ent. (TKIP)" msgstr "" @@ -662,101 +690,101 @@ msgstr "" 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:755 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:298 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:888 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:756 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:299 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:889 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:757 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:300 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:890 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:766 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:309 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:899 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:767 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:310 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:900 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:758 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:301 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:891 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:759 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:302 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:892 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:762 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:305 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:895 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:763 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:306 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:896 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:752 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:295 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:885 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:753 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:296 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:886 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:754 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:297 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:887 msgid "WPA2 Pers. (TKIP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:761 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:894 msgid "WPA2/WPA3 Ent." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:268 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:304 msgid "WPA2/WPA3 Ent. (CCMP)" 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:751 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:294 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:884 msgid "WPA2/WPA3 Pers. (CCMP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:760 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:893 msgid "WPA3 Ent." 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:303 msgid "WPA3 Ent. (CCMP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:768 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:901 msgid "WPA3 OWE (CCMP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:257 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:750 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:293 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:883 msgid "WPA3 Pers. (SAE)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:581 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:715 msgid "Wireless Scan" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:208 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:238 msgid "Wireless Settings" msgstr "" @@ -764,21 +792,37 @@ msgstr "" msgid "Wireless Stations" msgstr "" -#: 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:798 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:406 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:931 msgid "auth=MSCHAPV2" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:369 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:797 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:405 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:930 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:769 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:312 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:902 msgid "none" msgstr "" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:306 +msgid "use both radios, normal sort order (radio0 radio1)" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:307 +msgid "use both radios, reverse sort order (radio1 radio0)" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:304 +msgid "use the first radio only (radio0)" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:305 +msgid "use the second radio only (radio1)" +msgstr "" + #~ msgid "Advanced" #~ msgstr "προχωρημένο" diff --git a/applications/luci-app-travelmate/po/en/travelmate.po b/applications/luci-app-travelmate/po/en/travelmate.po index 08ba99e921..c7be250e2c 100644 --- a/applications/luci-app-travelmate/po/en/travelmate.po +++ b/applications/luci-app-travelmate/po/en/travelmate.po @@ -4,101 +4,108 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:73 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:75 msgid "-- AP Selection --" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:261 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:265 msgid "AP QR-Codes..." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:823 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:956 msgid "Add Uplink %q" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:679 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:813 msgid "Add Uplink..." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:280 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:291 msgid "Additional Settings" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:321 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:340 msgid "" "Additional trigger delay in seconds before travelmate processing begins." msgstr "" -#: 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:787 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:396 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:920 msgid "Authentication" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:484 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:489 +msgid "Auto Added Open Uplink" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:568 msgid "Auto Login Script" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:310 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:327 msgid "AutoAdd Open Uplinks" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:467 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:551 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 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:319 msgid "ProActive Uplink Switch" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:306 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:319 msgid "" "Proactively scan and switch to a higher prioritized uplink, despite of an " "already existing connection." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:422 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:418 msgid "Profile used by 'msmtp' for travelmate notification E-Mails." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:114 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:116 msgid "QR-Code Overview" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:293 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:303 msgid "Radio Selection" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:314 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:323 msgid "Randomize MAC Addresses" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:407 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:403 msgid "Receiver address for travelmate notification E-Mails." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:115 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:264 +msgid "Remove" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:262 +msgid "Remove this network" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:117 msgid "" "Render the QR-Code of the selected Access Point to comfortably transfer the " "WLAN credentials to your mobile devices." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:592 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:726 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')." +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:272 +msgid "Restart Interface" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:326 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:303 +msgid "" +"Restrict travelmate to a single radio or change the overall scanning order." +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:345 msgid "Retry limit to connect to an uplink." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:241 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:242 msgid "Run Flags" msgstr "" -#: 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:729 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:284 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:445 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:707 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:862 msgid "SSID" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:725 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:858 msgid "SSID (hidden)" msgstr "" -#: 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:834 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:63 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:967 msgid "Save" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:346 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:365 msgid "Scan Buffer Size" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:557 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:691 msgid "Scan on" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:523 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:607 msgid "Script Arguments" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:412 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:408 msgid "Sender address for travelmate notification E-Mails." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:404 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:400 msgid "Sends notification E-Mails after every succesful uplink connect." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:368 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:388 msgid "Service Priority" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:277 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:288 msgid "Settings" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:331 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:350 msgid "Signal Quality Threshold" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:524 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:608 msgid "" "Space separated list of additional arguments passed to the Auto Login " "Script, i.e. username and password" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:579 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:713 msgid "Starting wireless scan on '" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:229 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:226 msgid "Station ID" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:235 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:234 msgid "Station Interface" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:232 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:230 msgid "Station MAC" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:226 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:222 msgid "Status / Version" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:571 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:705 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:781 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:388 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:914 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:782 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:389 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:915 msgid "TTLS" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:105 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:107 msgid "The QR-Code could not be generated!" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:31 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:33 msgid "The firewall zone name" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:36 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:38 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 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:660 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 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:370 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 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:388 msgid "The selected priority will be used for travelmate processes." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:359 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:379 msgid "" "The selected user agent will be used for connectivity- and captive portal " "checks." @@ -583,22 +601,28 @@ msgstr "" msgid "The syslog output, pre-filtered for travelmate related messages only." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:56 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:58 msgid "The uplink interface has been updated." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:26 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:28 msgid "The uplink interface name" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:20 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:490 +msgid "" +"This option is selected by default if this uplink was added automatically " +"and counts as 'Open Uplink'." +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:23 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 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:413 msgid "Topic for travelmate notification E-Mails." msgstr "" @@ -606,49 +630,53 @@ msgstr "" msgid "Travelmate" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:209 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:239 msgid "Travelmate Settings" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:301 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:314 msgid "Treat missing internet availability as an error." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:321 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:340 msgid "Trigger Delay" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:359 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:507 +msgid "Use the specified MAC address for this uplink." +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:379 msgid "User Agent" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:380 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:628 msgid "VPN Hook" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:389 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:660 msgid "VPN Interface" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:383 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:645 msgid "VPN Service" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:281 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:240 msgid "VPN Settings" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:290 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:300 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:764 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:307 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:897 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:765 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:308 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:898 msgid "WPA Ent. (TKIP)" msgstr "" @@ -656,101 +684,101 @@ msgstr "" 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:755 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:298 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:888 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:756 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:299 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:889 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:757 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:300 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:890 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:766 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:309 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:899 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:767 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:310 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:900 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:758 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:301 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:891 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:759 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:302 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:892 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:762 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:305 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:895 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:763 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:306 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:896 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:752 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:295 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:885 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:753 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:296 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:886 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:754 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:297 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:887 msgid "WPA2 Pers. (TKIP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:761 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:894 msgid "WPA2/WPA3 Ent." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:268 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:304 msgid "WPA2/WPA3 Ent. (CCMP)" 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:751 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:294 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:884 msgid "WPA2/WPA3 Pers. (CCMP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:760 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:893 msgid "WPA3 Ent." 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:303 msgid "WPA3 Ent. (CCMP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:768 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:901 msgid "WPA3 OWE (CCMP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:257 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:750 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:293 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:883 msgid "WPA3 Pers. (SAE)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:581 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:715 msgid "Wireless Scan" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:208 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:238 msgid "Wireless Settings" msgstr "" @@ -758,17 +786,33 @@ msgstr "" msgid "Wireless Stations" msgstr "" -#: 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:798 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:406 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:931 msgid "auth=MSCHAPV2" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:369 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:797 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:405 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:930 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:769 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:312 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:902 msgid "none" msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:306 +msgid "use both radios, normal sort order (radio0 radio1)" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:307 +msgid "use both radios, reverse sort order (radio1 radio0)" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:304 +msgid "use the first radio only (radio0)" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:305 +msgid "use the second radio only (radio1)" +msgstr "" diff --git a/applications/luci-app-travelmate/po/es/travelmate.po b/applications/luci-app-travelmate/po/es/travelmate.po index bfa34d2894..7b20c70dc0 100644 --- a/applications/luci-app-travelmate/po/es/travelmate.po +++ b/applications/luci-app-travelmate/po/es/travelmate.po @@ -13,47 +13,51 @@ msgstr "" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Generator: Weblate 4.7.2-dev\n" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:73 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:75 msgid "-- AP Selection --" msgstr "-- Selección de AP --" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:261 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:265 msgid "AP QR-Codes..." msgstr "Códigos QR del AP..." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:823 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:956 msgid "Add Uplink %q" msgstr "Agregar enlace ascendente %q" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:679 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:813 msgid "Add Uplink..." msgstr "Agregar enlace ascendente..." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:280 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:291 msgid "Additional Settings" msgstr "Configuración adicional" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:321 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:340 msgid "" "Additional trigger delay in seconds before travelmate processing begins." msgstr "" "Demora adicional del disparador en segundos antes de que comience el " "procesamiento de travelmate." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:360 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:787 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:396 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:920 msgid "Authentication" msgstr "Autenticación" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:484 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:489 +msgid "Auto Added Open Uplink" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:568 msgid "Auto Login Script" msgstr "Script de inicio de sesión automático" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:310 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:327 msgid "AutoAdd Open Uplinks" msgstr "Auto agregar enlaces ascendentes abiertos" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:467 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:551 msgid "" "Automatically (re-)enable the uplink after n minutes, e.g. after " "failed login attempts.
" @@ -441,19 +458,11 @@ msgstr "" "Tenga en cuenta: las notificaciones por correo electrónico requieren la " "configuración por separado del paquete mstmp.
" -#: 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 "" -"Tenga en cuenta: las conexiones VPN requieren la configuración por separado " -"del paquete Wireguard u OpenVPN.
" - -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:306 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:319 msgid "ProActive Uplink Switch" msgstr "Interruptor de enlace proactivo" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:306 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:319 msgid "" "Proactively scan and switch to a higher prioritized uplink, despite of an " "already existing connection." @@ -461,31 +470,39 @@ msgstr "" "Escanee de forma proactiva y cambie a un enlace de mayor prioridad, a pesar " "de una conexión ya existente." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:422 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:418 msgid "Profile used by 'msmtp' for travelmate notification E-Mails." msgstr "" "Perfil utilizado por 'msmtp' para los correos electrónicos de notificación " "de travelmate." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:114 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:116 msgid "QR-Code Overview" msgstr "Descripción general del código QR" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:293 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:303 msgid "Radio Selection" msgstr "Selección de radio" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:314 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:323 msgid "Randomize MAC Addresses" msgstr "Aleatorizar direcciones MAC" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:407 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:403 msgid "Receiver address for travelmate notification E-Mails." msgstr "" "Dirección del destinatario de los correos electrónicos de notificación de " "travelmate." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:115 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:264 +msgid "Remove" +msgstr "Eliminar" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:262 +msgid "Remove this network" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:117 msgid "" "Render the QR-Code of the selected Access Point to comfortably transfer the " "WLAN credentials to your mobile devices." @@ -493,79 +510,80 @@ msgstr "" "Genere el código QR del AP seleccionado para transferir cómodamente las " "credenciales WLAN a sus dispositivos móviles." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:592 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:726 msgid "Repeat Scan" msgstr "Repetir escaneo" -#: 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')." +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:272 +msgid "Restart Interface" msgstr "" -"Restrinja Travelmate a una sola radio o cambie el orden de exploración " -"general (p.e., 'radio1 radio0')." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:326 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:303 +msgid "" +"Restrict travelmate to a single radio or change the overall scanning order." +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:345 msgid "Retry limit to connect to an uplink." msgstr "Vuelva a intentar el límite para conectarse a un enlace ." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:241 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:242 msgid "Run Flags" msgstr "Ejecutar banderas" -#: 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:729 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:284 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:445 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:707 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:862 msgid "SSID" msgstr "SSID" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:725 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:858 msgid "SSID (hidden)" msgstr "SSID (oculto)" -#: 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:834 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:63 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:967 msgid "Save" msgstr "Guardar" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:346 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:365 msgid "Scan Buffer Size" msgstr "Tamaño del búfer de escaneo" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:557 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:691 msgid "Scan on" msgstr "Escanear en" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:523 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:607 msgid "Script Arguments" msgstr "Argumentos de script" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:412 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:408 msgid "Sender address for travelmate notification E-Mails." msgstr "" "Dirección del remitente para los correos electrónicos de notificación de " "Travelmate." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:404 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:400 msgid "Sends notification E-Mails after every succesful uplink connect." msgstr "" "Envía notificaciones por correo electrónico después de cada conexión de " "enlace ascendente exitosa." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:368 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:388 msgid "Service Priority" msgstr "Prioridad de servicio" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:277 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:288 msgid "Settings" msgstr "Configuraciones" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:331 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:350 msgid "Signal Quality Threshold" msgstr "Umbral de calidad de señal" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:524 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:608 msgid "" "Space separated list of additional arguments passed to the Auto Login " "Script, i.e. username and password" @@ -574,73 +592,69 @@ msgstr "" "de comandos de inicio de sesión automático, es decir, nombre de usuario y " "contraseña" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:579 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:713 msgid "Starting wireless scan on '" msgstr "Iniciando escaneo inalámbrico en '" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:229 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:226 msgid "Station ID" msgstr "ID de estación" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:235 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:234 msgid "Station Interface" msgstr "Interfaz de estación" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:232 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:230 msgid "Station MAC" msgstr "MAC de la estación" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:226 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:222 msgid "Status / Version" msgstr "Estado/Versión" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:571 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:705 msgid "Strength" msgstr "Intensidad" -#: 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:781 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:388 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:914 msgid "TLS" msgstr "TLS" -#: 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:782 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:389 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:915 msgid "TTLS" msgstr "TTLS" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:105 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:107 msgid "The QR-Code could not be generated!" msgstr "¡No se pudo generar el código QR!" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:31 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:33 msgid "The firewall zone name" msgstr "El nombre de la zona de firewall" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:36 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:38 msgid "The interface metric" msgstr "La métrica de la interfaz" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:395 -msgid "The lan network device, e.g. 'br-lan'." -msgstr "El dispositivo de red lan, p.ej. 'br-lan'." - -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:389 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:660 msgid "The logical vpn network interface, e.g. 'wg0' or 'tun0'." msgstr "La interfaz de red lógica vpn, p.ej. 'wg0' o 'tun0'." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:351 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:370 msgid "" "The selected URL will be used for connectivity- and captive portal checks." msgstr "" "La URL seleccionada se utilizará para las comprobaciones de conectividad y " "del portal cautivo." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:368 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:388 msgid "The selected priority will be used for travelmate processes." msgstr "" "La prioridad seleccionada se utilizará para los procesos de Travelmate." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:359 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:379 msgid "" "The selected user agent will be used for connectivity- and captive portal " "checks." @@ -654,15 +668,21 @@ msgstr "" "La salida de syslog, prefiltrada solo para mensajes relacionados con " "travelmate." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:56 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:58 msgid "The uplink interface has been updated." msgstr "La interfaz de enlace ascendente se ha actualizado." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:26 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:28 msgid "The uplink interface name" msgstr "El nombre de la interfaz de enlace ascendente" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:20 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:490 +msgid "" +"This option is selected by default if this uplink was added automatically " +"and counts as 'Open Uplink'." +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:23 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 " @@ -672,7 +692,7 @@ msgstr "" "una vez. Este asistente crea una interfaz de red de alias IPv4 e IPv6 con " "todas las configuraciones de red y cortafuegos requeridas." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:417 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:413 msgid "Topic for travelmate notification E-Mails." msgstr "Tema para correos electrónicos de notificación de compañeros de viaje." @@ -680,49 +700,53 @@ msgstr "Tema para correos electrónicos de notificación de compañeros de viaje msgid "Travelmate" msgstr "Travelmate" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:209 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:239 msgid "Travelmate Settings" msgstr "Configuración de Travelmate" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:301 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:314 msgid "Treat missing internet availability as an error." msgstr "Trate la falta de disponibilidad de Internet como un error." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:321 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:340 msgid "Trigger Delay" msgstr "Retraso de disparo" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:359 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:507 +msgid "Use the specified MAC address for this uplink." +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:379 msgid "User Agent" msgstr "Agente de usuario" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:380 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:628 msgid "VPN Hook" msgstr "Gancho VPN" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:389 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:660 msgid "VPN Interface" msgstr "Interfaz VPN" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:383 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:645 msgid "VPN Service" msgstr "Servicio VPN" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:281 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:240 msgid "VPN Settings" msgstr "Configuración de VPN" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:290 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:300 msgid "Verbose Debug Logging" msgstr "Registro de depuración detallado" -#: 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:764 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:307 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:897 msgid "WPA Ent. (CCMP)" msgstr "Encriptación WPA (CCMP)" -#: 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:765 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:308 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:898 msgid "WPA Ent. (TKIP)" msgstr "Encriptación WPA (TKIP)" @@ -730,101 +754,101 @@ msgstr "Encriptación WPA (TKIP)" msgid "WPA Flags" msgstr "Banderas WPA" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:262 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:755 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:298 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:888 msgid "WPA Pers." msgstr "WPA personal" -#: 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:756 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:299 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:889 msgid "WPA Pers. (CCMP)" msgstr "WPA personal (CCMP)" -#: 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:757 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:300 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:890 msgid "WPA Pers. (TKIP)" msgstr "WPA personal (TKIP)" -#: 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:766 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:309 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:899 msgid "WPA/WPA2 Ent. (CCMP)" msgstr "Encriptación WPA/WPA2 (CCMP)" -#: 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:767 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:310 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:900 msgid "WPA/WPA2 Ent. (TKIP)" msgstr "Encriptación WPA/WPA2 (TKIP)" -#: 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:758 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:301 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:891 msgid "WPA/WPA2 Pers. (CCMP)" msgstr "Encriptación WPA/WPA2 (CCMP)" -#: 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:759 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:302 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:892 msgid "WPA/WPA2 Pers. (TKIP)" msgstr "WPA/WPA2 personal (TKIP)" -#: 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:762 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:305 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:895 msgid "WPA2 Ent. (CCMP)" msgstr "Encriptación WPA2 (CCMP)" -#: 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:763 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:306 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:896 msgid "WPA2 Ent. (TKIP)" msgstr "Encriptación WPA2 (TKIP)" -#: 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:752 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:295 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:885 msgid "WPA2 Pers." msgstr "WPA2 personal" -#: 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:753 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:296 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:886 msgid "WPA2 Pers. (CCMP)" msgstr "WPA2 personal (CCMP)" -#: 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:754 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:297 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:887 msgid "WPA2 Pers. (TKIP)" msgstr "WPA2 personal (TKIP)" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:761 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:894 msgid "WPA2/WPA3 Ent." msgstr "Encriptación WPA2/WPA3" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:268 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:304 msgid "WPA2/WPA3 Ent. (CCMP)" msgstr "WPA2/WPA3 Ent. (CCMP)" -#: 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:751 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:294 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:884 msgid "WPA2/WPA3 Pers. (CCMP)" msgstr "WPA2/WPA3 personal (CCMP)" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:760 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:893 msgid "WPA3 Ent." msgstr "Encriptación WPA3" -#: 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:303 msgid "WPA3 Ent. (CCMP)" msgstr "WPA3 Ent. (CCMP)" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:768 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:901 msgid "WPA3 OWE (CCMP)" msgstr "WPA3 OWE (CCMP)" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:257 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:750 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:293 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:883 msgid "WPA3 Pers. (SAE)" msgstr "WPA3 personal (SAE)" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:581 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:715 msgid "Wireless Scan" msgstr "Escanear red Wi-Fi" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:208 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:238 msgid "Wireless Settings" msgstr "Configuración Wi-Fi" @@ -832,21 +856,67 @@ msgstr "Configuración Wi-Fi" msgid "Wireless Stations" msgstr "Estaciones Wi-Fi" -#: 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:798 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:406 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:931 msgid "auth=MSCHAPV2" msgstr "auth=MSCHAPV2" -#: 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:797 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:405 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:930 msgid "auth=PAP" msgstr "auth=PAP" -#: 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:769 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:312 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:902 msgid "none" msgstr "ninguno" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:306 +msgid "use both radios, normal sort order (radio0 radio1)" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:307 +msgid "use both radios, reverse sort order (radio1 radio0)" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:304 +msgid "use the first radio only (radio0)" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:305 +msgid "use the second radio only (radio1)" +msgstr "" + +#~ msgid "Automatically handle VPN (re-) connections." +#~ msgstr "Maneja automáticamente las (rec-) conexiones VPN." + +#~ msgid "Del" +#~ msgstr "Elim." + +#~ msgid "Delete this network" +#~ msgstr "Eliminar esta red" + +#~ msgid "LAN Device" +#~ msgstr "Dispositivo LAN" + +#~ msgid "" +#~ "Please note: VPN connections require the separate setup of the " +#~ "Wireguard or OpenVPN package.
" +#~ msgstr "" +#~ "Tenga en cuenta: las conexiones VPN requieren la configuración por " +#~ "separado del paquete Wireguard u OpenVPN.
" +#~ "
" + +#~ msgid "" +#~ "Restrict travelmate to a single radio or change the overall scanning " +#~ "order (e.g. 'radio1 radio0')." +#~ msgstr "" +#~ "Restrinja Travelmate a una sola radio o cambie el orden de exploración " +#~ "general (p.e., 'radio1 radio0')." + +#~ msgid "The lan network device, e.g. 'br-lan'." +#~ msgstr "El dispositivo de red lan, p.ej. 'br-lan'." + #~ msgid "" #~ "Configuration of the travelmate package to to enable travel router " #~ "functionality. For further information 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 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:319 msgid "ProActive Uplink Switch" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:306 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:319 msgid "" "Proactively scan and switch to a higher prioritized uplink, despite of an " "already existing connection." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:422 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:418 msgid "Profile used by 'msmtp' for travelmate notification E-Mails." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:114 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:116 msgid "QR-Code Overview" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:293 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:303 msgid "Radio Selection" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:314 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:323 msgid "Randomize MAC Addresses" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:407 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:403 msgid "Receiver address for travelmate notification E-Mails." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:115 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:264 +msgid "Remove" +msgstr "Poista" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:262 +msgid "Remove this network" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:117 msgid "" "Render the QR-Code of the selected Access Point to comfortably transfer the " "WLAN credentials to your mobile devices." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:592 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:726 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')." +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:272 +msgid "Restart Interface" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:326 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:303 +msgid "" +"Restrict travelmate to a single radio or change the overall scanning order." +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:345 msgid "Retry limit to connect to an uplink." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:241 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:242 msgid "Run Flags" msgstr "" -#: 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:729 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:284 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:445 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:707 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:862 msgid "SSID" msgstr "SSID" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:725 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:858 msgid "SSID (hidden)" msgstr "" -#: 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:834 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:63 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:967 msgid "Save" msgstr "Tallenna" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:346 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:365 msgid "Scan Buffer Size" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:557 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:691 msgid "Scan on" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:523 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:607 msgid "Script Arguments" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:412 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:408 msgid "Sender address for travelmate notification E-Mails." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:404 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:400 msgid "Sends notification E-Mails after every succesful uplink connect." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:368 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:388 msgid "Service Priority" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:277 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:288 msgid "Settings" msgstr "Asetukset" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:331 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:350 msgid "Signal Quality Threshold" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:524 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:608 msgid "" "Space separated list of additional arguments passed to the Auto Login " "Script, i.e. username and password" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:579 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:713 msgid "Starting wireless scan on '" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:229 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:226 msgid "Station ID" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:235 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:234 msgid "Station Interface" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:232 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:230 msgid "Station MAC" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:226 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:222 msgid "Status / Version" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:571 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:705 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:781 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:388 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:914 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:782 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:389 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:915 msgid "TTLS" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:105 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:107 msgid "The QR-Code could not be generated!" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:31 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:33 msgid "The firewall zone name" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:36 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:38 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 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:660 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 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:370 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 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:388 msgid "The selected priority will be used for travelmate processes." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:359 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:379 msgid "" "The selected user agent will be used for connectivity- and captive portal " "checks." @@ -589,22 +607,28 @@ msgstr "" msgid "The syslog output, pre-filtered for travelmate related messages only." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:56 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:58 msgid "The uplink interface has been updated." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:26 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:28 msgid "The uplink interface name" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:20 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:490 +msgid "" +"This option is selected by default if this uplink was added automatically " +"and counts as 'Open Uplink'." +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:23 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 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:413 msgid "Topic for travelmate notification E-Mails." msgstr "" @@ -612,49 +636,53 @@ msgstr "" msgid "Travelmate" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:209 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:239 msgid "Travelmate Settings" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:301 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:314 msgid "Treat missing internet availability as an error." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:321 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:340 msgid "Trigger Delay" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:359 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:507 +msgid "Use the specified MAC address for this uplink." +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:379 msgid "User Agent" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:380 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:628 msgid "VPN Hook" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:389 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:660 msgid "VPN Interface" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:383 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:645 msgid "VPN Service" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:281 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:240 msgid "VPN Settings" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:290 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:300 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:764 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:307 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:897 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:765 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:308 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:898 msgid "WPA Ent. (TKIP)" msgstr "" @@ -662,101 +690,101 @@ msgstr "" 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:755 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:298 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:888 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:756 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:299 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:889 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:757 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:300 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:890 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:766 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:309 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:899 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:767 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:310 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:900 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:758 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:301 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:891 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:759 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:302 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:892 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:762 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:305 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:895 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:763 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:306 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:896 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:752 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:295 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:885 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:753 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:296 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:886 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:754 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:297 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:887 msgid "WPA2 Pers. (TKIP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:761 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:894 msgid "WPA2/WPA3 Ent." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:268 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:304 msgid "WPA2/WPA3 Ent. (CCMP)" 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:751 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:294 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:884 msgid "WPA2/WPA3 Pers. (CCMP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:760 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:893 msgid "WPA3 Ent." 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:303 msgid "WPA3 Ent. (CCMP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:768 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:901 msgid "WPA3 OWE (CCMP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:257 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:750 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:293 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:883 msgid "WPA3 Pers. (SAE)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:581 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:715 msgid "Wireless Scan" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:208 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:238 msgid "Wireless Settings" msgstr "" @@ -764,21 +792,40 @@ msgstr "" msgid "Wireless Stations" msgstr "" -#: 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:798 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:406 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:931 msgid "auth=MSCHAPV2" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:369 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:797 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:405 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:930 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:769 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:312 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:902 msgid "none" msgstr "ei mitään" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:306 +msgid "use both radios, normal sort order (radio0 radio1)" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:307 +msgid "use both radios, reverse sort order (radio1 radio0)" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:304 +msgid "use the first radio only (radio0)" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:305 +msgid "use the second radio only (radio1)" +msgstr "" + +#~ msgid "Delete this network" +#~ msgstr "Poista tämä verkko" + #~ msgid "Action" #~ msgstr "Toiminta" @@ -815,9 +862,6 @@ msgstr "ei mitään" #~ msgid "Move up" #~ msgstr "Siirrä ylös" -#~ msgid "Remove" -#~ msgstr "Poista" - #~ msgid "Restart" #~ msgstr "Käynnistä uudelleen" diff --git a/applications/luci-app-travelmate/po/fr/travelmate.po b/applications/luci-app-travelmate/po/fr/travelmate.po index e10781025a..b57e457bfc 100644 --- a/applications/luci-app-travelmate/po/fr/travelmate.po +++ b/applications/luci-app-travelmate/po/fr/travelmate.po @@ -10,101 +10,108 @@ msgstr "" "Plural-Forms: nplurals=2; plural=n > 1;\n" "X-Generator: Weblate 4.7-dev\n" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:73 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:75 msgid "-- AP Selection --" msgstr "-- Sélection AP --" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:261 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:265 msgid "AP QR-Codes..." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:823 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:956 msgid "Add Uplink %q" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:679 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:813 msgid "Add Uplink..." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:280 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:291 msgid "Additional Settings" msgstr "Paramètres supplémentaires" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:321 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:340 msgid "" "Additional trigger delay in seconds before travelmate processing begins." msgstr "" -#: 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:787 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:396 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:920 msgid "Authentication" msgstr "Authentification" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:484 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:489 +msgid "Auto Added Open Uplink" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:568 msgid "Auto Login Script" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:310 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:327 msgid "AutoAdd Open Uplinks" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:467 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:551 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 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:319 msgid "ProActive Uplink Switch" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:306 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:319 msgid "" "Proactively scan and switch to a higher prioritized uplink, despite of an " "already existing connection." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:422 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:418 msgid "Profile used by 'msmtp' for travelmate notification E-Mails." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:114 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:116 msgid "QR-Code Overview" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:293 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:303 msgid "Radio Selection" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:314 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:323 msgid "Randomize MAC Addresses" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:407 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:403 msgid "Receiver address for travelmate notification E-Mails." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:115 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:264 +msgid "Remove" +msgstr "Désinstaller" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:262 +msgid "Remove this network" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:117 msgid "" "Render the QR-Code of the selected Access Point to comfortably transfer the " "WLAN credentials to your mobile devices." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:592 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:726 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')." +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:272 +msgid "Restart Interface" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:326 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:303 +msgid "" +"Restrict travelmate to a single radio or change the overall scanning order." +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:345 msgid "Retry limit to connect to an uplink." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:241 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:242 msgid "Run Flags" msgstr "Drapeaux d'exécution" -#: 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:729 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:284 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:445 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:707 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:862 msgid "SSID" msgstr "SSID" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:725 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:858 msgid "SSID (hidden)" msgstr "" -#: 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:834 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:63 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:967 msgid "Save" msgstr "Enregistrer" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:346 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:365 msgid "Scan Buffer Size" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:557 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:691 msgid "Scan on" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:523 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:607 msgid "Script Arguments" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:412 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:408 msgid "Sender address for travelmate notification E-Mails." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:404 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:400 msgid "Sends notification E-Mails after every succesful uplink connect." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:368 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:388 msgid "Service Priority" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:277 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:288 msgid "Settings" msgstr "Paramètres" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:331 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:350 msgid "Signal Quality Threshold" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:524 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:608 msgid "" "Space separated list of additional arguments passed to the Auto Login " "Script, i.e. username and password" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:579 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:713 msgid "Starting wireless scan on '" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:229 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:226 msgid "Station ID" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:235 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:234 msgid "Station Interface" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:232 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:230 msgid "Station MAC" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:226 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:222 msgid "Status / Version" msgstr "Statut / Version" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:571 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:705 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:781 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:388 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:914 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:782 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:389 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:915 msgid "TTLS" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:105 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:107 msgid "The QR-Code could not be generated!" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:31 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:33 msgid "The firewall zone name" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:36 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:38 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 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:660 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 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:370 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 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:388 msgid "The selected priority will be used for travelmate processes." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:359 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:379 msgid "" "The selected user agent will be used for connectivity- and captive portal " "checks." @@ -591,22 +609,28 @@ msgstr "" msgid "The syslog output, pre-filtered for travelmate related messages only." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:56 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:58 msgid "The uplink interface has been updated." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:26 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:28 msgid "The uplink interface name" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:20 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:490 +msgid "" +"This option is selected by default if this uplink was added automatically " +"and counts as 'Open Uplink'." +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:23 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 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:413 msgid "Topic for travelmate notification E-Mails." msgstr "" @@ -614,49 +638,53 @@ msgstr "" msgid "Travelmate" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:209 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:239 msgid "Travelmate Settings" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:301 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:314 msgid "Treat missing internet availability as an error." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:321 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:340 msgid "Trigger Delay" msgstr "Délai de déclenchement" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:359 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:507 +msgid "Use the specified MAC address for this uplink." +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:379 msgid "User Agent" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:380 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:628 msgid "VPN Hook" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:389 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:660 msgid "VPN Interface" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:383 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:645 msgid "VPN Service" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:281 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:240 msgid "VPN Settings" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:290 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:300 msgid "Verbose Debug Logging" msgstr "Logs en mode verbeux" -#: 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:764 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:307 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:897 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:765 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:308 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:898 msgid "WPA Ent. (TKIP)" msgstr "" @@ -664,101 +692,101 @@ msgstr "" 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:755 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:298 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:888 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:756 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:299 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:889 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:757 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:300 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:890 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:766 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:309 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:899 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:767 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:310 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:900 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:758 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:301 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:891 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:759 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:302 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:892 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:762 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:305 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:895 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:763 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:306 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:896 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:752 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:295 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:885 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:753 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:296 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:886 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:754 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:297 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:887 msgid "WPA2 Pers. (TKIP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:761 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:894 msgid "WPA2/WPA3 Ent." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:268 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:304 msgid "WPA2/WPA3 Ent. (CCMP)" 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:751 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:294 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:884 msgid "WPA2/WPA3 Pers. (CCMP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:760 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:893 msgid "WPA3 Ent." 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:303 msgid "WPA3 Ent. (CCMP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:768 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:901 msgid "WPA3 OWE (CCMP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:257 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:750 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:293 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:883 msgid "WPA3 Pers. (SAE)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:581 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:715 msgid "Wireless Scan" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:208 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:238 msgid "Wireless Settings" msgstr "" @@ -766,21 +794,40 @@ msgstr "" msgid "Wireless Stations" msgstr "" -#: 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:798 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:406 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:931 msgid "auth=MSCHAPV2" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:369 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:797 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:405 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:930 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:769 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:312 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:902 msgid "none" msgstr "aucun" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:306 +msgid "use both radios, normal sort order (radio0 radio1)" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:307 +msgid "use both radios, reverse sort order (radio1 radio0)" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:304 +msgid "use the first radio only (radio0)" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:305 +msgid "use the second radio only (radio1)" +msgstr "" + +#~ msgid "Delete this network" +#~ msgstr "Supprimer ce réseau" + #~ msgid "Action" #~ msgstr "Action" @@ -831,9 +878,6 @@ msgstr "aucun" #~ "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" diff --git a/applications/luci-app-travelmate/po/he/travelmate.po b/applications/luci-app-travelmate/po/he/travelmate.po index 299c618f10..0cf9918285 100644 --- a/applications/luci-app-travelmate/po/he/travelmate.po +++ b/applications/luci-app-travelmate/po/he/travelmate.po @@ -11,101 +11,108 @@ msgstr "" "n % 10 == 0) ? 2 : 3));\n" "X-Generator: Weblate 4.5-dev\n" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:73 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:75 msgid "-- AP Selection --" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:261 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:265 msgid "AP QR-Codes..." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:823 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:956 msgid "Add Uplink %q" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:679 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:813 msgid "Add Uplink..." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:280 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:291 msgid "Additional Settings" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:321 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:340 msgid "" "Additional trigger delay in seconds before travelmate processing begins." msgstr "" -#: 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:787 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:396 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:920 msgid "Authentication" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:484 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:489 +msgid "Auto Added Open Uplink" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:568 msgid "Auto Login Script" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:310 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:327 msgid "AutoAdd Open Uplinks" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:467 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:551 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 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:319 msgid "ProActive Uplink Switch" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:306 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:319 msgid "" "Proactively scan and switch to a higher prioritized uplink, despite of an " "already existing connection." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:422 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:418 msgid "Profile used by 'msmtp' for travelmate notification E-Mails." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:114 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:116 msgid "QR-Code Overview" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:293 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:303 msgid "Radio Selection" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:314 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:323 msgid "Randomize MAC Addresses" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:407 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:403 msgid "Receiver address for travelmate notification E-Mails." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:115 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:264 +msgid "Remove" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:262 +msgid "Remove this network" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:117 msgid "" "Render the QR-Code of the selected Access Point to comfortably transfer the " "WLAN credentials to your mobile devices." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:592 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:726 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')." +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:272 +msgid "Restart Interface" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:326 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:303 +msgid "" +"Restrict travelmate to a single radio or change the overall scanning order." +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:345 msgid "Retry limit to connect to an uplink." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:241 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:242 msgid "Run Flags" msgstr "" -#: 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:729 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:284 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:445 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:707 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:862 msgid "SSID" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:725 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:858 msgid "SSID (hidden)" msgstr "" -#: 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:834 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:63 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:967 msgid "Save" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:346 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:365 msgid "Scan Buffer Size" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:557 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:691 msgid "Scan on" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:523 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:607 msgid "Script Arguments" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:412 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:408 msgid "Sender address for travelmate notification E-Mails." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:404 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:400 msgid "Sends notification E-Mails after every succesful uplink connect." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:368 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:388 msgid "Service Priority" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:277 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:288 msgid "Settings" msgstr "הגדרות" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:331 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:350 msgid "Signal Quality Threshold" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:524 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:608 msgid "" "Space separated list of additional arguments passed to the Auto Login " "Script, i.e. username and password" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:579 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:713 msgid "Starting wireless scan on '" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:229 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:226 msgid "Station ID" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:235 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:234 msgid "Station Interface" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:232 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:230 msgid "Station MAC" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:226 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:222 msgid "Status / Version" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:571 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:705 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:781 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:388 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:914 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:782 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:389 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:915 msgid "TTLS" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:105 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:107 msgid "The QR-Code could not be generated!" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:31 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:33 msgid "The firewall zone name" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:36 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:38 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 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:660 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 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:370 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 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:388 msgid "The selected priority will be used for travelmate processes." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:359 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:379 msgid "" "The selected user agent will be used for connectivity- and captive portal " "checks." @@ -590,22 +608,28 @@ msgstr "" msgid "The syslog output, pre-filtered for travelmate related messages only." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:56 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:58 msgid "The uplink interface has been updated." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:26 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:28 msgid "The uplink interface name" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:20 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:490 +msgid "" +"This option is selected by default if this uplink was added automatically " +"and counts as 'Open Uplink'." +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:23 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 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:413 msgid "Topic for travelmate notification E-Mails." msgstr "" @@ -613,49 +637,53 @@ msgstr "" msgid "Travelmate" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:209 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:239 msgid "Travelmate Settings" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:301 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:314 msgid "Treat missing internet availability as an error." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:321 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:340 msgid "Trigger Delay" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:359 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:507 +msgid "Use the specified MAC address for this uplink." +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:379 msgid "User Agent" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:380 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:628 msgid "VPN Hook" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:389 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:660 msgid "VPN Interface" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:383 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:645 msgid "VPN Service" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:281 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:240 msgid "VPN Settings" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:290 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:300 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:764 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:307 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:897 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:765 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:308 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:898 msgid "WPA Ent. (TKIP)" msgstr "" @@ -663,101 +691,101 @@ msgstr "" 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:755 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:298 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:888 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:756 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:299 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:889 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:757 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:300 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:890 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:766 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:309 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:899 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:767 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:310 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:900 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:758 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:301 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:891 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:759 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:302 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:892 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:762 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:305 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:895 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:763 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:306 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:896 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:752 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:295 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:885 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:753 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:296 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:886 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:754 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:297 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:887 msgid "WPA2 Pers. (TKIP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:761 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:894 msgid "WPA2/WPA3 Ent." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:268 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:304 msgid "WPA2/WPA3 Ent. (CCMP)" 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:751 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:294 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:884 msgid "WPA2/WPA3 Pers. (CCMP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:760 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:893 msgid "WPA3 Ent." 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:303 msgid "WPA3 Ent. (CCMP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:768 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:901 msgid "WPA3 OWE (CCMP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:257 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:750 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:293 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:883 msgid "WPA3 Pers. (SAE)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:581 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:715 msgid "Wireless Scan" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:208 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:238 msgid "Wireless Settings" msgstr "" @@ -765,17 +793,33 @@ msgstr "" msgid "Wireless Stations" msgstr "" -#: 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:798 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:406 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:931 msgid "auth=MSCHAPV2" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:369 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:797 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:405 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:930 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:769 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:312 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:902 msgid "none" msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:306 +msgid "use both radios, normal sort order (radio0 radio1)" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:307 +msgid "use both radios, reverse sort order (radio1 radio0)" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:304 +msgid "use the first radio only (radio0)" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:305 +msgid "use the second radio only (radio1)" +msgstr "" diff --git a/applications/luci-app-travelmate/po/hi/travelmate.po b/applications/luci-app-travelmate/po/hi/travelmate.po index 3be6a5498b..669a74f201 100644 --- a/applications/luci-app-travelmate/po/hi/travelmate.po +++ b/applications/luci-app-travelmate/po/hi/travelmate.po @@ -10,101 +10,108 @@ msgstr "" "Plural-Forms: nplurals=2; plural=n > 1;\n" "X-Generator: Weblate 3.11-dev\n" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:73 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:75 msgid "-- AP Selection --" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:261 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:265 msgid "AP QR-Codes..." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:823 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:956 msgid "Add Uplink %q" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:679 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:813 msgid "Add Uplink..." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:280 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:291 msgid "Additional Settings" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:321 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:340 msgid "" "Additional trigger delay in seconds before travelmate processing begins." msgstr "" -#: 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:787 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:396 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:920 msgid "Authentication" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:484 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:489 +msgid "Auto Added Open Uplink" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:568 msgid "Auto Login Script" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:310 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:327 msgid "AutoAdd Open Uplinks" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:467 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:551 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 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:319 msgid "ProActive Uplink Switch" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:306 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:319 msgid "" "Proactively scan and switch to a higher prioritized uplink, despite of an " "already existing connection." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:422 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:418 msgid "Profile used by 'msmtp' for travelmate notification E-Mails." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:114 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:116 msgid "QR-Code Overview" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:293 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:303 msgid "Radio Selection" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:314 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:323 msgid "Randomize MAC Addresses" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:407 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:403 msgid "Receiver address for travelmate notification E-Mails." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:115 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:264 +msgid "Remove" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:262 +msgid "Remove this network" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:117 msgid "" "Render the QR-Code of the selected Access Point to comfortably transfer the " "WLAN credentials to your mobile devices." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:592 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:726 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')." +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:272 +msgid "Restart Interface" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:326 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:303 +msgid "" +"Restrict travelmate to a single radio or change the overall scanning order." +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:345 msgid "Retry limit to connect to an uplink." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:241 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:242 msgid "Run Flags" msgstr "" -#: 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:729 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:284 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:445 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:707 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:862 msgid "SSID" msgstr "SSID" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:725 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:858 msgid "SSID (hidden)" msgstr "" -#: 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:834 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:63 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:967 msgid "Save" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:346 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:365 msgid "Scan Buffer Size" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:557 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:691 msgid "Scan on" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:523 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:607 msgid "Script Arguments" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:412 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:408 msgid "Sender address for travelmate notification E-Mails." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:404 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:400 msgid "Sends notification E-Mails after every succesful uplink connect." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:368 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:388 msgid "Service Priority" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:277 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:288 msgid "Settings" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:331 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:350 msgid "Signal Quality Threshold" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:524 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:608 msgid "" "Space separated list of additional arguments passed to the Auto Login " "Script, i.e. username and password" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:579 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:713 msgid "Starting wireless scan on '" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:229 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:226 msgid "Station ID" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:235 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:234 msgid "Station Interface" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:232 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:230 msgid "Station MAC" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:226 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:222 msgid "Status / Version" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:571 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:705 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:781 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:388 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:914 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:782 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:389 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:915 msgid "TTLS" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:105 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:107 msgid "The QR-Code could not be generated!" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:31 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:33 msgid "The firewall zone name" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:36 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:38 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 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:660 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 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:370 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 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:388 msgid "The selected priority will be used for travelmate processes." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:359 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:379 msgid "" "The selected user agent will be used for connectivity- and captive portal " "checks." @@ -589,22 +607,28 @@ msgstr "" msgid "The syslog output, pre-filtered for travelmate related messages only." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:56 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:58 msgid "The uplink interface has been updated." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:26 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:28 msgid "The uplink interface name" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:20 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:490 +msgid "" +"This option is selected by default if this uplink was added automatically " +"and counts as 'Open Uplink'." +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:23 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 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:413 msgid "Topic for travelmate notification E-Mails." msgstr "" @@ -612,49 +636,53 @@ msgstr "" msgid "Travelmate" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:209 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:239 msgid "Travelmate Settings" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:301 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:314 msgid "Treat missing internet availability as an error." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:321 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:340 msgid "Trigger Delay" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:359 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:507 +msgid "Use the specified MAC address for this uplink." +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:379 msgid "User Agent" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:380 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:628 msgid "VPN Hook" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:389 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:660 msgid "VPN Interface" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:383 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:645 msgid "VPN Service" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:281 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:240 msgid "VPN Settings" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:290 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:300 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:764 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:307 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:897 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:765 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:308 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:898 msgid "WPA Ent. (TKIP)" msgstr "" @@ -662,101 +690,101 @@ msgstr "" 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:755 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:298 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:888 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:756 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:299 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:889 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:757 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:300 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:890 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:766 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:309 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:899 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:767 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:310 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:900 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:758 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:301 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:891 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:759 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:302 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:892 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:762 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:305 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:895 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:763 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:306 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:896 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:752 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:295 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:885 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:753 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:296 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:886 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:754 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:297 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:887 msgid "WPA2 Pers. (TKIP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:761 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:894 msgid "WPA2/WPA3 Ent." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:268 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:304 msgid "WPA2/WPA3 Ent. (CCMP)" 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:751 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:294 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:884 msgid "WPA2/WPA3 Pers. (CCMP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:760 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:893 msgid "WPA3 Ent." 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:303 msgid "WPA3 Ent. (CCMP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:768 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:901 msgid "WPA3 OWE (CCMP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:257 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:750 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:293 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:883 msgid "WPA3 Pers. (SAE)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:581 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:715 msgid "Wireless Scan" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:208 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:238 msgid "Wireless Settings" msgstr "" @@ -764,17 +792,33 @@ msgstr "" msgid "Wireless Stations" msgstr "" -#: 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:798 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:406 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:931 msgid "auth=MSCHAPV2" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:369 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:797 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:405 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:930 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:769 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:312 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:902 msgid "none" msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:306 +msgid "use both radios, normal sort order (radio0 radio1)" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:307 +msgid "use both radios, reverse sort order (radio1 radio0)" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:304 +msgid "use the first radio only (radio0)" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:305 +msgid "use the second radio only (radio1)" +msgstr "" diff --git a/applications/luci-app-travelmate/po/hu/travelmate.po b/applications/luci-app-travelmate/po/hu/travelmate.po index 346f082b0b..004484c0d6 100644 --- a/applications/luci-app-travelmate/po/hu/travelmate.po +++ b/applications/luci-app-travelmate/po/hu/travelmate.po @@ -10,101 +10,108 @@ msgstr "" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Generator: Weblate 4.7.2-dev\n" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:73 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:75 msgid "-- AP Selection --" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:261 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:265 msgid "AP QR-Codes..." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:823 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:956 msgid "Add Uplink %q" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:679 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:813 msgid "Add Uplink..." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:280 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:291 msgid "Additional Settings" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:321 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:340 msgid "" "Additional trigger delay in seconds before travelmate processing begins." msgstr "" -#: 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:787 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:396 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:920 msgid "Authentication" msgstr "Hitelesítés" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:484 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:489 +msgid "Auto Added Open Uplink" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:568 msgid "Auto Login Script" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:310 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:327 msgid "AutoAdd Open Uplinks" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:467 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:551 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 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:319 msgid "ProActive Uplink Switch" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:306 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:319 msgid "" "Proactively scan and switch to a higher prioritized uplink, despite of an " "already existing connection." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:422 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:418 msgid "Profile used by 'msmtp' for travelmate notification E-Mails." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:114 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:116 msgid "QR-Code Overview" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:293 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:303 msgid "Radio Selection" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:314 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:323 msgid "Randomize MAC Addresses" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:407 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:403 msgid "Receiver address for travelmate notification E-Mails." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:115 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:264 +msgid "Remove" +msgstr "Eltávolítás" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:262 +msgid "Remove this network" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:117 msgid "" "Render the QR-Code of the selected Access Point to comfortably transfer the " "WLAN credentials to your mobile devices." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:592 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:726 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')." +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:272 +msgid "Restart Interface" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:326 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:303 +msgid "" +"Restrict travelmate to a single radio or change the overall scanning order." +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:345 msgid "Retry limit to connect to an uplink." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:241 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:242 msgid "Run Flags" msgstr "" -#: 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:729 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:284 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:445 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:707 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:862 msgid "SSID" msgstr "SSID" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:725 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:858 msgid "SSID (hidden)" msgstr "" -#: 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:834 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:63 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:967 msgid "Save" msgstr "Mentés" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:346 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:365 msgid "Scan Buffer Size" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:557 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:691 msgid "Scan on" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:523 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:607 msgid "Script Arguments" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:412 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:408 msgid "Sender address for travelmate notification E-Mails." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:404 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:400 msgid "Sends notification E-Mails after every succesful uplink connect." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:368 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:388 msgid "Service Priority" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:277 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:288 msgid "Settings" msgstr "Beállítások" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:331 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:350 msgid "Signal Quality Threshold" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:524 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:608 msgid "" "Space separated list of additional arguments passed to the Auto Login " "Script, i.e. username and password" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:579 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:713 msgid "Starting wireless scan on '" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:229 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:226 msgid "Station ID" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:235 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:234 msgid "Station Interface" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:232 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:230 msgid "Station MAC" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:226 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:222 msgid "Status / Version" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:571 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:705 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:781 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:388 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:914 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:782 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:389 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:915 msgid "TTLS" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:105 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:107 msgid "The QR-Code could not be generated!" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:31 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:33 msgid "The firewall zone name" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:36 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:38 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 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:660 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 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:370 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 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:388 msgid "The selected priority will be used for travelmate processes." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:359 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:379 msgid "" "The selected user agent will be used for connectivity- and captive portal " "checks." @@ -589,22 +607,28 @@ msgstr "" msgid "The syslog output, pre-filtered for travelmate related messages only." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:56 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:58 msgid "The uplink interface has been updated." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:26 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:28 msgid "The uplink interface name" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:20 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:490 +msgid "" +"This option is selected by default if this uplink was added automatically " +"and counts as 'Open Uplink'." +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:23 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 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:413 msgid "Topic for travelmate notification E-Mails." msgstr "" @@ -612,49 +636,53 @@ msgstr "" msgid "Travelmate" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:209 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:239 msgid "Travelmate Settings" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:301 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:314 msgid "Treat missing internet availability as an error." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:321 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:340 msgid "Trigger Delay" msgstr "Aktiváló késleltetése" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:359 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:507 +msgid "Use the specified MAC address for this uplink." +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:379 msgid "User Agent" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:380 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:628 msgid "VPN Hook" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:389 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:660 msgid "VPN Interface" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:383 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:645 msgid "VPN Service" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:281 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:240 msgid "VPN Settings" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:290 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:300 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:764 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:307 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:897 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:765 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:308 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:898 msgid "WPA Ent. (TKIP)" msgstr "" @@ -662,101 +690,101 @@ msgstr "" 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:755 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:298 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:888 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:756 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:299 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:889 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:757 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:300 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:890 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:766 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:309 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:899 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:767 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:310 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:900 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:758 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:301 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:891 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:759 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:302 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:892 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:762 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:305 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:895 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:763 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:306 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:896 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:752 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:295 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:885 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:753 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:296 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:886 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:754 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:297 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:887 msgid "WPA2 Pers. (TKIP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:761 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:894 msgid "WPA2/WPA3 Ent." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:268 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:304 msgid "WPA2/WPA3 Ent. (CCMP)" 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:751 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:294 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:884 msgid "WPA2/WPA3 Pers. (CCMP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:760 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:893 msgid "WPA3 Ent." 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:303 msgid "WPA3 Ent. (CCMP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:768 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:901 msgid "WPA3 OWE (CCMP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:257 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:750 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:293 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:883 msgid "WPA3 Pers. (SAE)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:581 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:715 msgid "Wireless Scan" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:208 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:238 msgid "Wireless Settings" msgstr "" @@ -764,21 +792,37 @@ msgstr "" msgid "Wireless Stations" msgstr "" -#: 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:798 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:406 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:931 msgid "auth=MSCHAPV2" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:369 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:797 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:405 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:930 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:769 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:312 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:902 msgid "none" msgstr "" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:306 +msgid "use both radios, normal sort order (radio0 radio1)" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:307 +msgid "use both radios, reverse sort order (radio1 radio0)" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:304 +msgid "use the first radio only (radio0)" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:305 +msgid "use the second radio only (radio1)" +msgstr "" + #~ msgid "Action" #~ msgstr "Művelet" @@ -828,9 +872,6 @@ 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" diff --git a/applications/luci-app-travelmate/po/it/travelmate.po b/applications/luci-app-travelmate/po/it/travelmate.po index 945940990b..c0cec19655 100644 --- a/applications/luci-app-travelmate/po/it/travelmate.po +++ b/applications/luci-app-travelmate/po/it/travelmate.po @@ -10,101 +10,108 @@ msgstr "" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Generator: Weblate 4.7-dev\n" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:73 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:75 msgid "-- AP Selection --" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:261 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:265 msgid "AP QR-Codes..." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:823 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:956 msgid "Add Uplink %q" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:679 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:813 msgid "Add Uplink..." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:280 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:291 msgid "Additional Settings" msgstr "Impostazioni aggiuntive" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:321 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:340 msgid "" "Additional trigger delay in seconds before travelmate processing begins." msgstr "" -#: 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:787 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:396 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:920 msgid "Authentication" msgstr "Autenticazione" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:484 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:489 +msgid "Auto Added Open Uplink" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:568 msgid "Auto Login Script" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:310 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:327 msgid "AutoAdd Open Uplinks" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:467 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:551 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 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:319 msgid "ProActive Uplink Switch" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:306 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:319 msgid "" "Proactively scan and switch to a higher prioritized uplink, despite of an " "already existing connection." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:422 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:418 msgid "Profile used by 'msmtp' for travelmate notification E-Mails." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:114 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:116 msgid "QR-Code Overview" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:293 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:303 msgid "Radio Selection" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:314 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:323 msgid "Randomize MAC Addresses" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:407 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:403 msgid "Receiver address for travelmate notification E-Mails." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:115 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:264 +msgid "Remove" +msgstr "Rimuovi" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:262 +msgid "Remove this network" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:117 msgid "" "Render the QR-Code of the selected Access Point to comfortably transfer the " "WLAN credentials to your mobile devices." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:592 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:726 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')." +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:272 +msgid "Restart Interface" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:326 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:303 +msgid "" +"Restrict travelmate to a single radio or change the overall scanning order." +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:345 msgid "Retry limit to connect to an uplink." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:241 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:242 msgid "Run Flags" msgstr "" -#: 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:729 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:284 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:445 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:707 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:862 msgid "SSID" msgstr "SSID" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:725 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:858 msgid "SSID (hidden)" msgstr "" -#: 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:834 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:63 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:967 msgid "Save" msgstr "Salva" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:346 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:365 msgid "Scan Buffer Size" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:557 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:691 msgid "Scan on" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:523 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:607 msgid "Script Arguments" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:412 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:408 msgid "Sender address for travelmate notification E-Mails." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:404 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:400 msgid "Sends notification E-Mails after every succesful uplink connect." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:368 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:388 msgid "Service Priority" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:277 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:288 msgid "Settings" msgstr "Impostazioni" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:331 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:350 msgid "Signal Quality Threshold" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:524 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:608 msgid "" "Space separated list of additional arguments passed to the Auto Login " "Script, i.e. username and password" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:579 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:713 msgid "Starting wireless scan on '" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:229 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:226 msgid "Station ID" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:235 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:234 msgid "Station Interface" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:232 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:230 msgid "Station MAC" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:226 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:222 msgid "Status / Version" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:571 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:705 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:781 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:388 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:914 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:782 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:389 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:915 msgid "TTLS" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:105 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:107 msgid "The QR-Code could not be generated!" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:31 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:33 msgid "The firewall zone name" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:36 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:38 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 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:660 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 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:370 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 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:388 msgid "The selected priority will be used for travelmate processes." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:359 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:379 msgid "" "The selected user agent will be used for connectivity- and captive portal " "checks." @@ -590,22 +608,28 @@ msgstr "" msgid "The syslog output, pre-filtered for travelmate related messages only." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:56 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:58 msgid "The uplink interface has been updated." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:26 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:28 msgid "The uplink interface name" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:20 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:490 +msgid "" +"This option is selected by default if this uplink was added automatically " +"and counts as 'Open Uplink'." +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:23 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 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:413 msgid "Topic for travelmate notification E-Mails." msgstr "" @@ -613,49 +637,53 @@ msgstr "" msgid "Travelmate" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:209 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:239 msgid "Travelmate Settings" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:301 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:314 msgid "Treat missing internet availability as an error." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:321 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:340 msgid "Trigger Delay" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:359 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:507 +msgid "Use the specified MAC address for this uplink." +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:379 msgid "User Agent" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:380 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:628 msgid "VPN Hook" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:389 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:660 msgid "VPN Interface" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:383 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:645 msgid "VPN Service" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:281 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:240 msgid "VPN Settings" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:290 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:300 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:764 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:307 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:897 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:765 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:308 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:898 msgid "WPA Ent. (TKIP)" msgstr "" @@ -663,101 +691,101 @@ msgstr "" 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:755 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:298 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:888 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:756 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:299 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:889 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:757 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:300 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:890 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:766 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:309 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:899 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:767 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:310 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:900 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:758 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:301 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:891 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:759 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:302 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:892 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:762 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:305 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:895 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:763 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:306 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:896 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:752 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:295 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:885 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:753 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:296 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:886 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:754 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:297 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:887 msgid "WPA2 Pers. (TKIP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:761 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:894 msgid "WPA2/WPA3 Ent." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:268 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:304 msgid "WPA2/WPA3 Ent. (CCMP)" 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:751 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:294 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:884 msgid "WPA2/WPA3 Pers. (CCMP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:760 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:893 msgid "WPA3 Ent." 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:303 msgid "WPA3 Ent. (CCMP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:768 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:901 msgid "WPA3 OWE (CCMP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:257 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:750 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:293 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:883 msgid "WPA3 Pers. (SAE)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:581 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:715 msgid "Wireless Scan" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:208 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:238 msgid "Wireless Settings" msgstr "" @@ -765,21 +793,37 @@ msgstr "" msgid "Wireless Stations" msgstr "" -#: 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:798 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:406 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:931 msgid "auth=MSCHAPV2" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:369 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:797 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:405 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:930 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:769 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:312 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:902 msgid "none" msgstr "" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:306 +msgid "use both radios, normal sort order (radio0 radio1)" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:307 +msgid "use both radios, reverse sort order (radio1 radio0)" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:304 +msgid "use the first radio only (radio0)" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:305 +msgid "use the second radio only (radio1)" +msgstr "" + #~ msgid "Action" #~ msgstr "Azione" @@ -803,6 +847,3 @@ msgstr "" #~ 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 0eca46bb9e..a7274767d6 100644 --- a/applications/luci-app-travelmate/po/ja/travelmate.po +++ b/applications/luci-app-travelmate/po/ja/travelmate.po @@ -13,51 +13,55 @@ msgstr "" "Plural-Forms: nplurals=1; plural=0;\n" "X-Generator: Weblate 4.6-dev\n" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:73 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:75 msgid "-- AP Selection --" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:261 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:265 msgid "AP QR-Codes..." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:823 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:956 msgid "Add Uplink %q" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:679 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:813 msgid "Add Uplink..." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:280 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:291 msgid "Additional Settings" msgstr "追加設定" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:321 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:340 msgid "" "Additional trigger delay in seconds before travelmate processing begins." msgstr "Travelmate の処理が開始されるまでの、追加の遅延時間(秒)です。" -#: 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:787 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:396 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:920 msgid "Authentication" msgstr "認証" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:484 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:489 +msgid "Auto Added Open Uplink" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:568 msgid "Auto Login Script" msgstr "自動ログイン スクリプト" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:310 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:327 msgid "AutoAdd Open Uplinks" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:467 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:551 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 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:319 msgid "ProActive Uplink Switch" msgstr "積極的なアップリンク切替" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:306 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:319 msgid "" "Proactively scan and switch to a higher prioritized uplink, despite of an " "already existing connection." @@ -429,168 +440,175 @@ msgstr "" "既存の接続に関わらず、より優先度の高いアップリンクへの積極的なスキャンと切り" "替えを行います。" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:422 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:418 msgid "Profile used by 'msmtp' for travelmate notification E-Mails." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:114 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:116 msgid "QR-Code Overview" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:293 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:303 msgid "Radio Selection" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:314 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:323 msgid "Randomize MAC Addresses" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:407 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:403 msgid "Receiver address for travelmate notification E-Mails." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:115 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:264 +msgid "Remove" +msgstr "削除" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:262 +msgid "Remove this network" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:117 msgid "" "Render the QR-Code of the selected Access Point to comfortably transfer the " "WLAN credentials to your mobile devices." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:592 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:726 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')." +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:272 +msgid "Restart Interface" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:326 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:303 +msgid "" +"Restrict travelmate to a single radio or change the overall scanning order." +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:345 msgid "Retry limit to connect to an uplink." msgstr "アップリンクへの接続を試行する回数です。" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:241 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:242 msgid "Run Flags" msgstr "実行フラグ" -#: 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:729 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:284 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:445 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:707 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:862 msgid "SSID" msgstr "SSID" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:725 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:858 msgid "SSID (hidden)" msgstr "SSID(ステルス)" -#: 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:834 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:63 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:967 msgid "Save" msgstr "保存" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:346 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:365 msgid "Scan Buffer Size" msgstr "スキャンバッファー サイズ" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:557 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:691 msgid "Scan on" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:523 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:607 msgid "Script Arguments" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:412 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:408 msgid "Sender address for travelmate notification E-Mails." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:404 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:400 msgid "Sends notification E-Mails after every succesful uplink connect." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:368 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:388 msgid "Service Priority" msgstr "サービス優先度" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:277 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:288 msgid "Settings" msgstr "設定" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:331 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:350 msgid "Signal Quality Threshold" msgstr "シグナル品質閾値" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:524 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:608 msgid "" "Space separated list of additional arguments passed to the Auto Login " "Script, i.e. username and password" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:579 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:713 msgid "Starting wireless scan on '" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:229 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:226 msgid "Station ID" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:235 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:234 msgid "Station Interface" msgstr "ステーション インターフェース" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:232 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:230 msgid "Station MAC" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:226 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:222 msgid "Status / Version" msgstr "ステータス / バージョン" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:571 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:705 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:781 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:388 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:914 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:782 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:389 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:915 msgid "TTLS" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:105 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:107 msgid "The QR-Code could not be generated!" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:31 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:33 msgid "The firewall zone name" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:36 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:38 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 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:660 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 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:370 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 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:388 msgid "The selected priority will be used for travelmate processes." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:359 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:379 msgid "" "The selected user agent will be used for connectivity- and captive portal " "checks." @@ -602,22 +620,28 @@ msgstr "" "このフォームには、システムログ内の Travelmate に関するメッセージのみが表示さ" "れます。" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:56 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:58 msgid "The uplink interface has been updated." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:26 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:28 msgid "The uplink interface name" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:20 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:490 +msgid "" +"This option is selected by default if this uplink was added automatically " +"and counts as 'Open Uplink'." +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:23 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 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:413 msgid "Topic for travelmate notification E-Mails." msgstr "" @@ -625,49 +649,53 @@ msgstr "" msgid "Travelmate" msgstr "Travelmate" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:209 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:239 msgid "Travelmate Settings" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:301 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:314 msgid "Treat missing internet availability as an error." msgstr "インターネット可用性が無い場合をエラーとして扱います。" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:321 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:340 msgid "Trigger Delay" msgstr "トリガ遅延" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:359 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:507 +msgid "Use the specified MAC address for this uplink." +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:379 msgid "User Agent" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:380 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:628 msgid "VPN Hook" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:389 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:660 msgid "VPN Interface" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:383 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:645 msgid "VPN Service" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:281 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:240 msgid "VPN Settings" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:290 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:300 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:764 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:307 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:897 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:765 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:308 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:898 msgid "WPA Ent. (TKIP)" msgstr "" @@ -675,101 +703,101 @@ msgstr "" 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:755 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:298 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:888 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:756 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:299 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:889 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:757 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:300 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:890 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:766 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:309 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:899 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:767 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:310 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:900 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:758 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:301 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:891 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:759 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:302 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:892 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:762 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:305 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:895 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:763 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:306 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:896 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:752 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:295 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:885 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:753 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:296 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:886 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:754 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:297 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:887 msgid "WPA2 Pers. (TKIP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:761 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:894 msgid "WPA2/WPA3 Ent." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:268 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:304 msgid "WPA2/WPA3 Ent. (CCMP)" 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:751 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:294 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:884 msgid "WPA2/WPA3 Pers. (CCMP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:760 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:893 msgid "WPA3 Ent." 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:303 msgid "WPA3 Ent. (CCMP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:768 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:901 msgid "WPA3 OWE (CCMP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:257 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:750 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:293 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:883 msgid "WPA3 Pers. (SAE)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:581 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:715 msgid "Wireless Scan" msgstr "無線スキャン" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:208 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:238 msgid "Wireless Settings" msgstr "" @@ -777,21 +805,40 @@ msgstr "" msgid "Wireless Stations" msgstr "無線ステーション" -#: 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:798 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:406 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:931 msgid "auth=MSCHAPV2" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:369 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:797 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:405 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:930 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:769 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:312 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:902 msgid "none" msgstr "なし" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:306 +msgid "use both radios, normal sort order (radio0 radio1)" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:307 +msgid "use both radios, reverse sort order (radio1 radio0)" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:304 +msgid "use the first radio only (radio0)" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:305 +msgid "use the second radio only (radio1)" +msgstr "" + +#~ msgid "Delete this network" +#~ msgstr "このネットワークを削除" + #~ msgid "AP on" #~ msgstr "AP の場所:" @@ -944,9 +991,6 @@ msgstr "なし" #~ msgid "Radio Selection / Order" #~ msgstr "無線の選択 / 順番" -#~ msgid "Remove" -#~ msgstr "削除" - #~ msgid "Remove this Uplink" #~ msgstr "このアップリンクを削除" diff --git a/applications/luci-app-travelmate/po/ko/travelmate.po b/applications/luci-app-travelmate/po/ko/travelmate.po index cdb570ab4b..450af71a07 100644 --- a/applications/luci-app-travelmate/po/ko/travelmate.po +++ b/applications/luci-app-travelmate/po/ko/travelmate.po @@ -10,101 +10,108 @@ msgstr "" "Plural-Forms: nplurals=1; plural=0;\n" "X-Generator: Weblate 4.5.2-dev\n" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:73 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:75 msgid "-- AP Selection --" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:261 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:265 msgid "AP QR-Codes..." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:823 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:956 msgid "Add Uplink %q" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:679 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:813 msgid "Add Uplink..." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:280 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:291 msgid "Additional Settings" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:321 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:340 msgid "" "Additional trigger delay in seconds before travelmate processing begins." msgstr "" -#: 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:787 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:396 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:920 msgid "Authentication" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:484 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:489 +msgid "Auto Added Open Uplink" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:568 msgid "Auto Login Script" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:310 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:327 msgid "AutoAdd Open Uplinks" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:467 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:551 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 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:319 msgid "ProActive Uplink Switch" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:306 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:319 msgid "" "Proactively scan and switch to a higher prioritized uplink, despite of an " "already existing connection." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:422 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:418 msgid "Profile used by 'msmtp' for travelmate notification E-Mails." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:114 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:116 msgid "QR-Code Overview" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:293 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:303 msgid "Radio Selection" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:314 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:323 msgid "Randomize MAC Addresses" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:407 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:403 msgid "Receiver address for travelmate notification E-Mails." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:115 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:264 +msgid "Remove" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:262 +msgid "Remove this network" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:117 msgid "" "Render the QR-Code of the selected Access Point to comfortably transfer the " "WLAN credentials to your mobile devices." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:592 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:726 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')." +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:272 +msgid "Restart Interface" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:326 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:303 +msgid "" +"Restrict travelmate to a single radio or change the overall scanning order." +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:345 msgid "Retry limit to connect to an uplink." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:241 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:242 msgid "Run Flags" msgstr "" -#: 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:729 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:284 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:445 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:707 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:862 msgid "SSID" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:725 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:858 msgid "SSID (hidden)" msgstr "" -#: 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:834 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:63 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:967 msgid "Save" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:346 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:365 msgid "Scan Buffer Size" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:557 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:691 msgid "Scan on" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:523 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:607 msgid "Script Arguments" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:412 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:408 msgid "Sender address for travelmate notification E-Mails." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:404 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:400 msgid "Sends notification E-Mails after every succesful uplink connect." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:368 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:388 msgid "Service Priority" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:277 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:288 msgid "Settings" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:331 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:350 msgid "Signal Quality Threshold" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:524 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:608 msgid "" "Space separated list of additional arguments passed to the Auto Login " "Script, i.e. username and password" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:579 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:713 msgid "Starting wireless scan on '" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:229 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:226 msgid "Station ID" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:235 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:234 msgid "Station Interface" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:232 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:230 msgid "Station MAC" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:226 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:222 msgid "Status / Version" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:571 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:705 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:781 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:388 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:914 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:782 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:389 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:915 msgid "TTLS" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:105 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:107 msgid "The QR-Code could not be generated!" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:31 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:33 msgid "The firewall zone name" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:36 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:38 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 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:660 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 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:370 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 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:388 msgid "The selected priority will be used for travelmate processes." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:359 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:379 msgid "" "The selected user agent will be used for connectivity- and captive portal " "checks." @@ -589,22 +607,28 @@ msgstr "" msgid "The syslog output, pre-filtered for travelmate related messages only." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:56 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:58 msgid "The uplink interface has been updated." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:26 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:28 msgid "The uplink interface name" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:20 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:490 +msgid "" +"This option is selected by default if this uplink was added automatically " +"and counts as 'Open Uplink'." +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:23 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 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:413 msgid "Topic for travelmate notification E-Mails." msgstr "" @@ -612,49 +636,53 @@ msgstr "" msgid "Travelmate" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:209 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:239 msgid "Travelmate Settings" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:301 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:314 msgid "Treat missing internet availability as an error." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:321 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:340 msgid "Trigger Delay" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:359 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:507 +msgid "Use the specified MAC address for this uplink." +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:379 msgid "User Agent" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:380 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:628 msgid "VPN Hook" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:389 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:660 msgid "VPN Interface" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:383 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:645 msgid "VPN Service" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:281 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:240 msgid "VPN Settings" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:290 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:300 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:764 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:307 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:897 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:765 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:308 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:898 msgid "WPA Ent. (TKIP)" msgstr "" @@ -662,101 +690,101 @@ msgstr "" 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:755 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:298 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:888 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:756 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:299 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:889 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:757 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:300 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:890 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:766 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:309 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:899 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:767 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:310 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:900 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:758 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:301 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:891 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:759 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:302 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:892 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:762 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:305 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:895 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:763 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:306 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:896 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:752 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:295 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:885 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:753 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:296 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:886 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:754 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:297 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:887 msgid "WPA2 Pers. (TKIP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:761 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:894 msgid "WPA2/WPA3 Ent." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:268 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:304 msgid "WPA2/WPA3 Ent. (CCMP)" 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:751 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:294 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:884 msgid "WPA2/WPA3 Pers. (CCMP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:760 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:893 msgid "WPA3 Ent." 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:303 msgid "WPA3 Ent. (CCMP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:768 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:901 msgid "WPA3 OWE (CCMP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:257 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:750 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:293 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:883 msgid "WPA3 Pers. (SAE)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:581 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:715 msgid "Wireless Scan" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:208 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:238 msgid "Wireless Settings" msgstr "" @@ -764,21 +792,37 @@ msgstr "" msgid "Wireless Stations" msgstr "" -#: 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:798 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:406 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:931 msgid "auth=MSCHAPV2" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:369 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:797 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:405 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:930 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:769 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:312 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:902 msgid "none" msgstr "없음" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:306 +msgid "use both radios, normal sort order (radio0 radio1)" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:307 +msgid "use both radios, reverse sort order (radio1 radio0)" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:304 +msgid "use the first radio only (radio0)" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:305 +msgid "use the second radio only (radio1)" +msgstr "" + #~ msgid "Action" #~ msgstr "액션" diff --git a/applications/luci-app-travelmate/po/mr/travelmate.po b/applications/luci-app-travelmate/po/mr/travelmate.po index 712279c345..27d0e3c8ec 100644 --- a/applications/luci-app-travelmate/po/mr/travelmate.po +++ b/applications/luci-app-travelmate/po/mr/travelmate.po @@ -10,101 +10,108 @@ msgstr "" "Plural-Forms: nplurals=2; plural=n > 1;\n" "X-Generator: Weblate 4.3-dev\n" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:73 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:75 msgid "-- AP Selection --" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:261 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:265 msgid "AP QR-Codes..." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:823 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:956 msgid "Add Uplink %q" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:679 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:813 msgid "Add Uplink..." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:280 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:291 msgid "Additional Settings" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:321 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:340 msgid "" "Additional trigger delay in seconds before travelmate processing begins." msgstr "" -#: 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:787 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:396 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:920 msgid "Authentication" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:484 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:489 +msgid "Auto Added Open Uplink" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:568 msgid "Auto Login Script" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:310 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:327 msgid "AutoAdd Open Uplinks" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:467 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:551 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 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:319 msgid "ProActive Uplink Switch" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:306 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:319 msgid "" "Proactively scan and switch to a higher prioritized uplink, despite of an " "already existing connection." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:422 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:418 msgid "Profile used by 'msmtp' for travelmate notification E-Mails." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:114 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:116 msgid "QR-Code Overview" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:293 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:303 msgid "Radio Selection" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:314 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:323 msgid "Randomize MAC Addresses" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:407 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:403 msgid "Receiver address for travelmate notification E-Mails." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:115 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:264 +msgid "Remove" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:262 +msgid "Remove this network" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:117 msgid "" "Render the QR-Code of the selected Access Point to comfortably transfer the " "WLAN credentials to your mobile devices." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:592 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:726 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')." +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:272 +msgid "Restart Interface" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:326 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:303 +msgid "" +"Restrict travelmate to a single radio or change the overall scanning order." +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:345 msgid "Retry limit to connect to an uplink." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:241 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:242 msgid "Run Flags" msgstr "" -#: 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:729 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:284 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:445 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:707 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:862 msgid "SSID" msgstr "SSID" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:725 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:858 msgid "SSID (hidden)" msgstr "" -#: 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:834 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:63 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:967 msgid "Save" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:346 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:365 msgid "Scan Buffer Size" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:557 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:691 msgid "Scan on" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:523 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:607 msgid "Script Arguments" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:412 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:408 msgid "Sender address for travelmate notification E-Mails." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:404 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:400 msgid "Sends notification E-Mails after every succesful uplink connect." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:368 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:388 msgid "Service Priority" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:277 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:288 msgid "Settings" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:331 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:350 msgid "Signal Quality Threshold" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:524 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:608 msgid "" "Space separated list of additional arguments passed to the Auto Login " "Script, i.e. username and password" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:579 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:713 msgid "Starting wireless scan on '" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:229 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:226 msgid "Station ID" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:235 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:234 msgid "Station Interface" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:232 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:230 msgid "Station MAC" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:226 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:222 msgid "Status / Version" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:571 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:705 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:781 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:388 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:914 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:782 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:389 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:915 msgid "TTLS" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:105 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:107 msgid "The QR-Code could not be generated!" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:31 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:33 msgid "The firewall zone name" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:36 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:38 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 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:660 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 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:370 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 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:388 msgid "The selected priority will be used for travelmate processes." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:359 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:379 msgid "" "The selected user agent will be used for connectivity- and captive portal " "checks." @@ -589,22 +607,28 @@ msgstr "" msgid "The syslog output, pre-filtered for travelmate related messages only." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:56 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:58 msgid "The uplink interface has been updated." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:26 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:28 msgid "The uplink interface name" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:20 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:490 +msgid "" +"This option is selected by default if this uplink was added automatically " +"and counts as 'Open Uplink'." +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:23 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 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:413 msgid "Topic for travelmate notification E-Mails." msgstr "" @@ -612,49 +636,53 @@ msgstr "" msgid "Travelmate" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:209 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:239 msgid "Travelmate Settings" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:301 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:314 msgid "Treat missing internet availability as an error." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:321 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:340 msgid "Trigger Delay" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:359 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:507 +msgid "Use the specified MAC address for this uplink." +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:379 msgid "User Agent" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:380 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:628 msgid "VPN Hook" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:389 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:660 msgid "VPN Interface" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:383 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:645 msgid "VPN Service" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:281 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:240 msgid "VPN Settings" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:290 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:300 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:764 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:307 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:897 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:765 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:308 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:898 msgid "WPA Ent. (TKIP)" msgstr "" @@ -662,101 +690,101 @@ msgstr "" 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:755 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:298 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:888 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:756 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:299 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:889 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:757 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:300 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:890 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:766 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:309 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:899 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:767 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:310 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:900 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:758 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:301 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:891 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:759 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:302 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:892 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:762 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:305 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:895 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:763 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:306 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:896 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:752 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:295 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:885 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:753 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:296 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:886 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:754 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:297 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:887 msgid "WPA2 Pers. (TKIP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:761 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:894 msgid "WPA2/WPA3 Ent." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:268 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:304 msgid "WPA2/WPA3 Ent. (CCMP)" 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:751 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:294 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:884 msgid "WPA2/WPA3 Pers. (CCMP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:760 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:893 msgid "WPA3 Ent." 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:303 msgid "WPA3 Ent. (CCMP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:768 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:901 msgid "WPA3 OWE (CCMP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:257 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:750 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:293 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:883 msgid "WPA3 Pers. (SAE)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:581 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:715 msgid "Wireless Scan" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:208 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:238 msgid "Wireless Settings" msgstr "" @@ -764,20 +792,36 @@ msgstr "" msgid "Wireless Stations" msgstr "" -#: 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:798 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:406 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:931 msgid "auth=MSCHAPV2" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:369 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:797 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:405 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:930 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:769 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:312 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:902 msgid "none" msgstr "" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:306 +msgid "use both radios, normal sort order (radio0 radio1)" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:307 +msgid "use both radios, reverse sort order (radio1 radio0)" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:304 +msgid "use the first radio only (radio0)" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:305 +msgid "use the second radio only (radio1)" +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 378db064ee..32fbeeb02b 100644 --- a/applications/luci-app-travelmate/po/ms/travelmate.po +++ b/applications/luci-app-travelmate/po/ms/travelmate.po @@ -10,101 +10,108 @@ msgstr "" "Plural-Forms: nplurals=1; plural=0;\n" "X-Generator: Weblate 3.11-dev\n" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:73 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:75 msgid "-- AP Selection --" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:261 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:265 msgid "AP QR-Codes..." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:823 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:956 msgid "Add Uplink %q" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:679 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:813 msgid "Add Uplink..." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:280 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:291 msgid "Additional Settings" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:321 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:340 msgid "" "Additional trigger delay in seconds before travelmate processing begins." msgstr "" -#: 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:787 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:396 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:920 msgid "Authentication" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:484 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:489 +msgid "Auto Added Open Uplink" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:568 msgid "Auto Login Script" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:310 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:327 msgid "AutoAdd Open Uplinks" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:467 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:551 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 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:319 msgid "ProActive Uplink Switch" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:306 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:319 msgid "" "Proactively scan and switch to a higher prioritized uplink, despite of an " "already existing connection." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:422 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:418 msgid "Profile used by 'msmtp' for travelmate notification E-Mails." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:114 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:116 msgid "QR-Code Overview" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:293 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:303 msgid "Radio Selection" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:314 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:323 msgid "Randomize MAC Addresses" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:407 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:403 msgid "Receiver address for travelmate notification E-Mails." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:115 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:264 +msgid "Remove" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:262 +msgid "Remove this network" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:117 msgid "" "Render the QR-Code of the selected Access Point to comfortably transfer the " "WLAN credentials to your mobile devices." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:592 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:726 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')." +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:272 +msgid "Restart Interface" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:326 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:303 +msgid "" +"Restrict travelmate to a single radio or change the overall scanning order." +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:345 msgid "Retry limit to connect to an uplink." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:241 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:242 msgid "Run Flags" msgstr "" -#: 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:729 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:284 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:445 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:707 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:862 msgid "SSID" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:725 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:858 msgid "SSID (hidden)" msgstr "" -#: 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:834 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:63 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:967 msgid "Save" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:346 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:365 msgid "Scan Buffer Size" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:557 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:691 msgid "Scan on" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:523 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:607 msgid "Script Arguments" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:412 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:408 msgid "Sender address for travelmate notification E-Mails." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:404 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:400 msgid "Sends notification E-Mails after every succesful uplink connect." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:368 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:388 msgid "Service Priority" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:277 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:288 msgid "Settings" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:331 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:350 msgid "Signal Quality Threshold" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:524 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:608 msgid "" "Space separated list of additional arguments passed to the Auto Login " "Script, i.e. username and password" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:579 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:713 msgid "Starting wireless scan on '" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:229 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:226 msgid "Station ID" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:235 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:234 msgid "Station Interface" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:232 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:230 msgid "Station MAC" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:226 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:222 msgid "Status / Version" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:571 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:705 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:781 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:388 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:914 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:782 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:389 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:915 msgid "TTLS" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:105 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:107 msgid "The QR-Code could not be generated!" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:31 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:33 msgid "The firewall zone name" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:36 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:38 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 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:660 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 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:370 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 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:388 msgid "The selected priority will be used for travelmate processes." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:359 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:379 msgid "" "The selected user agent will be used for connectivity- and captive portal " "checks." @@ -589,22 +607,28 @@ msgstr "" msgid "The syslog output, pre-filtered for travelmate related messages only." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:56 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:58 msgid "The uplink interface has been updated." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:26 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:28 msgid "The uplink interface name" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:20 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:490 +msgid "" +"This option is selected by default if this uplink was added automatically " +"and counts as 'Open Uplink'." +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:23 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 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:413 msgid "Topic for travelmate notification E-Mails." msgstr "" @@ -612,49 +636,53 @@ msgstr "" msgid "Travelmate" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:209 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:239 msgid "Travelmate Settings" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:301 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:314 msgid "Treat missing internet availability as an error." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:321 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:340 msgid "Trigger Delay" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:359 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:507 +msgid "Use the specified MAC address for this uplink." +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:379 msgid "User Agent" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:380 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:628 msgid "VPN Hook" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:389 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:660 msgid "VPN Interface" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:383 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:645 msgid "VPN Service" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:281 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:240 msgid "VPN Settings" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:290 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:300 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:764 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:307 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:897 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:765 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:308 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:898 msgid "WPA Ent. (TKIP)" msgstr "" @@ -662,101 +690,101 @@ msgstr "" 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:755 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:298 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:888 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:756 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:299 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:889 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:757 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:300 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:890 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:766 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:309 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:899 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:767 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:310 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:900 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:758 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:301 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:891 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:759 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:302 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:892 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:762 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:305 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:895 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:763 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:306 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:896 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:752 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:295 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:885 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:753 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:296 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:886 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:754 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:297 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:887 msgid "WPA2 Pers. (TKIP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:761 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:894 msgid "WPA2/WPA3 Ent." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:268 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:304 msgid "WPA2/WPA3 Ent. (CCMP)" 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:751 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:294 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:884 msgid "WPA2/WPA3 Pers. (CCMP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:760 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:893 msgid "WPA3 Ent." 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:303 msgid "WPA3 Ent. (CCMP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:768 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:901 msgid "WPA3 OWE (CCMP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:257 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:750 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:293 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:883 msgid "WPA3 Pers. (SAE)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:581 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:715 msgid "Wireless Scan" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:208 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:238 msgid "Wireless Settings" msgstr "" @@ -764,21 +792,37 @@ msgstr "" msgid "Wireless Stations" msgstr "" -#: 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:798 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:406 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:931 msgid "auth=MSCHAPV2" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:369 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:797 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:405 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:930 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:769 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:312 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:902 msgid "none" msgstr "" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:306 +msgid "use both radios, normal sort order (radio0 radio1)" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:307 +msgid "use both radios, reverse sort order (radio1 radio0)" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:304 +msgid "use the first radio only (radio0)" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:305 +msgid "use the second radio only (radio1)" +msgstr "" + #~ msgid "Action" #~ msgstr "Tindakan" diff --git a/applications/luci-app-travelmate/po/nb_NO/travelmate.po b/applications/luci-app-travelmate/po/nb_NO/travelmate.po index 47be29d17e..7231aff168 100644 --- a/applications/luci-app-travelmate/po/nb_NO/travelmate.po +++ b/applications/luci-app-travelmate/po/nb_NO/travelmate.po @@ -10,101 +10,108 @@ msgstr "" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Generator: Weblate 4.6-dev\n" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:73 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:75 msgid "-- AP Selection --" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:261 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:265 msgid "AP QR-Codes..." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:823 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:956 msgid "Add Uplink %q" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:679 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:813 msgid "Add Uplink..." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:280 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:291 msgid "Additional Settings" msgstr "Ytterligere innstillinger" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:321 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:340 msgid "" "Additional trigger delay in seconds before travelmate processing begins." msgstr "" -#: 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:787 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:396 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:920 msgid "Authentication" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:484 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:489 +msgid "Auto Added Open Uplink" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:568 msgid "Auto Login Script" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:310 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:327 msgid "AutoAdd Open Uplinks" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:467 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:551 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 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:319 msgid "ProActive Uplink Switch" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:306 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:319 msgid "" "Proactively scan and switch to a higher prioritized uplink, despite of an " "already existing connection." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:422 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:418 msgid "Profile used by 'msmtp' for travelmate notification E-Mails." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:114 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:116 msgid "QR-Code Overview" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:293 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:303 msgid "Radio Selection" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:314 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:323 msgid "Randomize MAC Addresses" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:407 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:403 msgid "Receiver address for travelmate notification E-Mails." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:115 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:264 +msgid "Remove" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:262 +msgid "Remove this network" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:117 msgid "" "Render the QR-Code of the selected Access Point to comfortably transfer the " "WLAN credentials to your mobile devices." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:592 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:726 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')." +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:272 +msgid "Restart Interface" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:326 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:303 +msgid "" +"Restrict travelmate to a single radio or change the overall scanning order." +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:345 msgid "Retry limit to connect to an uplink." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:241 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:242 #, fuzzy msgid "Run Flags" msgstr "Kjøringsflagg" -#: 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:729 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:284 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:445 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:707 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:862 msgid "SSID" msgstr "SSID" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:725 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:858 msgid "SSID (hidden)" msgstr "" -#: 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:834 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:63 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:967 msgid "Save" msgstr "Lagre" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:346 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:365 msgid "Scan Buffer Size" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:557 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:691 msgid "Scan on" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:523 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:607 msgid "Script Arguments" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:412 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:408 msgid "Sender address for travelmate notification E-Mails." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:404 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:400 msgid "Sends notification E-Mails after every succesful uplink connect." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:368 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:388 msgid "Service Priority" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:277 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:288 msgid "Settings" msgstr "Innstillinger" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:331 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:350 msgid "Signal Quality Threshold" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:524 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:608 msgid "" "Space separated list of additional arguments passed to the Auto Login " "Script, i.e. username and password" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:579 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:713 msgid "Starting wireless scan on '" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:229 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:226 msgid "Station ID" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:235 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:234 msgid "Station Interface" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:232 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:230 msgid "Station MAC" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:226 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:222 msgid "Status / Version" msgstr "Status/versjon" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:571 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:705 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:781 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:388 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:914 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:782 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:389 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:915 msgid "TTLS" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:105 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:107 msgid "The QR-Code could not be generated!" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:31 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:33 msgid "The firewall zone name" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:36 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:38 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 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:660 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 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:370 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 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:388 msgid "The selected priority will be used for travelmate processes." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:359 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:379 msgid "" "The selected user agent will be used for connectivity- and captive portal " "checks." @@ -590,22 +608,28 @@ msgstr "" msgid "The syslog output, pre-filtered for travelmate related messages only." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:56 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:58 msgid "The uplink interface has been updated." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:26 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:28 msgid "The uplink interface name" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:20 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:490 +msgid "" +"This option is selected by default if this uplink was added automatically " +"and counts as 'Open Uplink'." +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:23 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 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:413 msgid "Topic for travelmate notification E-Mails." msgstr "" @@ -613,49 +637,53 @@ msgstr "" msgid "Travelmate" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:209 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:239 msgid "Travelmate Settings" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:301 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:314 msgid "Treat missing internet availability as an error." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:321 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:340 msgid "Trigger Delay" msgstr "Utløserforsinkelse" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:359 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:507 +msgid "Use the specified MAC address for this uplink." +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:379 msgid "User Agent" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:380 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:628 msgid "VPN Hook" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:389 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:660 msgid "VPN Interface" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:383 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:645 msgid "VPN Service" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:281 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:240 msgid "VPN Settings" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:290 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:300 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:764 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:307 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:897 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:765 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:308 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:898 msgid "WPA Ent. (TKIP)" msgstr "" @@ -663,101 +691,101 @@ msgstr "" 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:755 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:298 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:888 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:756 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:299 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:889 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:757 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:300 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:890 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:766 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:309 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:899 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:767 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:310 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:900 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:758 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:301 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:891 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:759 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:302 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:892 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:762 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:305 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:895 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:763 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:306 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:896 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:752 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:295 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:885 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:753 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:296 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:886 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:754 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:297 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:887 msgid "WPA2 Pers. (TKIP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:761 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:894 msgid "WPA2/WPA3 Ent." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:268 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:304 msgid "WPA2/WPA3 Ent. (CCMP)" 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:751 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:294 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:884 msgid "WPA2/WPA3 Pers. (CCMP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:760 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:893 msgid "WPA3 Ent." 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:303 msgid "WPA3 Ent. (CCMP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:768 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:901 msgid "WPA3 OWE (CCMP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:257 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:750 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:293 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:883 msgid "WPA3 Pers. (SAE)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:581 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:715 msgid "Wireless Scan" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:208 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:238 msgid "Wireless Settings" msgstr "" @@ -765,21 +793,37 @@ msgstr "" msgid "Wireless Stations" msgstr "" -#: 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:798 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:406 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:931 msgid "auth=MSCHAPV2" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:369 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:797 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:405 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:930 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:769 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:312 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:902 msgid "none" msgstr "" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:306 +msgid "use both radios, normal sort order (radio0 radio1)" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:307 +msgid "use both radios, reverse sort order (radio1 radio0)" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:304 +msgid "use the first radio only (radio0)" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:305 +msgid "use the second radio only (radio1)" +msgstr "" + #~ msgid "Action" #~ msgstr "Handling" diff --git a/applications/luci-app-travelmate/po/pl/travelmate.po b/applications/luci-app-travelmate/po/pl/travelmate.po index 4aa82ae7d0..f4e85bc3ea 100644 --- a/applications/luci-app-travelmate/po/pl/travelmate.po +++ b/applications/luci-app-travelmate/po/pl/travelmate.po @@ -11,47 +11,51 @@ msgstr "" "|| n%100>=20) ? 1 : 2;\n" "X-Generator: Weblate 4.8-dev\n" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:73 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:75 msgid "-- AP Selection --" msgstr "-- Wybór AP --" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:261 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:265 msgid "AP QR-Codes..." msgstr "Kody QR AP..." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:823 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:956 msgid "Add Uplink %q" msgstr "Dodaj Uplink %q" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:679 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:813 msgid "Add Uplink..." msgstr "Dodaj Uplink..." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:280 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:291 msgid "Additional Settings" msgstr "Dodatkowe ustawienia" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:321 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:340 msgid "" "Additional trigger delay in seconds before travelmate processing begins." msgstr "" "Dodatkowe opóźnienie wyzwalacza w sekundach zanim travelmate zacznie " "przetwarzać." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:360 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:787 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:396 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:920 msgid "Authentication" msgstr "Uwierzytelnienie" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:484 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:489 +msgid "Auto Added Open Uplink" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:568 msgid "Auto Login Script" msgstr "Automatyczny skrypt logowania" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:310 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:327 msgid "AutoAdd Open Uplinks" msgstr "Automatycznie dodawaj otwarte łącza uplink" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:467 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:551 msgid "" "Automatically (re-)enable the uplink after n minutes, e.g. after " "failed login attempts.
" @@ -433,19 +450,11 @@ msgstr "" "Uwaga: Powiadomienia e-mail wymagają oddzielnej konfiguracji mstmp " "pakietu.
" -#: 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 "" -"Uwaga: połączenia VPN wymagają oddzielnej konfiguracji pakietu " -"Wireguard lub OpenVPN.
" - -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:306 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:319 msgid "ProActive Uplink Switch" msgstr "Przełącznik połączenia ProActive" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:306 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:319 msgid "" "Proactively scan and switch to a higher prioritized uplink, despite of an " "already existing connection." @@ -453,27 +462,35 @@ msgstr "" "Aktywnie skanuj i przełączaj na łącze o wyższym priorytecie, pomimo już " "istniejącego połączenia." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:422 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:418 msgid "Profile used by 'msmtp' for travelmate notification E-Mails." msgstr "Profil używany przez \"msmtp\" do powiadomień travelmate e-mail." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:114 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:116 msgid "QR-Code Overview" msgstr "Przegląd kodów QR" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:293 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:303 msgid "Radio Selection" msgstr "Wybór radia" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:314 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:323 msgid "Randomize MAC Addresses" msgstr "Losowe adresy MAC" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:407 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:403 msgid "Receiver address for travelmate notification E-Mails." msgstr "Adres odbiorcy wiadomości e-mail z powiadomieniem o travelmate." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:115 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:264 +msgid "Remove" +msgstr "Usuń" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:262 +msgid "Remove this network" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:117 msgid "" "Render the QR-Code of the selected Access Point to comfortably transfer the " "WLAN credentials to your mobile devices." @@ -481,76 +498,77 @@ msgstr "" "Renderuj kod QR wybranego punktu dostępowego, aby w wygodny sposób przesłać " "dane uwierzytelniające WLAN do urządzeń mobilnych." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:592 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:726 msgid "Repeat Scan" msgstr "Powtórz skanowanie" -#: 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')." +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:272 +msgid "Restart Interface" msgstr "" -"Ogranicz travelmate do jednego radia lub zmień ogólną kolejność skanowania " -"(np. 'radio1 radio0')." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:326 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:303 +msgid "" +"Restrict travelmate to a single radio or change the overall scanning order." +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:345 msgid "Retry limit to connect to an uplink." msgstr "Limit powtórzeń do połączenia." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:241 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:242 msgid "Run Flags" msgstr "Uruchomione flagi" -#: 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:729 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:284 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:445 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:707 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:862 msgid "SSID" msgstr "SSID" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:725 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:858 msgid "SSID (hidden)" msgstr "SSID (ukryty)" -#: 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:834 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:63 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:967 msgid "Save" msgstr "Zapisz" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:346 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:365 msgid "Scan Buffer Size" msgstr "Rozmiar bufora skanowania" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:557 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:691 msgid "Scan on" msgstr "Skanowanie włączone" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:523 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:607 msgid "Script Arguments" msgstr "Argumenty skryptu" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:412 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:408 msgid "Sender address for travelmate notification E-Mails." msgstr "Adres nadawcy dla powiadomień e-mail dla travelmate." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:404 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:400 msgid "Sends notification E-Mails after every succesful uplink connect." msgstr "" "Wysyła powiadomienie e-mail po każdym udanym połączeniu przez sieć uplink." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:368 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:388 msgid "Service Priority" msgstr "Priorytet usługi" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:277 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:288 msgid "Settings" msgstr "Ustawienia" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:331 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:350 msgid "Signal Quality Threshold" msgstr "Próg jakości sygnału" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:524 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:608 msgid "" "Space separated list of additional arguments passed to the Auto Login " "Script, i.e. username and password" @@ -558,72 +576,68 @@ msgstr "" "Rozdzielona spacjami lista dodatkowych argumentów przekazanych do skryptu " "automatycznego logowania, np. nazwa użytkownika i hasło" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:579 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:713 msgid "Starting wireless scan on '" msgstr "Rozpoczynanie skanowania" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:229 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:226 msgid "Station ID" msgstr "Identyfikator stacji" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:235 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:234 msgid "Station Interface" msgstr "Interfejs stacji" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:232 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:230 msgid "Station MAC" msgstr "Stacja MAC" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:226 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:222 msgid "Status / Version" msgstr "Status / Wersja" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:571 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:705 msgid "Strength" msgstr "Siła" -#: 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:781 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:388 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:914 msgid "TLS" msgstr "TLS" -#: 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:782 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:389 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:915 msgid "TTLS" msgstr "TTLS" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:105 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:107 msgid "The QR-Code could not be generated!" msgstr "Nie można wygenerować kodu QR!" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:31 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:33 msgid "The firewall zone name" msgstr "Nazwa strefy zapory" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:36 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:38 msgid "The interface metric" msgstr "Metryka interfejsu" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:395 -msgid "The lan network device, e.g. 'br-lan'." -msgstr "Urządzenie sieci lan, np. 'br-lan'." - -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:389 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:660 msgid "The logical vpn network interface, e.g. 'wg0' or 'tun0'." msgstr "Logiczny interfejs sieci VPN, np. „wg0” lub „tun0”." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:351 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:370 msgid "" "The selected URL will be used for connectivity- and captive portal checks." msgstr "" "Wybrany adres URL będzie używany do sprawdzania łączności i portalu " "dostępowego." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:368 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:388 msgid "The selected priority will be used for travelmate processes." msgstr "Wybrany priorytet będzie używany w procesach travelmate." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:359 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:379 msgid "" "The selected user agent will be used for connectivity- and captive portal " "checks." @@ -637,15 +651,21 @@ msgstr "" "Wyjście dziennika systemowego, wstępnie filtrowane aby zawierało tylko " "informacje związane z travelmate." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:56 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:58 msgid "The uplink interface has been updated." msgstr "Interfejs uplink został zaktualizowany." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:26 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:28 msgid "The uplink interface name" msgstr "Nazwa interfejsu uplink" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:20 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:490 +msgid "" +"This option is selected by default if this uplink was added automatically " +"and counts as 'Open Uplink'." +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:23 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 " @@ -655,7 +675,7 @@ msgstr "" "Kreator ten tworzy interfejs sieciowy IPv4- i IPv6 alias z wszystkimi " "wymaganymi ustawieniami sieci i zapory sieciowej." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:417 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:413 msgid "Topic for travelmate notification E-Mails." msgstr "Temat powiadomień e-mail travelmate." @@ -663,49 +683,53 @@ msgstr "Temat powiadomień e-mail travelmate." msgid "Travelmate" msgstr "Travelmate" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:209 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:239 msgid "Travelmate Settings" msgstr "Ustawienia Travelmate" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:301 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:314 msgid "Treat missing internet availability as an error." msgstr "Traktuj brak dostępu do internetu jako błąd." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:321 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:340 msgid "Trigger Delay" msgstr "Opóźnienie wyzwalacza" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:359 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:507 +msgid "Use the specified MAC address for this uplink." +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:379 msgid "User Agent" msgstr "Agent użytkownika" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:380 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:628 msgid "VPN Hook" msgstr "VPN Hook" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:389 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:660 msgid "VPN Interface" msgstr "Interfejs VPN" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:383 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:645 msgid "VPN Service" msgstr "Usługa VPN" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:281 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:240 msgid "VPN Settings" msgstr "Ustawienia VPN" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:290 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:300 msgid "Verbose Debug Logging" msgstr "Pełne rejestrowanie debugowania" -#: 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:764 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:307 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:897 msgid "WPA Ent. (CCMP)" msgstr "WPA Ent. (CCMP)" -#: 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:765 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:308 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:898 msgid "WPA Ent. (TKIP)" msgstr "WPA Ent. (TKIP)" @@ -713,101 +737,101 @@ msgstr "WPA Ent. (TKIP)" msgid "WPA Flags" msgstr "Flagi WPA" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:262 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:755 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:298 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:888 msgid "WPA Pers." msgstr "WPA Pers." -#: 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:756 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:299 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:889 msgid "WPA Pers. (CCMP)" msgstr "WPA Pers. (CCMP)" -#: 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:757 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:300 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:890 msgid "WPA Pers. (TKIP)" msgstr "WPA Pers. (TKIP)" -#: 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:766 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:309 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:899 msgid "WPA/WPA2 Ent. (CCMP)" msgstr "WPA/WPA2 Ent. (CCMP)" -#: 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:767 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:310 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:900 msgid "WPA/WPA2 Ent. (TKIP)" msgstr "WPA/WPA2 Ent. (TKIP)" -#: 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:758 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:301 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:891 msgid "WPA/WPA2 Pers. (CCMP)" msgstr "WPA/WPA2 Pers. (CCMP)" -#: 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:759 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:302 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:892 msgid "WPA/WPA2 Pers. (TKIP)" msgstr "WPA/WPA2 Pers. (TKIP)" -#: 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:762 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:305 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:895 msgid "WPA2 Ent. (CCMP)" msgstr "WPA2 Ent. (CCMP)" -#: 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:763 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:306 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:896 msgid "WPA2 Ent. (TKIP)" msgstr "WPA2 Ent. (TKIP)" -#: 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:752 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:295 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:885 msgid "WPA2 Pers." msgstr "WPA2 Pers." -#: 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:753 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:296 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:886 msgid "WPA2 Pers. (CCMP)" msgstr "WPA2 Pers. (CCMP)" -#: 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:754 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:297 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:887 msgid "WPA2 Pers. (TKIP)" msgstr "WPA2 Pers. (TKIP)" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:761 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:894 msgid "WPA2/WPA3 Ent." msgstr "WPA2/WPA3 Ent." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:268 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:304 msgid "WPA2/WPA3 Ent. (CCMP)" msgstr "WPA2/WPA3 Ent. (CCMP)" -#: 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:751 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:294 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:884 msgid "WPA2/WPA3 Pers. (CCMP)" msgstr "WPA2/WPA3 Pers. (CCMP)" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:760 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:893 msgid "WPA3 Ent." msgstr "WPA3 Ent." -#: 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:303 msgid "WPA3 Ent. (CCMP)" msgstr "WPA3 Ent. (CCMP)" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:768 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:901 msgid "WPA3 OWE (CCMP)" msgstr "WPA3 OWE (CCMP)" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:257 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:750 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:293 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:883 msgid "WPA3 Pers. (SAE)" msgstr "WPA3 Pers. (SAE)" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:581 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:715 msgid "Wireless Scan" msgstr "Bezprzewodowe skanowanie" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:208 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:238 msgid "Wireless Settings" msgstr "Ustawienia sieci bezprzewodowej" @@ -815,21 +839,66 @@ msgstr "Ustawienia sieci bezprzewodowej" msgid "Wireless Stations" msgstr "Stacje bezprzewodowe" -#: 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:798 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:406 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:931 msgid "auth=MSCHAPV2" msgstr "auth=MSCHAPV2" -#: 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:797 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:405 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:930 msgid "auth=PAP" msgstr "auth=PAP" -#: 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:769 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:312 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:902 msgid "none" msgstr "brak" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:306 +msgid "use both radios, normal sort order (radio0 radio1)" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:307 +msgid "use both radios, reverse sort order (radio1 radio0)" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:304 +msgid "use the first radio only (radio0)" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:305 +msgid "use the second radio only (radio1)" +msgstr "" + +#~ msgid "Automatically handle VPN (re-) connections." +#~ msgstr "Automatyczna obsługa połączeń VPN." + +#~ msgid "Del" +#~ msgstr "Usuń" + +#~ msgid "Delete this network" +#~ msgstr "Usuń tą sieć" + +#~ msgid "LAN Device" +#~ msgstr "Urządzenie LAN" + +#~ msgid "" +#~ "Please note: VPN connections require the separate setup of the " +#~ "Wireguard or OpenVPN package.
" +#~ msgstr "" +#~ "Uwaga: połączenia VPN wymagają oddzielnej konfiguracji pakietu " +#~ "Wireguard lub OpenVPN.
" + +#~ msgid "" +#~ "Restrict travelmate to a single radio or change the overall scanning " +#~ "order (e.g. 'radio1 radio0')." +#~ msgstr "" +#~ "Ogranicz travelmate do jednego radia lub zmień ogólną kolejność " +#~ "skanowania (np. 'radio1 radio0')." + +#~ msgid "The lan network device, e.g. 'br-lan'." +#~ msgstr "Urządzenie sieci lan, np. 'br-lan'." + #~ msgid "" #~ "Configuration of the travelmate package to to enable travel router " #~ "functionality. For further information 1;\n" "X-Generator: Weblate 4.7-dev\n" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:73 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:75 msgid "-- AP Selection --" msgstr "-- Seleção do AP --" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:261 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:265 msgid "AP QR-Codes..." msgstr "Códigos QR do AP..." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:823 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:956 msgid "Add Uplink %q" msgstr "Adicionar ligação ascendente %q" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:679 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:813 msgid "Add Uplink..." msgstr "Adicionar ligação ascendente..." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:280 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:291 msgid "Additional Settings" msgstr "Configurações adicionais" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:321 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:340 msgid "" "Additional trigger delay in seconds before travelmate processing begins." msgstr "Atraso adicional em segundos antes do travelmate processe os gatilhos." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:360 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:787 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:396 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:920 msgid "Authentication" msgstr "Autenticação" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:484 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:489 +msgid "Auto Added Open Uplink" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:568 msgid "Auto Login Script" msgstr "Script de Login Automático" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:310 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:327 msgid "AutoAdd Open Uplinks" msgstr "Adicionar ligações ascendentes abertos automaticamente" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:467 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:551 msgid "" "Automatically (re-)enable the uplink after n minutes, e.g. after " "failed login attempts.
" @@ -436,19 +453,11 @@ msgstr "" "Observação: as notificações do e-mail requerem a configuração separada do " "pacote mstmp.
" -#: 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 "" -"Observação: as conexões de VPN requerem a configuração separada do pacote " -"Wireguard ou do OpenVPN.
" - -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:306 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:319 msgid "ProActive Uplink Switch" msgstr "Comutador de ligação ascendente ProActive" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:306 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:319 msgid "" "Proactively scan and switch to a higher prioritized uplink, despite of an " "already existing connection." @@ -456,30 +465,38 @@ msgstr "" "Analise e mude proativamente para uma ligação ascendente priorizado mais " "alto, apesar de uma conexão já existente." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:422 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:418 msgid "Profile used by 'msmtp' for travelmate notification E-Mails." msgstr "" "Perfil usado pelo 'msmtp' para a notificação dos e-mails do travelmate." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:114 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:116 msgid "QR-Code Overview" msgstr "Visão geral do código QR" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:293 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:303 msgid "Radio Selection" msgstr "Seleção do rádio" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:314 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:323 msgid "Randomize MAC Addresses" msgstr "Randomizar os endereços MAC" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:407 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:403 msgid "Receiver address for travelmate notification E-Mails." msgstr "" "Endereço do e-mail do destinatário para o recebimento das notificações do " "travelmate." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:115 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:264 +msgid "Remove" +msgstr "Remover" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:262 +msgid "Remove this network" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:117 msgid "" "Render the QR-Code of the selected Access Point to comfortably transfer the " "WLAN credentials to your mobile devices." @@ -487,77 +504,78 @@ msgstr "" "Renderize o código QR do ponto de acesso selecionado para transferir " "confortavelmente as credenciais do WLAN para os seus aparelhos móveis." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:592 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:726 msgid "Repeat Scan" msgstr "Repetir a varredura" -#: 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')." +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:272 +msgid "Restart Interface" msgstr "" -"Restringir o travelmate para um único rádio ou alterar a ordem geral da " -"varredura (por exemplo, 'radio1 radio0')." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:326 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:303 +msgid "" +"Restrict travelmate to a single radio or change the overall scanning order." +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:345 msgid "Retry limit to connect to an uplink." msgstr "Limite de retentiva de conexão com uma ligação ascendente." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:241 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:242 msgid "Run Flags" msgstr "Flags de Execução" -#: 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:729 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:284 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:445 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:707 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:862 msgid "SSID" msgstr "SSID" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:725 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:858 msgid "SSID (hidden)" msgstr "SSID (oculto)" -#: 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:834 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:63 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:967 msgid "Save" msgstr "Guardar" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:346 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:365 msgid "Scan Buffer Size" msgstr "Tamanho do Buffer de Varredura" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:557 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:691 msgid "Scan on" msgstr "Varredura ligada" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:523 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:607 msgid "Script Arguments" msgstr "Argumentos do script" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:412 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:408 msgid "Sender address for travelmate notification E-Mails." msgstr "Endereço e-mail do remetente para as notificações do travelmate." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:404 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:400 msgid "Sends notification E-Mails after every succesful uplink connect." msgstr "" "Envia e-mails de notificação após cada conexão bem-recebida da ligação " "ascendente." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:368 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:388 msgid "Service Priority" msgstr "Prioridade do serviço" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:277 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:288 msgid "Settings" msgstr "Configurações" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:331 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:350 msgid "Signal Quality Threshold" msgstr "Limite da Qualidade do Sinal" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:524 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:608 msgid "" "Space separated list of additional arguments passed to the Auto Login " "Script, i.e. username and password" @@ -565,72 +583,68 @@ msgstr "" "Lista separada por espaços de argumentos adicionais passados ao Script de " "Login Automático, ou seja, nome de utilizador e palavra-passe" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:579 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:713 msgid "Starting wireless scan on '" msgstr "A iniciar a varredura sem fio em '" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:229 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:226 msgid "Station ID" msgstr "ID da estação" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:235 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:234 msgid "Station Interface" msgstr "Interface da Estação" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:232 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:230 msgid "Station MAC" msgstr "MAC da estação" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:226 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:222 msgid "Status / Version" msgstr "Condição geral / versão" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:571 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:705 msgid "Strength" msgstr "Força" -#: 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:781 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:388 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:914 msgid "TLS" msgstr "TLS" -#: 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:782 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:389 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:915 msgid "TTLS" msgstr "TTLS" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:105 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:107 msgid "The QR-Code could not be generated!" msgstr "O código QR não pôde ser gerado!" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:31 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:33 msgid "The firewall zone name" msgstr "O nome da zona do firewall" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:36 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:38 msgid "The interface metric" msgstr "A métrica de interface" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:395 -msgid "The lan network device, e.g. 'br-lan'." -msgstr "O aparelho lan da rede, por exemplo, 'br-lan'." - -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:389 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:660 msgid "The logical vpn network interface, e.g. 'wg0' or 'tun0'." msgstr "A interface lógica da rede de vpn, por exemplo, 'wg0' ou 'tun0'." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:351 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:370 msgid "" "The selected URL will be used for connectivity- and captive portal checks." msgstr "" "A URL selecionada será utilizada para as verificações do portal de " "conectividade e do portal cativo." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:368 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:388 msgid "The selected priority will be used for travelmate processes." msgstr "A prioridade selecionada será usada pelos processos do travelmate." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:359 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:379 msgid "" "The selected user agent will be used for connectivity- and captive portal " "checks." @@ -642,15 +656,21 @@ msgstr "" msgid "The syslog output, pre-filtered for travelmate related messages only." msgstr "Mensagens do syslog relacionadas ao travelmate." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:56 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:58 msgid "The uplink interface has been updated." msgstr "A interface da ligação ascendente foi atualizada." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:26 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:28 msgid "The uplink interface name" msgstr "O nome da interface da ligação ascendente" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:20 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:490 +msgid "" +"This option is selected by default if this uplink was added automatically " +"and counts as 'Open Uplink'." +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:23 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 " @@ -660,7 +680,7 @@ msgstr "" "Este assistente cria uma interface pseudónima de rede IPv4 e de IPv6 com " "todas as configurações necessárias da rede e do firewall." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:417 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:413 msgid "Topic for travelmate notification E-Mails." msgstr "O assunto do e-mail usado pela notificação do travelmate." @@ -668,49 +688,53 @@ msgstr "O assunto do e-mail usado pela notificação do travelmate." msgid "Travelmate" msgstr "Travelmate" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:209 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:239 msgid "Travelmate Settings" msgstr "Configurações do Travelmate" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:301 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:314 msgid "Treat missing internet availability as an error." msgstr "Tratar a falta de disponibilidade da Internet como um erro." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:321 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:340 msgid "Trigger Delay" msgstr "Atraso do Gatilho" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:359 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:507 +msgid "Use the specified MAC address for this uplink." +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:379 msgid "User Agent" msgstr "Agente do utilizador" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:380 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:628 msgid "VPN Hook" msgstr "Gancho de VPN" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:389 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:660 msgid "VPN Interface" msgstr "Interface da VPN" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:383 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:645 msgid "VPN Service" msgstr "Serviço de VPN" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:281 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:240 msgid "VPN Settings" msgstr "Configurações da VPN" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:290 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:300 msgid "Verbose Debug Logging" msgstr "Registos detalhados de depuração" -#: 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:764 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:307 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:897 msgid "WPA Ent. (CCMP)" msgstr "WPA Ent. (CCMP)" -#: 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:765 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:308 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:898 msgid "WPA Ent. (TKIP)" msgstr "WPA Ent. (TKIP)" @@ -718,101 +742,101 @@ msgstr "WPA Ent. (TKIP)" msgid "WPA Flags" msgstr "Sinalizadores do WPA" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:262 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:755 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:298 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:888 msgid "WPA Pers." msgstr "WPA Pers." -#: 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:756 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:299 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:889 msgid "WPA Pers. (CCMP)" msgstr "WPA Pers. (CCMP)" -#: 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:757 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:300 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:890 msgid "WPA Pers. (TKIP)" msgstr "WPA Pers. (TKIP)" -#: 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:766 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:309 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:899 msgid "WPA/WPA2 Ent. (CCMP)" msgstr "WPA/WPA2 Ent. (CCMP)" -#: 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:767 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:310 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:900 msgid "WPA/WPA2 Ent. (TKIP)" msgstr "WPA/WPA2 Ent. (TKIP)" -#: 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:758 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:301 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:891 msgid "WPA/WPA2 Pers. (CCMP)" msgstr "WPA/WPA2 Pers. (CCMP)" -#: 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:759 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:302 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:892 msgid "WPA/WPA2 Pers. (TKIP)" msgstr "WPA/WPA2 Pers. (TKIP)" -#: 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:762 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:305 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:895 msgid "WPA2 Ent. (CCMP)" msgstr "WPA2 Ent. (CCMP)" -#: 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:763 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:306 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:896 msgid "WPA2 Ent. (TKIP)" msgstr "WPA2 Ent. (TKIP)" -#: 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:752 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:295 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:885 msgid "WPA2 Pers." msgstr "WPA2 Pers." -#: 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:753 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:296 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:886 msgid "WPA2 Pers. (CCMP)" msgstr "WPA2 Pers. (CCMP)" -#: 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:754 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:297 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:887 msgid "WPA2 Pers. (TKIP)" msgstr "WPA2 Pers. (TKIP)" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:761 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:894 msgid "WPA2/WPA3 Ent." msgstr "WPA2/WPA3 Ent." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:268 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:304 msgid "WPA2/WPA3 Ent. (CCMP)" msgstr "WPA2/WPA3 Ent. (CCMP)" -#: 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:751 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:294 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:884 msgid "WPA2/WPA3 Pers. (CCMP)" msgstr "WPA2/WPA3 Pers. (CCMP)" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:760 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:893 msgid "WPA3 Ent." msgstr "WPA3 Ent." -#: 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:303 msgid "WPA3 Ent. (CCMP)" msgstr "WPA3 Ent. (CCMP)" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:768 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:901 msgid "WPA3 OWE (CCMP)" msgstr "WPA3 OWE (CCMP)" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:257 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:750 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:293 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:883 msgid "WPA3 Pers. (SAE)" msgstr "WPA3 Pers. (SAE)" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:581 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:715 msgid "Wireless Scan" msgstr "Escaneamento da Rede Sem Fio" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:208 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:238 msgid "Wireless Settings" msgstr "Configurações da rede sem fio" @@ -820,21 +844,66 @@ msgstr "Configurações da rede sem fio" msgid "Wireless Stations" msgstr "Estações Associadas" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:370 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:798 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:406 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:931 msgid "auth=MSCHAPV2" msgstr "auth=MSCHAPV2" -#: 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:797 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:405 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:930 msgid "auth=PAP" msgstr "auth=PAP" -#: 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:769 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:312 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:902 msgid "none" msgstr "nenhum" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:306 +msgid "use both radios, normal sort order (radio0 radio1)" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:307 +msgid "use both radios, reverse sort order (radio1 radio0)" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:304 +msgid "use the first radio only (radio0)" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:305 +msgid "use the second radio only (radio1)" +msgstr "" + +#~ msgid "Automatically handle VPN (re-) connections." +#~ msgstr "Lidar com (re-)conexões do VPN automaticamente." + +#~ msgid "Del" +#~ msgstr "Excluir" + +#~ msgid "Delete this network" +#~ msgstr "Apagar esta rede" + +#~ msgid "LAN Device" +#~ msgstr "Aparelho LAN" + +#~ msgid "" +#~ "Please note: VPN connections require the separate setup of the " +#~ "Wireguard or OpenVPN package.
" +#~ msgstr "" +#~ "Observação: as conexões de VPN requerem a configuração separada do pacote " +#~ "Wireguard ou do OpenVPN.
" + +#~ msgid "" +#~ "Restrict travelmate to a single radio or change the overall scanning " +#~ "order (e.g. 'radio1 radio0')." +#~ msgstr "" +#~ "Restringir o travelmate para um único rádio ou alterar a ordem geral da " +#~ "varredura (por exemplo, 'radio1 radio0')." + +#~ msgid "The lan network device, e.g. 'br-lan'." +#~ msgstr "O aparelho lan da rede, por exemplo, 'br-lan'." + #~ msgid "" #~ "Configuration of the travelmate package to to enable travel router " #~ "functionality. For further information 1;\n" "X-Generator: Weblate 4.7-dev\n" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:73 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:75 msgid "-- AP Selection --" msgstr "-- Seleção do AP --" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:261 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:265 msgid "AP QR-Codes..." msgstr "Códigos QR do AP..." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:823 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:956 msgid "Add Uplink %q" msgstr "Adicionar Enlace %q" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:679 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:813 msgid "Add Uplink..." msgstr "Adicionar o Enlace..." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:280 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:291 msgid "Additional Settings" msgstr "Configurações Adicionais" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:321 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:340 msgid "" "Additional trigger delay in seconds before travelmate processing begins." msgstr "Atraso adicional em segundos antes do travelmate processe os gatilhos." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:360 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:787 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:396 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:920 msgid "Authentication" msgstr "Autenticação" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:484 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:489 +msgid "Auto Added Open Uplink" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:568 msgid "Auto Login Script" msgstr "Script de Login Automático" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:310 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:327 msgid "AutoAdd Open Uplinks" msgstr "Adicionar Automaticamente os Uplinks Abertos" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:467 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:551 msgid "" "Automatically (re-)enable the uplink after n minutes, e.g. after " "failed login attempts.
" @@ -435,19 +452,11 @@ msgstr "" "Observação: As notificações do e-mail requerem a configuração separada do " "pacote mstmp.
" -#: 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 "" -"Observação: As conexões VPN requerem a configuração separada do pacote " -"Wireguard ou o OpenVPN.
" - -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:306 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:319 msgid "ProActive Uplink Switch" msgstr "ProActive Switch de Ligação Acendente (Uplink)" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:306 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:319 msgid "" "Proactively scan and switch to a higher prioritized uplink, despite of an " "already existing connection." @@ -455,30 +464,38 @@ msgstr "" "Faça uma varredura de forma proativa e selecione um switch com prioridade " "mais alta, mesmo que já exista uma conexão." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:422 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:418 msgid "Profile used by 'msmtp' for travelmate notification E-Mails." msgstr "" "Perfil usado pelo 'msmtp' para a notificação dos E-mails do travelmate." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:114 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:116 msgid "QR-Code Overview" msgstr "Visão geral do código QR" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:293 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:303 msgid "Radio Selection" msgstr "Seleção do Rádio" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:314 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:323 msgid "Randomize MAC Addresses" msgstr "Randomize os endereços MAC" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:407 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:403 msgid "Receiver address for travelmate notification E-Mails." msgstr "" "Endereço do E-Mail do destinatário para o recebimento das notificações do " "travelmate." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:115 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:264 +msgid "Remove" +msgstr "Remover" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:262 +msgid "Remove this network" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:117 msgid "" "Render the QR-Code of the selected Access Point to comfortably transfer the " "WLAN credentials to your mobile devices." @@ -486,75 +503,76 @@ msgstr "" "Renderize o código QR do Ponto de Acesso selecionado para transferir " "confortavelmente as credenciais do WLAN para os seus dispositivos móveis." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:592 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:726 msgid "Repeat Scan" msgstr "Repetir a varredura" -#: 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')." +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:272 +msgid "Restart Interface" msgstr "" -"Restringir o travelmate para um único rádio ou alterar a ordem geral da " -"varredura (por exemplo, 'radio1 radio0')." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:326 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:303 +msgid "" +"Restrict travelmate to a single radio or change the overall scanning order." +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:345 msgid "Retry limit to connect to an uplink." msgstr "Limite de novas tentativas de conexão com um enlace externo." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:241 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:242 msgid "Run Flags" msgstr "Executar Flags" -#: 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:729 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:284 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:445 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:707 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:862 msgid "SSID" msgstr "SSID" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:725 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:858 msgid "SSID (hidden)" msgstr "SSID (oculto)" -#: 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:834 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:63 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:967 msgid "Save" msgstr "Salvar" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:346 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:365 msgid "Scan Buffer Size" msgstr "Tamanho do Buffer de Varredura" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:557 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:691 msgid "Scan on" msgstr "Varredura ligada" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:523 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:607 msgid "Script Arguments" msgstr "Argumentos do script" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:412 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:408 msgid "Sender address for travelmate notification E-Mails." msgstr "Endereço E-Mail do remetente para as notificações do travelmate." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:404 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:400 msgid "Sends notification E-Mails after every succesful uplink connect." msgstr "Envia e-mails de notificação após cada conexão bem-recebida do enlace." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:368 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:388 msgid "Service Priority" msgstr "Prioridade do serviço" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:277 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:288 msgid "Settings" msgstr "Configurações" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:331 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:350 msgid "Signal Quality Threshold" msgstr "Limite da Qualidade do Sinal" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:524 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:608 msgid "" "Space separated list of additional arguments passed to the Auto Login " "Script, i.e. username and password" @@ -562,72 +580,68 @@ msgstr "" "Lista de argumentos adicionais separados por espaço que serão passados ao " "Script de Login Automático, por exemplo, nome de usuário e senha" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:579 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:713 msgid "Starting wireless scan on '" msgstr "Iniciando a varredura sem fio em '" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:229 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:226 msgid "Station ID" msgstr "ID da estação" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:235 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:234 msgid "Station Interface" msgstr "Interface da Estação" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:232 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:230 msgid "Station MAC" msgstr "MAC da estação" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:226 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:222 msgid "Status / Version" msgstr "Condição Geral / Versão" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:571 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:705 msgid "Strength" msgstr "Força" -#: 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:781 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:388 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:914 msgid "TLS" msgstr "TLS" -#: 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:782 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:389 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:915 msgid "TTLS" msgstr "TTLS" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:105 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:107 msgid "The QR-Code could not be generated!" msgstr "O Código QR não pôde ser gerado!" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:31 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:33 msgid "The firewall zone name" msgstr "O nome da zona do firewall" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:36 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:38 msgid "The interface metric" msgstr "A métrica de interface" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:395 -msgid "The lan network device, e.g. 'br-lan'." -msgstr "O dispositivo lan da rede, por exemplo, 'br-lan'." - -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:389 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:660 msgid "The logical vpn network interface, e.g. 'wg0' or 'tun0'." msgstr "A interface lógica da rede vpn, por exemplo, 'wg0' ou 'tun0'." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:351 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:370 msgid "" "The selected URL will be used for connectivity- and captive portal checks." msgstr "" "A URL selecionada será utilizada para as verificações do portal de " "conectividade e do portal cativo." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:368 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:388 msgid "The selected priority will be used for travelmate processes." msgstr "A prioridade selecionada será usada pelos processos do travelmate." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:359 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:379 msgid "" "The selected user agent will be used for connectivity- and captive portal " "checks." @@ -639,15 +653,21 @@ msgstr "" msgid "The syslog output, pre-filtered for travelmate related messages only." msgstr "Mensagens do syslog relacionadas ao travelmate." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:56 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:58 msgid "The uplink interface has been updated." msgstr "A interface do enlace foi atualizada." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:26 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:28 msgid "The uplink interface name" msgstr "O nome da interface do enlace" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:20 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:490 +msgid "" +"This option is selected by default if this uplink was added automatically " +"and counts as 'Open Uplink'." +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:23 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 " @@ -657,7 +677,7 @@ msgstr "" "enlace. Este assistente cria uma interface de rede IPv4 e uma interface IPv6 " "com todas as configurações necessárias da rede e do firewall." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:417 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:413 msgid "Topic for travelmate notification E-Mails." msgstr "O assunto do E-mail usado pela notificação do travelmate." @@ -665,49 +685,53 @@ msgstr "O assunto do E-mail usado pela notificação do travelmate." msgid "Travelmate" msgstr "Travelmate" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:209 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:239 msgid "Travelmate Settings" msgstr "Configurações do Travelmate" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:301 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:314 msgid "Treat missing internet availability as an error." msgstr "Tratar a falta de disponibilidade da Internet como um erro." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:321 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:340 msgid "Trigger Delay" msgstr "Gatilho de Atraso" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:359 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:507 +msgid "Use the specified MAC address for this uplink." +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:379 msgid "User Agent" msgstr "Agente do usuário" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:380 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:628 msgid "VPN Hook" msgstr "Gancho VPN" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:389 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:660 msgid "VPN Interface" msgstr "Interface da VPN" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:383 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:645 msgid "VPN Service" msgstr "Serviço VPN" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:281 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:240 msgid "VPN Settings" msgstr "Configurações da VPN" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:290 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:300 msgid "Verbose Debug Logging" msgstr "Registros Detalhados de Depuração" -#: 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:764 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:307 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:897 msgid "WPA Ent. (CCMP)" msgstr "WPA Ent. (CCMP)" -#: 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:765 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:308 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:898 msgid "WPA Ent. (TKIP)" msgstr "WPA Ent. (TKIP)" @@ -715,101 +739,101 @@ msgstr "WPA Ent. (TKIP)" msgid "WPA Flags" msgstr "Sinalizadores do WPA" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:262 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:755 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:298 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:888 msgid "WPA Pers." msgstr "WPA Pers." -#: 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:756 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:299 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:889 msgid "WPA Pers. (CCMP)" msgstr "WPA Pers. (CCMP)" -#: 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:757 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:300 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:890 msgid "WPA Pers. (TKIP)" msgstr "WPA Pers. (TKIP)" -#: 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:766 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:309 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:899 msgid "WPA/WPA2 Ent. (CCMP)" msgstr "WPA/WPA2 Ent. (CCMP)" -#: 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:767 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:310 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:900 msgid "WPA/WPA2 Ent. (TKIP)" msgstr "WPA/WPA2 Ent. (TKIP)" -#: 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:758 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:301 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:891 msgid "WPA/WPA2 Pers. (CCMP)" msgstr "WPA/WPA2 Pers. (CCMP)" -#: 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:759 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:302 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:892 msgid "WPA/WPA2 Pers. (TKIP)" msgstr "WPA/WPA2 Pers. (TKIP)" -#: 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:762 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:305 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:895 msgid "WPA2 Ent. (CCMP)" msgstr "WPA2 Ent. (CCMP)" -#: 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:763 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:306 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:896 msgid "WPA2 Ent. (TKIP)" msgstr "WPA2 Ent. (TKIP)" -#: 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:752 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:295 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:885 msgid "WPA2 Pers." msgstr "WPA2 Pers." -#: 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:753 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:296 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:886 msgid "WPA2 Pers. (CCMP)" msgstr "WPA2 Pers. (CCMP)" -#: 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:754 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:297 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:887 msgid "WPA2 Pers. (TKIP)" msgstr "WPA2 Pers. (TKIP)" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:761 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:894 msgid "WPA2/WPA3 Ent." msgstr "WPA2/WPA3 Ent." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:268 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:304 msgid "WPA2/WPA3 Ent. (CCMP)" msgstr "WPA2/WPA3 Ent. (CCMP)" -#: 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:751 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:294 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:884 msgid "WPA2/WPA3 Pers. (CCMP)" msgstr "WPA2/WPA3 Pers. (CCMP)" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:760 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:893 msgid "WPA3 Ent." msgstr "WPA3 Ent." -#: 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:303 msgid "WPA3 Ent. (CCMP)" msgstr "WPA3 Ent. (CCMP)" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:768 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:901 msgid "WPA3 OWE (CCMP)" msgstr "WPA3 OWE (CCMP)" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:257 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:750 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:293 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:883 msgid "WPA3 Pers. (SAE)" msgstr "WPA3 Pers. (SAE)" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:581 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:715 msgid "Wireless Scan" msgstr "Escaneamento da Rede Sem Fio" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:208 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:238 msgid "Wireless Settings" msgstr "Configurações da rede sem fio" @@ -817,21 +841,66 @@ msgstr "Configurações da rede sem fio" msgid "Wireless Stations" msgstr "Estações Associadas" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:370 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:798 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:406 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:931 msgid "auth=MSCHAPV2" msgstr "auth=MSCHAPV2" -#: 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:797 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:405 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:930 msgid "auth=PAP" msgstr "auth=PAP" -#: 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:769 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:312 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:902 msgid "none" msgstr "nenhum" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:306 +msgid "use both radios, normal sort order (radio0 radio1)" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:307 +msgid "use both radios, reverse sort order (radio1 radio0)" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:304 +msgid "use the first radio only (radio0)" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:305 +msgid "use the second radio only (radio1)" +msgstr "" + +#~ msgid "Automatically handle VPN (re-) connections." +#~ msgstr "Lide automaticamente com as (re-)conexões VPN." + +#~ msgid "Del" +#~ msgstr "Excluir" + +#~ msgid "Delete this network" +#~ msgstr "Apagar esta rede" + +#~ msgid "LAN Device" +#~ msgstr "Dispositivo LAN" + +#~ msgid "" +#~ "Please note: VPN connections require the separate setup of the " +#~ "Wireguard or OpenVPN package.
" +#~ msgstr "" +#~ "Observação: As conexões VPN requerem a configuração separada do pacote " +#~ "Wireguard ou o OpenVPN.
" + +#~ msgid "" +#~ "Restrict travelmate to a single radio or change the overall scanning " +#~ "order (e.g. 'radio1 radio0')." +#~ msgstr "" +#~ "Restringir o travelmate para um único rádio ou alterar a ordem geral da " +#~ "varredura (por exemplo, 'radio1 radio0')." + +#~ msgid "The lan network device, e.g. 'br-lan'." +#~ msgstr "O dispositivo lan da rede, por exemplo, 'br-lan'." + #~ msgid "" #~ "Configuration of the travelmate package to to enable travel router " #~ "functionality. For further information 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 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:319 msgid "ProActive Uplink Switch" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:306 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:319 msgid "" "Proactively scan and switch to a higher prioritized uplink, despite of an " "already existing connection." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:422 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:418 msgid "Profile used by 'msmtp' for travelmate notification E-Mails." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:114 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:116 msgid "QR-Code Overview" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:293 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:303 msgid "Radio Selection" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:314 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:323 msgid "Randomize MAC Addresses" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:407 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:403 msgid "Receiver address for travelmate notification E-Mails." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:115 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:264 +msgid "Remove" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:262 +msgid "Remove this network" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:117 msgid "" "Render the QR-Code of the selected Access Point to comfortably transfer the " "WLAN credentials to your mobile devices." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:592 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:726 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')." +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:272 +msgid "Restart Interface" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:326 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:303 +msgid "" +"Restrict travelmate to a single radio or change the overall scanning order." +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:345 msgid "Retry limit to connect to an uplink." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:241 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:242 msgid "Run Flags" msgstr "" -#: 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:729 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:284 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:445 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:707 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:862 msgid "SSID" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:725 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:858 msgid "SSID (hidden)" msgstr "" -#: 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:834 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:63 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:967 msgid "Save" msgstr "Salvează" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:346 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:365 msgid "Scan Buffer Size" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:557 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:691 msgid "Scan on" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:523 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:607 msgid "Script Arguments" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:412 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:408 msgid "Sender address for travelmate notification E-Mails." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:404 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:400 msgid "Sends notification E-Mails after every succesful uplink connect." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:368 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:388 msgid "Service Priority" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:277 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:288 msgid "Settings" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:331 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:350 msgid "Signal Quality Threshold" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:524 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:608 msgid "" "Space separated list of additional arguments passed to the Auto Login " "Script, i.e. username and password" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:579 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:713 msgid "Starting wireless scan on '" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:229 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:226 msgid "Station ID" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:235 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:234 msgid "Station Interface" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:232 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:230 msgid "Station MAC" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:226 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:222 msgid "Status / Version" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:571 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:705 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:781 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:388 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:914 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:782 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:389 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:915 msgid "TTLS" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:105 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:107 msgid "The QR-Code could not be generated!" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:31 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:33 msgid "The firewall zone name" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:36 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:38 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 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:660 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 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:370 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 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:388 msgid "The selected priority will be used for travelmate processes." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:359 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:379 msgid "" "The selected user agent will be used for connectivity- and captive portal " "checks." @@ -590,22 +608,28 @@ msgstr "" msgid "The syslog output, pre-filtered for travelmate related messages only." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:56 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:58 msgid "The uplink interface has been updated." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:26 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:28 msgid "The uplink interface name" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:20 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:490 +msgid "" +"This option is selected by default if this uplink was added automatically " +"and counts as 'Open Uplink'." +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:23 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 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:413 msgid "Topic for travelmate notification E-Mails." msgstr "" @@ -613,49 +637,53 @@ msgstr "" msgid "Travelmate" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:209 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:239 msgid "Travelmate Settings" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:301 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:314 msgid "Treat missing internet availability as an error." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:321 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:340 msgid "Trigger Delay" msgstr "Intârzierea declanșării" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:359 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:507 +msgid "Use the specified MAC address for this uplink." +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:379 msgid "User Agent" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:380 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:628 msgid "VPN Hook" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:389 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:660 msgid "VPN Interface" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:383 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:645 msgid "VPN Service" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:281 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:240 msgid "VPN Settings" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:290 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:300 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:764 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:307 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:897 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:765 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:308 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:898 msgid "WPA Ent. (TKIP)" msgstr "" @@ -663,101 +691,101 @@ msgstr "" 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:755 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:298 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:888 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:756 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:299 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:889 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:757 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:300 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:890 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:766 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:309 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:899 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:767 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:310 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:900 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:758 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:301 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:891 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:759 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:302 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:892 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:762 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:305 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:895 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:763 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:306 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:896 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:752 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:295 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:885 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:753 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:296 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:886 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:754 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:297 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:887 msgid "WPA2 Pers. (TKIP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:761 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:894 msgid "WPA2/WPA3 Ent." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:268 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:304 msgid "WPA2/WPA3 Ent. (CCMP)" 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:751 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:294 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:884 msgid "WPA2/WPA3 Pers. (CCMP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:760 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:893 msgid "WPA3 Ent." 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:303 msgid "WPA3 Ent. (CCMP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:768 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:901 msgid "WPA3 OWE (CCMP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:257 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:750 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:293 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:883 msgid "WPA3 Pers. (SAE)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:581 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:715 msgid "Wireless Scan" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:208 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:238 msgid "Wireless Settings" msgstr "" @@ -765,21 +793,37 @@ msgstr "" msgid "Wireless Stations" msgstr "" -#: 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:798 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:406 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:931 msgid "auth=MSCHAPV2" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:369 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:797 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:405 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:930 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:769 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:312 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:902 msgid "none" msgstr "" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:306 +msgid "use both radios, normal sort order (radio0 radio1)" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:307 +msgid "use both radios, reverse sort order (radio1 radio0)" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:304 +msgid "use the first radio only (radio0)" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:305 +msgid "use the second radio only (radio1)" +msgstr "" + #~ msgid "Action" #~ msgstr "Actiune" diff --git a/applications/luci-app-travelmate/po/ru/travelmate.po b/applications/luci-app-travelmate/po/ru/travelmate.po index c43ec7c54c..2c6143997f 100644 --- a/applications/luci-app-travelmate/po/ru/travelmate.po +++ b/applications/luci-app-travelmate/po/ru/travelmate.po @@ -16,101 +16,108 @@ msgstr "" "Project-Info: Это технический перевод, не дословный. Главное-удобный русский " "интерфейс, все проверялось в графическом режиме, совместим с другими apps\n" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:73 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:75 msgid "-- AP Selection --" msgstr "-- Выбор точки доступа --" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:261 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:265 msgid "AP QR-Codes..." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:823 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:956 msgid "Add Uplink %q" msgstr "Добавить канал %q" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:679 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:813 msgid "Add Uplink..." msgstr "Добавить канал..." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:280 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:291 msgid "Additional Settings" msgstr "Дополнительные настройки" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:321 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:340 msgid "" "Additional trigger delay in seconds before travelmate processing begins." msgstr "Дополнительная задержка в секундах до запуска TravelMate." -#: 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:787 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:396 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:920 msgid "Authentication" msgstr "Аутентификация" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:484 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:489 +msgid "Auto Added Open Uplink" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:568 msgid "Auto Login Script" msgstr "Скрипт автоматического входа" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:310 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:327 msgid "AutoAdd Open Uplinks" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:467 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:551 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 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:319 msgid "ProActive Uplink Switch" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:306 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:319 msgid "" "Proactively scan and switch to a higher prioritized uplink, despite of an " "already existing connection." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:422 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:418 msgid "Profile used by 'msmtp' for travelmate notification E-Mails." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:114 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:116 msgid "QR-Code Overview" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:293 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:303 msgid "Radio Selection" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:314 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:323 msgid "Randomize MAC Addresses" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:407 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:403 msgid "Receiver address for travelmate notification E-Mails." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:115 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:264 +msgid "Remove" +msgstr "Удалить" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:262 +msgid "Remove this network" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:117 msgid "" "Render the QR-Code of the selected Access Point to comfortably transfer the " "WLAN credentials to your mobile devices." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:592 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:726 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')." +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:272 +msgid "Restart Interface" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:326 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:303 +msgid "" +"Restrict travelmate to a single radio or change the overall scanning order." +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:345 msgid "Retry limit to connect to an uplink." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:241 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:242 #, fuzzy msgid "Run Flags" msgstr "Рабочие флаги" -#: 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:729 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:284 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:445 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:707 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:862 msgid "SSID" msgstr "SSID" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:725 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:858 msgid "SSID (hidden)" msgstr "SSID (скрытый)" -#: 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:834 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:63 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:967 msgid "Save" msgstr "Сохранить" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:346 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:365 msgid "Scan Buffer Size" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:557 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:691 msgid "Scan on" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:523 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:607 msgid "Script Arguments" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:412 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:408 msgid "Sender address for travelmate notification E-Mails." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:404 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:400 msgid "Sends notification E-Mails after every succesful uplink connect." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:368 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:388 msgid "Service Priority" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:277 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:288 msgid "Settings" msgstr "Настройки" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:331 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:350 msgid "Signal Quality Threshold" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:524 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:608 msgid "" "Space separated list of additional arguments passed to the Auto Login " "Script, i.e. username and password" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:579 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:713 msgid "Starting wireless scan on '" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:229 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:226 msgid "Station ID" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:235 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:234 msgid "Station Interface" msgstr "Интерфейс клиента" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:232 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:230 msgid "Station MAC" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:226 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:222 msgid "Status / Version" msgstr "Статус / Версия" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:571 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:705 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:781 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:388 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:914 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:782 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:389 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:915 msgid "TTLS" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:105 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:107 msgid "The QR-Code could not be generated!" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:31 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:33 msgid "The firewall zone name" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:36 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:38 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 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:660 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 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:370 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 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:388 msgid "The selected priority will be used for travelmate processes." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:359 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:379 msgid "" "The selected user agent will be used for connectivity- and captive portal " "checks." @@ -598,22 +616,28 @@ msgstr "" "Страница просмотра системного журнала, показаны только события связанные с " "работой утилиты TravelMate." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:56 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:58 msgid "The uplink interface has been updated." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:26 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:28 msgid "The uplink interface name" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:20 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:490 +msgid "" +"This option is selected by default if this uplink was added automatically " +"and counts as 'Open Uplink'." +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:23 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 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:413 msgid "Topic for travelmate notification E-Mails." msgstr "" @@ -621,49 +645,53 @@ msgstr "" msgid "Travelmate" msgstr "TravelMate" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:209 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:239 msgid "Travelmate Settings" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:301 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:314 msgid "Treat missing internet availability as an error." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:321 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:340 msgid "Trigger Delay" msgstr "Задержка запуска" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:359 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:507 +msgid "Use the specified MAC address for this uplink." +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:379 msgid "User Agent" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:380 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:628 msgid "VPN Hook" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:389 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:660 msgid "VPN Interface" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:383 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:645 msgid "VPN Service" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:281 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:240 msgid "VPN Settings" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:290 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:300 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:764 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:307 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:897 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:765 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:308 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:898 msgid "WPA Ent. (TKIP)" msgstr "" @@ -671,101 +699,101 @@ msgstr "" 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:755 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:298 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:888 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:756 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:299 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:889 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:757 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:300 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:890 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:766 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:309 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:899 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:767 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:310 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:900 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:758 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:301 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:891 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:759 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:302 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:892 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:762 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:305 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:895 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:763 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:306 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:896 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:752 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:295 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:885 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:753 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:296 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:886 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:754 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:297 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:887 msgid "WPA2 Pers. (TKIP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:761 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:894 msgid "WPA2/WPA3 Ent." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:268 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:304 msgid "WPA2/WPA3 Ent. (CCMP)" 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:751 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:294 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:884 msgid "WPA2/WPA3 Pers. (CCMP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:760 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:893 msgid "WPA3 Ent." 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:303 msgid "WPA3 Ent. (CCMP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:768 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:901 msgid "WPA3 OWE (CCMP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:257 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:750 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:293 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:883 msgid "WPA3 Pers. (SAE)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:581 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:715 msgid "Wireless Scan" msgstr "Найденные точки доступа Wi-Fi" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:208 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:238 msgid "Wireless Settings" msgstr "" @@ -773,21 +801,46 @@ msgstr "" msgid "Wireless Stations" msgstr "Клиенты беспроводной сети" -#: 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:798 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:406 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:931 msgid "auth=MSCHAPV2" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:369 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:797 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:405 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:930 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:769 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:312 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:902 msgid "none" msgstr "ничего" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:306 +msgid "use both radios, normal sort order (radio0 radio1)" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:307 +msgid "use both radios, reverse sort order (radio1 radio0)" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:304 +msgid "use the first radio only (radio0)" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:305 +msgid "use the second radio only (radio1)" +msgstr "" + +#~ msgid "Automatically handle VPN (re-) connections." +#~ msgstr "Автоматически обрабатывать (пере-)подключения VPN." + +#~ msgid "Del" +#~ msgstr "Удалить" + +#~ msgid "Delete this network" +#~ msgstr "Удалить эту сеть" + #~ msgid "Action" #~ msgstr "Действие" @@ -900,9 +953,6 @@ msgstr "ничего" #~ msgid "Passphrase" #~ msgstr "Парольная фраза" -#~ msgid "Remove" -#~ msgstr "Удалить" - #~ msgid "Repeat scan" #~ msgstr "Повторить поиск" diff --git a/applications/luci-app-travelmate/po/sk/travelmate.po b/applications/luci-app-travelmate/po/sk/travelmate.po index c0140eb8d5..dfb5183450 100644 --- a/applications/luci-app-travelmate/po/sk/travelmate.po +++ b/applications/luci-app-travelmate/po/sk/travelmate.po @@ -10,101 +10,108 @@ msgstr "" "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" "X-Generator: Weblate 4.7\n" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:73 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:75 msgid "-- AP Selection --" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:261 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:265 msgid "AP QR-Codes..." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:823 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:956 msgid "Add Uplink %q" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:679 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:813 msgid "Add Uplink..." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:280 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:291 msgid "Additional Settings" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:321 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:340 msgid "" "Additional trigger delay in seconds before travelmate processing begins." msgstr "" -#: 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:787 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:396 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:920 msgid "Authentication" msgstr "Overenie totožnosti" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:484 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:489 +msgid "Auto Added Open Uplink" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:568 msgid "Auto Login Script" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:310 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:327 msgid "AutoAdd Open Uplinks" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:467 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:551 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 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:319 msgid "ProActive Uplink Switch" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:306 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:319 msgid "" "Proactively scan and switch to a higher prioritized uplink, despite of an " "already existing connection." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:422 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:418 msgid "Profile used by 'msmtp' for travelmate notification E-Mails." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:114 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:116 msgid "QR-Code Overview" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:293 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:303 msgid "Radio Selection" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:314 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:323 msgid "Randomize MAC Addresses" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:407 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:403 msgid "Receiver address for travelmate notification E-Mails." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:115 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:264 +msgid "Remove" +msgstr "Odstrániť" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:262 +msgid "Remove this network" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:117 msgid "" "Render the QR-Code of the selected Access Point to comfortably transfer the " "WLAN credentials to your mobile devices." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:592 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:726 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')." +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:272 +msgid "Restart Interface" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:326 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:303 +msgid "" +"Restrict travelmate to a single radio or change the overall scanning order." +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:345 msgid "Retry limit to connect to an uplink." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:241 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:242 msgid "Run Flags" msgstr "" -#: 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:729 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:284 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:445 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:707 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:862 msgid "SSID" msgstr "SSID" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:725 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:858 msgid "SSID (hidden)" msgstr "" -#: 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:834 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:63 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:967 msgid "Save" msgstr "Uložiť" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:346 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:365 msgid "Scan Buffer Size" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:557 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:691 msgid "Scan on" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:523 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:607 msgid "Script Arguments" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:412 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:408 msgid "Sender address for travelmate notification E-Mails." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:404 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:400 msgid "Sends notification E-Mails after every succesful uplink connect." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:368 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:388 msgid "Service Priority" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:277 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:288 msgid "Settings" msgstr "Nastavenia" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:331 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:350 msgid "Signal Quality Threshold" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:524 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:608 msgid "" "Space separated list of additional arguments passed to the Auto Login " "Script, i.e. username and password" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:579 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:713 msgid "Starting wireless scan on '" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:229 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:226 msgid "Station ID" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:235 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:234 msgid "Station Interface" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:232 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:230 msgid "Station MAC" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:226 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:222 msgid "Status / Version" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:571 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:705 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:781 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:388 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:914 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:782 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:389 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:915 msgid "TTLS" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:105 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:107 msgid "The QR-Code could not be generated!" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:31 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:33 msgid "The firewall zone name" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:36 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:38 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 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:660 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 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:370 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 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:388 msgid "The selected priority will be used for travelmate processes." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:359 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:379 msgid "" "The selected user agent will be used for connectivity- and captive portal " "checks." @@ -589,22 +607,28 @@ msgstr "" msgid "The syslog output, pre-filtered for travelmate related messages only." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:56 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:58 msgid "The uplink interface has been updated." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:26 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:28 msgid "The uplink interface name" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:20 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:490 +msgid "" +"This option is selected by default if this uplink was added automatically " +"and counts as 'Open Uplink'." +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:23 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 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:413 msgid "Topic for travelmate notification E-Mails." msgstr "" @@ -612,49 +636,53 @@ msgstr "" msgid "Travelmate" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:209 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:239 msgid "Travelmate Settings" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:301 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:314 msgid "Treat missing internet availability as an error." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:321 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:340 msgid "Trigger Delay" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:359 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:507 +msgid "Use the specified MAC address for this uplink." +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:379 msgid "User Agent" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:380 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:628 msgid "VPN Hook" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:389 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:660 msgid "VPN Interface" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:383 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:645 msgid "VPN Service" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:281 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:240 msgid "VPN Settings" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:290 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:300 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:764 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:307 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:897 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:765 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:308 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:898 msgid "WPA Ent. (TKIP)" msgstr "" @@ -662,101 +690,101 @@ msgstr "" 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:755 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:298 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:888 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:756 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:299 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:889 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:757 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:300 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:890 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:766 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:309 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:899 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:767 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:310 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:900 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:758 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:301 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:891 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:759 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:302 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:892 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:762 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:305 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:895 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:763 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:306 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:896 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:752 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:295 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:885 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:753 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:296 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:886 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:754 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:297 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:887 msgid "WPA2 Pers. (TKIP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:761 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:894 msgid "WPA2/WPA3 Ent." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:268 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:304 msgid "WPA2/WPA3 Ent. (CCMP)" 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:751 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:294 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:884 msgid "WPA2/WPA3 Pers. (CCMP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:760 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:893 msgid "WPA3 Ent." 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:303 msgid "WPA3 Ent. (CCMP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:768 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:901 msgid "WPA3 OWE (CCMP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:257 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:750 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:293 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:883 msgid "WPA3 Pers. (SAE)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:581 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:715 msgid "Wireless Scan" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:208 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:238 msgid "Wireless Settings" msgstr "" @@ -764,21 +792,37 @@ msgstr "" msgid "Wireless Stations" msgstr "" -#: 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:798 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:406 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:931 msgid "auth=MSCHAPV2" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:369 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:797 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:405 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:930 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:769 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:312 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:902 msgid "none" msgstr "" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:306 +msgid "use both radios, normal sort order (radio0 radio1)" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:307 +msgid "use both radios, reverse sort order (radio1 radio0)" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:304 +msgid "use the first radio only (radio0)" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:305 +msgid "use the second radio only (radio1)" +msgstr "" + #~ msgid "Action" #~ msgstr "Akcia" @@ -794,9 +838,6 @@ msgstr "" #~ msgid "Identity" #~ msgstr "Identita" -#~ msgid "Remove" -#~ msgstr "Odstrániť" - #~ msgid "Restart" #~ msgstr "Reštartovať" diff --git a/applications/luci-app-travelmate/po/sv/travelmate.po b/applications/luci-app-travelmate/po/sv/travelmate.po index 7bae568e8c..29ea6568e5 100644 --- a/applications/luci-app-travelmate/po/sv/travelmate.po +++ b/applications/luci-app-travelmate/po/sv/travelmate.po @@ -10,101 +10,108 @@ msgstr "" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Generator: Weblate 4.5.2-dev\n" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:73 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:75 msgid "-- AP Selection --" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:261 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:265 msgid "AP QR-Codes..." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:823 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:956 msgid "Add Uplink %q" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:679 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:813 msgid "Add Uplink..." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:280 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:291 msgid "Additional Settings" msgstr "Fler inställningar" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:321 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:340 msgid "" "Additional trigger delay in seconds before travelmate processing begins." msgstr "" -#: 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:787 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:396 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:920 msgid "Authentication" msgstr "Autentisering" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:484 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:489 +msgid "Auto Added Open Uplink" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:568 msgid "Auto Login Script" msgstr "Automatiskt inloggningsskript" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:310 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:327 msgid "AutoAdd Open Uplinks" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:467 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:551 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 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:319 msgid "ProActive Uplink Switch" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:306 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:319 msgid "" "Proactively scan and switch to a higher prioritized uplink, despite of an " "already existing connection." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:422 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:418 msgid "Profile used by 'msmtp' for travelmate notification E-Mails." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:114 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:116 msgid "QR-Code Overview" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:293 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:303 msgid "Radio Selection" msgstr "Val av radio" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:314 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:323 msgid "Randomize MAC Addresses" msgstr "Slumpa MAC-adresser" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:407 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:403 msgid "Receiver address for travelmate notification E-Mails." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:115 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:264 +msgid "Remove" +msgstr "Ta bort" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:262 +msgid "Remove this network" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:117 msgid "" "Render the QR-Code of the selected Access Point to comfortably transfer the " "WLAN credentials to your mobile devices." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:592 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:726 msgid "Repeat Scan" msgstr "Upprepa skanning" -#: 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')." +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:272 +msgid "Restart Interface" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:326 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:303 +msgid "" +"Restrict travelmate to a single radio or change the overall scanning order." +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:345 msgid "Retry limit to connect to an uplink." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:241 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:242 msgid "Run Flags" msgstr "Förflaggor" -#: 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:729 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:284 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:445 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:707 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:862 msgid "SSID" msgstr "SSID" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:725 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:858 msgid "SSID (hidden)" msgstr "SSID (gömd)" -#: 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:834 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:63 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:967 msgid "Save" msgstr "Spara" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:346 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:365 msgid "Scan Buffer Size" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:557 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:691 msgid "Scan on" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:523 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:607 msgid "Script Arguments" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:412 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:408 msgid "Sender address for travelmate notification E-Mails." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:404 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:400 msgid "Sends notification E-Mails after every succesful uplink connect." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:368 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:388 msgid "Service Priority" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:277 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:288 msgid "Settings" msgstr "Inställningar" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:331 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:350 msgid "Signal Quality Threshold" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:524 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:608 msgid "" "Space separated list of additional arguments passed to the Auto Login " "Script, i.e. username and password" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:579 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:713 msgid "Starting wireless scan on '" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:229 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:226 msgid "Station ID" msgstr "Stationens ID" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:235 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:234 msgid "Station Interface" msgstr "Stationens gränssnitt" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:232 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:230 msgid "Station MAC" msgstr "Stationens MAC" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:226 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:222 msgid "Status / Version" msgstr "Status / Version" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:571 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:705 msgid "Strength" msgstr "Styrka" -#: 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:781 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:388 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:914 msgid "TLS" msgstr "TLS" -#: 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:782 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:389 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:915 msgid "TTLS" msgstr "TTLS" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:105 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:107 msgid "The QR-Code could not be generated!" msgstr "QR-koden kunde inte genereras!" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:31 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:33 msgid "The firewall zone name" msgstr "Namnet på brandväggszonen" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:36 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:38 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 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:660 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 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:370 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 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:388 msgid "The selected priority will be used for travelmate processes." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:359 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:379 msgid "" "The selected user agent will be used for connectivity- and captive portal " "checks." @@ -589,22 +607,28 @@ msgstr "" msgid "The syslog output, pre-filtered for travelmate related messages only." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:56 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:58 msgid "The uplink interface has been updated." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:26 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:28 msgid "The uplink interface name" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:20 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:490 +msgid "" +"This option is selected by default if this uplink was added automatically " +"and counts as 'Open Uplink'." +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:23 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 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:413 msgid "Topic for travelmate notification E-Mails." msgstr "" @@ -612,49 +636,53 @@ msgstr "" msgid "Travelmate" msgstr "Reskompis" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:209 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:239 msgid "Travelmate Settings" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:301 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:314 msgid "Treat missing internet availability as an error." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:321 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:340 msgid "Trigger Delay" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:359 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:507 +msgid "Use the specified MAC address for this uplink." +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:379 msgid "User Agent" msgstr "Användaragent" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:380 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:628 msgid "VPN Hook" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:389 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:660 msgid "VPN Interface" msgstr "VPN-gränsnitt" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:383 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:645 msgid "VPN Service" msgstr "VPN-tjänst" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:281 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:240 msgid "VPN Settings" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:290 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:300 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:764 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:307 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:897 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:765 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:308 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:898 msgid "WPA Ent. (TKIP)" msgstr "" @@ -662,101 +690,101 @@ msgstr "" msgid "WPA Flags" msgstr "WPA-flaggor" -#: 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:755 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:298 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:888 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:756 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:299 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:889 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:757 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:300 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:890 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:766 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:309 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:899 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:767 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:310 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:900 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:758 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:301 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:891 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:759 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:302 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:892 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:762 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:305 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:895 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:763 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:306 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:896 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:752 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:295 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:885 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:753 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:296 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:886 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:754 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:297 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:887 msgid "WPA2 Pers. (TKIP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:761 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:894 msgid "WPA2/WPA3 Ent." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:268 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:304 msgid "WPA2/WPA3 Ent. (CCMP)" 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:751 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:294 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:884 msgid "WPA2/WPA3 Pers. (CCMP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:760 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:893 msgid "WPA3 Ent." 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:303 msgid "WPA3 Ent. (CCMP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:768 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:901 msgid "WPA3 OWE (CCMP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:257 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:750 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:293 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:883 msgid "WPA3 Pers. (SAE)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:581 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:715 msgid "Wireless Scan" msgstr "Trådlös skanning" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:208 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:238 msgid "Wireless Settings" msgstr "" @@ -764,21 +792,40 @@ msgstr "" msgid "Wireless Stations" msgstr "Trådlösa stationer" -#: 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:798 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:406 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:931 msgid "auth=MSCHAPV2" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:369 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:797 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:405 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:930 msgid "auth=PAP" msgstr "auth=pap" -#: 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:769 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:312 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:902 msgid "none" msgstr "inga" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:306 +msgid "use both radios, normal sort order (radio0 radio1)" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:307 +msgid "use both radios, reverse sort order (radio1 radio0)" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:304 +msgid "use the first radio only (radio0)" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:305 +msgid "use the second radio only (radio1)" +msgstr "" + +#~ msgid "Delete this network" +#~ msgstr "Ta bort det här nätverket" + #~ msgid "Action" #~ msgstr "Åtgärd" @@ -827,9 +874,6 @@ msgstr "inga" #~ "Alternativ för ytterligare finjustering om standardvärdena inte passar " #~ "dig." -#~ msgid "Remove" -#~ msgstr "Ta bort" - #~ msgid "Restart" #~ msgstr "Starta om" diff --git a/applications/luci-app-travelmate/po/templates/travelmate.pot b/applications/luci-app-travelmate/po/templates/travelmate.pot index 8244a4583f..d1c8e08efd 100644 --- a/applications/luci-app-travelmate/po/templates/travelmate.pot +++ b/applications/luci-app-travelmate/po/templates/travelmate.pot @@ -1,101 +1,108 @@ msgid "" msgstr "Content-Type: text/plain; charset=UTF-8" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:73 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:75 msgid "-- AP Selection --" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:261 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:265 msgid "AP QR-Codes..." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:823 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:956 msgid "Add Uplink %q" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:679 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:813 msgid "Add Uplink..." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:280 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:291 msgid "Additional Settings" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:321 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:340 msgid "" "Additional trigger delay in seconds before travelmate processing begins." msgstr "" -#: 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:787 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:396 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:920 msgid "Authentication" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:484 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:489 +msgid "Auto Added Open Uplink" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:568 msgid "Auto Login Script" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:310 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:327 msgid "AutoAdd Open Uplinks" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:467 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:551 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 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:319 msgid "ProActive Uplink Switch" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:306 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:319 msgid "" "Proactively scan and switch to a higher prioritized uplink, despite of an " "already existing connection." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:422 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:418 msgid "Profile used by 'msmtp' for travelmate notification E-Mails." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:114 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:116 msgid "QR-Code Overview" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:293 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:303 msgid "Radio Selection" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:314 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:323 msgid "Randomize MAC Addresses" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:407 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:403 msgid "Receiver address for travelmate notification E-Mails." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:115 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:264 +msgid "Remove" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:262 +msgid "Remove this network" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:117 msgid "" "Render the QR-Code of the selected Access Point to comfortably transfer the " "WLAN credentials to your mobile devices." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:592 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:726 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')." +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:272 +msgid "Restart Interface" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:326 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:303 +msgid "" +"Restrict travelmate to a single radio or change the overall scanning order." +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:345 msgid "Retry limit to connect to an uplink." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:241 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:242 msgid "Run Flags" msgstr "" -#: 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:729 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:284 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:445 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:707 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:862 msgid "SSID" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:725 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:858 msgid "SSID (hidden)" msgstr "" -#: 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:834 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:63 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:967 msgid "Save" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:346 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:365 msgid "Scan Buffer Size" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:557 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:691 msgid "Scan on" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:523 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:607 msgid "Script Arguments" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:412 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:408 msgid "Sender address for travelmate notification E-Mails." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:404 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:400 msgid "Sends notification E-Mails after every succesful uplink connect." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:368 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:388 msgid "Service Priority" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:277 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:288 msgid "Settings" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:331 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:350 msgid "Signal Quality Threshold" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:524 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:608 msgid "" "Space separated list of additional arguments passed to the Auto Login " "Script, i.e. username and password" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:579 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:713 msgid "Starting wireless scan on '" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:229 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:226 msgid "Station ID" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:235 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:234 msgid "Station Interface" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:232 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:230 msgid "Station MAC" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:226 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:222 msgid "Status / Version" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:571 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:705 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:781 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:388 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:914 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:782 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:389 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:915 msgid "TTLS" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:105 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:107 msgid "The QR-Code could not be generated!" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:31 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:33 msgid "The firewall zone name" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:36 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:38 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 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:660 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 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:370 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 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:388 msgid "The selected priority will be used for travelmate processes." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:359 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:379 msgid "" "The selected user agent will be used for connectivity- and captive portal " "checks." @@ -580,22 +598,28 @@ msgstr "" msgid "The syslog output, pre-filtered for travelmate related messages only." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:56 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:58 msgid "The uplink interface has been updated." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:26 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:28 msgid "The uplink interface name" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:20 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:490 +msgid "" +"This option is selected by default if this uplink was added automatically " +"and counts as 'Open Uplink'." +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:23 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 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:413 msgid "Topic for travelmate notification E-Mails." msgstr "" @@ -603,49 +627,53 @@ msgstr "" msgid "Travelmate" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:209 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:239 msgid "Travelmate Settings" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:301 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:314 msgid "Treat missing internet availability as an error." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:321 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:340 msgid "Trigger Delay" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:359 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:507 +msgid "Use the specified MAC address for this uplink." +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:379 msgid "User Agent" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:380 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:628 msgid "VPN Hook" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:389 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:660 msgid "VPN Interface" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:383 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:645 msgid "VPN Service" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:281 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:240 msgid "VPN Settings" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:290 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:300 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:764 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:307 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:897 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:765 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:308 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:898 msgid "WPA Ent. (TKIP)" msgstr "" @@ -653,101 +681,101 @@ msgstr "" 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:755 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:298 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:888 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:756 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:299 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:889 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:757 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:300 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:890 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:766 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:309 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:899 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:767 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:310 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:900 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:758 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:301 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:891 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:759 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:302 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:892 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:762 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:305 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:895 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:763 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:306 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:896 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:752 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:295 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:885 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:753 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:296 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:886 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:754 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:297 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:887 msgid "WPA2 Pers. (TKIP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:761 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:894 msgid "WPA2/WPA3 Ent." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:268 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:304 msgid "WPA2/WPA3 Ent. (CCMP)" 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:751 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:294 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:884 msgid "WPA2/WPA3 Pers. (CCMP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:760 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:893 msgid "WPA3 Ent." 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:303 msgid "WPA3 Ent. (CCMP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:768 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:901 msgid "WPA3 OWE (CCMP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:257 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:750 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:293 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:883 msgid "WPA3 Pers. (SAE)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:581 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:715 msgid "Wireless Scan" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:208 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:238 msgid "Wireless Settings" msgstr "" @@ -755,17 +783,33 @@ msgstr "" msgid "Wireless Stations" msgstr "" -#: 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:798 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:406 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:931 msgid "auth=MSCHAPV2" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:369 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:797 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:405 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:930 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:769 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:312 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:902 msgid "none" msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:306 +msgid "use both radios, normal sort order (radio0 radio1)" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:307 +msgid "use both radios, reverse sort order (radio1 radio0)" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:304 +msgid "use the first radio only (radio0)" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:305 +msgid "use the second radio only (radio1)" +msgstr "" diff --git a/applications/luci-app-travelmate/po/tr/travelmate.po b/applications/luci-app-travelmate/po/tr/travelmate.po index 8e5acf3024..e9d12e5f75 100644 --- a/applications/luci-app-travelmate/po/tr/travelmate.po +++ b/applications/luci-app-travelmate/po/tr/travelmate.po @@ -10,55 +10,59 @@ msgstr "" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Generator: Weblate 4.7-dev\n" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:73 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:75 msgid "-- AP Selection --" msgstr "-- Erişim Noktası Seçimi --" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:261 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:265 msgid "AP QR-Codes..." msgstr "Bağlantı Noktası QR-Kodları..." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:823 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:956 msgid "Add Uplink %q" msgstr "Yukarı Bağlantı Ekle %q" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:679 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:813 msgid "Add Uplink..." msgstr "Yukarı Bağlantı Ekle..." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:280 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:291 msgid "Additional Settings" msgstr "Ek Ayarlar" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:321 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:340 msgid "" "Additional trigger delay in seconds before travelmate processing begins." msgstr "" "Travelmate işleme başlamadan önce saniye cinsinden ek tetikleme gecikmesi." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:360 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:787 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:396 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:920 msgid "Authentication" msgstr "Kimlik Doğrulama" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:484 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:489 +msgid "Auto Added Open Uplink" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:568 msgid "Auto Login Script" msgstr "Otomatik Oturum Açma Betiği" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:310 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:327 msgid "AutoAdd Open Uplinks" msgstr "Açık Yukarı Bağlantılarıları Otomatik Ekle" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:467 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:551 msgid "" "Automatically (re-)enable the uplink after n minutes, e.g. after " "failed login attempts.
" @@ -435,19 +452,11 @@ msgstr "" "Lütfen dikkat: E-posta bildirimleri, mstmp paketinin ayrı " "kurulumunu gerektirir.
" -#: 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 "" -"Lütfen unutmayın: VPN bağlantıları, Wireguard veya OpenVPN " -"paketinin ayrı kurulumunu gerektirir.
" - -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:306 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:319 msgid "ProActive Uplink Switch" msgstr "ProActive Uplink Switchi" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:306 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:319 msgid "" "Proactively scan and switch to a higher prioritized uplink, despite of an " "already existing connection." @@ -455,28 +464,36 @@ msgstr "" "Önceden var olan bir bağlantıya rağmen proaktif olarak tarayın ve daha " "yüksek öncelikli bir yukarı bağlantıya geçin." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:422 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:418 msgid "Profile used by 'msmtp' for travelmate notification E-Mails." msgstr "" "'Msmtp' tarafından travelmate bildirim e-postaları için kullanılan profil." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:114 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:116 msgid "QR-Code Overview" msgstr "QR Koduna Genel Bakış" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:293 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:303 msgid "Radio Selection" msgstr "Kablosuz Seçimi" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:314 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:323 msgid "Randomize MAC Addresses" msgstr "MAC Adreslerini Rastgeleleştir" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:407 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:403 msgid "Receiver address for travelmate notification E-Mails." msgstr "Travelmate bildirim e-postaları için alıcı adresi." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:115 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:264 +msgid "Remove" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:262 +msgid "Remove this network" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:117 msgid "" "Render the QR-Code of the selected Access Point to comfortably transfer the " "WLAN credentials to your mobile devices." @@ -484,75 +501,77 @@ msgstr "" "WLAN kimlik bilgilerini mobil cihazlarınıza rahatça aktarmak için seçilen " "Erişim Noktasının QR Kodunu işle." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:592 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:726 msgid "Repeat Scan" msgstr "Taramayı Tekrarla" -#: 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')." +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:272 +msgid "Restart Interface" msgstr "" -"Travelmate'i tek bir kablosuzla sınırlayın veya genel tarama sırasını " -"değiştirin (örn.'radio1 radio0')." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:326 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:303 +msgid "" +"Restrict travelmate to a single radio or change the overall scanning order." +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:345 msgid "Retry limit to connect to an uplink." msgstr "Uplink bağlanma yeniden deneme sınırı." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:241 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:242 msgid "Run Flags" msgstr "Bayrakları Çalıştır" -#: 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:729 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:284 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:445 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:707 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:862 msgid "SSID" msgstr "SSID" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:725 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:858 msgid "SSID (hidden)" msgstr "SSID (gizli)" -#: 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:834 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:63 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:967 msgid "Save" msgstr "Kaydet" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:346 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:365 msgid "Scan Buffer Size" msgstr "Tarama Arabelleği Boyutu" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:557 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:691 msgid "Scan on" msgstr "Tarama açık" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:523 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:607 msgid "Script Arguments" msgstr "Komut Dosyası Bağımsız Değişkenleri" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:412 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:408 msgid "Sender address for travelmate notification E-Mails." msgstr "Travelmate bildirim e-postaları için gönderen adresi." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:404 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:400 msgid "Sends notification E-Mails after every succesful uplink connect." -msgstr "Her başarılı uplink bağlantısından sonra bildirim e-postaları gönderir." +msgstr "" +"Her başarılı uplink bağlantısından sonra bildirim e-postaları gönderir." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:368 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:388 msgid "Service Priority" msgstr "Hizmet Önceliği" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:277 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:288 msgid "Settings" msgstr "Ayarlar" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:331 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:350 msgid "Signal Quality Threshold" msgstr "Sinyal Kalitesi Eşiği" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:524 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:608 msgid "" "Space separated list of additional arguments passed to the Auto Login " "Script, i.e. username and password" @@ -560,72 +579,68 @@ msgstr "" "Otomatik Oturum Açma Komut Dosyasına iletilen ek argümanların boşlukla " "ayrılmış listesi, yani kullanıcı adı ve parola" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:579 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:713 msgid "Starting wireless scan on '" msgstr "Kablosuz tarama başlatılıyor '" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:229 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:226 msgid "Station ID" msgstr "İstasyon kimliği" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:235 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:234 msgid "Station Interface" msgstr "İstasyon Arayüzü" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:232 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:230 msgid "Station MAC" msgstr "İstasyon MAC'i" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:226 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:222 msgid "Status / Version" msgstr "Durum / Sürüm" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:571 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:705 msgid "Strength" msgstr "Güç" -#: 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:781 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:388 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:914 msgid "TLS" msgstr "TLS" -#: 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:782 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:389 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:915 msgid "TTLS" msgstr "TTLS" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:105 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:107 msgid "The QR-Code could not be generated!" msgstr "QR Kodu oluşturulamadı!" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:31 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:33 msgid "The firewall zone name" msgstr "Güvenlik duvarı bölgesi adı" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:36 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:38 msgid "The interface metric" msgstr "Arayüz metriği" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:395 -msgid "The lan network device, e.g. 'br-lan'." -msgstr "LAN ağ cihazı, ör. \"br-lan\"." - -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:389 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:660 msgid "The logical vpn network interface, e.g. 'wg0' or 'tun0'." msgstr "Mantıksal vpn ağ arayüzü, ör. 'wg0' veya 'tun0'." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:351 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:370 msgid "" "The selected URL will be used for connectivity- and captive portal checks." msgstr "" "Seçilen URL, bağlantı ve doğrulama amacıyla yönlendirme yapan portal " "kontrolleri için kullanılacaktır." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:368 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:388 msgid "The selected priority will be used for travelmate processes." msgstr "Seçilen öncelik travelmate işlemleri için kullanılacaktır." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:359 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:379 msgid "" "The selected user agent will be used for connectivity- and captive portal " "checks." @@ -639,15 +654,21 @@ msgstr "" "Yalnızca travelmate ile ilgili mesajlar için önceden filtrelenmiş syslog " "çıktısı." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:56 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:58 msgid "The uplink interface has been updated." msgstr "Uplink arayüzü güncellendi." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:26 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:28 msgid "The uplink interface name" msgstr "Uplink arayüzü adı" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:20 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:490 +msgid "" +"This option is selected by default if this uplink was added automatically " +"and counts as 'Open Uplink'." +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:23 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 " @@ -657,7 +678,7 @@ msgstr "" "sihirbaz, gerekli tüm ağ ve güvenlik duvarı ayarlarıyla bir IPv4 ve IPv6 " "diğer ad ağ arabirimi oluşturur." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:417 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:413 msgid "Topic for travelmate notification E-Mails." msgstr "Travelmate bildirim e-postaları için konu." @@ -665,49 +686,53 @@ msgstr "Travelmate bildirim e-postaları için konu." msgid "Travelmate" msgstr "Travelmate" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:209 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:239 msgid "Travelmate Settings" msgstr "Travelmate Ayarları" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:301 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:314 msgid "Treat missing internet availability as an error." msgstr "Eksik internet kullanılabilirliğini bir hata olarak ele al." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:321 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:340 msgid "Trigger Delay" msgstr "Tetikleme Gecikmesi" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:359 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:507 +msgid "Use the specified MAC address for this uplink." +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:379 msgid "User Agent" msgstr "Kullanıcı Aracısı" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:380 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:628 msgid "VPN Hook" msgstr "VPN Kancası" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:389 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:660 msgid "VPN Interface" msgstr "VPN Arayüzü" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:383 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:645 msgid "VPN Service" msgstr "VPN Hizmeti" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:281 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:240 msgid "VPN Settings" msgstr "VPN Ayarları" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:290 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:300 msgid "Verbose Debug Logging" msgstr "Ayrıntılı Hata Ayıklama Günlüğü" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:271 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:764 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:307 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:897 msgid "WPA Ent. (CCMP)" msgstr "WPA Ent. (CCMP)" -#: 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:765 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:308 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:898 msgid "WPA Ent. (TKIP)" msgstr "WPA Ent. (TKIP)" @@ -715,101 +740,101 @@ msgstr "WPA Ent. (TKIP)" msgid "WPA Flags" msgstr "WPA Bayrakları" -#: 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:755 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:298 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:888 msgid "WPA Pers." msgstr "WPA Pers." -#: 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:756 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:299 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:889 msgid "WPA Pers. (CCMP)" msgstr "WPA Pers. (CCMP)" -#: 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:757 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:300 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:890 msgid "WPA Pers. (TKIP)" msgstr "WPA Pers. (TKIP)" -#: 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:766 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:309 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:899 msgid "WPA/WPA2 Ent. (CCMP)" msgstr "WPA/WPA2 Ent. (CCMP)" -#: 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:767 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:310 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:900 msgid "WPA/WPA2 Ent. (TKIP)" msgstr "WPA/WPA2 Ent. (TKIP)" -#: 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:758 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:301 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:891 msgid "WPA/WPA2 Pers. (CCMP)" msgstr "WPA/WPA2 Pers. (CCMP)" -#: 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:759 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:302 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:892 msgid "WPA/WPA2 Pers. (TKIP)" msgstr "WPA/WPA2 Pers. (TKIP)" -#: 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:762 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:305 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:895 msgid "WPA2 Ent. (CCMP)" msgstr "WPA2 Ent. (CCMP)" -#: 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:763 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:306 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:896 msgid "WPA2 Ent. (TKIP)" msgstr "WPA2 Ent. (TKIP)" -#: 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:752 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:295 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:885 msgid "WPA2 Pers." msgstr "WPA2 Pers." -#: 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:753 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:296 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:886 msgid "WPA2 Pers. (CCMP)" msgstr "WPA2 Pers. (CCMP)" -#: 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:754 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:297 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:887 msgid "WPA2 Pers. (TKIP)" msgstr "WPA2 Pers. (TKIP)" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:761 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:894 msgid "WPA2/WPA3 Ent." msgstr "WPA2/WPA3 Ent." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:268 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:304 msgid "WPA2/WPA3 Ent. (CCMP)" msgstr "WPA2/WPA3 Ent. (CCMP)" -#: 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:751 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:294 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:884 msgid "WPA2/WPA3 Pers. (CCMP)" msgstr "WPA2/WPA3 Pers. (CCMP)" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:760 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:893 msgid "WPA3 Ent." msgstr "WPA3 Ent." -#: 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:303 msgid "WPA3 Ent. (CCMP)" msgstr "WPA3 Ent. (CCMP)" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:768 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:901 msgid "WPA3 OWE (CCMP)" msgstr "WPA3 OWE (CCMP)" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:257 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:750 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:293 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:883 msgid "WPA3 Pers. (SAE)" msgstr "WPA3 Pers. (SAE)" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:581 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:715 msgid "Wireless Scan" msgstr "Kablosuz Tarama" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:208 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:238 msgid "Wireless Settings" msgstr "Kablosuz Ağ Ayarları" @@ -817,21 +842,66 @@ msgstr "Kablosuz Ağ Ayarları" msgid "Wireless Stations" msgstr "Kablosuz İstasyonları" -#: 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:798 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:406 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:931 msgid "auth=MSCHAPV2" msgstr "auth=MSCHAPV2" -#: 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:797 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:405 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:930 msgid "auth=PAP" msgstr "auth=PAP" -#: 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:769 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:312 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:902 msgid "none" msgstr "hiçbiri" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:306 +msgid "use both radios, normal sort order (radio0 radio1)" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:307 +msgid "use both radios, reverse sort order (radio1 radio0)" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:304 +msgid "use the first radio only (radio0)" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:305 +msgid "use the second radio only (radio1)" +msgstr "" + +#~ msgid "Automatically handle VPN (re-) connections." +#~ msgstr "VPN (yeniden) bağlantılarını otomatik olarak işle." + +#~ msgid "Del" +#~ msgstr "Sil" + +#~ msgid "Delete this network" +#~ msgstr "Bu ağı sil" + +#~ msgid "LAN Device" +#~ msgstr "LAN Cihazı" + +#~ msgid "" +#~ "Please note: VPN connections require the separate setup of the " +#~ "Wireguard or OpenVPN package.
" +#~ msgstr "" +#~ "Lütfen unutmayın: VPN bağlantıları, Wireguard veya OpenVPN" +#~ "em> paketinin ayrı kurulumunu gerektirir.
" + +#~ msgid "" +#~ "Restrict travelmate to a single radio or change the overall scanning " +#~ "order (e.g. 'radio1 radio0')." +#~ msgstr "" +#~ "Travelmate'i tek bir kablosuzla sınırlayın veya genel tarama sırasını " +#~ "değiştirin (örn.'radio1 radio0')." + +#~ msgid "The lan network device, e.g. 'br-lan'." +#~ msgstr "LAN ağ cihazı, ör. \"br-lan\"." + #~ msgid "AP on" #~ msgstr "AP (erişim noktası) açık" diff --git a/applications/luci-app-travelmate/po/uk/travelmate.po b/applications/luci-app-travelmate/po/uk/travelmate.po index 06552656a1..1620c24757 100644 --- a/applications/luci-app-travelmate/po/uk/travelmate.po +++ b/applications/luci-app-travelmate/po/uk/travelmate.po @@ -11,101 +11,108 @@ msgstr "" "%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" "X-Generator: Weblate 4.7-dev\n" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:73 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:75 msgid "-- AP Selection --" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:261 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:265 msgid "AP QR-Codes..." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:823 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:956 msgid "Add Uplink %q" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:679 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:813 msgid "Add Uplink..." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:280 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:291 msgid "Additional Settings" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:321 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:340 msgid "" "Additional trigger delay in seconds before travelmate processing begins." msgstr "" -#: 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:787 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:396 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:920 msgid "Authentication" msgstr "Автентифікація" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:484 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:489 +msgid "Auto Added Open Uplink" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:568 msgid "Auto Login Script" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:310 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:327 msgid "AutoAdd Open Uplinks" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:467 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:551 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 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:319 msgid "ProActive Uplink Switch" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:306 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:319 msgid "" "Proactively scan and switch to a higher prioritized uplink, despite of an " "already existing connection." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:422 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:418 msgid "Profile used by 'msmtp' for travelmate notification E-Mails." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:114 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:116 msgid "QR-Code Overview" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:293 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:303 msgid "Radio Selection" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:314 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:323 msgid "Randomize MAC Addresses" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:407 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:403 msgid "Receiver address for travelmate notification E-Mails." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:115 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:264 +msgid "Remove" +msgstr "Видалити" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:262 +msgid "Remove this network" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:117 msgid "" "Render the QR-Code of the selected Access Point to comfortably transfer the " "WLAN credentials to your mobile devices." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:592 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:726 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')." +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:272 +msgid "Restart Interface" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:326 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:303 +msgid "" +"Restrict travelmate to a single radio or change the overall scanning order." +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:345 msgid "Retry limit to connect to an uplink." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:241 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:242 msgid "Run Flags" msgstr "" -#: 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:729 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:284 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:445 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:707 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:862 msgid "SSID" msgstr "SSID" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:725 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:858 msgid "SSID (hidden)" msgstr "" -#: 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:834 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:63 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:967 msgid "Save" msgstr "Зберегти" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:346 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:365 msgid "Scan Buffer Size" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:557 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:691 msgid "Scan on" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:523 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:607 msgid "Script Arguments" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:412 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:408 msgid "Sender address for travelmate notification E-Mails." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:404 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:400 msgid "Sends notification E-Mails after every succesful uplink connect." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:368 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:388 msgid "Service Priority" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:277 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:288 msgid "Settings" msgstr "Налаштування" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:331 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:350 msgid "Signal Quality Threshold" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:524 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:608 msgid "" "Space separated list of additional arguments passed to the Auto Login " "Script, i.e. username and password" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:579 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:713 msgid "Starting wireless scan on '" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:229 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:226 msgid "Station ID" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:235 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:234 msgid "Station Interface" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:232 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:230 msgid "Station MAC" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:226 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:222 msgid "Status / Version" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:571 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:705 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:781 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:388 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:914 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:782 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:389 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:915 msgid "TTLS" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:105 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:107 msgid "The QR-Code could not be generated!" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:31 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:33 msgid "The firewall zone name" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:36 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:38 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 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:660 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 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:370 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 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:388 msgid "The selected priority will be used for travelmate processes." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:359 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:379 msgid "" "The selected user agent will be used for connectivity- and captive portal " "checks." @@ -590,22 +608,28 @@ msgstr "" msgid "The syslog output, pre-filtered for travelmate related messages only." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:56 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:58 msgid "The uplink interface has been updated." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:26 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:28 msgid "The uplink interface name" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:20 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:490 +msgid "" +"This option is selected by default if this uplink was added automatically " +"and counts as 'Open Uplink'." +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:23 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 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:413 msgid "Topic for travelmate notification E-Mails." msgstr "" @@ -613,49 +637,53 @@ msgstr "" msgid "Travelmate" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:209 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:239 msgid "Travelmate Settings" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:301 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:314 msgid "Treat missing internet availability as an error." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:321 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:340 msgid "Trigger Delay" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:359 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:507 +msgid "Use the specified MAC address for this uplink." +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:379 msgid "User Agent" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:380 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:628 msgid "VPN Hook" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:389 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:660 msgid "VPN Interface" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:383 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:645 msgid "VPN Service" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:281 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:240 msgid "VPN Settings" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:290 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:300 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:764 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:307 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:897 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:765 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:308 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:898 msgid "WPA Ent. (TKIP)" msgstr "" @@ -663,101 +691,101 @@ msgstr "" 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:755 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:298 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:888 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:756 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:299 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:889 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:757 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:300 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:890 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:766 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:309 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:899 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:767 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:310 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:900 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:758 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:301 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:891 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:759 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:302 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:892 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:762 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:305 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:895 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:763 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:306 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:896 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:752 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:295 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:885 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:753 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:296 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:886 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:754 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:297 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:887 msgid "WPA2 Pers. (TKIP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:761 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:894 msgid "WPA2/WPA3 Ent." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:268 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:304 msgid "WPA2/WPA3 Ent. (CCMP)" 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:751 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:294 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:884 msgid "WPA2/WPA3 Pers. (CCMP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:760 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:893 msgid "WPA3 Ent." 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:303 msgid "WPA3 Ent. (CCMP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:768 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:901 msgid "WPA3 OWE (CCMP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:257 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:750 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:293 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:883 msgid "WPA3 Pers. (SAE)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:581 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:715 msgid "Wireless Scan" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:208 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:238 msgid "Wireless Settings" msgstr "" @@ -765,21 +793,37 @@ msgstr "" msgid "Wireless Stations" msgstr "" -#: 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:798 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:406 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:931 msgid "auth=MSCHAPV2" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:369 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:797 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:405 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:930 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:769 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:312 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:902 msgid "none" msgstr "" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:306 +msgid "use both radios, normal sort order (radio0 radio1)" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:307 +msgid "use both radios, reverse sort order (radio1 radio0)" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:304 +msgid "use the first radio only (radio0)" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:305 +msgid "use the second radio only (radio1)" +msgstr "" + #~ msgid "Action" #~ msgstr "Дія" @@ -819,9 +863,6 @@ msgstr "" #~ msgid "Move up" #~ msgstr "Вгору" -#~ msgid "Remove" -#~ msgstr "Видалити" - #~ msgid "Restart" #~ msgstr "Перезавантажити" diff --git a/applications/luci-app-travelmate/po/vi/travelmate.po b/applications/luci-app-travelmate/po/vi/travelmate.po index b4c43dfb50..62c0226be5 100644 --- a/applications/luci-app-travelmate/po/vi/travelmate.po +++ b/applications/luci-app-travelmate/po/vi/travelmate.po @@ -10,101 +10,108 @@ msgstr "" "Plural-Forms: nplurals=1; plural=0;\n" "X-Generator: Weblate 4.4-dev\n" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:73 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:75 msgid "-- AP Selection --" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:261 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:265 msgid "AP QR-Codes..." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:823 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:956 msgid "Add Uplink %q" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:679 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:813 msgid "Add Uplink..." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:280 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:291 msgid "Additional Settings" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:321 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:340 msgid "" "Additional trigger delay in seconds before travelmate processing begins." msgstr "" -#: 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:787 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:396 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:920 msgid "Authentication" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:484 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:489 +msgid "Auto Added Open Uplink" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:568 msgid "Auto Login Script" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:310 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:327 msgid "AutoAdd Open Uplinks" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:467 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:551 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 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:319 msgid "ProActive Uplink Switch" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:306 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:319 msgid "" "Proactively scan and switch to a higher prioritized uplink, despite of an " "already existing connection." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:422 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:418 msgid "Profile used by 'msmtp' for travelmate notification E-Mails." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:114 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:116 msgid "QR-Code Overview" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:293 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:303 msgid "Radio Selection" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:314 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:323 msgid "Randomize MAC Addresses" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:407 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:403 msgid "Receiver address for travelmate notification E-Mails." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:115 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:264 +msgid "Remove" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:262 +msgid "Remove this network" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:117 msgid "" "Render the QR-Code of the selected Access Point to comfortably transfer the " "WLAN credentials to your mobile devices." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:592 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:726 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')." +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:272 +msgid "Restart Interface" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:326 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:303 +msgid "" +"Restrict travelmate to a single radio or change the overall scanning order." +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:345 msgid "Retry limit to connect to an uplink." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:241 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:242 msgid "Run Flags" msgstr "" -#: 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:729 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:284 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:445 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:707 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:862 msgid "SSID" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:725 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:858 msgid "SSID (hidden)" msgstr "" -#: 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:834 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:63 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:967 msgid "Save" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:346 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:365 msgid "Scan Buffer Size" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:557 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:691 msgid "Scan on" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:523 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:607 msgid "Script Arguments" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:412 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:408 msgid "Sender address for travelmate notification E-Mails." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:404 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:400 msgid "Sends notification E-Mails after every succesful uplink connect." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:368 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:388 msgid "Service Priority" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:277 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:288 msgid "Settings" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:331 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:350 msgid "Signal Quality Threshold" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:524 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:608 msgid "" "Space separated list of additional arguments passed to the Auto Login " "Script, i.e. username and password" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:579 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:713 msgid "Starting wireless scan on '" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:229 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:226 msgid "Station ID" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:235 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:234 msgid "Station Interface" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:232 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:230 msgid "Station MAC" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:226 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:222 msgid "Status / Version" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:571 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:705 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:781 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:388 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:914 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:782 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:389 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:915 msgid "TTLS" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:105 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:107 msgid "The QR-Code could not be generated!" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:31 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:33 msgid "The firewall zone name" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:36 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:38 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 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:660 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 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:370 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 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:388 msgid "The selected priority will be used for travelmate processes." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:359 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:379 msgid "" "The selected user agent will be used for connectivity- and captive portal " "checks." @@ -589,22 +607,28 @@ msgstr "" msgid "The syslog output, pre-filtered for travelmate related messages only." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:56 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:58 msgid "The uplink interface has been updated." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:26 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:28 msgid "The uplink interface name" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:20 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:490 +msgid "" +"This option is selected by default if this uplink was added automatically " +"and counts as 'Open Uplink'." +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:23 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 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:413 msgid "Topic for travelmate notification E-Mails." msgstr "" @@ -612,49 +636,53 @@ msgstr "" msgid "Travelmate" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:209 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:239 msgid "Travelmate Settings" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:301 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:314 msgid "Treat missing internet availability as an error." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:321 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:340 msgid "Trigger Delay" msgstr "Kích hoạt độ trễ" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:359 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:507 +msgid "Use the specified MAC address for this uplink." +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:379 msgid "User Agent" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:380 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:628 msgid "VPN Hook" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:389 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:660 msgid "VPN Interface" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:383 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:645 msgid "VPN Service" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:281 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:240 msgid "VPN Settings" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:290 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:300 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:764 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:307 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:897 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:765 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:308 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:898 msgid "WPA Ent. (TKIP)" msgstr "" @@ -662,101 +690,101 @@ msgstr "" 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:755 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:298 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:888 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:756 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:299 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:889 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:757 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:300 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:890 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:766 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:309 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:899 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:767 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:310 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:900 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:758 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:301 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:891 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:759 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:302 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:892 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:762 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:305 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:895 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:763 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:306 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:896 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:752 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:295 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:885 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:753 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:296 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:886 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:754 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:297 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:887 msgid "WPA2 Pers. (TKIP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:761 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:894 msgid "WPA2/WPA3 Ent." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:268 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:304 msgid "WPA2/WPA3 Ent. (CCMP)" 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:751 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:294 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:884 msgid "WPA2/WPA3 Pers. (CCMP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:760 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:893 msgid "WPA3 Ent." 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:303 msgid "WPA3 Ent. (CCMP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:768 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:901 msgid "WPA3 OWE (CCMP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:257 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:750 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:293 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:883 msgid "WPA3 Pers. (SAE)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:581 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:715 msgid "Wireless Scan" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:208 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:238 msgid "Wireless Settings" msgstr "" @@ -764,21 +792,37 @@ msgstr "" msgid "Wireless Stations" msgstr "" -#: 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:798 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:406 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:931 msgid "auth=MSCHAPV2" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:369 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:797 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:405 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:930 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:769 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:312 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:902 msgid "none" msgstr "" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:306 +msgid "use both radios, normal sort order (radio0 radio1)" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:307 +msgid "use both radios, reverse sort order (radio1 radio0)" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:304 +msgid "use the first radio only (radio0)" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:305 +msgid "use the second radio only (radio1)" +msgstr "" + #~ msgid "Action" #~ msgstr "Hành động" diff --git a/applications/luci-app-travelmate/po/zh_Hans/travelmate.po b/applications/luci-app-travelmate/po/zh_Hans/travelmate.po index 0b5a526edc..6774d2130f 100644 --- a/applications/luci-app-travelmate/po/zh_Hans/travelmate.po +++ b/applications/luci-app-travelmate/po/zh_Hans/travelmate.po @@ -16,45 +16,49 @@ msgstr "" "Plural-Forms: nplurals=1; plural=0;\n" "X-Generator: Weblate 4.7-dev\n" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:73 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:75 msgid "-- AP Selection --" msgstr "-- 选择 AP --" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:261 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:265 msgid "AP QR-Codes..." msgstr "AP二维码..." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:823 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:956 msgid "Add Uplink %q" msgstr "添加上行链路%q" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:679 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:813 msgid "Add Uplink..." msgstr "添加上行链路..." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:280 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:291 msgid "Additional Settings" msgstr "额外设置" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:321 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:340 msgid "" "Additional trigger delay in seconds before travelmate processing begins." msgstr "在 travelmate 处理开始前的额外触发延迟(秒)。" -#: 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:787 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:396 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:920 msgid "Authentication" msgstr "身份验证" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:484 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:489 +msgid "Auto Added Open Uplink" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:568 msgid "Auto Login Script" msgstr "自动登录脚本" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:310 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:327 msgid "AutoAdd Open Uplinks" msgstr "自动添加开放的上行链路" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:467 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:551 msgid "" "Automatically (re-)enable the uplink after n minutes, e.g. after " "failed login attempts.
" msgstr "请注意:电子邮件通知需要安装mstmp软件包
" -#: 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 "" -"请注意:VPN连接需要安装wireguard或者OpenVPN软件包
" - -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:306 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:319 msgid "ProActive Uplink Switch" msgstr "ProActive 上行链路切换器" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:306 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:319 msgid "" "Proactively scan and switch to a higher prioritized uplink, despite of an " "already existing connection." msgstr "不管已经存在的连接,主动扫描并切换到更高优先级的上行链路。" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:422 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:418 msgid "Profile used by 'msmtp' for travelmate notification E-Mails." msgstr "用于travelmate电子邮件提醒的“msmtp”资料。" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:114 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:116 msgid "QR-Code Overview" msgstr "二维码概览" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:293 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:303 msgid "Radio Selection" msgstr "发射天线选择" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:314 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:323 msgid "Randomize MAC Addresses" msgstr "随机MAC地址" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:407 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:403 msgid "Receiver address for travelmate notification E-Mails." msgstr "travelmate电子邮件提醒的收件人地址。" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:115 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:264 +msgid "Remove" +msgstr "移除" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:262 +msgid "Remove this network" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:117 msgid "" "Render the QR-Code of the selected Access Point to comfortably transfer the " "WLAN credentials to your mobile devices." msgstr "为选中的AP生成二维码来便利的传输登录信息至移动设备。" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:592 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:726 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')." +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:272 +msgid "Restart Interface" msgstr "" -"限制travelmate只能使用单一发射天线,或者修改总体的扫描顺序(如“radio1 " -"radio0”)。" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:326 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:303 +msgid "" +"Restrict travelmate to a single radio or change the overall scanning order." +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:345 msgid "Retry limit to connect to an uplink." msgstr "连接到上行链路的重试次数限制。" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:241 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:242 msgid "Run Flags" msgstr "运行标记" -#: 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:729 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:284 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:445 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:707 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:862 msgid "SSID" msgstr "SSID" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:725 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:858 msgid "SSID (hidden)" msgstr "SSID(隐藏)" -#: 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:834 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:63 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:967 msgid "Save" msgstr "保存" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:346 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:365 msgid "Scan Buffer Size" msgstr "扫描用缓冲区大小" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:557 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:691 msgid "Scan on" msgstr "在此扫描" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:523 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:607 msgid "Script Arguments" msgstr "脚本参数" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:412 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:408 msgid "Sender address for travelmate notification E-Mails." msgstr "travelmate电子邮件提醒的发件人地址。" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:404 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:400 msgid "Sends notification E-Mails after every succesful uplink connect." msgstr "在每次上行链路连接成功后都发送电子邮件提醒。" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:368 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:388 msgid "Service Priority" msgstr "服务优先级" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:277 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:288 msgid "Settings" msgstr "设置" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:331 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:350 msgid "Signal Quality Threshold" msgstr "信号质量阈值" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:524 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:608 msgid "" "Space separated list of additional arguments passed to the Auto Login " "Script, i.e. username and password" msgstr "分隔传递给自动登录脚本的其他可选参数的列表,比如用户名和密码" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:579 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:713 msgid "Starting wireless scan on '" msgstr "在此开始无线扫描" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:229 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:226 msgid "Station ID" msgstr "站点ID" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:235 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:234 msgid "Station Interface" msgstr "站点接口" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:232 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:230 msgid "Station MAC" msgstr "站点MAC" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:226 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:222 msgid "Status / Version" msgstr "状态 / 版本" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:571 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:705 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:781 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:388 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:914 msgid "TLS" msgstr "TLS" -#: 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:782 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:389 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:915 msgid "TTLS" msgstr "TTLS" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:105 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:107 msgid "The QR-Code could not be generated!" msgstr "无法生成二维码!" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:31 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:33 msgid "The firewall zone name" msgstr "防火墙区域名称" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:36 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:38 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 "本地网络接口,如“br-lan”。" - -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:389 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:660 msgid "The logical vpn network interface, e.g. 'wg0' or 'tun0'." msgstr "VPN网络逻辑接口,如“wg0”或“tun0”。" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:351 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:370 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 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:388 msgid "The selected priority will be used for travelmate processes." msgstr "travelmate进程的优先级。" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:359 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:379 msgid "" "The selected user agent will be used for connectivity- and captive portal " "checks." @@ -611,15 +626,21 @@ msgstr "选中的用户将用于网络可连接性和强制登录门户检查。 msgid "The syslog output, pre-filtered for travelmate related messages only." msgstr "此表单显示 syslog 输出,仅针对 travelmate 相关消息进行预过滤。" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:56 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:58 msgid "The uplink interface has been updated." msgstr "上行链路接口已被更新。" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:26 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:28 msgid "The uplink interface name" msgstr "上行链路接口名称" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:20 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:490 +msgid "" +"This option is selected by default if this uplink was added automatically " +"and counts as 'Open Uplink'." +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:23 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 " @@ -628,7 +649,7 @@ msgstr "" "为了使用travelmate,你需要设置一次上行链路接口。此向导将生成IPv4和IPv6的相关" "网络接口及其相关的防火墙和网络设置。" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:417 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:413 msgid "Topic for travelmate notification E-Mails." msgstr "travelmate电子邮件提醒的标题。" @@ -636,49 +657,53 @@ msgstr "travelmate电子邮件提醒的标题。" msgid "Travelmate" msgstr "Travelmate" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:209 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:239 msgid "Travelmate Settings" msgstr "Travelmate设置" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:301 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:314 msgid "Treat missing internet availability as an error." msgstr "将无法连接互联网视为错误。" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:321 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:340 msgid "Trigger Delay" msgstr "触发延时" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:359 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:507 +msgid "Use the specified MAC address for this uplink." +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:379 msgid "User Agent" msgstr "User Agent" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:380 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:628 msgid "VPN Hook" msgstr "VPN接口" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:389 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:660 msgid "VPN Interface" msgstr "VPN接口" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:383 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:645 msgid "VPN Service" msgstr "VPN服务" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:281 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:240 msgid "VPN Settings" msgstr "VPN设置" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:290 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:300 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:764 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:307 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:897 msgid "WPA Ent. (CCMP)" msgstr "WPA Ent. (CCMP)" -#: 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:765 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:308 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:898 msgid "WPA Ent. (TKIP)" msgstr "WPA Ent. (TKIP)" @@ -686,101 +711,101 @@ msgstr "WPA Ent. (TKIP)" msgid "WPA Flags" msgstr "WPA参数" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:262 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:755 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:298 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:888 msgid "WPA Pers." msgstr "WPA Pers." -#: 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:756 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:299 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:889 msgid "WPA Pers. (CCMP)" msgstr "WPA Pers. (CCMP)" -#: 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:757 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:300 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:890 msgid "WPA Pers. (TKIP)" msgstr "WPA Pers. (TKIP)" -#: 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:766 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:309 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:899 msgid "WPA/WPA2 Ent. (CCMP)" msgstr "WPA/WPA2 Ent. (CCMP)" -#: 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:767 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:310 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:900 msgid "WPA/WPA2 Ent. (TKIP)" msgstr "WPA/WPA2 Ent. (TKIP)" -#: 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:758 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:301 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:891 msgid "WPA/WPA2 Pers. (CCMP)" msgstr "WPA/WPA2 Pers. (CCMP)" -#: 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:759 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:302 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:892 msgid "WPA/WPA2 Pers. (TKIP)" msgstr "WPA/WPA2 Pers. (TKIP)" -#: 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:762 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:305 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:895 msgid "WPA2 Ent. (CCMP)" msgstr "WPA2 Ent. (CCMP)" -#: 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:763 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:306 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:896 msgid "WPA2 Ent. (TKIP)" msgstr "WPA2 Ent. (TKIP)" -#: 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:752 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:295 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:885 msgid "WPA2 Pers." msgstr "WPA2 Pers." -#: 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:753 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:296 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:886 msgid "WPA2 Pers. (CCMP)" msgstr "WPA2 Pers. (CCMP)" -#: 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:754 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:297 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:887 msgid "WPA2 Pers. (TKIP)" msgstr "WPA2 Pers. (TKIP)" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:761 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:894 msgid "WPA2/WPA3 Ent." msgstr "WPA2/WPA3 Ent." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:268 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:304 msgid "WPA2/WPA3 Ent. (CCMP)" msgstr "WPA2/WPA3 Ent. (CCMP)" -#: 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:751 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:294 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:884 msgid "WPA2/WPA3 Pers. (CCMP)" msgstr "WPA2/WPA3 Pers. (CCMP)" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:760 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:893 msgid "WPA3 Ent." msgstr "WPA3 Ent." -#: 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:303 msgid "WPA3 Ent. (CCMP)" msgstr "WPA3 Ent. (CCMP)" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:768 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:901 msgid "WPA3 OWE (CCMP)" msgstr "WPA3 OWE (CCMP)" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:257 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:750 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:293 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:883 msgid "WPA3 Pers. (SAE)" msgstr "WPA3 Pers. (SAE)" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:581 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:715 msgid "Wireless Scan" msgstr "无线扫描" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:208 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:238 msgid "Wireless Settings" msgstr "无线设置" @@ -788,21 +813,66 @@ msgstr "无线设置" msgid "Wireless Stations" msgstr "无线站点" -#: 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:798 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:406 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:931 msgid "auth=MSCHAPV2" msgstr "auth=MSCHAPV2" -#: 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:797 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:405 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:930 msgid "auth=PAP" msgstr "auth=PAP" -#: 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:769 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:312 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:902 msgid "none" msgstr "无" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:306 +msgid "use both radios, normal sort order (radio0 radio1)" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:307 +msgid "use both radios, reverse sort order (radio1 radio0)" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:304 +msgid "use the first radio only (radio0)" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:305 +msgid "use the second radio only (radio1)" +msgstr "" + +#~ msgid "Automatically handle VPN (re-) connections." +#~ msgstr "自动处理VPN(重)连接。" + +#~ msgid "Del" +#~ msgstr "删除" + +#~ msgid "Delete this network" +#~ msgstr "删除此网络" + +#~ msgid "LAN Device" +#~ msgstr "本地网络设备" + +#~ msgid "" +#~ "Please note: VPN connections require the separate setup of the " +#~ "Wireguard or OpenVPN package.
" +#~ msgstr "" +#~ "请注意:VPN连接需要安装wireguard或者OpenVPN软件包
" + +#~ msgid "" +#~ "Restrict travelmate to a single radio or change the overall scanning " +#~ "order (e.g. 'radio1 radio0')." +#~ msgstr "" +#~ "限制travelmate只能使用单一发射天线,或者修改总体的扫描顺序(如“radio1 " +#~ "radio0”)。" + +#~ msgid "The lan network device, e.g. 'br-lan'." +#~ msgstr "本地网络接口,如“br-lan”。" + #~ msgid "" #~ "Configuration of the travelmate package to to enable travel router " #~ "functionality. For further information n minutes, e.g. after " "failed login attempts.
" msgstr "請注意:電子郵件通知需要安裝mstmp套件
" -#: 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 "" -"請注意:VPN 連線需要安裝wireguard或者OpenVPN套件
" - -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:306 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:319 msgid "ProActive Uplink Switch" msgstr "ProActive 上行切換器" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:306 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:319 msgid "" "Proactively scan and switch to a higher prioritized uplink, despite of an " "already existing connection." msgstr "不管已經存在的連線,主動掃描並切換到更高優先順序的上行。" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:422 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:418 msgid "Profile used by 'msmtp' for travelmate notification E-Mails." msgstr "用於 travelmate 電子郵件提醒的「msmtp」資料。" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:114 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:116 msgid "QR-Code Overview" msgstr "QR-Code 概覽" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:293 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:303 msgid "Radio Selection" msgstr "發射天線選擇" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:314 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:323 msgid "Randomize MAC Addresses" msgstr "隨機 MAC 位址" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:407 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:403 msgid "Receiver address for travelmate notification E-Mails." msgstr "travelmate 電子郵件提醒的收件人位址。" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:115 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:264 +msgid "Remove" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:262 +msgid "Remove this network" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:117 msgid "" "Render the QR-Code of the selected Access Point to comfortably transfer the " "WLAN credentials to your mobile devices." msgstr "為選取的 AP 產生 QR-Code 來便利的傳輸登錄資訊至行動裝置。" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:592 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:726 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')." +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:272 +msgid "Restart Interface" msgstr "" -"限制 travelmate 只能使用單一發射天線,或者修改總體的掃描順序 (例如 'radio1 " -"radio0')。" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:326 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:303 +msgid "" +"Restrict travelmate to a single radio or change the overall scanning order." +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:345 msgid "Retry limit to connect to an uplink." msgstr "連線到上行連線的重試限制。" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:241 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:242 msgid "Run Flags" msgstr "執行旗標" -#: 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:729 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:284 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:445 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:707 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:862 msgid "SSID" msgstr "SSID" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:725 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:858 msgid "SSID (hidden)" msgstr "SSID (隱藏)" -#: 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:834 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:63 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:967 msgid "Save" msgstr "儲存" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:346 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:365 msgid "Scan Buffer Size" msgstr "掃描緩衝區大小" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:557 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:691 msgid "Scan on" msgstr "在此掃描" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:523 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:607 msgid "Script Arguments" msgstr "指令碼參數" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:412 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:408 msgid "Sender address for travelmate notification E-Mails." msgstr "travelmate 電子郵件提醒的發件人位址。" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:404 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:400 msgid "Sends notification E-Mails after every succesful uplink connect." msgstr "在每次上行連接成功後都傳送電子郵件提醒。" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:368 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:388 msgid "Service Priority" msgstr "服務優先權" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:277 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:288 msgid "Settings" msgstr "設定" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:331 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:350 msgid "Signal Quality Threshold" msgstr "訊號品質閾值" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:524 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:608 msgid "" "Space separated list of additional arguments passed to the Auto Login " "Script, i.e. username and password" msgstr "分隔傳遞給自動登錄指令碼的其他可選參數的列表,比如使用者名稱和密碼" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:579 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:713 msgid "Starting wireless scan on '" msgstr "在此開始無線掃描" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:229 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:226 msgid "Station ID" msgstr "站台 ID" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:235 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:234 msgid "Station Interface" msgstr "站台介面" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:232 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:230 msgid "Station MAC" msgstr "站台MAC位址" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:226 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:222 msgid "Status / Version" msgstr "狀態/版本" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:571 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:705 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:781 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:388 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:914 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:782 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:389 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:915 msgid "TTLS" msgstr "TTLS" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:105 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:107 msgid "The QR-Code could not be generated!" msgstr "無法產生 QR-Code!" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:31 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:33 msgid "The firewall zone name" msgstr "防火牆區域名稱" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:36 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:38 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 "本地網路介面,例如 'br-lan'。" - -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:389 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:660 msgid "The logical vpn network interface, e.g. 'wg0' or 'tun0'." msgstr "VPN 網路邏輯介面,如「wg0」或「tun0」。" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:351 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:370 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 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:388 msgid "The selected priority will be used for travelmate processes." msgstr "travelmate 行程將使用已選擇的優先權。" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:359 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:379 msgid "" "The selected user agent will be used for connectivity- and captive portal " "checks." @@ -610,15 +625,21 @@ msgstr "選取的使用者將用於網路可連接性和網頁驗證入口檢查 msgid "The syslog output, pre-filtered for travelmate related messages only." msgstr "此表單顯示 syslog 輸出,僅針對 travelmate 相關訊息進行預過濾。" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:56 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:58 msgid "The uplink interface has been updated." msgstr "上行介面已被更新。" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:26 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:28 msgid "The uplink interface name" msgstr "上行介面名稱" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:20 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:490 +msgid "" +"This option is selected by default if this uplink was added automatically " +"and counts as 'Open Uplink'." +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:23 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 " @@ -627,7 +648,7 @@ msgstr "" "為了使用 travelmate,您需要設定一次上行介面。此精靈將產生 IPv4 和 IPv6 的相關" "網路介面及其相關的防火牆和網路設定。" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:417 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:413 msgid "Topic for travelmate notification E-Mails." msgstr "travelmate 電子郵件提醒的標題。" @@ -635,49 +656,53 @@ msgstr "travelmate 電子郵件提醒的標題。" msgid "Travelmate" msgstr "travelmate" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:209 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:239 msgid "Travelmate Settings" msgstr "travelmate 設定" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:301 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:314 msgid "Treat missing internet availability as an error." msgstr "將無法連接網際網路視為錯誤。" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:321 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:340 msgid "Trigger Delay" msgstr "觸發延遲" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:359 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:507 +msgid "Use the specified MAC address for this uplink." +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:379 msgid "User Agent" msgstr "用戶代理" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:380 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:628 msgid "VPN Hook" msgstr "VPN掛鉤" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:389 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:660 msgid "VPN Interface" msgstr "VPN 介面" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:383 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:645 msgid "VPN Service" msgstr "VPN 服務" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:281 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:240 msgid "VPN Settings" msgstr "VPN 設定" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:290 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:300 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:764 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:307 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:897 msgid "WPA Ent. (CCMP)" msgstr "WPA企業(CCMP)" -#: 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:765 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:308 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:898 msgid "WPA Ent. (TKIP)" msgstr "WPA 企業. (TKIP)" @@ -685,101 +710,101 @@ msgstr "WPA 企業. (TKIP)" msgid "WPA Flags" msgstr "WPA 參數" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:262 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:755 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:298 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:888 msgid "WPA Pers." msgstr "WPA 個人." -#: 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:756 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:299 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:889 msgid "WPA Pers. (CCMP)" msgstr "WPA 個人. (CCMP)" -#: 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:757 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:300 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:890 msgid "WPA Pers. (TKIP)" msgstr "WPA 個人. (TKIP)" -#: 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:766 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:309 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:899 msgid "WPA/WPA2 Ent. (CCMP)" msgstr "WPA/WPA2 企業. (CCMP)" -#: 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:767 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:310 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:900 msgid "WPA/WPA2 Ent. (TKIP)" msgstr "WPA/WPA2 個人. (TKIP)" -#: 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:758 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:301 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:891 msgid "WPA/WPA2 Pers. (CCMP)" msgstr "WPA/WPA2 個人. (CCMP)" -#: 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:759 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:302 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:892 msgid "WPA/WPA2 Pers. (TKIP)" msgstr "WPA/WPA2 個人. (TKIP)" -#: 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:762 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:305 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:895 msgid "WPA2 Ent. (CCMP)" msgstr "WPA2 企業. (CCMP)" -#: 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:763 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:306 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:896 msgid "WPA2 Ent. (TKIP)" msgstr "WPA2 企業. (TKIP)" -#: 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:752 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:295 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:885 msgid "WPA2 Pers." msgstr "WPA2 個人." -#: 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:753 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:296 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:886 msgid "WPA2 Pers. (CCMP)" msgstr "WPA2 個人. (CCMP)" -#: 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:754 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:297 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:887 msgid "WPA2 Pers. (TKIP)" msgstr "WPA2 個人. (TKIP)" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:761 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:894 msgid "WPA2/WPA3 Ent." msgstr "WPA2/WPA3 企業." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:268 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:304 msgid "WPA2/WPA3 Ent. (CCMP)" msgstr "WPA2/WPA3 企業 (CCMP)" -#: 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:751 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:294 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:884 msgid "WPA2/WPA3 Pers. (CCMP)" msgstr "WPA2/WPA3 個人. (CCMP)" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:760 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:893 msgid "WPA3 Ent." msgstr "WPA3 企業." -#: 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:303 msgid "WPA3 Ent. (CCMP)" msgstr "WPA3 企業. (CCMP)" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:768 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:901 msgid "WPA3 OWE (CCMP)" msgstr "WPA3 OWE (CCMP)" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:257 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:750 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:293 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:883 msgid "WPA3 Pers. (SAE)" msgstr "WPA3 個人. (CCMP)" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:581 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:715 msgid "Wireless Scan" msgstr "無線掃描" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:208 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:238 msgid "Wireless Settings" msgstr "無線設定" @@ -787,21 +812,66 @@ msgstr "無線設定" msgid "Wireless Stations" msgstr "無線站點" -#: 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:798 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:406 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:931 msgid "auth=MSCHAPV2" msgstr "驗證= MSCHAPV2" -#: 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:797 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:405 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:930 msgid "auth=PAP" msgstr "驗證= PAP" -#: 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:769 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:312 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:902 msgid "none" msgstr "無" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:306 +msgid "use both radios, normal sort order (radio0 radio1)" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:307 +msgid "use both radios, reverse sort order (radio1 radio0)" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:304 +msgid "use the first radio only (radio0)" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:305 +msgid "use the second radio only (radio1)" +msgstr "" + +#~ msgid "Automatically handle VPN (re-) connections." +#~ msgstr "自動處理 VPN (重新) 連接。" + +#~ msgid "Del" +#~ msgstr "刪除" + +#~ msgid "Delete this network" +#~ msgstr "刪除這個網路" + +#~ msgid "LAN Device" +#~ msgstr "區域網路裝置" + +#~ msgid "" +#~ "Please note: VPN connections require the separate setup of the " +#~ "Wireguard or OpenVPN package.
" +#~ msgstr "" +#~ "請注意:VPN 連線需要安裝wireguard或者OpenVPN套件
" + +#~ msgid "" +#~ "Restrict travelmate to a single radio or change the overall scanning " +#~ "order (e.g. 'radio1 radio0')." +#~ msgstr "" +#~ "限制 travelmate 只能使用單一發射天線,或者修改總體的掃描順序 (例如 " +#~ "'radio1 radio0')。" + +#~ msgid "The lan network device, e.g. 'br-lan'." +#~ msgstr "本地網路介面,例如 'br-lan'。" + #~ msgid "" #~ "Configuration of the travelmate package to to enable travel router " #~ "functionality. For further information