From: Jo-Philipp Wich Date: Mon, 6 Sep 2021 20:29:43 +0000 (+0200) Subject: Merge pull request #5331 from Ansuel/fixmaterial X-Git-Url: http://git.openwrt.org/?a=commitdiff_plain;h=f0f9bbe22f0640176b92b222be96de5962a5bdc3;hp=a9ff8d34687b0bcec4e7766576da3b4cb3feda67;p=project%2Fluci.git Merge pull request #5331 from Ansuel/fixmaterial Minor fix for material theme --- diff --git a/applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/configuration.js b/applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/configuration.js index 2ec486caf2..61d4f923bc 100644 --- a/applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/configuration.js +++ b/applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/configuration.js @@ -7,28 +7,27 @@ return view.extend({ var m, s, o; m = new form.Map('attendedsysupgrade', _('Attended Sysupgrade'), - _('Attendedsysupgrade Configuration.') - ); + _('Attendedsysupgrade Configuration.')); s = m.section(form.TypedSection, 'server', _('Server')); s.anonymous = true; s.option(form.Value, 'url', _('Address'), - _('Address of the sysupgrade server')); + _('Address of the sysupgrade server')); s = m.section(form.TypedSection, 'client', _('Client')); s.anonymous = true; o = s.option(form.Flag, 'auto_search', _('Search on opening'), - _('Search for new sysupgrades on opening the tab')); + _('Search for new sysupgrades on opening the tab')); o.default = '1'; o.rmempty = false; o = s.option(form.Flag, 'advanced_mode', _('Advanced Mode'), - _('Show advanced options like packge list modification')); + _('Show advanced options like packge list modification')); o.default = '0'; o.rmempty = false; return m.render(); - } + }, }); diff --git a/applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js b/applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js index b148e793b2..b7cbdc2231 100644 --- a/applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js +++ b/applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js @@ -9,412 +9,444 @@ 'require dom'; var callPackagelist = rpc.declare({ - object: 'rpc-sys', - method: 'packagelist', + object: 'rpc-sys', + method: 'packagelist', }); var callSystemBoard = rpc.declare({ - object: 'system', - method: 'board' + object: 'system', + method: 'board', }); var callUpgradeStart = rpc.declare({ - object: 'rpc-sys', - method: 'upgrade_start', - params: ["keep"] + object: 'rpc-sys', + method: 'upgrade_start', + params: [ 'keep' ], }); function get_branch(version) { - // determine branch of a version - // SNAPSHOT -> SNAPSHOT - // 21.02-SNAPSHOT -> 21.02 - // 21.02.0-rc1 -> 21.02 - // 19.07.8 -> 19.07 - return version.replace("-SNAPSHOT", "").split(".").slice(0, 2).join("."); + // determine branch of a version + // SNAPSHOT -> SNAPSHOT + // 21.02-SNAPSHOT -> 21.02 + // 21.02.0-rc1 -> 21.02 + // 19.07.8 -> 19.07 + return version.replace('-SNAPSHOT', '').split('.').slice(0, 2).join('.'); } function get_revision_count(revision) { - return parseInt(revision.substring(1).split("-")[0]) + return parseInt(revision.substring(1).split('-')[0]); } function error_api_connect(response) { - console.log(response) - ui.showModal(_('Error connecting to upgrade server'), [ - E('p', {}, _(`Could not reach API at "${response.url}. Please try again later.`)), - E('pre', {}, response.responseText), - E('div', { - 'class': 'right' - }, [ - E('div', { - 'class': 'btn', - 'click': ui.hideModal - }, _('Close')) - ]) - ]); + ui.showModal(_('Error connecting to upgrade server'), [ + E('p', {}, + _('Could not reach API at "%s". Please try again later.') + .format(response.url)), + E('pre', {}, response.responseText), + E('div', { + class: 'right', + }, + [ + E('div', { + class: 'btn', + click: ui.hideModal, + }, + _('Close')), + ]), + ]); } function install_sysupgrade(url, keep, sha256) { - displayStatus("notice spinning", E('p', _('Downloading firmware from server to browser'))); - request.get(url, { - headers: { - 'Content-Type': 'application/x-www-form-urlencoded' - }, - responseType: 'blob' - }) - .then(response => { - var form_data = new FormData(); - form_data.append("sessionid", rpc.getSessionID()); - form_data.append("filename", "/tmp/firmware.bin"); - form_data.append("filemode", 600); - form_data.append("filedata", response.blob()); - - displayStatus("notice spinning", E('p', _('Uploading firmware from browser to device'))); - request.get(`${L.env.cgi_base}/cgi-upload`, { - method: 'PUT', - content: form_data - }) - .then(response => response.json()) - .then(response => { - if (response.sha256sum != sha256) { - displayStatus("warning", [ - E('b', _('Wrong checksum')), - E('p', _('Error during download of firmware. Please try again')), - E('div', { - 'class': 'btn', - 'click': ui.hideModal - }, _('Close')) - ]); - } else { - displayStatus('warning spinning', E('p', _('Installing the sysupgrade. Do not unpower device!'))); - L.resolveDefault(callUpgradeStart(keep), {}).then(response => { - if (keep) { - ui.awaitReconnect(window.location.host); - } else { - ui.awaitReconnect('192.168.1.1', 'openwrt.lan'); - } - }); - } - }); - }); + displayStatus('notice spinning', + E('p', _('Downloading firmware from server to browser'))); + request + .get(url, { + headers: { + 'Content-Type': 'application/x-www-form-urlencoded', + }, + responseType: 'blob', + }) + .then((response) => { + var form_data = new FormData(); + form_data.append('sessionid', rpc.getSessionID()); + form_data.append('filename', '/tmp/firmware.bin'); + form_data.append('filemode', 600); + form_data.append('filedata', response.blob()); + + displayStatus('notice spinning', + E('p', _('Uploading firmware from browser to device'))); + request + .get(`${L.env.cgi_base}/cgi-upload`, { + method: 'PUT', + content: form_data, + }) + .then((response) => response.json()) + .then((response) => { + if (response.sha256sum != sha256) { + displayStatus('warning', [ + E('b', _('Wrong checksum')), + E('p', + _('Error during download of firmware. Please try again')), + E('div', { + class: 'btn', + click: ui.hideModal, + }, + _('Close')), + ]); + } else { + displayStatus( + 'warning spinning', + E('p', + _('Installing the sysupgrade. Do not unpower device!'))); + L.resolveDefault(callUpgradeStart(keep), {}) + .then((response) => { + if (keep) { + ui.awaitReconnect(window.location.host); + } else { + ui.awaitReconnect('192.168.1.1', 'openwrt.lan'); + } + }); + } + }); + }); } function request_sysupgrade(server_url, data) { - var res, req; - - if (data.request_hash) { - req = request.get(`${server_url}/api/v1/build/${data.request_hash}`) - } else { - req = request.post(`${server_url}/api/v1/build`, { - profile: data.board_name, - target: data.target, - version: data.version, - packages: data.packages, - diff_packages: true, - }) - } - - req.then(response => { - switch (response.status) { - case 200: - res = response.json() - var image; - for (image of res.images) { - if (image.type == "sysupgrade") { - break; - } - } - if (image.name != undefined) { - var sysupgrade_url = `${server_url}/store/${res.bin_dir}/${image.name}`; - - var keep = E('input', { - type: 'checkbox' - }) - keep.checked = true; - - var fields = [ - _('Version'), `${res.version_number} ${res.version_code}`, - _('File'), E('a', { - 'href': sysupgrade_url - }, image.name), - _('SHA256'), image.sha256, - _('Build Date'), res.build_at, - _('Target'), res.target, - ]; - - var table = E('div', { - 'class': 'table' - }); - - for (var i = 0; i < fields.length; i += 2) { - table.appendChild(E('div', { - 'class': 'tr' - }, [ - E('div', { - 'class': 'td left', - 'width': '33%' - }, [fields[i]]), - E('div', { - 'class': 'td left' - }, [(fields[i + 1] != null) ? fields[i + 1] : '?']) - ])); - } - - var modal_body = [ - table, - E('p', {}, E('label', { - 'class': 'btn' - }, [ - keep, ' ', _('Keep settings and retain the current configuration') - ])), - E('div', { - 'class': 'right' - }, [ - E('div', { - 'class': 'btn', - 'click': ui.hideModal - }, _('Cancel')), - ' ', - E('div', { - 'class': 'btn cbi-button-action', - 'click': function() { - install_sysupgrade(sysupgrade_url, keep.checked, image.sha256) - } - }, _('Install Sysupgrade')) - ]) - ] - - ui.showModal(_('Successfully created sysupgrade image'), modal_body); - } - - break; - case 202: - res = response.json() - data.request_hash = res.request_hash; - - if ("queue_position" in res) - displayStatus("notice spinning", E('p', _('Request in build queue position %d'.format(res.queue_position)))); - else - displayStatus("notice spinning", E('p', _('Building firmware sysupgrade image'))); - - setTimeout(function() { - request_sysupgrade(server_url, data); - }, 5000); - break; - case 400: // bad request - case 422: // bad package - case 500: // build failed - res = response.json() - var body = [ - E('p', {}, res.detail), - E('p', {}, _("Please report the error message and request")), - E('b', {}, _("Request to server:")), - E('pre', {}, JSON.stringify(data, null, 4)), - - ] - - if (res.stdout) { - body.push(E('b', {}, "STDOUT:")) - body.push(E('pre', {}, res.stdout)) - - } - - if (res.stderr) { - body.push(E('b', {}, "STDERR:")) - body.push(E('pre', {}, res.stderr)) - - } - - body = body.concat([ - E('div', { - 'class': 'right' - }, [ - E('div', { - 'class': 'btn', - 'click': ui.hideModal - }, _('Close')) - ]) - ]); - ui.showModal(_('Error building the sysupgrade'), body); - break; - } - }); + var res, req; + + if (data.request_hash) { + req = request.get(`${server_url}/api/v1/build/${data.request_hash}`); + } else { + req = request.post(`${server_url}/api/v1/build`, { + profile: data.board_name, + target: data.target, + version: data.version, + packages: data.packages, + diff_packages: true, + }); + } + + req.then((response) => { + switch (response.status) { + case 200: + res = response.json(); + var image; + for (image of res.images) { + if (image.type == 'sysupgrade') { + break; + } + } + if (image.name != undefined) { + var sysupgrade_url = `${server_url}/store/${res.bin_dir}/${image.name}`; + + var keep = E('input', { + type: 'checkbox', + }); + keep.checked = true; + + var fields = [ + _('Version'), + `${res.version_number} ${res.version_code}`, + _('File'), + E('a', { + href: sysupgrade_url, + }, + image.name), + _('SHA256'), + image.sha256, + _('Build Date'), + res.build_at, + _('Target'), + res.target, + ]; + + var table = E('div', { + class: 'table', + }); + + for (var i = 0; i < fields.length; i += 2) { + table.appendChild(E('tr', { + class: 'tr', + }, + [ + E('td', { + class: 'td left', + width: '33%', + }, + [ fields[i] ]), + E('td', { + class: 'td left', + }, + [ fields[i + 1] ]), + ])); + } + + var modal_body = [ + table, + E('p', {class: 'mt-2'}, + E('label', { + class: 'btn', + }, + [ + keep, ' ', + _('Keep settings and retain the current configuration') + ])), + E('div', { + class: 'right', + }, + [ + E('div', { + class: 'btn', + click: ui.hideModal, + }, + _('Cancel')), + ' ', + E('div', { + class: 'btn cbi-button-action', + click: function() { + install_sysupgrade(sysupgrade_url, keep.checked, + image.sha256); + }, + }, + _('Install Sysupgrade')), + ]), + ]; + + ui.showModal(_('Successfully created sysupgrade image'), modal_body); + } + + break; + case 202: + res = response.json(); + data.request_hash = res.request_hash; + + if ('queue_position' in res) + displayStatus('notice spinning', + E('p', _('Request in build queue position %s') + .format(res.queue_position))); + else + displayStatus('notice spinning', + E('p', _('Building firmware sysupgrade image'))); + + setTimeout(function() { request_sysupgrade(server_url, data); }, 5000); + break; + case 400: // bad request + case 422: // bad package + case 500: // build failed + res = response.json(); + var body = [ + E('p', {}, res.detail), + E('p', {}, _('Please report the error message and request')), + E('b', {}, _('Request to server:')), + E('pre', {}, JSON.stringify(data, null, 4)), + ]; + + if (res.stdout) { + body.push(E('b', {}, 'STDOUT:')); + body.push(E('pre', {}, res.stdout)); + } + + if (res.stderr) { + body.push(E('b', {}, 'STDERR:')); + body.push(E('pre', {}, res.stderr)); + } + + body = body.concat([ + E('div', { + class: 'right', + }, + [ + E('div', { + class: 'btn', + click: ui.hideModal, + }, + _('Close')), + ]), + ]); + ui.showModal(_('Error building the sysupgrade'), body); + break; + } + }); } async function check_sysupgrade(server_url, system_board, packages) { - var { - board_name - } = system_board; - var { - target, - version, - revision - } = system_board.release; - var current_branch = get_branch(version); - var advanced_mode = uci.get_first('attendedsysupgrade', 'client', 'advanced_mode') || 0; - var candidates = []; - var response; - - displayStatus("notice spinning", E('p', _(`Searching for an available sysupgrade of ${version} - ${revision}`))); - - if (version.endsWith("SNAPSHOT")) { - response = await request.get(`${server_url}/api/v1/revision/${version}/${target}`) - if (!response.ok) { - error_api_connect(response); - return; - } - - const remote_revision = response.json().revision; - - if (get_revision_count(revision) < get_revision_count(remote_revision)) { - candidates.push(version); - } - } else { - response = await request.get(`${server_url}/api/overview`, { - timeout: 8000 - }); - - if (!response.ok) { - error_api_connect(response); - return; - } - - const latest = response.json().latest - - for (let remote_version of latest) { - var remote_branch = get_branch(remote_version); - - // already latest version installed - if (version == remote_version) { - break; - } - - // skip branch upgrades outside the advanced mode - if (current_branch != remote_branch && advanced_mode == 0) { - continue; - } - - candidates.unshift(remote_version); - - // don't offer branches older than the current - if (current_branch == remote_branch) { - break; - } - } - } - - if (candidates.length) { - var m, s, o; - - var mapdata = { - request: { - board_name: board_name, - target: target, - version: candidates[0], - packages: Object.keys(packages).sort(), - } - } - - m = new form.JSONMap(mapdata, ''); - - s = m.section(form.NamedSection, 'request', 'example', '', - 'Use defaults for the safest update'); - o = s.option(form.ListValue, 'version', 'Select firmware version'); - for (let candidate of candidates) { - o.value(candidate, candidate); - } - - if (advanced_mode == 1) { - o = s.option(form.Value, 'board_name', 'Board Name / Profile'); - o = s.option(form.DynamicList, 'packages', 'Packages'); - } - - - m.render() - .then(function(form_rendered) { - ui.showModal(_('New upgrade available'), [ - form_rendered, - E('div', { - 'class': 'right' - }, [ - E('div', { - 'class': 'btn', - 'click': ui.hideModal - }, _('Cancel')), - ' ', - E('div', { - 'class': 'btn cbi-button-action', - 'click': function() { - m.save().then(foo => { - request_sysupgrade( - server_url, mapdata.request - ) - }); - } - }, _('Request Sysupgrade')) - ]) - ]); - }); - } else { - ui.showModal(_('No upgrade available'), [ - E('p', {}, _(`The device runs the latest firmware version ${version} - ${revision}`)), - E('div', { - 'class': 'right' - }, [ - E('div', { - 'class': 'btn', - 'click': ui.hideModal - }, _('Close')) - ]) - ]); - } + var {board_name} = system_board; + var {target, version, revision} = system_board.release; + var current_branch = get_branch(version); + var advanced_mode = + uci.get_first('attendedsysupgrade', 'client', 'advanced_mode') || 0; + var candidates = []; + var response; + + displayStatus('notice spinning', + E('p', _('Searching for an available sysupgrade of %s - %s') + .format(version, revision))); + + if (version.endsWith('SNAPSHOT')) { + response = + await request.get(`${server_url}/api/v1/revision/${version}/${target}`); + if (!response.ok) { + error_api_connect(response); + return; + } + + const remote_revision = response.json().revision; + + if (get_revision_count(revision) < get_revision_count(remote_revision)) { + candidates.push(version); + } + } else { + response = await request.get(`${server_url}/api/overview`, { + timeout: 8000, + }); + + if (!response.ok) { + error_api_connect(response); + return; + } + + const latest = response.json().latest; + + for (let remote_version of latest) { + var remote_branch = get_branch(remote_version); + + // already latest version installed + if (version == remote_version) { + break; + } + + // skip branch upgrades outside the advanced mode + if (current_branch != remote_branch && advanced_mode == 0) { + continue; + } + + candidates.unshift(remote_version); + + // don't offer branches older than the current + if (current_branch == remote_branch) { + break; + } + } + } + + if (candidates.length) { + var m, s, o; + + var mapdata = { + request: { + board_name: board_name, + target: target, + version: candidates[0], + packages: Object.keys(packages).sort(), + }, + }; + + m = new form.JSONMap(mapdata, ''); + + s = m.section(form.NamedSection, 'request', 'example', '', + 'Use defaults for the safest update'); + o = s.option(form.ListValue, 'version', 'Select firmware version'); + for (let candidate of candidates) { + o.value(candidate, candidate); + } + + if (advanced_mode == 1) { + o = s.option(form.Value, 'board_name', 'Board Name / Profile'); + o = s.option(form.DynamicList, 'packages', 'Packages'); + } + + m.render().then(function(form_rendered) { + ui.showModal(_('New upgrade available'), [ + form_rendered, + E('div', { + class: 'right', + }, + [ + E('div', { + class: 'btn', + click: ui.hideModal, + }, + _('Cancel')), + ' ', + E('div', { + class: 'btn cbi-button-action', + click: function() { + m.save().then((foo) => { + request_sysupgrade(server_url, mapdata.request); + }); + }, + }, + _('Request Sysupgrade')), + ]), + ]); + }); + } else { + ui.showModal(_('No upgrade available'), [ + E('p', {}, + _('The device runs the latest firmware version %s - %s') + .format(version, revision)), + E('div', { + class: 'right', + }, + [ + E('div', { + class: 'btn', + click: ui.hideModal, + }, + _('Close')), + ]), + ]); + } } function displayStatus(type, content) { - if (type) { - var message = ui.showModal('', ''); + if (type) { + var message = ui.showModal('', ''); - message.classList.add('alert-message'); - DOMTokenList.prototype.add.apply(message.classList, type.split(/\s+/)); + message.classList.add('alert-message'); + DOMTokenList.prototype.add.apply(message.classList, type.split(/\s+/)); - if (content) - dom.content(message, content); - } else { - ui.hideModal(); - } + if (content) + dom.content(message, content); + } else { + ui.hideModal(); + } } return view.extend({ - load: function() { - return Promise.all([ - L.resolveDefault(callPackagelist(), {}), - L.resolveDefault(callSystemBoard(), {}), - uci.load('attendedsysupgrade') - ]); - }, - render: function(res) { - var packages = res[0].packages; - var system_board = res[1]; - var auto_search = uci.get_first('attendedsysupgrade', 'client', 'auto_search') || 1; - var server_url = uci.get_first('attendedsysupgrade', 'server', 'url'); - - var view = [ - E('h2', _("Attended Sysupgrade")), - E('p', _('The attended sysupgrade service allows to easily upgrade vanilla and custom firmware images.')), - E('p', _('This is done by building a new firmware on demand via an online service.')) - ]; - - if (auto_search == 1) { - check_sysupgrade(server_url, system_board, packages) - } - - view.push(E('p', { - 'class': 'btn cbi-button-positive', - 'click': function() { - check_sysupgrade(server_url, system_board, packages) - } - }, _('Search for sysupgrade'))); - - return view; - }, - + load: function() { + return Promise.all([ + L.resolveDefault(callPackagelist(), {}), + L.resolveDefault(callSystemBoard(), {}), + uci.load('attendedsysupgrade'), + ]); + }, + render: function(res) { + var packages = res[0].packages; + var system_board = res[1]; + var auto_search = + uci.get_first('attendedsysupgrade', 'client', 'auto_search') || 1; + var server_url = uci.get_first('attendedsysupgrade', 'server', 'url'); + + var view = [ + E('h2', _('Attended Sysupgrade')), + E('p', + _('The attended sysupgrade service allows to easily upgrade vanilla and custom firmware images.')), + E('p', + _('This is done by building a new firmware on demand via an online service.')), + ]; + + if (auto_search == 1) { + check_sysupgrade(server_url, system_board, packages); + } + + view.push(E('p', { + class: 'btn cbi-button-positive', + click: + function() { check_sysupgrade(server_url, system_board, packages); }, + }, + _('Search for sysupgrade'))); + + return view; + }, }); 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 fbf146de2c..20443f9799 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 @@ -308,6 +308,7 @@ return view.extend({ o.value('psk-mixed+tkip', _('WPA/WPA2 Pers. (TKIP)')); o.value('wpa3', _('WPA3 Ent. (CCMP)')); o.value('wpa3-mixed', _('WPA2/WPA3 Ent. (CCMP)')); + o.value('wpa2', _('WPA2 Ent.')); o.value('wpa2+ccmp', _('WPA2 Ent. (CCMP)')); o.value('wpa2+tkip', _('WPA2 Ent. (TKIP)')); o.value('wpa+ccmp', _('WPA Ent. (CCMP)')); @@ -350,6 +351,9 @@ return view.extend({ case 'wpa3-mixed': cfgvalue = 'WPA2/WPA3 Ent. (CCMP)'; break; + case 'wpa2': + cfgvalue = 'WPA2 Ent.'; + break; case 'wpa2+ccmp': cfgvalue = 'WPA2 Ent. (CCMP)'; break; @@ -386,17 +390,22 @@ return view.extend({ o.datatype = 'wpakey'; o.depends({ encryption: 'sae', '!contains': true }); o.depends({ encryption: 'psk', '!contains': true }); + o.modalonly = true; + o.password = true; + + o = s.taboption('wireless', form.Value, 'password', _('Password')); + o.datatype = 'wpakey'; o.depends({ encryption: 'wpa', '!contains': true }); o.modalonly = true; o.password = true; o = s.taboption('wireless', form.ListValue, 'eap_type', _('EAP-Method')); + o.depends({ encryption: 'wpa', '!contains': true }); o.value('tls', _('TLS')); o.value('ttls', _('TTLS')); o.value('peap', _('PEAP')); o.value('fast', _('FAST')); o.default = 'peap'; - o.depends({ encryption: 'wpa', '!contains': true }); o.modalonly = true; o = s.taboption('wireless', form.ListValue, 'auth', _('Authentication')); @@ -414,12 +423,39 @@ return view.extend({ o.depends({ encryption: 'wpa', '!contains': true }); o.modalonly = true; - o = s.taboption('wireless', form.Value, 'identify', _('Identify')); + o = s.taboption('wireless', form.Value, 'identity', _('Identity')); + o.depends({ encryption: 'wpa', '!contains': true }); + o.modalonly = true; + + o = s.taboption('wireless', form.Value, 'anonymous_identity', _('Anonymous Identity')); + o.depends({ encryption: 'wpa', '!contains': true }); + o.modalonly = true; + + o = s.taboption('wireless', form.ListValue, 'ieee80211w', _('Mgmt. Frame Protection')); + o.depends({ encryption: 'sae', '!contains': true }); + o.depends({ encryption: 'owe', '!contains': true }); + o.depends({ encryption: 'wpa', '!contains': true }); + o.depends({ encryption: 'psk', '!contains': true }); + o.value('', _('Disabled')); + o.value('1', _('Optional')); + o.value('2', _('Required')); + o.modalonly = true; + o.defaults = { + '2': [{ encryption: 'sae' }, { encryption: 'owe' }, { encryption: 'wpa3' }, { encryption: 'wpa3-mixed' }], + '1': [{ encryption: 'sae-mixed' }], + '': [] + }; + + o = s.taboption('wireless', form.Flag, 'ca_cert_usesystem', _('Use system certificates'), _("Validate server certificate using built-in system CA bundle")); o.depends({ encryption: 'wpa', '!contains': true }); + o.enabled = '1'; + o.disabled = '0'; o.modalonly = true; + o.default = o.disabled; o = s.taboption('wireless', form.Value, 'ca_cert', _('Path to CA-Certificate')); - o.depends({ eap_type: 'tls' }); + o.depends({ encryption: 'wpa', '!contains': true }); + o.depends({ ca_cert_usesystem: '0' }); o.modalonly = true; o.rmempty = true; @@ -434,7 +470,6 @@ return view.extend({ o.rmempty = true; o = s.taboption('wireless', form.Value, 'priv_key_pwd', _('Password of Private Key')); - o.datatype = 'wpakey'; o.depends({ eap_type: 'tls' }); o.modalonly = true; o.password = true; @@ -778,6 +813,14 @@ return view.extend({ encryption = 'psk-mixed+ccmp'; tbl_encryption = 'WPA/WPA2 Pers. (CCMP)'; break; + case 'WPA PSK (CCMP)': + encryption = 'psk2+ccmp'; + tbl_encryption = 'WPA Pers. (CCMP)'; + break; + case 'WPA PSK (TKIP)': + encryption = 'psk2+tkip'; + tbl_encryption = 'WPA Pers. (TKIP)'; + break; case 'WPA3 802.1X (CCMP)': encryption = 'wpa3'; tbl_encryption = 'WPA3 Ent. (CCMP)'; @@ -786,13 +829,9 @@ return view.extend({ encryption = 'wpa3-mixed'; tbl_encryption = 'WPA2/WPA3 Ent. (CCMP)'; break; - case 'WPA PSK (CCMP)': - encryption = 'psk2+ccmp'; - tbl_encryption = 'WPA Pers. (CCMP)'; - break; - case 'WPA PSK (TKIP)': - encryption = 'psk2+tkip'; - tbl_encryption = 'WPA Pers. (TKIP)'; + case 'WPA2 802.1X': + encryption = 'wpa2'; + tbl_encryption = 'WPA2 Ent.'; break; case 'WPA2 802.1X (CCMP)': encryption = 'wpa2+ccmp'; @@ -898,6 +937,7 @@ return view.extend({ o2.value('psk-mixed+tkip', _('WPA/WPA2 Pers. (TKIP)')); o2.value('wpa3', _('WPA3 Ent.')); o2.value('wpa3-mixed', _('WPA2/WPA3 Ent.')); + o2.value('wpa2', _('WPA2 Ent.')); o2.value('wpa2+ccmp', _('WPA2 Ent. (CCMP)')); o2.value('wpa2+tkip', _('WPA2 Ent. (TKIP)')); o2.value('wpa+ccmp', _('WPA Ent. (CCMP)')); @@ -911,6 +951,10 @@ return view.extend({ o2 = s2.option(form.Value, 'key', _('Password')); o2.depends({ encryption: 'sae', '!contains': true }); o2.depends({ encryption: 'psk', '!contains': true }); + o2.datatype = 'wpakey'; + o2.password = true; + + o2 = s2.option(form.Value, 'password', _('Password')); o2.depends({ encryption: 'wpa', '!contains': true }); o2.datatype = 'wpakey'; o2.password = true; @@ -937,11 +981,36 @@ return view.extend({ o2.value('auth=MSCHAPV2', _('auth=MSCHAPV2')); o2.default = 'EAP-MSCHAPV2'; - o2 = s2.option(form.Value, 'identify', _('Identify')); + o2 = s2.option(form.Value, 'identity', _('Identity')); + o2.depends({ encryption: 'wpa', '!contains': true }); + + o2 = s2.option(form.Value, 'anonymous_identity', _('Anonymous Identity')); o2.depends({ encryption: 'wpa', '!contains': true }); + o2.rmempty = true; + + o2 = s2.option(form.ListValue, 'ieee80211w', _('Mgmt. Frame Protection')); + o2.depends({ encryption: 'sae', '!contains': true }); + o2.depends({ encryption: 'owe', '!contains': true }); + o2.depends({ encryption: 'wpa', '!contains': true }); + o2.depends({ encryption: 'psk', '!contains': true }); + o2.value('', _('Disabled')); + o2.value('1', _('Optional')); + o2.value('2', _('Required')); + o2.defaults = { + '2': [{ encryption: 'sae' }, { encryption: 'owe' }, { encryption: 'wpa3' }, { encryption: 'wpa3-mixed' }], + '1': [{ encryption: 'sae-mixed' }], + '': [] + }; + + o2 = s2.option(form.Flag, 'ca_cert_usesystem', _('Use system certificates'), _("Validate server certificate using built-in system CA bundle")); + o2.depends({ encryption: 'wpa', '!contains': true }); + o2.enabled = '1'; + o2.disabled = '0'; + o2.default = o.disabled; o2 = s2.option(form.Value, 'ca_cert', _('Path to CA-Certificate')); - o2.depends({ eap_type: 'tls' }); + o2.depends({ encryption: 'wpa', '!contains': true }); + o2.depends({ ca_cert_usesystem: '0' }); o2.rmempty = true; o2 = s2.option(form.Value, 'client_cert', _('Path to Client-Certificate')); @@ -954,7 +1023,6 @@ return view.extend({ o2 = s2.option(form.Value, 'priv_key_pwd', _('Password of Private Key')); o2.depends({ eap_type: 'tls' }); - o2.datatype = 'wpakey'; o2.password = true; o2.rmempty = true; @@ -986,8 +1054,24 @@ return view.extend({ ssid = L.toArray(map.lookupOption('ssid', '_add_trm'))[0].formvalue('_add_trm'), ignore_bssid = L.toArray(map.lookupOption('ignore_bssid', '_add_trm'))[0].formvalue('_add_trm'), bssid = L.toArray(map.lookupOption('bssid', '_add_trm'))[0].formvalue('_add_trm'), - encryption = L.toArray(map.lookupOption('encryption', '_add_trm'))[0].formvalue('_add_trm'), - password = L.toArray(map.lookupOption('key', '_add_trm'))[0].formvalue('_add_trm'); + encryption = L.toArray(map.lookupOption('encryption', '_add_trm'))[0].formvalue('_add_trm'); + if (encryption.includes('wpa')) { + var eap_type = L.toArray(map.lookupOption('eap_type', '_add_trm'))[0].formvalue('_add_trm'), + auth = L.toArray(map.lookupOption('auth', '_add_trm'))[0].formvalue('_add_trm'), + identity = L.toArray(map.lookupOption('identity', '_add_trm'))[0].formvalue('_add_trm'), + anonymous_identity = L.toArray(map.lookupOption('anonymous_identity', '_add_trm'))[0].formvalue('_add_trm'), + password = L.toArray(map.lookupOption('password', '_add_trm'))[0].formvalue('_add_trm'), + ca_cert_usesystem = L.toArray(map.lookupOption('ca_cert_usesystem', '_add_trm'))[0].formvalue('_add_trm'), + ca_cert = L.toArray(map.lookupOption('ca_cert', '_add_trm'))[0].formvalue('_add_trm'), + ieee80211w = L.toArray(map.lookupOption('ieee80211w', '_add_trm'))[0].formvalue('_add_trm'); + if (eap_type.includes('tls')) { + var client_cert = L.toArray(map.lookupOption('client_cert', '_add_trm'))[0].formvalue('_add_trm'), + priv_key = L.toArray(map.lookupOption('priv_key', '_add_trm'))[0].formvalue('_add_trm'), + priv_key_pwd = L.toArray(map.lookupOption('priv_key_pwd', '_add_trm'))[0].formvalue('_add_trm'); + } + } else { + var password = L.toArray(map.lookupOption('key', '_add_trm'))[0].formvalue('_add_trm'); + } if (!ssid || ((encryption.includes('psk') || encryption.includes('wpa') || encryption.includes('sae')) && !password)) { if (!ssid) { ui.addNotification(null, E('p', 'Empty SSID, the uplink station could not be saved.'), 'error'); @@ -1020,7 +1104,23 @@ return view.extend({ uci.set('wireless', new_sid, 'bssid', bssid); } uci.set('wireless', new_sid, 'encryption', encryption); - uci.set('wireless', new_sid, 'key', password); + if (encryption.includes('wpa')) { + uci.set('wireless', new_sid, 'eap_type', eap_type); + uci.set('wireless', new_sid, 'auth', auth); + uci.set('wireless', new_sid, 'identity', identity); + uci.set('wireless', new_sid, 'anonymous_identity', anonymous_identity); + uci.set('wireless', new_sid, 'password', password); + uci.set('wireless', new_sid, 'ca_cert_usesystem', ca_cert_usesystem); + uci.set('wireless', new_sid, 'ca_cert', ca_cert); + uci.set('wireless', new_sid, 'ieee80211w', ieee80211w); + if (eap_type.includes('tls')) { + uci.set('wireless', new_sid, 'client_cert', client_cert); + uci.set('wireless', new_sid, 'priv_key', priv_key); + uci.set('wireless', new_sid, 'priv_key_pwd', priv_key_pwd); + } + } else { + uci.set('wireless', new_sid, 'key', password); + } uci.set('wireless', new_sid, 'disabled', '1'); handleSectionsAdd(network); uci.save() diff --git a/applications/luci-app-travelmate/po/ar/travelmate.po b/applications/luci-app-travelmate/po/ar/travelmate.po index ea711945b1..2112ba8bd7 100644 --- a/applications/luci-app-travelmate/po/ar/travelmate.po +++ b/applications/luci-app-travelmate/po/ar/travelmate.po @@ -19,11 +19,11 @@ msgstr "" msgid "AP QR-Codes..." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:962 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1030 msgid "Add Uplink %q" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:819 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:858 msgid "Add Uplink..." msgstr "" @@ -36,16 +36,21 @@ msgid "" "Additional trigger delay in seconds before travelmate processing begins." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:402 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:926 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:430 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:987 +msgid "Anonymous Identity" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:411 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:970 msgid "Authentication" msgstr "المصادقة" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:495 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:530 msgid "Auto Added Open Uplink" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:574 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:609 msgid "Auto Login Script" msgstr "" @@ -53,7 +58,7 @@ msgstr "" msgid "AutoAdd Open Uplinks" 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:592 msgid "" "Automatically (re-)enable the uplink after n minutes, e.g. after " "failed login attempts.
The default of '0' disables this feature." @@ -65,13 +70,13 @@ msgid "" "config." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:539 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:574 msgid "" "Automatically disable the uplink after n minutes, e.g. for timed " "connections.
The default of '0' disables this feature." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:634 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:669 msgid "" "Automatically handle VPN connections.
Please note: This feature " "requires the additional configuration of Wireguard or OpenVPNgreen." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:403 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:928 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:412 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:972 msgid "PAP" msgstr "" -#: 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:922 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:406 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:966 msgid "PEAP" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:385 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:911 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:389 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:396 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:951 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:957 msgid "Password" msgstr "كلمة المرور" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:436 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:955 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:472 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1024 msgid "Password of Private Key" msgstr "كلمة مرور المفتاح الخاص" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:421 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:943 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:456 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1011 msgid "Path to CA-Certificate" msgstr "المسار إلى CA-Certificate" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:426 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:947 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:462 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1016 msgid "Path to Client-Certificate" msgstr "مسار شهادة العميل" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:431 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:951 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:467 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1020 msgid "Path to Private Key" msgstr "المسار إلى المفتاح الخاص" @@ -467,10 +489,15 @@ msgid "" "WLAN credentials to your mobile devices." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:732 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:767 msgid "Repeat Scan" msgstr "" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:441 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:998 +msgid "Required" +msgstr "" + #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:277 msgid "Restart Interface" msgstr "" @@ -489,18 +516,18 @@ msgid "Run Flags" msgstr "تشغيل الإشارات" #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:290 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:451 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:713 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:868 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:486 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:748 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:907 msgid "SSID" msgstr "SSID" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:864 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:903 msgid "SSID (hidden)" msgstr "" #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:64 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:973 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1041 msgid "Save" msgstr "إحفض" @@ -508,11 +535,11 @@ msgstr "إحفض" msgid "Scan Limit" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:697 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:732 msgid "Scan on" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:613 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:648 msgid "Script Arguments" msgstr "" @@ -536,13 +563,13 @@ msgstr "إعدادات" msgid "Signal Quality Threshold" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:614 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:649 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:719 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:754 msgid "Starting wireless scan on '" msgstr "" @@ -562,17 +589,17 @@ msgstr "" msgid "Status / Version" msgstr "الحالة / الإصدار" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:711 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:746 msgid "Strength" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:394 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:920 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:404 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:964 msgid "TLS" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:395 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:921 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:405 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:965 msgid "TTLS" msgstr "" @@ -588,7 +615,7 @@ msgstr "" msgid "The interface metric" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:666 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:701 msgid "The logical vpn network interface, e.g. 'wg0' or 'tun0'." msgstr "" @@ -619,7 +646,7 @@ msgstr "" msgid "The uplink interface name" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:496 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:531 msgid "" "This option is selected by default if this uplink was added automatically " "and counts as 'Open Uplink'." @@ -652,7 +679,12 @@ msgstr "" msgid "Trigger Delay" msgstr "تأخير الزناد" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:513 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:449 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1005 +msgid "Use system certificates" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:548 msgid "Use the specified MAC address for this uplink." msgstr "" @@ -660,15 +692,15 @@ msgstr "" msgid "User Agent" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:634 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:669 msgid "VPN Hook" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:666 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:701 msgid "VPN Interface" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:651 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:686 msgid "VPN Service" msgstr "" @@ -676,17 +708,22 @@ msgstr "" msgid "VPN Settings" msgstr "" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:449 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1005 +msgid "Validate server certificate using built-in system CA bundle" +msgstr "" + #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:305 msgid "Verbose Debug Logging" msgstr "تسجيل مطول للتصحيح" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:313 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:903 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:314 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:943 msgid "WPA Ent. (CCMP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:314 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:904 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:315 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:944 msgid "WPA Ent. (TKIP)" msgstr "" @@ -695,66 +732,71 @@ msgid "WPA Flags" msgstr "" #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:304 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:894 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:933 msgid "WPA Pers." msgstr "" #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:305 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:895 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:934 msgid "WPA Pers. (CCMP)" msgstr "" #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:306 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:896 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:935 msgid "WPA Pers. (TKIP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:315 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:905 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:316 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:945 msgid "WPA/WPA2 Ent. (CCMP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:316 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:906 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:317 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:946 msgid "WPA/WPA2 Ent. (TKIP)" msgstr "" #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:307 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:897 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:936 msgid "WPA/WPA2 Pers. (CCMP)" msgstr "" #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:308 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:898 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:937 msgid "WPA/WPA2 Pers. (TKIP)" msgstr "" #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:311 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:901 -msgid "WPA2 Ent. (CCMP)" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:940 +msgid "WPA2 Ent." msgstr "" #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:312 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:902 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:941 +msgid "WPA2 Ent. (CCMP)" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:313 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:942 msgid "WPA2 Ent. (TKIP)" msgstr "" #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:301 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:891 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:930 msgid "WPA2 Pers." msgstr "" #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:302 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:892 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:931 msgid "WPA2 Pers. (CCMP)" msgstr "" #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:303 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:893 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:932 msgid "WPA2 Pers. (TKIP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:900 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:939 msgid "WPA2/WPA3 Ent." msgstr "" @@ -763,11 +805,11 @@ msgid "WPA2/WPA3 Ent. (CCMP)" msgstr "" #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:300 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:890 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:929 msgid "WPA2/WPA3 Pers. (CCMP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:899 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:938 msgid "WPA3 Ent." msgstr "" @@ -775,16 +817,16 @@ msgstr "" msgid "WPA3 Ent. (CCMP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:907 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:947 msgid "WPA3 OWE (CCMP)" msgstr "" #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:299 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:889 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:928 msgid "WPA3 Pers. (SAE)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:721 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:756 msgid "Wireless Scan" msgstr "" @@ -796,18 +838,18 @@ msgstr "" msgid "Wireless Stations" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:412 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:937 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:421 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:981 msgid "auth=MSCHAPV2" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:411 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:936 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:420 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:980 msgid "auth=PAP" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:318 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:908 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:319 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:948 msgid "none" msgstr "لا شيء" diff --git a/applications/luci-app-travelmate/po/bg/travelmate.po b/applications/luci-app-travelmate/po/bg/travelmate.po index 783095bfa2..1083e68f24 100644 --- a/applications/luci-app-travelmate/po/bg/travelmate.po +++ b/applications/luci-app-travelmate/po/bg/travelmate.po @@ -18,11 +18,11 @@ msgstr "" msgid "AP QR-Codes..." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:962 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1030 msgid "Add Uplink %q" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:819 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:858 msgid "Add Uplink..." msgstr "" @@ -35,16 +35,21 @@ msgid "" "Additional trigger delay in seconds before travelmate processing begins." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:402 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:926 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:430 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:987 +msgid "Anonymous Identity" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:411 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:970 msgid "Authentication" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:495 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:530 msgid "Auto Added Open Uplink" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:574 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:609 msgid "Auto Login Script" msgstr "" @@ -52,7 +57,7 @@ msgstr "" msgid "AutoAdd Open Uplinks" 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:592 msgid "" "Automatically (re-)enable the uplink after n minutes, e.g. after " "failed login attempts.
The default of '0' disables this feature." @@ -64,13 +69,13 @@ msgid "" "config." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:539 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:574 msgid "" "Automatically disable the uplink after n minutes, e.g. for timed " "connections.
The default of '0' disables this feature." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:634 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:669 msgid "" "Automatically handle VPN connections.
Please note: This feature " "requires the additional configuration of Wireguard or OpenVPNgreen." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:403 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:928 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:412 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:972 msgid "PAP" msgstr "" -#: 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:922 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:406 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:966 msgid "PEAP" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:385 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:911 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:389 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:396 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:951 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:957 msgid "Password" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:436 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:955 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:472 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1024 msgid "Password of Private Key" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:421 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:943 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:456 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1011 msgid "Path to CA-Certificate" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:426 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:947 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:462 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1016 msgid "Path to Client-Certificate" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:431 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:951 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:467 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1020 msgid "Path to Private Key" msgstr "" @@ -466,10 +488,15 @@ msgid "" "WLAN credentials to your mobile devices." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:732 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:767 msgid "Repeat Scan" msgstr "" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:441 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:998 +msgid "Required" +msgstr "" + #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:277 msgid "Restart Interface" msgstr "" @@ -488,18 +515,18 @@ msgid "Run Flags" msgstr "" #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:290 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:451 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:713 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:868 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:486 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:748 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:907 msgid "SSID" msgstr "SSID" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:864 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:903 msgid "SSID (hidden)" msgstr "" #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:64 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:973 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1041 msgid "Save" msgstr "Запази" @@ -507,11 +534,11 @@ msgstr "Запази" msgid "Scan Limit" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:697 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:732 msgid "Scan on" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:613 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:648 msgid "Script Arguments" msgstr "" @@ -535,13 +562,13 @@ msgstr "" msgid "Signal Quality Threshold" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:614 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:649 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:719 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:754 msgid "Starting wireless scan on '" msgstr "" @@ -561,17 +588,17 @@ msgstr "" msgid "Status / Version" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:711 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:746 msgid "Strength" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:394 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:920 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:404 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:964 msgid "TLS" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:395 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:921 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:405 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:965 msgid "TTLS" msgstr "" @@ -587,7 +614,7 @@ msgstr "" msgid "The interface metric" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:666 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:701 msgid "The logical vpn network interface, e.g. 'wg0' or 'tun0'." msgstr "" @@ -618,7 +645,7 @@ msgstr "" msgid "The uplink interface name" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:496 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:531 msgid "" "This option is selected by default if this uplink was added automatically " "and counts as 'Open Uplink'." @@ -651,7 +678,12 @@ msgstr "" msgid "Trigger Delay" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:513 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:449 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1005 +msgid "Use system certificates" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:548 msgid "Use the specified MAC address for this uplink." msgstr "" @@ -659,15 +691,15 @@ msgstr "" msgid "User Agent" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:634 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:669 msgid "VPN Hook" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:666 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:701 msgid "VPN Interface" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:651 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:686 msgid "VPN Service" msgstr "" @@ -675,17 +707,22 @@ msgstr "" msgid "VPN Settings" msgstr "" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:449 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1005 +msgid "Validate server certificate using built-in system CA bundle" +msgstr "" + #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:305 msgid "Verbose Debug Logging" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:313 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:903 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:314 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:943 msgid "WPA Ent. (CCMP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:314 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:904 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:315 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:944 msgid "WPA Ent. (TKIP)" msgstr "" @@ -694,66 +731,71 @@ msgid "WPA Flags" msgstr "" #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:304 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:894 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:933 msgid "WPA Pers." msgstr "" #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:305 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:895 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:934 msgid "WPA Pers. (CCMP)" msgstr "" #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:306 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:896 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:935 msgid "WPA Pers. (TKIP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:315 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:905 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:316 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:945 msgid "WPA/WPA2 Ent. (CCMP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:316 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:906 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:317 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:946 msgid "WPA/WPA2 Ent. (TKIP)" msgstr "" #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:307 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:897 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:936 msgid "WPA/WPA2 Pers. (CCMP)" msgstr "" #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:308 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:898 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:937 msgid "WPA/WPA2 Pers. (TKIP)" msgstr "" #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:311 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:901 -msgid "WPA2 Ent. (CCMP)" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:940 +msgid "WPA2 Ent." msgstr "" #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:312 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:902 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:941 +msgid "WPA2 Ent. (CCMP)" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:313 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:942 msgid "WPA2 Ent. (TKIP)" msgstr "" #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:301 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:891 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:930 msgid "WPA2 Pers." msgstr "" #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:302 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:892 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:931 msgid "WPA2 Pers. (CCMP)" msgstr "" #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:303 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:893 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:932 msgid "WPA2 Pers. (TKIP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:900 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:939 msgid "WPA2/WPA3 Ent." msgstr "" @@ -762,11 +804,11 @@ msgid "WPA2/WPA3 Ent. (CCMP)" msgstr "" #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:300 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:890 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:929 msgid "WPA2/WPA3 Pers. (CCMP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:899 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:938 msgid "WPA3 Ent." msgstr "" @@ -774,16 +816,16 @@ msgstr "" msgid "WPA3 Ent. (CCMP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:907 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:947 msgid "WPA3 OWE (CCMP)" msgstr "" #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:299 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:889 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:928 msgid "WPA3 Pers. (SAE)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:721 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:756 msgid "Wireless Scan" msgstr "" @@ -795,18 +837,18 @@ msgstr "" msgid "Wireless Stations" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:412 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:937 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:421 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:981 msgid "auth=MSCHAPV2" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:411 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:936 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:420 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:980 msgid "auth=PAP" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:318 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:908 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:319 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:948 msgid "none" msgstr "" diff --git a/applications/luci-app-travelmate/po/bn_BD/travelmate.po b/applications/luci-app-travelmate/po/bn_BD/travelmate.po index 35706af347..dcd2acccdd 100644 --- a/applications/luci-app-travelmate/po/bn_BD/travelmate.po +++ b/applications/luci-app-travelmate/po/bn_BD/travelmate.po @@ -12,11 +12,11 @@ msgstr "" msgid "AP QR-Codes..." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:962 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1030 msgid "Add Uplink %q" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:819 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:858 msgid "Add Uplink..." msgstr "" @@ -29,16 +29,21 @@ msgid "" "Additional trigger delay in seconds before travelmate processing begins." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:402 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:926 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:430 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:987 +msgid "Anonymous Identity" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:411 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:970 msgid "Authentication" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:495 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:530 msgid "Auto Added Open Uplink" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:574 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:609 msgid "Auto Login Script" msgstr "" @@ -46,7 +51,7 @@ msgstr "" msgid "AutoAdd Open Uplinks" 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:592 msgid "" "Automatically (re-)enable the uplink after n minutes, e.g. after " "failed login attempts.
The default of '0' disables this feature." @@ -58,13 +63,13 @@ msgid "" "config." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:539 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:574 msgid "" "Automatically disable the uplink after n minutes, e.g. for timed " "connections.
The default of '0' disables this feature." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:634 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:669 msgid "" "Automatically handle VPN connections.
Please note: This feature " "requires the additional configuration of Wireguard or OpenVPNgreen." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:403 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:928 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:412 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:972 msgid "PAP" msgstr "" -#: 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:922 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:406 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:966 msgid "PEAP" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:385 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:911 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:389 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:396 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:951 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:957 msgid "Password" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:436 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:955 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:472 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1024 msgid "Password of Private Key" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:421 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:943 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:456 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1011 msgid "Path to CA-Certificate" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:426 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:947 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:462 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1016 msgid "Path to Client-Certificate" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:431 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:951 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:467 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1020 msgid "Path to Private Key" msgstr "" @@ -460,10 +482,15 @@ msgid "" "WLAN credentials to your mobile devices." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:732 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:767 msgid "Repeat Scan" msgstr "" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:441 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:998 +msgid "Required" +msgstr "" + #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:277 msgid "Restart Interface" msgstr "" @@ -482,18 +509,18 @@ msgid "Run Flags" msgstr "" #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:290 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:451 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:713 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:868 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:486 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:748 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:907 msgid "SSID" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:864 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:903 msgid "SSID (hidden)" msgstr "" #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:64 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:973 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1041 msgid "Save" msgstr "" @@ -501,11 +528,11 @@ msgstr "" msgid "Scan Limit" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:697 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:732 msgid "Scan on" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:613 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:648 msgid "Script Arguments" msgstr "" @@ -529,13 +556,13 @@ msgstr "" msgid "Signal Quality Threshold" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:614 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:649 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:719 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:754 msgid "Starting wireless scan on '" msgstr "" @@ -555,17 +582,17 @@ msgstr "" msgid "Status / Version" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:711 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:746 msgid "Strength" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:394 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:920 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:404 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:964 msgid "TLS" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:395 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:921 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:405 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:965 msgid "TTLS" msgstr "" @@ -581,7 +608,7 @@ msgstr "" msgid "The interface metric" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:666 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:701 msgid "The logical vpn network interface, e.g. 'wg0' or 'tun0'." msgstr "" @@ -612,7 +639,7 @@ msgstr "" msgid "The uplink interface name" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:496 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:531 msgid "" "This option is selected by default if this uplink was added automatically " "and counts as 'Open Uplink'." @@ -645,7 +672,12 @@ msgstr "" msgid "Trigger Delay" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:513 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:449 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1005 +msgid "Use system certificates" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:548 msgid "Use the specified MAC address for this uplink." msgstr "" @@ -653,15 +685,15 @@ msgstr "" msgid "User Agent" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:634 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:669 msgid "VPN Hook" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:666 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:701 msgid "VPN Interface" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:651 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:686 msgid "VPN Service" msgstr "" @@ -669,17 +701,22 @@ msgstr "" msgid "VPN Settings" msgstr "" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:449 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1005 +msgid "Validate server certificate using built-in system CA bundle" +msgstr "" + #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:305 msgid "Verbose Debug Logging" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:313 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:903 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:314 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:943 msgid "WPA Ent. (CCMP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:314 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:904 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:315 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:944 msgid "WPA Ent. (TKIP)" msgstr "" @@ -688,66 +725,71 @@ msgid "WPA Flags" msgstr "" #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:304 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:894 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:933 msgid "WPA Pers." msgstr "" #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:305 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:895 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:934 msgid "WPA Pers. (CCMP)" msgstr "" #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:306 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:896 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:935 msgid "WPA Pers. (TKIP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:315 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:905 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:316 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:945 msgid "WPA/WPA2 Ent. (CCMP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:316 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:906 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:317 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:946 msgid "WPA/WPA2 Ent. (TKIP)" msgstr "" #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:307 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:897 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:936 msgid "WPA/WPA2 Pers. (CCMP)" msgstr "" #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:308 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:898 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:937 msgid "WPA/WPA2 Pers. (TKIP)" msgstr "" #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:311 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:901 -msgid "WPA2 Ent. (CCMP)" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:940 +msgid "WPA2 Ent." msgstr "" #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:312 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:902 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:941 +msgid "WPA2 Ent. (CCMP)" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:313 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:942 msgid "WPA2 Ent. (TKIP)" msgstr "" #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:301 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:891 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:930 msgid "WPA2 Pers." msgstr "" #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:302 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:892 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:931 msgid "WPA2 Pers. (CCMP)" msgstr "" #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:303 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:893 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:932 msgid "WPA2 Pers. (TKIP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:900 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:939 msgid "WPA2/WPA3 Ent." msgstr "" @@ -756,11 +798,11 @@ msgid "WPA2/WPA3 Ent. (CCMP)" msgstr "" #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:300 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:890 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:929 msgid "WPA2/WPA3 Pers. (CCMP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:899 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:938 msgid "WPA3 Ent." msgstr "" @@ -768,16 +810,16 @@ msgstr "" msgid "WPA3 Ent. (CCMP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:907 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:947 msgid "WPA3 OWE (CCMP)" msgstr "" #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:299 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:889 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:928 msgid "WPA3 Pers. (SAE)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:721 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:756 msgid "Wireless Scan" msgstr "" @@ -789,18 +831,18 @@ msgstr "" msgid "Wireless Stations" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:412 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:937 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:421 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:981 msgid "auth=MSCHAPV2" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:411 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:936 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:420 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:980 msgid "auth=PAP" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:318 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:908 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:319 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:948 msgid "none" msgstr "" diff --git a/applications/luci-app-travelmate/po/ca/travelmate.po b/applications/luci-app-travelmate/po/ca/travelmate.po index 2bd3f002fc..b521fea7d4 100644 --- a/applications/luci-app-travelmate/po/ca/travelmate.po +++ b/applications/luci-app-travelmate/po/ca/travelmate.po @@ -18,11 +18,11 @@ msgstr "" msgid "AP QR-Codes..." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:962 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1030 msgid "Add Uplink %q" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:819 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:858 msgid "Add Uplink..." msgstr "" @@ -35,16 +35,21 @@ msgid "" "Additional trigger delay in seconds before travelmate processing begins." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:402 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:926 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:430 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:987 +msgid "Anonymous Identity" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:411 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:970 msgid "Authentication" msgstr "Autenticació" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:495 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:530 msgid "Auto Added Open Uplink" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:574 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:609 msgid "Auto Login Script" msgstr "Script d’inici de sessió automàtic" @@ -52,7 +57,7 @@ msgstr "Script d’inici de sessió automàtic" msgid "AutoAdd Open Uplinks" 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:592 msgid "" "Automatically (re-)enable the uplink after n minutes, e.g. after " "failed login attempts.
The default of '0' disables this feature." @@ -64,13 +69,13 @@ msgid "" "config." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:539 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:574 msgid "" "Automatically disable the uplink after n minutes, e.g. for timed " "connections.
The default of '0' disables this feature." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:634 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:669 msgid "" "Automatically handle VPN connections.
Please note: This feature " "requires the additional configuration of Wireguard or OpenVPNgreen." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:403 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:928 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:412 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:972 msgid "PAP" msgstr "" -#: 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:922 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:406 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:966 msgid "PEAP" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:385 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:911 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:389 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:396 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:951 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:957 msgid "Password" msgstr "Contrasenya" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:436 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:955 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:472 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1024 msgid "Password of Private Key" msgstr "Contrasenya de la clau privada" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:421 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:943 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:456 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1011 msgid "Path to CA-Certificate" msgstr "Camí cap al certificat CA" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:426 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:947 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:462 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1016 msgid "Path to Client-Certificate" msgstr "Camí cap al certificat de client" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:431 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:951 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:467 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1020 msgid "Path to Private Key" msgstr "Camí cap a la clau privada" @@ -466,10 +488,15 @@ msgid "" "WLAN credentials to your mobile devices." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:732 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:767 msgid "Repeat Scan" msgstr "" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:441 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:998 +msgid "Required" +msgstr "" + #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:277 msgid "Restart Interface" msgstr "" @@ -488,18 +515,18 @@ msgid "Run Flags" msgstr "" #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:290 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:451 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:713 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:868 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:486 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:748 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:907 msgid "SSID" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:864 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:903 msgid "SSID (hidden)" msgstr "SSID (amagat)" #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:64 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:973 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1041 msgid "Save" msgstr "Desar" @@ -507,11 +534,11 @@ msgstr "Desar" msgid "Scan Limit" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:697 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:732 msgid "Scan on" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:613 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:648 msgid "Script Arguments" msgstr "" @@ -535,13 +562,13 @@ msgstr "Paràmetres" msgid "Signal Quality Threshold" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:614 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:649 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:719 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:754 msgid "Starting wireless scan on '" msgstr "" @@ -561,17 +588,17 @@ msgstr "" msgid "Status / Version" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:711 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:746 msgid "Strength" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:394 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:920 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:404 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:964 msgid "TLS" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:395 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:921 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:405 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:965 msgid "TTLS" msgstr "" @@ -587,7 +614,7 @@ msgstr "" msgid "The interface metric" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:666 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:701 msgid "The logical vpn network interface, e.g. 'wg0' or 'tun0'." msgstr "" @@ -618,7 +645,7 @@ msgstr "" msgid "The uplink interface name" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:496 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:531 msgid "" "This option is selected by default if this uplink was added automatically " "and counts as 'Open Uplink'." @@ -651,7 +678,12 @@ msgstr "" msgid "Trigger Delay" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:513 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:449 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1005 +msgid "Use system certificates" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:548 msgid "Use the specified MAC address for this uplink." msgstr "" @@ -659,15 +691,15 @@ msgstr "" msgid "User Agent" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:634 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:669 msgid "VPN Hook" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:666 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:701 msgid "VPN Interface" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:651 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:686 msgid "VPN Service" msgstr "" @@ -675,17 +707,22 @@ msgstr "" msgid "VPN Settings" msgstr "" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:449 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1005 +msgid "Validate server certificate using built-in system CA bundle" +msgstr "" + #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:305 msgid "Verbose Debug Logging" msgstr "Enregistrament detallat de depuració" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:313 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:903 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:314 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:943 msgid "WPA Ent. (CCMP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:314 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:904 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:315 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:944 msgid "WPA Ent. (TKIP)" msgstr "" @@ -694,66 +731,71 @@ msgid "WPA Flags" msgstr "" #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:304 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:894 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:933 msgid "WPA Pers." msgstr "" #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:305 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:895 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:934 msgid "WPA Pers. (CCMP)" msgstr "" #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:306 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:896 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:935 msgid "WPA Pers. (TKIP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:315 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:905 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:316 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:945 msgid "WPA/WPA2 Ent. (CCMP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:316 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:906 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:317 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:946 msgid "WPA/WPA2 Ent. (TKIP)" msgstr "" #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:307 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:897 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:936 msgid "WPA/WPA2 Pers. (CCMP)" msgstr "" #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:308 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:898 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:937 msgid "WPA/WPA2 Pers. (TKIP)" msgstr "" #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:311 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:901 -msgid "WPA2 Ent. (CCMP)" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:940 +msgid "WPA2 Ent." msgstr "" #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:312 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:902 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:941 +msgid "WPA2 Ent. (CCMP)" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:313 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:942 msgid "WPA2 Ent. (TKIP)" msgstr "" #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:301 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:891 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:930 msgid "WPA2 Pers." msgstr "" #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:302 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:892 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:931 msgid "WPA2 Pers. (CCMP)" msgstr "" #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:303 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:893 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:932 msgid "WPA2 Pers. (TKIP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:900 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:939 msgid "WPA2/WPA3 Ent." msgstr "" @@ -762,11 +804,11 @@ msgid "WPA2/WPA3 Ent. (CCMP)" msgstr "" #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:300 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:890 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:929 msgid "WPA2/WPA3 Pers. (CCMP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:899 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:938 msgid "WPA3 Ent." msgstr "" @@ -774,16 +816,16 @@ msgstr "" msgid "WPA3 Ent. (CCMP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:907 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:947 msgid "WPA3 OWE (CCMP)" msgstr "" #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:299 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:889 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:928 msgid "WPA3 Pers. (SAE)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:721 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:756 msgid "Wireless Scan" msgstr "" @@ -795,18 +837,18 @@ msgstr "" msgid "Wireless Stations" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:412 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:937 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:421 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:981 msgid "auth=MSCHAPV2" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:411 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:936 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:420 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:980 msgid "auth=PAP" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:318 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:908 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:319 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:948 msgid "none" msgstr "" @@ -860,9 +902,6 @@ msgstr "" #~ "Consulteu la documentació en línia " #~ "per a més informació" -#~ msgid "Identity" -#~ msgstr "Identitat" - #~ msgid "Input file not found, please check your configuration." #~ msgstr "No s’ha trobat el fitxer d’entrada; reviseu la vostra configuració." diff --git a/applications/luci-app-travelmate/po/cs/travelmate.po b/applications/luci-app-travelmate/po/cs/travelmate.po index c99523d49f..3f27db0470 100644 --- a/applications/luci-app-travelmate/po/cs/travelmate.po +++ b/applications/luci-app-travelmate/po/cs/travelmate.po @@ -18,11 +18,11 @@ msgstr "-- výběr přístupového bodu --" msgid "AP QR-Codes..." msgstr "QR kódy AP" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:962 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1030 msgid "Add Uplink %q" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:819 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:858 msgid "Add Uplink..." msgstr "" @@ -35,16 +35,21 @@ msgid "" "Additional trigger delay in seconds before travelmate processing begins." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:402 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:926 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:430 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:987 +msgid "Anonymous Identity" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:411 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:970 msgid "Authentication" msgstr "Ověřování se" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:495 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:530 msgid "Auto Added Open Uplink" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:574 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:609 msgid "Auto Login Script" msgstr "" @@ -52,7 +57,7 @@ msgstr "" msgid "AutoAdd Open Uplinks" 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:592 msgid "" "Automatically (re-)enable the uplink after n minutes, e.g. after " "failed login attempts.
The default of '0' disables this feature." @@ -64,13 +69,13 @@ msgid "" "config." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:539 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:574 msgid "" "Automatically disable the uplink after n minutes, e.g. for timed " "connections.
The default of '0' disables this feature." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:634 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:669 msgid "" "Automatically handle VPN connections.
Please note: This feature " "requires the additional configuration of Wireguard or OpenVPNgreen." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:403 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:928 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:412 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:972 msgid "PAP" msgstr "" -#: 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:922 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:406 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:966 msgid "PEAP" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:385 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:911 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:389 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:396 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:951 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:957 msgid "Password" msgstr "Heslo" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:436 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:955 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:472 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1024 msgid "Password of Private Key" msgstr "Heslo privátního klíče" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:421 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:943 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:456 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1011 msgid "Path to CA-Certificate" msgstr "Cesta k certifikátu CA" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:426 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:947 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:462 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1016 msgid "Path to Client-Certificate" msgstr "Cesta k certifikátu klienta" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:431 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:951 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:467 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1020 msgid "Path to Private Key" msgstr "Cesta k privátnímu klíči" @@ -466,10 +488,15 @@ msgid "" "WLAN credentials to your mobile devices." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:732 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:767 msgid "Repeat Scan" msgstr "" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:441 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:998 +msgid "Required" +msgstr "" + #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:277 msgid "Restart Interface" msgstr "" @@ -488,18 +515,18 @@ msgid "Run Flags" msgstr "" #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:290 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:451 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:713 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:868 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:486 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:748 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:907 msgid "SSID" msgstr "SSID" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:864 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:903 msgid "SSID (hidden)" msgstr "" #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:64 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:973 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1041 msgid "Save" msgstr "Uložit" @@ -507,11 +534,11 @@ msgstr "Uložit" msgid "Scan Limit" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:697 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:732 msgid "Scan on" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:613 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:648 msgid "Script Arguments" msgstr "" @@ -535,13 +562,13 @@ msgstr "" msgid "Signal Quality Threshold" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:614 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:649 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:719 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:754 msgid "Starting wireless scan on '" msgstr "" @@ -561,17 +588,17 @@ msgstr "" msgid "Status / Version" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:711 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:746 msgid "Strength" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:394 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:920 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:404 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:964 msgid "TLS" msgstr "TLS" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:395 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:921 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:405 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:965 msgid "TTLS" msgstr "" @@ -587,7 +614,7 @@ msgstr "" msgid "The interface metric" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:666 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:701 msgid "The logical vpn network interface, e.g. 'wg0' or 'tun0'." msgstr "" @@ -618,7 +645,7 @@ msgstr "" msgid "The uplink interface name" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:496 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:531 msgid "" "This option is selected by default if this uplink was added automatically " "and counts as 'Open Uplink'." @@ -651,7 +678,12 @@ msgstr "" msgid "Trigger Delay" msgstr "Prodleva spuštění" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:513 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:449 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1005 +msgid "Use system certificates" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:548 msgid "Use the specified MAC address for this uplink." msgstr "" @@ -659,15 +691,15 @@ msgstr "" msgid "User Agent" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:634 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:669 msgid "VPN Hook" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:666 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:701 msgid "VPN Interface" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:651 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:686 msgid "VPN Service" msgstr "" @@ -675,17 +707,22 @@ msgstr "" msgid "VPN Settings" msgstr "" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:449 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1005 +msgid "Validate server certificate using built-in system CA bundle" +msgstr "" + #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:305 msgid "Verbose Debug Logging" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:313 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:903 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:314 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:943 msgid "WPA Ent. (CCMP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:314 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:904 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:315 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:944 msgid "WPA Ent. (TKIP)" msgstr "" @@ -694,66 +731,71 @@ msgid "WPA Flags" msgstr "" #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:304 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:894 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:933 msgid "WPA Pers." msgstr "" #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:305 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:895 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:934 msgid "WPA Pers. (CCMP)" msgstr "" #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:306 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:896 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:935 msgid "WPA Pers. (TKIP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:315 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:905 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:316 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:945 msgid "WPA/WPA2 Ent. (CCMP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:316 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:906 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:317 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:946 msgid "WPA/WPA2 Ent. (TKIP)" msgstr "" #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:307 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:897 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:936 msgid "WPA/WPA2 Pers. (CCMP)" msgstr "" #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:308 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:898 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:937 msgid "WPA/WPA2 Pers. (TKIP)" msgstr "" #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:311 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:901 -msgid "WPA2 Ent. (CCMP)" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:940 +msgid "WPA2 Ent." msgstr "" #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:312 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:902 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:941 +msgid "WPA2 Ent. (CCMP)" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:313 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:942 msgid "WPA2 Ent. (TKIP)" msgstr "" #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:301 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:891 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:930 msgid "WPA2 Pers." msgstr "" #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:302 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:892 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:931 msgid "WPA2 Pers. (CCMP)" msgstr "" #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:303 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:893 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:932 msgid "WPA2 Pers. (TKIP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:900 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:939 msgid "WPA2/WPA3 Ent." msgstr "" @@ -762,11 +804,11 @@ msgid "WPA2/WPA3 Ent. (CCMP)" msgstr "" #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:300 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:890 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:929 msgid "WPA2/WPA3 Pers. (CCMP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:899 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:938 msgid "WPA3 Ent." msgstr "" @@ -774,16 +816,16 @@ msgstr "" msgid "WPA3 Ent. (CCMP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:907 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:947 msgid "WPA3 OWE (CCMP)" msgstr "" #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:299 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:889 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:928 msgid "WPA3 Pers. (SAE)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:721 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:756 msgid "Wireless Scan" msgstr "" @@ -795,18 +837,18 @@ msgstr "" msgid "Wireless Stations" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:412 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:937 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:421 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:981 msgid "auth=MSCHAPV2" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:411 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:936 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:420 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:980 msgid "auth=PAP" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:318 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:908 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:319 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:948 msgid "none" msgstr "" @@ -853,9 +895,6 @@ msgstr "" #~ msgid "Force TKIP and CCMP (AES)" #~ msgstr "Vynutit TKIP a CCMP (AES)" -#~ msgid "Identity" -#~ msgstr "Identita" - #~ msgid "Input file not found, please check your configuration." #~ msgstr "Vstupní soubor nebyl nalezen, zkontrolujte prosím svou konfiguraci." diff --git a/applications/luci-app-travelmate/po/de/travelmate.po b/applications/luci-app-travelmate/po/de/travelmate.po index 772e2d1f94..c319d37e6d 100644 --- a/applications/luci-app-travelmate/po/de/travelmate.po +++ b/applications/luci-app-travelmate/po/de/travelmate.po @@ -18,11 +18,11 @@ msgstr "-- AP-Auswahl --" msgid "AP QR-Codes..." msgstr "AP QR-Codes..." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:962 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1030 msgid "Add Uplink %q" msgstr "Uplink hinzufügen %q" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:819 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:858 msgid "Add Uplink..." msgstr "Uplink hinzufügen..." @@ -35,16 +35,21 @@ 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:402 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:926 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:430 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:987 +msgid "Anonymous Identity" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:411 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:970 msgid "Authentication" msgstr "Authentifizierung" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:495 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:530 msgid "Auto Added Open Uplink" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:574 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:609 msgid "Auto Login Script" msgstr "Auto-Login-Skript" @@ -52,7 +57,7 @@ msgstr "Auto-Login-Skript" msgid "AutoAdd Open Uplinks" msgstr "Automatisch offene Uplinks hinzufügen" -#: 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:592 msgid "" "Automatically (re-)enable the uplink after n minutes, e.g. after " "failed login attempts.
The default of '0' disables this feature." @@ -69,7 +74,7 @@ msgstr "" "Füge der Netzwerk-Konfiguration automatisch offene Uplinks wie Hotel-" "HotSpots hinzu." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:539 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:574 msgid "" "Automatically disable the uplink after n minutes, e.g. for timed " "connections.
The default of '0' disables this feature." @@ -78,7 +83,7 @@ msgstr "" "zeitgesteuerte Verbindungen.
Die Standardeinstellung '0' deaktiviert " "diese Funktion." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:634 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:669 msgid "" "Automatically handle VPN connections.
Please note: This feature " "requires the additional configuration of Wireguard or OpenVPNgreen." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:403 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:928 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:412 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:972 msgid "PAP" msgstr "PAP" -#: 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:922 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:406 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:966 msgid "PEAP" msgstr "PEAP" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:385 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:911 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:389 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:396 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:951 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:957 msgid "Password" msgstr "Passwort" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:436 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:955 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:472 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1024 msgid "Password of Private Key" msgstr "Passwort des privaten Schlüssels" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:421 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:943 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:456 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1011 msgid "Path to CA-Certificate" msgstr "Pfad zum CA-Zertifikat" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:426 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:947 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:462 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1016 msgid "Path to Client-Certificate" msgstr "Pfad zum Client-Zertifikat" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:431 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:951 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:467 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1020 msgid "Path to Private Key" msgstr "Pfad zum Privaten Schlüssel" @@ -492,10 +514,15 @@ 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:732 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:767 msgid "Repeat Scan" msgstr "Scan wiederholen" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:441 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:998 +msgid "Required" +msgstr "" + #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:277 msgid "Restart Interface" msgstr "" @@ -514,18 +541,18 @@ msgid "Run Flags" msgstr "Laufzeit-Flags" #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:290 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:451 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:713 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:868 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:486 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:748 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:907 msgid "SSID" msgstr "SSID" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:864 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:903 msgid "SSID (hidden)" msgstr "SSID (versteckt)" #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:64 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:973 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1041 msgid "Save" msgstr "Speichern" @@ -533,11 +560,11 @@ msgstr "Speichern" msgid "Scan Limit" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:697 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:732 msgid "Scan on" msgstr "Weiterscannen" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:613 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:648 msgid "Script Arguments" msgstr "Skriptargumente" @@ -562,7 +589,7 @@ msgstr "Einstellungen" msgid "Signal Quality Threshold" msgstr "Signalqualitätsschwelle" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:614 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:649 msgid "" "Space separated list of additional arguments passed to the Auto Login " "Script, i.e. username and password" @@ -570,7 +597,7 @@ 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:719 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:754 msgid "Starting wireless scan on '" msgstr "Starten des drahtlosen Scans am '" @@ -590,17 +617,17 @@ msgstr "Stations-MAC" msgid "Status / Version" msgstr "Status / Version" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:711 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:746 msgid "Strength" msgstr "Stärke" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:394 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:920 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:404 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:964 msgid "TLS" msgstr "TLS" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:395 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:921 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:405 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:965 msgid "TTLS" msgstr "TTLS" @@ -616,7 +643,7 @@ msgstr "Der Name der Firewall-Zone" msgid "The interface metric" msgstr "Die Schnittstellenmetrik" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:666 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:701 msgid "The logical vpn network interface, e.g. 'wg0' or 'tun0'." msgstr "Die logische VPN-Netzwerkschnittstelle, z.B. 'wg0' oder 'tun0'." @@ -653,7 +680,7 @@ msgstr "Die Uplink-Schnittstelle wurde aktualisiert." msgid "The uplink interface name" msgstr "Der Name der Uplink-Schnittstelle" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:496 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:531 msgid "" "This option is selected by default if this uplink was added automatically " "and counts as 'Open Uplink'." @@ -690,7 +717,12 @@ msgstr "Fehlende Internetverfügbarkeit als Fehler behandeln." msgid "Trigger Delay" msgstr "Verzögerung der Trigger-Bedingung" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:513 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:449 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1005 +msgid "Use system certificates" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:548 msgid "Use the specified MAC address for this uplink." msgstr "" @@ -698,15 +730,15 @@ msgstr "" msgid "User Agent" msgstr "User-Agent" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:634 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:669 msgid "VPN Hook" msgstr "VPN-Hook" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:666 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:701 msgid "VPN Interface" msgstr "VPN-Schnittstelle" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:651 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:686 msgid "VPN Service" msgstr "VPN-Dienst" @@ -714,17 +746,22 @@ msgstr "VPN-Dienst" msgid "VPN Settings" msgstr "VPN-Einstellungen" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:449 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1005 +msgid "Validate server certificate using built-in system CA bundle" +msgstr "" + #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:305 msgid "Verbose Debug Logging" msgstr "Ausführliche Debug-Protokollierung" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:313 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:903 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:314 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:943 msgid "WPA Ent. (CCMP)" msgstr "WPA Ent. (CCMP)" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:314 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:904 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:315 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:944 msgid "WPA Ent. (TKIP)" msgstr "WPA Ent. (TKIP)" @@ -733,66 +770,71 @@ msgid "WPA Flags" msgstr "WPA-Flags" #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:304 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:894 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:933 msgid "WPA Pers." msgstr "WPA Pers." #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:305 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:895 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:934 msgid "WPA Pers. (CCMP)" msgstr "WPA Pers. (CCMP)" #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:306 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:896 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:935 msgid "WPA Pers. (TKIP)" msgstr "WPA Pers. (TKIP)" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:315 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:905 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:316 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:945 msgid "WPA/WPA2 Ent. (CCMP)" msgstr "WPA/WPA2 Ent. (CCMP)" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:316 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:906 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:317 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:946 msgid "WPA/WPA2 Ent. (TKIP)" msgstr "WPA/WPA2 Ent. (TKIP)" #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:307 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:897 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:936 msgid "WPA/WPA2 Pers. (CCMP)" msgstr "WPA/WPA2 Pers. (CCMP)" #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:308 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:898 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:937 msgid "WPA/WPA2 Pers. (TKIP)" msgstr "WPA/WPA2 Pers. (TKIP)" #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:311 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:901 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:940 +msgid "WPA2 Ent." +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:312 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:941 msgid "WPA2 Ent. (CCMP)" msgstr "WPA2 Ent. (CCMP)" -#: 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 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:313 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:942 msgid "WPA2 Ent. (TKIP)" msgstr "WPA2 Ent. (TKIP)" #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:301 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:891 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:930 msgid "WPA2 Pers." msgstr "WPA2 Pers." #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:302 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:892 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:931 msgid "WPA2 Pers. (CCMP)" msgstr "WPA2 Pers. (CCMP)" #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:303 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:893 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:932 msgid "WPA2 Pers. (TKIP)" msgstr "WPA2 Pers. (TKIP)" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:900 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:939 msgid "WPA2/WPA3 Ent." msgstr "WPA2/WPA3 Ent." @@ -801,11 +843,11 @@ msgid "WPA2/WPA3 Ent. (CCMP)" msgstr "WPA2/WPA3 Ent. (CCMP)" #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:300 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:890 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:929 msgid "WPA2/WPA3 Pers. (CCMP)" msgstr "WPA2/WPA3 Pers. (CCMP)" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:899 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:938 msgid "WPA3 Ent." msgstr "WPA3 Ent." @@ -813,16 +855,16 @@ msgstr "WPA3 Ent." msgid "WPA3 Ent. (CCMP)" msgstr "WPA3 Ent. (CCMP)" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:907 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:947 msgid "WPA3 OWE (CCMP)" msgstr "WPA3 OWE (CCMP)" #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:299 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:889 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:928 msgid "WPA3 Pers. (SAE)" msgstr "WPA3 Pers. (SAE)" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:721 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:756 msgid "Wireless Scan" msgstr "Drahtloser Scan" @@ -834,18 +876,18 @@ msgstr "Drahtlose Einstellungen" msgid "Wireless Stations" msgstr "Drahtlose Stationen" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:412 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:937 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:421 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:981 msgid "auth=MSCHAPV2" msgstr "auth=MSCHAPV2" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:411 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:936 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:420 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:980 msgid "auth=PAP" msgstr "auth=PAP" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:318 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:908 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:319 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:948 msgid "none" msgstr "kein" @@ -865,6 +907,9 @@ msgstr "" msgid "use the second radio only (radio1)" msgstr "" +#~ msgid "Identify" +#~ msgstr "Identifizieren" + #~ msgid "" #~ "Overview of all configured uplinks for travelmate.
You can edit, " #~ "remove or prioritize existing uplinks by drag & drop and scan for new " @@ -981,9 +1026,6 @@ msgstr "" #~ msgid "Grant UCI access for luci-app-travelmate" #~ msgstr "Gewähre UCI Zugriff auf luci-app-travelmate" -#~ msgid "Identity" -#~ msgstr "Identität" - #~ msgid "Input file not found, please check your configuration." #~ msgstr "" #~ "Eingabedatei nicht gefunden, bitte überprüfen Sie Ihre Konfiguration." diff --git a/applications/luci-app-travelmate/po/el/travelmate.po b/applications/luci-app-travelmate/po/el/travelmate.po index 5ba86ac75f..b5e7ad8e16 100644 --- a/applications/luci-app-travelmate/po/el/travelmate.po +++ b/applications/luci-app-travelmate/po/el/travelmate.po @@ -18,11 +18,11 @@ msgstr "" msgid "AP QR-Codes..." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:962 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1030 msgid "Add Uplink %q" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:819 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:858 msgid "Add Uplink..." msgstr "" @@ -35,16 +35,21 @@ msgid "" "Additional trigger delay in seconds before travelmate processing begins." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:402 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:926 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:430 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:987 +msgid "Anonymous Identity" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:411 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:970 msgid "Authentication" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:495 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:530 msgid "Auto Added Open Uplink" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:574 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:609 msgid "Auto Login Script" msgstr "" @@ -52,7 +57,7 @@ msgstr "" msgid "AutoAdd Open Uplinks" 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:592 msgid "" "Automatically (re-)enable the uplink after n minutes, e.g. after " "failed login attempts.
The default of '0' disables this feature." @@ -64,13 +69,13 @@ msgid "" "config." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:539 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:574 msgid "" "Automatically disable the uplink after n minutes, e.g. for timed " "connections.
The default of '0' disables this feature." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:634 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:669 msgid "" "Automatically handle VPN connections.
Please note: This feature " "requires the additional configuration of Wireguard or OpenVPNgreen." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:403 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:928 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:412 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:972 msgid "PAP" msgstr "" -#: 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:922 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:406 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:966 msgid "PEAP" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:385 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:911 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:389 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:396 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:951 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:957 msgid "Password" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:436 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:955 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:472 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1024 msgid "Password of Private Key" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:421 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:943 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:456 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1011 msgid "Path to CA-Certificate" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:426 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:947 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:462 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1016 msgid "Path to Client-Certificate" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:431 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:951 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:467 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1020 msgid "Path to Private Key" msgstr "" @@ -466,10 +488,15 @@ msgid "" "WLAN credentials to your mobile devices." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:732 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:767 msgid "Repeat Scan" msgstr "" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:441 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:998 +msgid "Required" +msgstr "" + #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:277 msgid "Restart Interface" msgstr "" @@ -488,18 +515,18 @@ msgid "Run Flags" msgstr "" #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:290 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:451 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:713 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:868 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:486 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:748 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:907 msgid "SSID" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:864 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:903 msgid "SSID (hidden)" msgstr "" #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:64 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:973 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1041 msgid "Save" msgstr "" @@ -507,11 +534,11 @@ msgstr "" msgid "Scan Limit" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:697 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:732 msgid "Scan on" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:613 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:648 msgid "Script Arguments" msgstr "" @@ -535,13 +562,13 @@ msgstr "" msgid "Signal Quality Threshold" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:614 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:649 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:719 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:754 msgid "Starting wireless scan on '" msgstr "" @@ -561,17 +588,17 @@ msgstr "" msgid "Status / Version" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:711 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:746 msgid "Strength" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:394 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:920 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:404 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:964 msgid "TLS" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:395 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:921 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:405 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:965 msgid "TTLS" msgstr "" @@ -587,7 +614,7 @@ msgstr "" msgid "The interface metric" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:666 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:701 msgid "The logical vpn network interface, e.g. 'wg0' or 'tun0'." msgstr "" @@ -618,7 +645,7 @@ msgstr "" msgid "The uplink interface name" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:496 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:531 msgid "" "This option is selected by default if this uplink was added automatically " "and counts as 'Open Uplink'." @@ -651,7 +678,12 @@ msgstr "" msgid "Trigger Delay" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:513 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:449 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1005 +msgid "Use system certificates" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:548 msgid "Use the specified MAC address for this uplink." msgstr "" @@ -659,15 +691,15 @@ msgstr "" msgid "User Agent" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:634 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:669 msgid "VPN Hook" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:666 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:701 msgid "VPN Interface" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:651 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:686 msgid "VPN Service" msgstr "" @@ -675,17 +707,22 @@ msgstr "" msgid "VPN Settings" msgstr "" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:449 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1005 +msgid "Validate server certificate using built-in system CA bundle" +msgstr "" + #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:305 msgid "Verbose Debug Logging" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:313 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:903 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:314 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:943 msgid "WPA Ent. (CCMP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:314 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:904 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:315 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:944 msgid "WPA Ent. (TKIP)" msgstr "" @@ -694,66 +731,71 @@ msgid "WPA Flags" msgstr "" #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:304 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:894 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:933 msgid "WPA Pers." msgstr "" #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:305 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:895 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:934 msgid "WPA Pers. (CCMP)" msgstr "" #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:306 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:896 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:935 msgid "WPA Pers. (TKIP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:315 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:905 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:316 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:945 msgid "WPA/WPA2 Ent. (CCMP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:316 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:906 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:317 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:946 msgid "WPA/WPA2 Ent. (TKIP)" msgstr "" #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:307 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:897 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:936 msgid "WPA/WPA2 Pers. (CCMP)" msgstr "" #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:308 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:898 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:937 msgid "WPA/WPA2 Pers. (TKIP)" msgstr "" #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:311 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:901 -msgid "WPA2 Ent. (CCMP)" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:940 +msgid "WPA2 Ent." msgstr "" #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:312 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:902 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:941 +msgid "WPA2 Ent. (CCMP)" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:313 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:942 msgid "WPA2 Ent. (TKIP)" msgstr "" #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:301 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:891 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:930 msgid "WPA2 Pers." msgstr "" #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:302 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:892 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:931 msgid "WPA2 Pers. (CCMP)" msgstr "" #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:303 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:893 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:932 msgid "WPA2 Pers. (TKIP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:900 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:939 msgid "WPA2/WPA3 Ent." msgstr "" @@ -762,11 +804,11 @@ msgid "WPA2/WPA3 Ent. (CCMP)" msgstr "" #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:300 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:890 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:929 msgid "WPA2/WPA3 Pers. (CCMP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:899 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:938 msgid "WPA3 Ent." msgstr "" @@ -774,16 +816,16 @@ msgstr "" msgid "WPA3 Ent. (CCMP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:907 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:947 msgid "WPA3 OWE (CCMP)" msgstr "" #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:299 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:889 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:928 msgid "WPA3 Pers. (SAE)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:721 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:756 msgid "Wireless Scan" msgstr "" @@ -795,18 +837,18 @@ msgstr "" msgid "Wireless Stations" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:412 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:937 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:421 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:981 msgid "auth=MSCHAPV2" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:411 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:936 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:420 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:980 msgid "auth=PAP" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:318 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:908 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:319 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:948 msgid "none" msgstr "" diff --git a/applications/luci-app-travelmate/po/en/travelmate.po b/applications/luci-app-travelmate/po/en/travelmate.po index 8ecd4081ea..d99a6e8c61 100644 --- a/applications/luci-app-travelmate/po/en/travelmate.po +++ b/applications/luci-app-travelmate/po/en/travelmate.po @@ -12,11 +12,11 @@ msgstr "" msgid "AP QR-Codes..." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:962 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1030 msgid "Add Uplink %q" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:819 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:858 msgid "Add Uplink..." msgstr "" @@ -29,16 +29,21 @@ msgid "" "Additional trigger delay in seconds before travelmate processing begins." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:402 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:926 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:430 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:987 +msgid "Anonymous Identity" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:411 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:970 msgid "Authentication" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:495 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:530 msgid "Auto Added Open Uplink" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:574 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:609 msgid "Auto Login Script" msgstr "" @@ -46,7 +51,7 @@ msgstr "" msgid "AutoAdd Open Uplinks" 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:592 msgid "" "Automatically (re-)enable the uplink after n minutes, e.g. after " "failed login attempts.
The default of '0' disables this feature." @@ -58,13 +63,13 @@ msgid "" "config." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:539 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:574 msgid "" "Automatically disable the uplink after n minutes, e.g. for timed " "connections.
The default of '0' disables this feature." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:634 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:669 msgid "" "Automatically handle VPN connections.
Please note: This feature " "requires the additional configuration of Wireguard or OpenVPNgreen." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:403 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:928 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:412 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:972 msgid "PAP" msgstr "" -#: 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:922 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:406 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:966 msgid "PEAP" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:385 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:911 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:389 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:396 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:951 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:957 msgid "Password" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:436 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:955 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:472 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1024 msgid "Password of Private Key" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:421 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:943 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:456 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1011 msgid "Path to CA-Certificate" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:426 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:947 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:462 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1016 msgid "Path to Client-Certificate" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:431 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:951 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:467 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1020 msgid "Path to Private Key" msgstr "" @@ -460,10 +482,15 @@ msgid "" "WLAN credentials to your mobile devices." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:732 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:767 msgid "Repeat Scan" msgstr "" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:441 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:998 +msgid "Required" +msgstr "" + #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:277 msgid "Restart Interface" msgstr "" @@ -482,18 +509,18 @@ msgid "Run Flags" msgstr "" #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:290 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:451 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:713 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:868 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:486 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:748 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:907 msgid "SSID" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:864 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:903 msgid "SSID (hidden)" msgstr "" #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:64 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:973 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1041 msgid "Save" msgstr "" @@ -501,11 +528,11 @@ msgstr "" msgid "Scan Limit" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:697 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:732 msgid "Scan on" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:613 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:648 msgid "Script Arguments" msgstr "" @@ -529,13 +556,13 @@ msgstr "" msgid "Signal Quality Threshold" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:614 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:649 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:719 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:754 msgid "Starting wireless scan on '" msgstr "" @@ -555,17 +582,17 @@ msgstr "" msgid "Status / Version" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:711 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:746 msgid "Strength" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:394 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:920 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:404 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:964 msgid "TLS" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:395 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:921 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:405 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:965 msgid "TTLS" msgstr "" @@ -581,7 +608,7 @@ msgstr "" msgid "The interface metric" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:666 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:701 msgid "The logical vpn network interface, e.g. 'wg0' or 'tun0'." msgstr "" @@ -612,7 +639,7 @@ msgstr "" msgid "The uplink interface name" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:496 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:531 msgid "" "This option is selected by default if this uplink was added automatically " "and counts as 'Open Uplink'." @@ -645,7 +672,12 @@ msgstr "" msgid "Trigger Delay" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:513 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:449 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1005 +msgid "Use system certificates" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:548 msgid "Use the specified MAC address for this uplink." msgstr "" @@ -653,15 +685,15 @@ msgstr "" msgid "User Agent" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:634 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:669 msgid "VPN Hook" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:666 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:701 msgid "VPN Interface" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:651 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:686 msgid "VPN Service" msgstr "" @@ -669,17 +701,22 @@ msgstr "" msgid "VPN Settings" msgstr "" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:449 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1005 +msgid "Validate server certificate using built-in system CA bundle" +msgstr "" + #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:305 msgid "Verbose Debug Logging" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:313 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:903 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:314 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:943 msgid "WPA Ent. (CCMP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:314 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:904 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:315 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:944 msgid "WPA Ent. (TKIP)" msgstr "" @@ -688,66 +725,71 @@ msgid "WPA Flags" msgstr "" #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:304 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:894 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:933 msgid "WPA Pers." msgstr "" #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:305 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:895 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:934 msgid "WPA Pers. (CCMP)" msgstr "" #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:306 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:896 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:935 msgid "WPA Pers. (TKIP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:315 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:905 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:316 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:945 msgid "WPA/WPA2 Ent. (CCMP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:316 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:906 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:317 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:946 msgid "WPA/WPA2 Ent. (TKIP)" msgstr "" #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:307 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:897 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:936 msgid "WPA/WPA2 Pers. (CCMP)" msgstr "" #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:308 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:898 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:937 msgid "WPA/WPA2 Pers. (TKIP)" msgstr "" #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:311 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:901 -msgid "WPA2 Ent. (CCMP)" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:940 +msgid "WPA2 Ent." msgstr "" #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:312 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:902 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:941 +msgid "WPA2 Ent. (CCMP)" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:313 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:942 msgid "WPA2 Ent. (TKIP)" msgstr "" #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:301 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:891 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:930 msgid "WPA2 Pers." msgstr "" #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:302 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:892 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:931 msgid "WPA2 Pers. (CCMP)" msgstr "" #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:303 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:893 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:932 msgid "WPA2 Pers. (TKIP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:900 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:939 msgid "WPA2/WPA3 Ent." msgstr "" @@ -756,11 +798,11 @@ msgid "WPA2/WPA3 Ent. (CCMP)" msgstr "" #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:300 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:890 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:929 msgid "WPA2/WPA3 Pers. (CCMP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:899 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:938 msgid "WPA3 Ent." msgstr "" @@ -768,16 +810,16 @@ msgstr "" msgid "WPA3 Ent. (CCMP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:907 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:947 msgid "WPA3 OWE (CCMP)" msgstr "" #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:299 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:889 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:928 msgid "WPA3 Pers. (SAE)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:721 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:756 msgid "Wireless Scan" msgstr "" @@ -789,18 +831,18 @@ msgstr "" msgid "Wireless Stations" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:412 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:937 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:421 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:981 msgid "auth=MSCHAPV2" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:411 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:936 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:420 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:980 msgid "auth=PAP" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:318 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:908 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:319 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:948 msgid "none" msgstr "" diff --git a/applications/luci-app-travelmate/po/es/travelmate.po b/applications/luci-app-travelmate/po/es/travelmate.po index 74d2c71bf5..62df6d6987 100644 --- a/applications/luci-app-travelmate/po/es/travelmate.po +++ b/applications/luci-app-travelmate/po/es/travelmate.po @@ -21,11 +21,11 @@ msgstr "-- Selección de AP --" msgid "AP QR-Codes..." msgstr "Códigos QR del AP..." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:962 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1030 msgid "Add Uplink %q" msgstr "Agregar enlace ascendente %q" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:819 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:858 msgid "Add Uplink..." msgstr "Agregar enlace ascendente..." @@ -40,16 +40,21 @@ 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:402 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:926 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:430 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:987 +msgid "Anonymous Identity" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:411 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:970 msgid "Authentication" msgstr "Autenticación" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:495 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:530 msgid "Auto Added Open Uplink" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:574 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:609 msgid "Auto Login Script" msgstr "Script de inicio de sesión automático" @@ -57,7 +62,7 @@ msgstr "Script de inicio de sesión automático" msgid "AutoAdd Open Uplinks" msgstr "Auto agregar enlaces ascendentes abiertos" -#: 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:592 msgid "" "Automatically (re-)enable the uplink after n minutes, e.g. after " "failed login attempts.
The default of '0' disables this feature." @@ -74,7 +79,7 @@ msgstr "" "Agregue automáticamente enlaces ascendentes abiertos como portales cautivos " "de hotel a su configuración inalámbrica." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:539 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:574 msgid "" "Automatically disable the uplink after n minutes, e.g. for timed " "connections.
The default of '0' disables this feature." @@ -83,7 +88,7 @@ msgstr "" "minutos, p.e. para conexiones temporizadas.
El valor predeterminado de " "'0' desactiva esta función." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:634 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:669 msgid "" "Automatically handle VPN connections.
Please note: This feature " "requires the additional configuration of Wireguard or OpenVPNWireguard u OpenVPN." #: 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:462 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:714 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:882 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:497 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:749 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:921 msgid "BSSID" msgstr "BSSID" -#: 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:929 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:413 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:973 msgid "CHAP" msgstr "CHAP" @@ -112,7 +117,7 @@ msgstr "Detección de portal cautivo" msgid "Captive Portal URL" msgstr "URL del portal cautivo" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:712 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:747 msgid "Channel" msgstr "Canal" @@ -141,11 +146,11 @@ msgstr "" "\"Asistente de interfaz\" para realizar los ajustes necesarios de red y " "firewall." -#: 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:519 msgid "Connection End" msgstr "Fin de conexión" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:556 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:591 msgid "Connection End Expiry" msgstr "Caducidad de fin de conexión" @@ -153,11 +158,11 @@ msgstr "Caducidad de fin de conexión" msgid "Connection Limit" msgstr "Límite de conexión" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:473 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:508 msgid "Connection Start" msgstr "Inicio de conexión" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:538 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:573 msgid "Connection Start Expiry" msgstr "Vencimiento de inicio de conexión" @@ -165,14 +170,19 @@ msgstr "Vencimiento de inicio de conexión" msgid "Device" msgstr "Dispositivo" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:855 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:894 msgid "Device Name" msgstr "Nombre del dispositivo" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:439 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:996 +msgid "Disabled" +msgstr "" + #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:46 #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:132 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:727 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:968 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:762 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1036 msgid "Dismiss" msgstr "Descartar" @@ -204,28 +214,28 @@ msgstr "Configuraciones del correo electrónico" msgid "E-Mail Topic" msgstr "Tema del correo electrónico" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:407 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:932 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:416 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:976 msgid "EAP-GTC" msgstr "EAP-GTC" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:408 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:933 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:417 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:977 msgid "EAP-MD5" msgstr "EAP-MD5" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:409 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:934 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:418 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:978 msgid "EAP-MSCHAPV2" msgstr "EAP-MSCHAPV2" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:393 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:918 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:402 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:962 msgid "EAP-Method" msgstr "Método EAP" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:410 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:935 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:419 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:979 msgid "EAP-TLS" msgstr "EAP-TLS" @@ -257,8 +267,8 @@ msgid "Enabled" msgstr "Activado" #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:298 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:715 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:888 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:750 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:927 msgid "Encryption" msgstr "Encriptación" @@ -266,7 +276,7 @@ msgstr "Encriptación" msgid "Ext. Hooks" msgstr "Manos ext." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:575 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:610 msgid "" "External script reference which will be called for automated captive portal " "logins." @@ -274,8 +284,8 @@ msgstr "" "Referencia de script externo que se llamará para inicios de sesión cautivos " "automatizados del portal." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:397 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:923 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:407 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:967 msgid "FAST" msgstr "RÁPIDO" @@ -300,12 +310,12 @@ msgstr "" "Cuánto tiempo debe esperar travelmate para una conexión de enlace wlan sea " "exitosa." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:417 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:940 -msgid "Identify" -msgstr "Identificar" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:426 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:984 +msgid "Identity" +msgstr "Identidad" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:874 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:913 msgid "Ignore BSSID" msgstr "Ignorar BSSID" @@ -313,7 +323,7 @@ msgstr "Ignorar BSSID" msgid "Information" msgstr "Información" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:859 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:898 msgid "Interface Name" msgstr "Nombre de interfaz" @@ -355,20 +365,25 @@ msgstr "" msgid "Log View" msgstr "Vista de registro" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:512 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:547 msgid "MAC Address" msgstr "Dirección MAC" -#: 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 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:414 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:974 msgid "MSCHAP" msgstr "MSCHAP" -#: 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 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:415 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:975 msgid "MSCHAPV2" msgstr "MSCHAPV2" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:434 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:991 +msgid "Mgmt. Frame Protection" +msgstr "" + #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:355 msgid "" "Minimum signal quality threshold as percent for conditional uplink (dis-) " @@ -385,7 +400,7 @@ msgstr "Comprobación de error neto" msgid "No travelmate related logs yet!" msgstr "¡Aún no hay registros relacionados con Travelmate!" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:317 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:318 msgid "OWE" msgstr "OWE" @@ -393,6 +408,11 @@ msgstr "OWE" msgid "On/Off" msgstr "Encender/Apagar" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:440 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:997 +msgid "Optional" +msgstr "" + #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:365 msgid "Overall Timeout" msgstr "Tiempo de espera total" @@ -417,43 +437,45 @@ msgstr "" "Descripción general de todos los enlaces ascendentes configurados para " "Travelmate. Puede editar, eliminar o priorizar los enlaces ascendentes " "existentes arrastrando y soltando y escaneando los nuevos.
La conexión " -"de enlace ascendente utilizada actualmente se enfatiza en azul, una conexión de enlace " -"ascendente VPN cifrada se enfatiza en verde." +"de enlace ascendente utilizada actualmente se enfatiza en azul, una conexión de " +"enlace ascendente VPN cifrada se enfatiza en verde." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:403 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:928 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:412 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:972 msgid "PAP" msgstr "PAP" -#: 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:922 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:406 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:966 msgid "PEAP" msgstr "PEAP" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:385 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:911 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:389 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:396 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:951 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:957 msgid "Password" msgstr "Contraseña" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:436 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:955 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:472 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1024 msgid "Password of Private Key" msgstr "Contraseña de clave privada" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:421 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:943 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:456 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1011 msgid "Path to CA-Certificate" msgstr "Ruta al certificado CA" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:426 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:947 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:462 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1016 msgid "Path to Client-Certificate" msgstr "Ruta al certificado del cliente" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:431 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:951 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:467 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1020 msgid "Path to Private Key" msgstr "Ruta a la clave privada" @@ -521,10 +543,15 @@ 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:732 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:767 msgid "Repeat Scan" msgstr "Repetir escaneo" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:441 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:998 +msgid "Required" +msgstr "" + #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:277 msgid "Restart Interface" msgstr "Reiniciar interfaz" @@ -544,18 +571,18 @@ msgid "Run Flags" msgstr "Ejecutar banderas" #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:290 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:451 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:713 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:868 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:486 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:748 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:907 msgid "SSID" msgstr "SSID" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:864 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:903 msgid "SSID (hidden)" msgstr "SSID (oculto)" #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:64 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:973 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1041 msgid "Save" msgstr "Guardar" @@ -563,11 +590,11 @@ msgstr "Guardar" msgid "Scan Limit" msgstr "Límite de escaneo" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:697 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:732 msgid "Scan on" msgstr "Escanear en" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:613 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:648 msgid "Script Arguments" msgstr "Argumentos de script" @@ -595,7 +622,7 @@ msgstr "Configuraciones" msgid "Signal Quality Threshold" msgstr "Umbral de calidad de señal" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:614 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:649 msgid "" "Space separated list of additional arguments passed to the Auto Login " "Script, i.e. username and password" @@ -604,7 +631,7 @@ 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:719 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:754 msgid "Starting wireless scan on '" msgstr "Iniciando escaneo inalámbrico en '" @@ -624,17 +651,17 @@ msgstr "MAC de la estación" msgid "Status / Version" msgstr "Estado/Versión" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:711 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:746 msgid "Strength" msgstr "Intensidad" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:394 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:920 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:404 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:964 msgid "TLS" msgstr "TLS" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:395 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:921 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:405 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:965 msgid "TTLS" msgstr "TTLS" @@ -650,7 +677,7 @@ msgstr "El nombre de la zona de firewall" msgid "The interface metric" msgstr "La métrica de la interfaz" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:666 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:701 msgid "The logical vpn network interface, e.g. 'wg0' or 'tun0'." msgstr "La interfaz de red lógica vpn, p.ej. 'wg0' o 'tun0'." @@ -688,7 +715,7 @@ msgstr "La interfaz de enlace ascendente se ha actualizado." msgid "The uplink interface name" msgstr "El nombre de la interfaz de enlace ascendente" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:496 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:531 msgid "" "This option is selected by default if this uplink was added automatically " "and counts as 'Open Uplink'." @@ -726,7 +753,12 @@ msgstr "Trate la falta de disponibilidad de Internet como un error." msgid "Trigger Delay" msgstr "Retraso de disparo" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:513 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:449 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1005 +msgid "Use system certificates" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:548 msgid "Use the specified MAC address for this uplink." msgstr "Utilice la dirección MAC especificada para este enlace ascendente." @@ -734,15 +766,15 @@ msgstr "Utilice la dirección MAC especificada para este enlace ascendente." msgid "User Agent" msgstr "Agente de usuario" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:634 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:669 msgid "VPN Hook" msgstr "Gancho VPN" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:666 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:701 msgid "VPN Interface" msgstr "Interfaz VPN" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:651 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:686 msgid "VPN Service" msgstr "Servicio VPN" @@ -750,17 +782,22 @@ msgstr "Servicio VPN" msgid "VPN Settings" msgstr "Configuración de VPN" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:449 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1005 +msgid "Validate server certificate using built-in system CA bundle" +msgstr "" + #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:305 msgid "Verbose Debug Logging" msgstr "Registro de depuración detallado" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:313 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:903 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:314 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:943 msgid "WPA Ent. (CCMP)" msgstr "Encriptación WPA (CCMP)" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:314 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:904 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:315 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:944 msgid "WPA Ent. (TKIP)" msgstr "Encriptación WPA (TKIP)" @@ -769,66 +806,71 @@ msgid "WPA Flags" msgstr "Banderas WPA" #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:304 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:894 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:933 msgid "WPA Pers." msgstr "WPA personal" #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:305 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:895 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:934 msgid "WPA Pers. (CCMP)" msgstr "WPA personal (CCMP)" #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:306 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:896 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:935 msgid "WPA Pers. (TKIP)" msgstr "WPA personal (TKIP)" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:315 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:905 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:316 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:945 msgid "WPA/WPA2 Ent. (CCMP)" msgstr "Encriptación WPA/WPA2 (CCMP)" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:316 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:906 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:317 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:946 msgid "WPA/WPA2 Ent. (TKIP)" msgstr "Encriptación WPA/WPA2 (TKIP)" #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:307 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:897 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:936 msgid "WPA/WPA2 Pers. (CCMP)" msgstr "Encriptación WPA/WPA2 (CCMP)" #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:308 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:898 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:937 msgid "WPA/WPA2 Pers. (TKIP)" msgstr "WPA/WPA2 personal (TKIP)" #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:311 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:901 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:940 +msgid "WPA2 Ent." +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:312 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:941 msgid "WPA2 Ent. (CCMP)" msgstr "Encriptación WPA2 (CCMP)" -#: 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 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:313 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:942 msgid "WPA2 Ent. (TKIP)" msgstr "Encriptación WPA2 (TKIP)" #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:301 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:891 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:930 msgid "WPA2 Pers." msgstr "WPA2 personal" #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:302 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:892 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:931 msgid "WPA2 Pers. (CCMP)" msgstr "WPA2 personal (CCMP)" #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:303 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:893 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:932 msgid "WPA2 Pers. (TKIP)" msgstr "WPA2 personal (TKIP)" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:900 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:939 msgid "WPA2/WPA3 Ent." msgstr "Encriptación WPA2/WPA3" @@ -837,11 +879,11 @@ msgid "WPA2/WPA3 Ent. (CCMP)" msgstr "WPA2/WPA3 Ent. (CCMP)" #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:300 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:890 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:929 msgid "WPA2/WPA3 Pers. (CCMP)" msgstr "WPA2/WPA3 personal (CCMP)" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:899 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:938 msgid "WPA3 Ent." msgstr "Encriptación WPA3" @@ -849,16 +891,16 @@ msgstr "Encriptación WPA3" msgid "WPA3 Ent. (CCMP)" msgstr "WPA3 Ent. (CCMP)" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:907 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:947 msgid "WPA3 OWE (CCMP)" msgstr "WPA3 OWE (CCMP)" #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:299 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:889 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:928 msgid "WPA3 Pers. (SAE)" msgstr "WPA3 personal (SAE)" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:721 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:756 msgid "Wireless Scan" msgstr "Escanear red Wi-Fi" @@ -870,18 +912,18 @@ msgstr "Configuración Wi-Fi" msgid "Wireless Stations" msgstr "Estaciones Wi-Fi" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:412 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:937 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:421 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:981 msgid "auth=MSCHAPV2" msgstr "auth=MSCHAPV2" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:411 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:936 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:420 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:980 msgid "auth=PAP" msgstr "auth=PAP" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:318 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:908 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:319 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:948 msgid "none" msgstr "ninguno" @@ -901,6 +943,9 @@ msgstr "use la primera radio solamente (radio0)" msgid "use the second radio only (radio1)" msgstr "use la segunda radio solamente (radio1)" +#~ msgid "Identify" +#~ msgstr "Identificar" + #~ msgid "" #~ "Overview of all configured uplinks for travelmate.
You can edit, " #~ "remove or prioritize existing uplinks by drag & drop and scan for new " @@ -1087,9 +1132,6 @@ msgstr "use la segunda radio solamente (radio1)" #~ msgid "Grant UCI access for luci-app-travelmate" #~ msgstr "Conceder acceso a UCI para luci-app-travelmate" -#~ msgid "Identity" -#~ msgstr "Identidad" - #~ msgid "Input file not found, please check your configuration." #~ msgstr "" #~ "Archivo de entrada no encontrado, por favor revise su configuración." diff --git a/applications/luci-app-travelmate/po/fi/travelmate.po b/applications/luci-app-travelmate/po/fi/travelmate.po index 4653d77dda..9248600e6b 100644 --- a/applications/luci-app-travelmate/po/fi/travelmate.po +++ b/applications/luci-app-travelmate/po/fi/travelmate.po @@ -18,11 +18,11 @@ msgstr "" msgid "AP QR-Codes..." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:962 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1030 msgid "Add Uplink %q" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:819 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:858 msgid "Add Uplink..." msgstr "" @@ -35,16 +35,21 @@ msgid "" "Additional trigger delay in seconds before travelmate processing begins." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:402 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:926 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:430 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:987 +msgid "Anonymous Identity" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:411 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:970 msgid "Authentication" msgstr "Todennus" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:495 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:530 msgid "Auto Added Open Uplink" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:574 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:609 msgid "Auto Login Script" msgstr "" @@ -52,7 +57,7 @@ msgstr "" msgid "AutoAdd Open Uplinks" 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:592 msgid "" "Automatically (re-)enable the uplink after n minutes, e.g. after " "failed login attempts.
The default of '0' disables this feature." @@ -64,13 +69,13 @@ msgid "" "config." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:539 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:574 msgid "" "Automatically disable the uplink after n minutes, e.g. for timed " "connections.
The default of '0' disables this feature." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:634 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:669 msgid "" "Automatically handle VPN connections.
Please note: This feature " "requires the additional configuration of Wireguard or OpenVPNgreen." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:403 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:928 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:412 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:972 msgid "PAP" msgstr "" -#: 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:922 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:406 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:966 msgid "PEAP" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:385 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:911 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:389 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:396 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:951 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:957 msgid "Password" msgstr "Salasana" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:436 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:955 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:472 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1024 msgid "Password of Private Key" msgstr "Yksityisen avaimen salasana" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:421 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:943 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:456 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1011 msgid "Path to CA-Certificate" msgstr "Polku CA-varmenteeseen" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:426 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:947 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:462 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1016 msgid "Path to Client-Certificate" msgstr "Polku asiakasvarmenteeseen" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:431 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:951 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:467 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1020 msgid "Path to Private Key" msgstr "Polku yksityiseen avaimeen" @@ -466,10 +488,15 @@ msgid "" "WLAN credentials to your mobile devices." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:732 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:767 msgid "Repeat Scan" msgstr "" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:441 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:998 +msgid "Required" +msgstr "" + #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:277 msgid "Restart Interface" msgstr "" @@ -488,18 +515,18 @@ msgid "Run Flags" msgstr "" #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:290 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:451 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:713 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:868 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:486 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:748 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:907 msgid "SSID" msgstr "SSID" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:864 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:903 msgid "SSID (hidden)" msgstr "" #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:64 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:973 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1041 msgid "Save" msgstr "Tallenna" @@ -507,11 +534,11 @@ msgstr "Tallenna" msgid "Scan Limit" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:697 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:732 msgid "Scan on" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:613 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:648 msgid "Script Arguments" msgstr "" @@ -535,13 +562,13 @@ msgstr "Asetukset" msgid "Signal Quality Threshold" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:614 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:649 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:719 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:754 msgid "Starting wireless scan on '" msgstr "" @@ -561,17 +588,17 @@ msgstr "" msgid "Status / Version" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:711 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:746 msgid "Strength" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:394 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:920 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:404 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:964 msgid "TLS" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:395 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:921 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:405 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:965 msgid "TTLS" msgstr "" @@ -587,7 +614,7 @@ msgstr "" msgid "The interface metric" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:666 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:701 msgid "The logical vpn network interface, e.g. 'wg0' or 'tun0'." msgstr "" @@ -618,7 +645,7 @@ msgstr "" msgid "The uplink interface name" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:496 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:531 msgid "" "This option is selected by default if this uplink was added automatically " "and counts as 'Open Uplink'." @@ -651,7 +678,12 @@ msgstr "" msgid "Trigger Delay" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:513 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:449 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1005 +msgid "Use system certificates" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:548 msgid "Use the specified MAC address for this uplink." msgstr "" @@ -659,15 +691,15 @@ msgstr "" msgid "User Agent" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:634 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:669 msgid "VPN Hook" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:666 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:701 msgid "VPN Interface" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:651 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:686 msgid "VPN Service" msgstr "" @@ -675,17 +707,22 @@ msgstr "" msgid "VPN Settings" msgstr "" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:449 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1005 +msgid "Validate server certificate using built-in system CA bundle" +msgstr "" + #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:305 msgid "Verbose Debug Logging" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:313 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:903 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:314 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:943 msgid "WPA Ent. (CCMP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:314 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:904 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:315 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:944 msgid "WPA Ent. (TKIP)" msgstr "" @@ -694,66 +731,71 @@ msgid "WPA Flags" msgstr "" #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:304 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:894 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:933 msgid "WPA Pers." msgstr "" #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:305 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:895 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:934 msgid "WPA Pers. (CCMP)" msgstr "" #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:306 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:896 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:935 msgid "WPA Pers. (TKIP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:315 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:905 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:316 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:945 msgid "WPA/WPA2 Ent. (CCMP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:316 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:906 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:317 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:946 msgid "WPA/WPA2 Ent. (TKIP)" msgstr "" #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:307 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:897 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:936 msgid "WPA/WPA2 Pers. (CCMP)" msgstr "" #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:308 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:898 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:937 msgid "WPA/WPA2 Pers. (TKIP)" msgstr "" #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:311 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:901 -msgid "WPA2 Ent. (CCMP)" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:940 +msgid "WPA2 Ent." msgstr "" #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:312 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:902 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:941 +msgid "WPA2 Ent. (CCMP)" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:313 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:942 msgid "WPA2 Ent. (TKIP)" msgstr "" #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:301 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:891 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:930 msgid "WPA2 Pers." msgstr "" #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:302 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:892 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:931 msgid "WPA2 Pers. (CCMP)" msgstr "" #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:303 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:893 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:932 msgid "WPA2 Pers. (TKIP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:900 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:939 msgid "WPA2/WPA3 Ent." msgstr "" @@ -762,11 +804,11 @@ msgid "WPA2/WPA3 Ent. (CCMP)" msgstr "" #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:300 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:890 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:929 msgid "WPA2/WPA3 Pers. (CCMP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:899 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:938 msgid "WPA3 Ent." msgstr "" @@ -774,16 +816,16 @@ msgstr "" msgid "WPA3 Ent. (CCMP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:907 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:947 msgid "WPA3 OWE (CCMP)" msgstr "" #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:299 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:889 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:928 msgid "WPA3 Pers. (SAE)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:721 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:756 msgid "Wireless Scan" msgstr "" @@ -795,18 +837,18 @@ msgstr "" msgid "Wireless Stations" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:412 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:937 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:421 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:981 msgid "auth=MSCHAPV2" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:411 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:936 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:420 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:980 msgid "auth=PAP" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:318 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:908 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:319 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:948 msgid "none" msgstr "ei mitään" @@ -853,9 +895,6 @@ msgstr "" #~ msgid "Grant UCI access for luci-app-travelmate" #~ msgstr "Salli pääsy travelmaten UCI-asetuksiin" -#~ msgid "Identity" -#~ msgstr "Identiteetti" - #~ msgid "Loading" #~ msgstr "Ladataan" diff --git a/applications/luci-app-travelmate/po/fr/travelmate.po b/applications/luci-app-travelmate/po/fr/travelmate.po index b100c5cbbb..5feceb6dfe 100644 --- a/applications/luci-app-travelmate/po/fr/travelmate.po +++ b/applications/luci-app-travelmate/po/fr/travelmate.po @@ -18,11 +18,11 @@ msgstr "-- Sélection AP --" msgid "AP QR-Codes..." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:962 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1030 msgid "Add Uplink %q" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:819 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:858 msgid "Add Uplink..." msgstr "" @@ -35,16 +35,21 @@ msgid "" "Additional trigger delay in seconds before travelmate processing begins." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:402 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:926 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:430 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:987 +msgid "Anonymous Identity" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:411 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:970 msgid "Authentication" msgstr "Authentification" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:495 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:530 msgid "Auto Added Open Uplink" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:574 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:609 msgid "Auto Login Script" msgstr "" @@ -52,7 +57,7 @@ msgstr "" msgid "AutoAdd Open Uplinks" 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:592 msgid "" "Automatically (re-)enable the uplink after n minutes, e.g. after " "failed login attempts.
The default of '0' disables this feature." @@ -64,13 +69,13 @@ msgid "" "config." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:539 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:574 msgid "" "Automatically disable the uplink after n minutes, e.g. for timed " "connections.
The default of '0' disables this feature." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:634 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:669 msgid "" "Automatically handle VPN connections.
Please note: This feature " "requires the additional configuration of Wireguard or OpenVPNgreen." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:403 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:928 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:412 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:972 msgid "PAP" msgstr "" -#: 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:922 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:406 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:966 msgid "PEAP" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:385 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:911 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:389 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:396 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:951 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:957 msgid "Password" msgstr "Mot de passe" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:436 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:955 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:472 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1024 msgid "Password of Private Key" msgstr "Mot de passe de la clé privée" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:421 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:943 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:456 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1011 msgid "Path to CA-Certificate" msgstr "Chemin du certificat CA" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:426 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:947 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:462 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1016 msgid "Path to Client-Certificate" msgstr "Chemin du certificat-client" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:431 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:951 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:467 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1020 msgid "Path to Private Key" msgstr "Chemin de la clé privée" @@ -468,10 +490,15 @@ msgid "" "WLAN credentials to your mobile devices." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:732 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:767 msgid "Repeat Scan" msgstr "" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:441 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:998 +msgid "Required" +msgstr "" + #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:277 msgid "Restart Interface" msgstr "" @@ -490,18 +517,18 @@ msgid "Run Flags" msgstr "Drapeaux d'exécution" #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:290 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:451 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:713 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:868 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:486 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:748 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:907 msgid "SSID" msgstr "SSID" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:864 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:903 msgid "SSID (hidden)" msgstr "" #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:64 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:973 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1041 msgid "Save" msgstr "Enregistrer" @@ -509,11 +536,11 @@ msgstr "Enregistrer" msgid "Scan Limit" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:697 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:732 msgid "Scan on" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:613 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:648 msgid "Script Arguments" msgstr "" @@ -537,13 +564,13 @@ msgstr "Paramètres" msgid "Signal Quality Threshold" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:614 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:649 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:719 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:754 msgid "Starting wireless scan on '" msgstr "" @@ -563,17 +590,17 @@ msgstr "" msgid "Status / Version" msgstr "Statut / Version" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:711 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:746 msgid "Strength" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:394 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:920 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:404 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:964 msgid "TLS" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:395 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:921 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:405 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:965 msgid "TTLS" msgstr "" @@ -589,7 +616,7 @@ msgstr "" msgid "The interface metric" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:666 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:701 msgid "The logical vpn network interface, e.g. 'wg0' or 'tun0'." msgstr "" @@ -620,7 +647,7 @@ msgstr "" msgid "The uplink interface name" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:496 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:531 msgid "" "This option is selected by default if this uplink was added automatically " "and counts as 'Open Uplink'." @@ -653,7 +680,12 @@ msgstr "" msgid "Trigger Delay" msgstr "Délai de déclenchement" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:513 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:449 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1005 +msgid "Use system certificates" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:548 msgid "Use the specified MAC address for this uplink." msgstr "" @@ -661,15 +693,15 @@ msgstr "" msgid "User Agent" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:634 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:669 msgid "VPN Hook" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:666 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:701 msgid "VPN Interface" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:651 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:686 msgid "VPN Service" msgstr "" @@ -677,17 +709,22 @@ msgstr "" msgid "VPN Settings" msgstr "" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:449 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1005 +msgid "Validate server certificate using built-in system CA bundle" +msgstr "" + #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:305 msgid "Verbose Debug Logging" msgstr "Logs en mode verbeux" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:313 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:903 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:314 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:943 msgid "WPA Ent. (CCMP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:314 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:904 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:315 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:944 msgid "WPA Ent. (TKIP)" msgstr "" @@ -696,66 +733,71 @@ msgid "WPA Flags" msgstr "" #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:304 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:894 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:933 msgid "WPA Pers." msgstr "" #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:305 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:895 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:934 msgid "WPA Pers. (CCMP)" msgstr "" #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:306 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:896 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:935 msgid "WPA Pers. (TKIP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:315 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:905 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:316 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:945 msgid "WPA/WPA2 Ent. (CCMP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:316 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:906 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:317 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:946 msgid "WPA/WPA2 Ent. (TKIP)" msgstr "" #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:307 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:897 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:936 msgid "WPA/WPA2 Pers. (CCMP)" msgstr "" #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:308 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:898 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:937 msgid "WPA/WPA2 Pers. (TKIP)" msgstr "" #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:311 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:901 -msgid "WPA2 Ent. (CCMP)" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:940 +msgid "WPA2 Ent." msgstr "" #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:312 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:902 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:941 +msgid "WPA2 Ent. (CCMP)" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:313 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:942 msgid "WPA2 Ent. (TKIP)" msgstr "" #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:301 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:891 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:930 msgid "WPA2 Pers." msgstr "" #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:302 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:892 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:931 msgid "WPA2 Pers. (CCMP)" msgstr "" #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:303 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:893 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:932 msgid "WPA2 Pers. (TKIP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:900 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:939 msgid "WPA2/WPA3 Ent." msgstr "" @@ -764,11 +806,11 @@ msgid "WPA2/WPA3 Ent. (CCMP)" msgstr "" #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:300 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:890 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:929 msgid "WPA2/WPA3 Pers. (CCMP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:899 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:938 msgid "WPA3 Ent." msgstr "" @@ -776,16 +818,16 @@ msgstr "" msgid "WPA3 Ent. (CCMP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:907 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:947 msgid "WPA3 OWE (CCMP)" msgstr "" #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:299 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:889 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:928 msgid "WPA3 Pers. (SAE)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:721 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:756 msgid "Wireless Scan" msgstr "" @@ -797,18 +839,18 @@ msgstr "" msgid "Wireless Stations" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:412 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:937 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:421 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:981 msgid "auth=MSCHAPV2" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:411 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:936 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:420 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:980 msgid "auth=PAP" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:318 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:908 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:319 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:948 msgid "none" msgstr "aucun" @@ -858,9 +900,6 @@ msgstr "" #~ msgid "Force TKIP and CCMP (AES)" #~ msgstr "Forcer TKIP et CCMP (AES)" -#~ msgid "Identity" -#~ msgstr "Identité" - #~ msgid "Input file not found, please check your configuration." #~ msgstr "" #~ "Fichier d'entrée introuvable, veuillez vérifier votre configuration." diff --git a/applications/luci-app-travelmate/po/he/travelmate.po b/applications/luci-app-travelmate/po/he/travelmate.po index ae493047b1..f74874acd9 100644 --- a/applications/luci-app-travelmate/po/he/travelmate.po +++ b/applications/luci-app-travelmate/po/he/travelmate.po @@ -19,11 +19,11 @@ msgstr "" msgid "AP QR-Codes..." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:962 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1030 msgid "Add Uplink %q" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:819 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:858 msgid "Add Uplink..." msgstr "" @@ -36,16 +36,21 @@ msgid "" "Additional trigger delay in seconds before travelmate processing begins." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:402 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:926 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:430 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:987 +msgid "Anonymous Identity" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:411 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:970 msgid "Authentication" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:495 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:530 msgid "Auto Added Open Uplink" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:574 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:609 msgid "Auto Login Script" msgstr "" @@ -53,7 +58,7 @@ msgstr "" msgid "AutoAdd Open Uplinks" 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:592 msgid "" "Automatically (re-)enable the uplink after n minutes, e.g. after " "failed login attempts.
The default of '0' disables this feature." @@ -65,13 +70,13 @@ msgid "" "config." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:539 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:574 msgid "" "Automatically disable the uplink after n minutes, e.g. for timed " "connections.
The default of '0' disables this feature." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:634 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:669 msgid "" "Automatically handle VPN connections.
Please note: This feature " "requires the additional configuration of Wireguard or OpenVPNgreen." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:403 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:928 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:412 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:972 msgid "PAP" msgstr "" -#: 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:922 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:406 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:966 msgid "PEAP" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:385 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:911 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:389 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:396 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:951 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:957 msgid "Password" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:436 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:955 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:472 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1024 msgid "Password of Private Key" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:421 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:943 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:456 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1011 msgid "Path to CA-Certificate" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:426 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:947 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:462 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1016 msgid "Path to Client-Certificate" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:431 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:951 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:467 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1020 msgid "Path to Private Key" msgstr "" @@ -467,10 +489,15 @@ msgid "" "WLAN credentials to your mobile devices." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:732 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:767 msgid "Repeat Scan" msgstr "" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:441 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:998 +msgid "Required" +msgstr "" + #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:277 msgid "Restart Interface" msgstr "" @@ -489,18 +516,18 @@ msgid "Run Flags" msgstr "" #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:290 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:451 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:713 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:868 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:486 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:748 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:907 msgid "SSID" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:864 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:903 msgid "SSID (hidden)" msgstr "" #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:64 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:973 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1041 msgid "Save" msgstr "" @@ -508,11 +535,11 @@ msgstr "" msgid "Scan Limit" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:697 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:732 msgid "Scan on" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:613 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:648 msgid "Script Arguments" msgstr "" @@ -536,13 +563,13 @@ msgstr "הגדרות" msgid "Signal Quality Threshold" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:614 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:649 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:719 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:754 msgid "Starting wireless scan on '" msgstr "" @@ -562,17 +589,17 @@ msgstr "" msgid "Status / Version" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:711 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:746 msgid "Strength" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:394 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:920 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:404 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:964 msgid "TLS" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:395 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:921 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:405 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:965 msgid "TTLS" msgstr "" @@ -588,7 +615,7 @@ msgstr "" msgid "The interface metric" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:666 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:701 msgid "The logical vpn network interface, e.g. 'wg0' or 'tun0'." msgstr "" @@ -619,7 +646,7 @@ msgstr "" msgid "The uplink interface name" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:496 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:531 msgid "" "This option is selected by default if this uplink was added automatically " "and counts as 'Open Uplink'." @@ -652,7 +679,12 @@ msgstr "" msgid "Trigger Delay" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:513 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:449 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1005 +msgid "Use system certificates" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:548 msgid "Use the specified MAC address for this uplink." msgstr "" @@ -660,15 +692,15 @@ msgstr "" msgid "User Agent" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:634 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:669 msgid "VPN Hook" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:666 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:701 msgid "VPN Interface" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:651 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:686 msgid "VPN Service" msgstr "" @@ -676,17 +708,22 @@ msgstr "" msgid "VPN Settings" msgstr "" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:449 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1005 +msgid "Validate server certificate using built-in system CA bundle" +msgstr "" + #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:305 msgid "Verbose Debug Logging" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:313 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:903 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:314 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:943 msgid "WPA Ent. (CCMP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:314 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:904 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:315 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:944 msgid "WPA Ent. (TKIP)" msgstr "" @@ -695,66 +732,71 @@ msgid "WPA Flags" msgstr "" #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:304 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:894 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:933 msgid "WPA Pers." msgstr "" #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:305 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:895 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:934 msgid "WPA Pers. (CCMP)" msgstr "" #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:306 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:896 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:935 msgid "WPA Pers. (TKIP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:315 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:905 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:316 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:945 msgid "WPA/WPA2 Ent. (CCMP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:316 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:906 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:317 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:946 msgid "WPA/WPA2 Ent. (TKIP)" msgstr "" #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:307 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:897 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:936 msgid "WPA/WPA2 Pers. (CCMP)" msgstr "" #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:308 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:898 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:937 msgid "WPA/WPA2 Pers. (TKIP)" msgstr "" #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:311 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:901 -msgid "WPA2 Ent. (CCMP)" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:940 +msgid "WPA2 Ent." msgstr "" #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:312 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:902 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:941 +msgid "WPA2 Ent. (CCMP)" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:313 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:942 msgid "WPA2 Ent. (TKIP)" msgstr "" #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:301 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:891 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:930 msgid "WPA2 Pers." msgstr "" #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:302 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:892 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:931 msgid "WPA2 Pers. (CCMP)" msgstr "" #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:303 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:893 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:932 msgid "WPA2 Pers. (TKIP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:900 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:939 msgid "WPA2/WPA3 Ent." msgstr "" @@ -763,11 +805,11 @@ msgid "WPA2/WPA3 Ent. (CCMP)" msgstr "" #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:300 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:890 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:929 msgid "WPA2/WPA3 Pers. (CCMP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:899 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:938 msgid "WPA3 Ent." msgstr "" @@ -775,16 +817,16 @@ msgstr "" msgid "WPA3 Ent. (CCMP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:907 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:947 msgid "WPA3 OWE (CCMP)" msgstr "" #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:299 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:889 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:928 msgid "WPA3 Pers. (SAE)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:721 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:756 msgid "Wireless Scan" msgstr "" @@ -796,18 +838,18 @@ msgstr "" msgid "Wireless Stations" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:412 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:937 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:421 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:981 msgid "auth=MSCHAPV2" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:411 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:936 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:420 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:980 msgid "auth=PAP" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:318 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:908 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:319 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:948 msgid "none" msgstr "" diff --git a/applications/luci-app-travelmate/po/hi/travelmate.po b/applications/luci-app-travelmate/po/hi/travelmate.po index 63a44d9752..fe7a49ebc6 100644 --- a/applications/luci-app-travelmate/po/hi/travelmate.po +++ b/applications/luci-app-travelmate/po/hi/travelmate.po @@ -18,11 +18,11 @@ msgstr "" msgid "AP QR-Codes..." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:962 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1030 msgid "Add Uplink %q" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:819 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:858 msgid "Add Uplink..." msgstr "" @@ -35,16 +35,21 @@ msgid "" "Additional trigger delay in seconds before travelmate processing begins." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:402 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:926 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:430 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:987 +msgid "Anonymous Identity" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:411 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:970 msgid "Authentication" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:495 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:530 msgid "Auto Added Open Uplink" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:574 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:609 msgid "Auto Login Script" msgstr "" @@ -52,7 +57,7 @@ msgstr "" msgid "AutoAdd Open Uplinks" 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:592 msgid "" "Automatically (re-)enable the uplink after n minutes, e.g. after " "failed login attempts.
The default of '0' disables this feature." @@ -64,13 +69,13 @@ msgid "" "config." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:539 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:574 msgid "" "Automatically disable the uplink after n minutes, e.g. for timed " "connections.
The default of '0' disables this feature." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:634 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:669 msgid "" "Automatically handle VPN connections.
Please note: This feature " "requires the additional configuration of Wireguard or OpenVPNgreen." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:403 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:928 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:412 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:972 msgid "PAP" msgstr "" -#: 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:922 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:406 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:966 msgid "PEAP" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:385 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:911 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:389 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:396 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:951 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:957 msgid "Password" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:436 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:955 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:472 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1024 msgid "Password of Private Key" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:421 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:943 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:456 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1011 msgid "Path to CA-Certificate" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:426 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:947 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:462 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1016 msgid "Path to Client-Certificate" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:431 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:951 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:467 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1020 msgid "Path to Private Key" msgstr "" @@ -466,10 +488,15 @@ msgid "" "WLAN credentials to your mobile devices." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:732 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:767 msgid "Repeat Scan" msgstr "" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:441 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:998 +msgid "Required" +msgstr "" + #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:277 msgid "Restart Interface" msgstr "" @@ -488,18 +515,18 @@ msgid "Run Flags" msgstr "" #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:290 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:451 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:713 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:868 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:486 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:748 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:907 msgid "SSID" msgstr "SSID" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:864 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:903 msgid "SSID (hidden)" msgstr "" #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:64 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:973 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1041 msgid "Save" msgstr "" @@ -507,11 +534,11 @@ msgstr "" msgid "Scan Limit" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:697 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:732 msgid "Scan on" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:613 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:648 msgid "Script Arguments" msgstr "" @@ -535,13 +562,13 @@ msgstr "" msgid "Signal Quality Threshold" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:614 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:649 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:719 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:754 msgid "Starting wireless scan on '" msgstr "" @@ -561,17 +588,17 @@ msgstr "" msgid "Status / Version" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:711 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:746 msgid "Strength" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:394 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:920 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:404 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:964 msgid "TLS" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:395 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:921 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:405 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:965 msgid "TTLS" msgstr "" @@ -587,7 +614,7 @@ msgstr "" msgid "The interface metric" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:666 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:701 msgid "The logical vpn network interface, e.g. 'wg0' or 'tun0'." msgstr "" @@ -618,7 +645,7 @@ msgstr "" msgid "The uplink interface name" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:496 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:531 msgid "" "This option is selected by default if this uplink was added automatically " "and counts as 'Open Uplink'." @@ -651,7 +678,12 @@ msgstr "" msgid "Trigger Delay" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:513 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:449 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1005 +msgid "Use system certificates" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:548 msgid "Use the specified MAC address for this uplink." msgstr "" @@ -659,15 +691,15 @@ msgstr "" msgid "User Agent" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:634 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:669 msgid "VPN Hook" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:666 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:701 msgid "VPN Interface" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:651 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:686 msgid "VPN Service" msgstr "" @@ -675,17 +707,22 @@ msgstr "" msgid "VPN Settings" msgstr "" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:449 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1005 +msgid "Validate server certificate using built-in system CA bundle" +msgstr "" + #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:305 msgid "Verbose Debug Logging" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:313 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:903 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:314 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:943 msgid "WPA Ent. (CCMP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:314 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:904 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:315 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:944 msgid "WPA Ent. (TKIP)" msgstr "" @@ -694,66 +731,71 @@ msgid "WPA Flags" msgstr "" #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:304 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:894 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:933 msgid "WPA Pers." msgstr "" #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:305 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:895 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:934 msgid "WPA Pers. (CCMP)" msgstr "" #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:306 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:896 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:935 msgid "WPA Pers. (TKIP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:315 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:905 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:316 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:945 msgid "WPA/WPA2 Ent. (CCMP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:316 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:906 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:317 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:946 msgid "WPA/WPA2 Ent. (TKIP)" msgstr "" #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:307 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:897 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:936 msgid "WPA/WPA2 Pers. (CCMP)" msgstr "" #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:308 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:898 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:937 msgid "WPA/WPA2 Pers. (TKIP)" msgstr "" #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:311 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:901 -msgid "WPA2 Ent. (CCMP)" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:940 +msgid "WPA2 Ent." msgstr "" #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:312 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:902 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:941 +msgid "WPA2 Ent. (CCMP)" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:313 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:942 msgid "WPA2 Ent. (TKIP)" msgstr "" #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:301 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:891 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:930 msgid "WPA2 Pers." msgstr "" #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:302 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:892 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:931 msgid "WPA2 Pers. (CCMP)" msgstr "" #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:303 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:893 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:932 msgid "WPA2 Pers. (TKIP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:900 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:939 msgid "WPA2/WPA3 Ent." msgstr "" @@ -762,11 +804,11 @@ msgid "WPA2/WPA3 Ent. (CCMP)" msgstr "" #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:300 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:890 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:929 msgid "WPA2/WPA3 Pers. (CCMP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:899 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:938 msgid "WPA3 Ent." msgstr "" @@ -774,16 +816,16 @@ msgstr "" msgid "WPA3 Ent. (CCMP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:907 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:947 msgid "WPA3 OWE (CCMP)" msgstr "" #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:299 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:889 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:928 msgid "WPA3 Pers. (SAE)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:721 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:756 msgid "Wireless Scan" msgstr "" @@ -795,18 +837,18 @@ msgstr "" msgid "Wireless Stations" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:412 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:937 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:421 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:981 msgid "auth=MSCHAPV2" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:411 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:936 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:420 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:980 msgid "auth=PAP" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:318 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:908 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:319 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:948 msgid "none" msgstr "" diff --git a/applications/luci-app-travelmate/po/hu/travelmate.po b/applications/luci-app-travelmate/po/hu/travelmate.po index 5a5a27bc90..61c60f2509 100644 --- a/applications/luci-app-travelmate/po/hu/travelmate.po +++ b/applications/luci-app-travelmate/po/hu/travelmate.po @@ -18,11 +18,11 @@ msgstr "" msgid "AP QR-Codes..." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:962 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1030 msgid "Add Uplink %q" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:819 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:858 msgid "Add Uplink..." msgstr "" @@ -35,16 +35,21 @@ msgid "" "Additional trigger delay in seconds before travelmate processing begins." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:402 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:926 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:430 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:987 +msgid "Anonymous Identity" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:411 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:970 msgid "Authentication" msgstr "Hitelesítés" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:495 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:530 msgid "Auto Added Open Uplink" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:574 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:609 msgid "Auto Login Script" msgstr "" @@ -52,7 +57,7 @@ msgstr "" msgid "AutoAdd Open Uplinks" 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:592 msgid "" "Automatically (re-)enable the uplink after n minutes, e.g. after " "failed login attempts.
The default of '0' disables this feature." @@ -64,13 +69,13 @@ msgid "" "config." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:539 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:574 msgid "" "Automatically disable the uplink after n minutes, e.g. for timed " "connections.
The default of '0' disables this feature." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:634 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:669 msgid "" "Automatically handle VPN connections.
Please note: This feature " "requires the additional configuration of Wireguard or OpenVPNgreen." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:403 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:928 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:412 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:972 msgid "PAP" msgstr "" -#: 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:922 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:406 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:966 msgid "PEAP" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:385 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:911 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:389 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:396 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:951 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:957 msgid "Password" msgstr "Jelszó" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:436 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:955 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:472 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1024 msgid "Password of Private Key" msgstr "Személyes kulcs jelszava" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:421 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:943 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:456 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1011 msgid "Path to CA-Certificate" msgstr "Útvonal a CA-tanúsítványhoz" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:426 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:947 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:462 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1016 msgid "Path to Client-Certificate" msgstr "Útvonal az ügyféltanúsítványhoz" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:431 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:951 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:467 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1020 msgid "Path to Private Key" msgstr "Útvonal a személyes kulcshoz" @@ -467,10 +489,15 @@ msgid "" "WLAN credentials to your mobile devices." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:732 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:767 msgid "Repeat Scan" msgstr "" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:441 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:998 +msgid "Required" +msgstr "" + #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:277 msgid "Restart Interface" msgstr "" @@ -489,18 +516,18 @@ msgid "Run Flags" msgstr "" #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:290 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:451 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:713 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:868 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:486 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:748 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:907 msgid "SSID" msgstr "SSID" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:864 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:903 msgid "SSID (hidden)" msgstr "" #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:64 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:973 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1041 msgid "Save" msgstr "Mentés" @@ -508,11 +535,11 @@ msgstr "Mentés" msgid "Scan Limit" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:697 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:732 msgid "Scan on" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:613 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:648 msgid "Script Arguments" msgstr "" @@ -536,13 +563,13 @@ msgstr "Beállítások" msgid "Signal Quality Threshold" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:614 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:649 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:719 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:754 msgid "Starting wireless scan on '" msgstr "" @@ -563,17 +590,17 @@ msgstr "" msgid "Status / Version" msgstr "Státusz / Verzió" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:711 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:746 msgid "Strength" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:394 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:920 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:404 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:964 msgid "TLS" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:395 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:921 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:405 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:965 msgid "TTLS" msgstr "" @@ -589,7 +616,7 @@ msgstr "" msgid "The interface metric" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:666 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:701 msgid "The logical vpn network interface, e.g. 'wg0' or 'tun0'." msgstr "" @@ -620,7 +647,7 @@ msgstr "" msgid "The uplink interface name" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:496 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:531 msgid "" "This option is selected by default if this uplink was added automatically " "and counts as 'Open Uplink'." @@ -653,7 +680,12 @@ msgstr "" msgid "Trigger Delay" msgstr "Aktiváló késleltetése" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:513 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:449 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1005 +msgid "Use system certificates" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:548 msgid "Use the specified MAC address for this uplink." msgstr "" @@ -661,15 +693,15 @@ msgstr "" msgid "User Agent" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:634 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:669 msgid "VPN Hook" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:666 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:701 msgid "VPN Interface" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:651 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:686 msgid "VPN Service" msgstr "" @@ -677,17 +709,22 @@ msgstr "" msgid "VPN Settings" msgstr "" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:449 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1005 +msgid "Validate server certificate using built-in system CA bundle" +msgstr "" + #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:305 msgid "Verbose Debug Logging" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:313 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:903 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:314 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:943 msgid "WPA Ent. (CCMP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:314 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:904 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:315 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:944 msgid "WPA Ent. (TKIP)" msgstr "" @@ -696,66 +733,71 @@ msgid "WPA Flags" msgstr "" #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:304 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:894 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:933 msgid "WPA Pers." msgstr "" #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:305 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:895 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:934 msgid "WPA Pers. (CCMP)" msgstr "" #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:306 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:896 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:935 msgid "WPA Pers. (TKIP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:315 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:905 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:316 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:945 msgid "WPA/WPA2 Ent. (CCMP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:316 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:906 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:317 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:946 msgid "WPA/WPA2 Ent. (TKIP)" msgstr "" #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:307 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:897 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:936 msgid "WPA/WPA2 Pers. (CCMP)" msgstr "" #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:308 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:898 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:937 msgid "WPA/WPA2 Pers. (TKIP)" msgstr "" #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:311 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:901 -msgid "WPA2 Ent. (CCMP)" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:940 +msgid "WPA2 Ent." msgstr "" #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:312 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:902 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:941 +msgid "WPA2 Ent. (CCMP)" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:313 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:942 msgid "WPA2 Ent. (TKIP)" msgstr "" #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:301 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:891 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:930 msgid "WPA2 Pers." msgstr "" #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:302 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:892 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:931 msgid "WPA2 Pers. (CCMP)" msgstr "" #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:303 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:893 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:932 msgid "WPA2 Pers. (TKIP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:900 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:939 msgid "WPA2/WPA3 Ent." msgstr "" @@ -764,11 +806,11 @@ msgid "WPA2/WPA3 Ent. (CCMP)" msgstr "" #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:300 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:890 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:929 msgid "WPA2/WPA3 Pers. (CCMP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:899 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:938 msgid "WPA3 Ent." msgstr "" @@ -776,16 +818,16 @@ msgstr "" msgid "WPA3 Ent. (CCMP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:907 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:947 msgid "WPA3 OWE (CCMP)" msgstr "" #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:299 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:889 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:928 msgid "WPA3 Pers. (SAE)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:721 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:756 msgid "Wireless Scan" msgstr "" @@ -797,18 +839,18 @@ msgstr "" msgid "Wireless Stations" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:412 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:937 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:421 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:981 msgid "auth=MSCHAPV2" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:411 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:936 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:420 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:980 msgid "auth=PAP" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:318 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:908 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:319 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:948 msgid "none" msgstr "" @@ -855,9 +897,6 @@ msgstr "" #~ msgid "Force TKIP and CCMP (AES)" #~ msgstr "TKIP és CCMP (AES) kényszerítése" -#~ msgid "Identity" -#~ msgstr "Személyazonosság" - #~ msgid "Input file not found, please check your configuration." #~ msgstr "A bemeneti fájl nem található, ellenőrizze a beállítást." diff --git a/applications/luci-app-travelmate/po/it/travelmate.po b/applications/luci-app-travelmate/po/it/travelmate.po index 9df4cbfebd..3482c9ccea 100644 --- a/applications/luci-app-travelmate/po/it/travelmate.po +++ b/applications/luci-app-travelmate/po/it/travelmate.po @@ -18,11 +18,11 @@ msgstr "" msgid "AP QR-Codes..." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:962 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1030 msgid "Add Uplink %q" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:819 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:858 msgid "Add Uplink..." msgstr "" @@ -35,16 +35,21 @@ msgid "" "Additional trigger delay in seconds before travelmate processing begins." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:402 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:926 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:430 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:987 +msgid "Anonymous Identity" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:411 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:970 msgid "Authentication" msgstr "Autenticazione" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:495 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:530 msgid "Auto Added Open Uplink" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:574 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:609 msgid "Auto Login Script" msgstr "" @@ -52,7 +57,7 @@ msgstr "" msgid "AutoAdd Open Uplinks" 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:592 msgid "" "Automatically (re-)enable the uplink after n minutes, e.g. after " "failed login attempts.
The default of '0' disables this feature." @@ -64,13 +69,13 @@ msgid "" "config." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:539 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:574 msgid "" "Automatically disable the uplink after n minutes, e.g. for timed " "connections.
The default of '0' disables this feature." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:634 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:669 msgid "" "Automatically handle VPN connections.
Please note: This feature " "requires the additional configuration of Wireguard or OpenVPNgreen." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:403 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:928 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:412 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:972 msgid "PAP" msgstr "" -#: 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:922 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:406 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:966 msgid "PEAP" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:385 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:911 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:389 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:396 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:951 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:957 msgid "Password" msgstr "Password" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:436 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:955 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:472 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1024 msgid "Password of Private Key" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:421 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:943 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:456 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1011 msgid "Path to CA-Certificate" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:426 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:947 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:462 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1016 msgid "Path to Client-Certificate" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:431 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:951 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:467 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1020 msgid "Path to Private Key" msgstr "" @@ -467,10 +489,15 @@ msgid "" "WLAN credentials to your mobile devices." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:732 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:767 msgid "Repeat Scan" msgstr "" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:441 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:998 +msgid "Required" +msgstr "" + #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:277 msgid "Restart Interface" msgstr "" @@ -489,18 +516,18 @@ msgid "Run Flags" msgstr "" #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:290 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:451 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:713 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:868 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:486 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:748 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:907 msgid "SSID" msgstr "SSID" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:864 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:903 msgid "SSID (hidden)" msgstr "" #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:64 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:973 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1041 msgid "Save" msgstr "Salva" @@ -508,11 +535,11 @@ msgstr "Salva" msgid "Scan Limit" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:697 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:732 msgid "Scan on" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:613 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:648 msgid "Script Arguments" msgstr "" @@ -536,13 +563,13 @@ msgstr "Impostazioni" msgid "Signal Quality Threshold" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:614 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:649 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:719 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:754 msgid "Starting wireless scan on '" msgstr "" @@ -562,17 +589,17 @@ msgstr "" msgid "Status / Version" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:711 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:746 msgid "Strength" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:394 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:920 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:404 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:964 msgid "TLS" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:395 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:921 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:405 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:965 msgid "TTLS" msgstr "" @@ -588,7 +615,7 @@ msgstr "" msgid "The interface metric" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:666 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:701 msgid "The logical vpn network interface, e.g. 'wg0' or 'tun0'." msgstr "" @@ -619,7 +646,7 @@ msgstr "" msgid "The uplink interface name" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:496 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:531 msgid "" "This option is selected by default if this uplink was added automatically " "and counts as 'Open Uplink'." @@ -652,7 +679,12 @@ msgstr "" msgid "Trigger Delay" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:513 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:449 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1005 +msgid "Use system certificates" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:548 msgid "Use the specified MAC address for this uplink." msgstr "" @@ -660,15 +692,15 @@ msgstr "" msgid "User Agent" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:634 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:669 msgid "VPN Hook" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:666 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:701 msgid "VPN Interface" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:651 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:686 msgid "VPN Service" msgstr "" @@ -676,17 +708,22 @@ msgstr "" msgid "VPN Settings" msgstr "" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:449 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1005 +msgid "Validate server certificate using built-in system CA bundle" +msgstr "" + #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:305 msgid "Verbose Debug Logging" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:313 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:903 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:314 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:943 msgid "WPA Ent. (CCMP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:314 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:904 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:315 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:944 msgid "WPA Ent. (TKIP)" msgstr "" @@ -695,66 +732,71 @@ msgid "WPA Flags" msgstr "" #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:304 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:894 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:933 msgid "WPA Pers." msgstr "" #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:305 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:895 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:934 msgid "WPA Pers. (CCMP)" msgstr "" #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:306 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:896 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:935 msgid "WPA Pers. (TKIP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:315 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:905 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:316 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:945 msgid "WPA/WPA2 Ent. (CCMP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:316 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:906 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:317 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:946 msgid "WPA/WPA2 Ent. (TKIP)" msgstr "" #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:307 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:897 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:936 msgid "WPA/WPA2 Pers. (CCMP)" msgstr "" #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:308 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:898 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:937 msgid "WPA/WPA2 Pers. (TKIP)" msgstr "" #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:311 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:901 -msgid "WPA2 Ent. (CCMP)" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:940 +msgid "WPA2 Ent." msgstr "" #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:312 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:902 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:941 +msgid "WPA2 Ent. (CCMP)" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:313 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:942 msgid "WPA2 Ent. (TKIP)" msgstr "" #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:301 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:891 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:930 msgid "WPA2 Pers." msgstr "" #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:302 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:892 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:931 msgid "WPA2 Pers. (CCMP)" msgstr "" #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:303 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:893 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:932 msgid "WPA2 Pers. (TKIP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:900 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:939 msgid "WPA2/WPA3 Ent." msgstr "" @@ -763,11 +805,11 @@ msgid "WPA2/WPA3 Ent. (CCMP)" msgstr "" #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:300 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:890 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:929 msgid "WPA2/WPA3 Pers. (CCMP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:899 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:938 msgid "WPA3 Ent." msgstr "" @@ -775,16 +817,16 @@ msgstr "" msgid "WPA3 Ent. (CCMP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:907 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:947 msgid "WPA3 OWE (CCMP)" msgstr "" #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:299 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:889 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:928 msgid "WPA3 Pers. (SAE)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:721 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:756 msgid "Wireless Scan" msgstr "" @@ -796,18 +838,18 @@ msgstr "" msgid "Wireless Stations" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:412 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:937 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:421 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:981 msgid "auth=MSCHAPV2" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:411 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:936 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:420 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:980 msgid "auth=PAP" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:318 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:908 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:319 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:948 msgid "none" msgstr "" @@ -845,8 +887,5 @@ msgstr "" #~ msgid "Force TKIP and CCMP (AES)" #~ msgstr "Forza TKIP e CCMP (AES)" -#~ msgid "Identity" -#~ msgstr "Identità" - #~ msgid "Loading" #~ msgstr "Caricamento" diff --git a/applications/luci-app-travelmate/po/ja/travelmate.po b/applications/luci-app-travelmate/po/ja/travelmate.po index 2b62dc73af..a9465c24ba 100644 --- a/applications/luci-app-travelmate/po/ja/travelmate.po +++ b/applications/luci-app-travelmate/po/ja/travelmate.po @@ -21,11 +21,11 @@ msgstr "" msgid "AP QR-Codes..." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:962 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1030 msgid "Add Uplink %q" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:819 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:858 msgid "Add Uplink..." msgstr "" @@ -38,16 +38,21 @@ msgid "" "Additional trigger delay in seconds before travelmate processing begins." msgstr "Travelmate の処理が開始されるまでの、追加の遅延時間(秒)です。" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:402 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:926 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:430 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:987 +msgid "Anonymous Identity" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:411 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:970 msgid "Authentication" msgstr "認証" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:495 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:530 msgid "Auto Added Open Uplink" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:574 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:609 msgid "Auto Login Script" msgstr "自動ログイン スクリプト" @@ -55,7 +60,7 @@ msgstr "自動ログイン スクリプト" msgid "AutoAdd Open Uplinks" 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:592 msgid "" "Automatically (re-)enable the uplink after n minutes, e.g. after " "failed login attempts.
The default of '0' disables this feature." @@ -69,13 +74,13 @@ msgstr "" "ホテルのキャプティブ ポータルのような、オープンなアップリンクを自動的に無線設" "定に追加します。" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:539 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:574 msgid "" "Automatically disable the uplink after n minutes, e.g. for timed " "connections.
The default of '0' disables this feature." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:634 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:669 msgid "" "Automatically handle VPN connections.
Please note: This feature " "requires the additional configuration of Wireguard or OpenVPNgreen." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:403 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:928 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:412 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:972 msgid "PAP" msgstr "" -#: 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:922 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:406 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:966 msgid "PEAP" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:385 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:911 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:389 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:396 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:951 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:957 msgid "Password" msgstr "パスワード" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:436 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:955 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:472 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1024 msgid "Password of Private Key" msgstr "秘密鍵のパスワード" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:421 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:943 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:456 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1011 msgid "Path to CA-Certificate" msgstr "CA証明書のパス" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:426 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:947 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:462 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1016 msgid "Path to Client-Certificate" msgstr "クライアント証明書のパス" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:431 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:951 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:467 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1020 msgid "Path to Private Key" msgstr "秘密鍵のパス" @@ -477,10 +499,15 @@ msgid "" "WLAN credentials to your mobile devices." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:732 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:767 msgid "Repeat Scan" msgstr "" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:441 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:998 +msgid "Required" +msgstr "" + #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:277 msgid "Restart Interface" msgstr "" @@ -499,18 +526,18 @@ msgid "Run Flags" msgstr "実行フラグ" #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:290 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:451 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:713 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:868 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:486 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:748 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:907 msgid "SSID" msgstr "SSID" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:864 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:903 msgid "SSID (hidden)" msgstr "SSID(ステルス)" #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:64 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:973 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1041 msgid "Save" msgstr "保存" @@ -518,11 +545,11 @@ msgstr "保存" msgid "Scan Limit" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:697 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:732 msgid "Scan on" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:613 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:648 msgid "Script Arguments" msgstr "" @@ -546,13 +573,13 @@ msgstr "設定" msgid "Signal Quality Threshold" msgstr "シグナル品質閾値" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:614 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:649 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:719 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:754 msgid "Starting wireless scan on '" msgstr "" @@ -572,17 +599,17 @@ msgstr "" msgid "Status / Version" msgstr "ステータス / バージョン" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:711 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:746 msgid "Strength" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:394 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:920 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:404 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:964 msgid "TLS" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:395 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:921 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:405 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:965 msgid "TTLS" msgstr "" @@ -598,7 +625,7 @@ msgstr "" msgid "The interface metric" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:666 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:701 msgid "The logical vpn network interface, e.g. 'wg0' or 'tun0'." msgstr "" @@ -631,7 +658,7 @@ msgstr "" msgid "The uplink interface name" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:496 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:531 msgid "" "This option is selected by default if this uplink was added automatically " "and counts as 'Open Uplink'." @@ -664,7 +691,12 @@ msgstr "インターネット可用性が無い場合をエラーとして扱い msgid "Trigger Delay" msgstr "トリガ遅延" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:513 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:449 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1005 +msgid "Use system certificates" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:548 msgid "Use the specified MAC address for this uplink." msgstr "" @@ -672,15 +704,15 @@ msgstr "" msgid "User Agent" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:634 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:669 msgid "VPN Hook" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:666 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:701 msgid "VPN Interface" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:651 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:686 msgid "VPN Service" msgstr "" @@ -688,17 +720,22 @@ msgstr "" msgid "VPN Settings" msgstr "" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:449 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1005 +msgid "Validate server certificate using built-in system CA bundle" +msgstr "" + #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:305 msgid "Verbose Debug Logging" msgstr "詳細なデバッグ ログ" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:313 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:903 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:314 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:943 msgid "WPA Ent. (CCMP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:314 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:904 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:315 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:944 msgid "WPA Ent. (TKIP)" msgstr "" @@ -707,66 +744,71 @@ msgid "WPA Flags" msgstr "" #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:304 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:894 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:933 msgid "WPA Pers." msgstr "" #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:305 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:895 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:934 msgid "WPA Pers. (CCMP)" msgstr "" #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:306 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:896 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:935 msgid "WPA Pers. (TKIP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:315 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:905 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:316 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:945 msgid "WPA/WPA2 Ent. (CCMP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:316 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:906 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:317 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:946 msgid "WPA/WPA2 Ent. (TKIP)" msgstr "" #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:307 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:897 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:936 msgid "WPA/WPA2 Pers. (CCMP)" msgstr "" #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:308 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:898 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:937 msgid "WPA/WPA2 Pers. (TKIP)" msgstr "" #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:311 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:901 -msgid "WPA2 Ent. (CCMP)" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:940 +msgid "WPA2 Ent." msgstr "" #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:312 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:902 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:941 +msgid "WPA2 Ent. (CCMP)" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:313 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:942 msgid "WPA2 Ent. (TKIP)" msgstr "" #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:301 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:891 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:930 msgid "WPA2 Pers." msgstr "" #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:302 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:892 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:931 msgid "WPA2 Pers. (CCMP)" msgstr "" #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:303 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:893 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:932 msgid "WPA2 Pers. (TKIP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:900 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:939 msgid "WPA2/WPA3 Ent." msgstr "" @@ -775,11 +817,11 @@ msgid "WPA2/WPA3 Ent. (CCMP)" msgstr "" #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:300 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:890 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:929 msgid "WPA2/WPA3 Pers. (CCMP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:899 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:938 msgid "WPA3 Ent." msgstr "" @@ -787,16 +829,16 @@ msgstr "" msgid "WPA3 Ent. (CCMP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:907 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:947 msgid "WPA3 OWE (CCMP)" msgstr "" #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:299 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:889 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:928 msgid "WPA3 Pers. (SAE)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:721 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:756 msgid "Wireless Scan" msgstr "無線スキャン" @@ -808,18 +850,18 @@ msgstr "" msgid "Wireless Stations" msgstr "無線ステーション" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:412 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:937 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:421 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:981 msgid "auth=MSCHAPV2" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:411 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:936 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:420 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:980 msgid "auth=PAP" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:318 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:908 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:319 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:948 msgid "none" msgstr "なし" @@ -964,9 +1006,6 @@ msgstr "" #~ msgid "Grant UCI access for luci-app-travelmate" #~ msgstr "luci-app-travelmate に UCI アクセスを許可" -#~ msgid "Identity" -#~ msgstr "識別子" - #~ msgid "Input file not found, please check your configuration." #~ msgstr "入力ファイルが見つかりません。設定を確認してください。" diff --git a/applications/luci-app-travelmate/po/ko/travelmate.po b/applications/luci-app-travelmate/po/ko/travelmate.po index d9019a1e45..7aaf9bb940 100644 --- a/applications/luci-app-travelmate/po/ko/travelmate.po +++ b/applications/luci-app-travelmate/po/ko/travelmate.po @@ -18,11 +18,11 @@ msgstr "" msgid "AP QR-Codes..." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:962 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1030 msgid "Add Uplink %q" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:819 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:858 msgid "Add Uplink..." msgstr "" @@ -35,16 +35,21 @@ msgid "" "Additional trigger delay in seconds before travelmate processing begins." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:402 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:926 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:430 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:987 +msgid "Anonymous Identity" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:411 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:970 msgid "Authentication" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:495 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:530 msgid "Auto Added Open Uplink" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:574 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:609 msgid "Auto Login Script" msgstr "" @@ -52,7 +57,7 @@ msgstr "" msgid "AutoAdd Open Uplinks" 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:592 msgid "" "Automatically (re-)enable the uplink after n minutes, e.g. after " "failed login attempts.
The default of '0' disables this feature." @@ -64,13 +69,13 @@ msgid "" "config." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:539 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:574 msgid "" "Automatically disable the uplink after n minutes, e.g. for timed " "connections.
The default of '0' disables this feature." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:634 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:669 msgid "" "Automatically handle VPN connections.
Please note: This feature " "requires the additional configuration of Wireguard or OpenVPNgreen." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:403 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:928 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:412 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:972 msgid "PAP" msgstr "" -#: 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:922 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:406 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:966 msgid "PEAP" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:385 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:911 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:389 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:396 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:951 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:957 msgid "Password" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:436 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:955 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:472 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1024 msgid "Password of Private Key" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:421 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:943 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:456 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1011 msgid "Path to CA-Certificate" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:426 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:947 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:462 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1016 msgid "Path to Client-Certificate" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:431 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:951 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:467 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1020 msgid "Path to Private Key" msgstr "" @@ -466,10 +488,15 @@ msgid "" "WLAN credentials to your mobile devices." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:732 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:767 msgid "Repeat Scan" msgstr "" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:441 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:998 +msgid "Required" +msgstr "" + #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:277 msgid "Restart Interface" msgstr "" @@ -488,18 +515,18 @@ msgid "Run Flags" msgstr "" #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:290 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:451 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:713 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:868 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:486 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:748 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:907 msgid "SSID" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:864 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:903 msgid "SSID (hidden)" msgstr "" #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:64 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:973 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1041 msgid "Save" msgstr "" @@ -507,11 +534,11 @@ msgstr "" msgid "Scan Limit" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:697 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:732 msgid "Scan on" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:613 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:648 msgid "Script Arguments" msgstr "" @@ -535,13 +562,13 @@ msgstr "" msgid "Signal Quality Threshold" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:614 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:649 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:719 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:754 msgid "Starting wireless scan on '" msgstr "" @@ -561,17 +588,17 @@ msgstr "" msgid "Status / Version" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:711 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:746 msgid "Strength" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:394 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:920 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:404 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:964 msgid "TLS" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:395 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:921 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:405 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:965 msgid "TTLS" msgstr "" @@ -587,7 +614,7 @@ msgstr "" msgid "The interface metric" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:666 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:701 msgid "The logical vpn network interface, e.g. 'wg0' or 'tun0'." msgstr "" @@ -618,7 +645,7 @@ msgstr "" msgid "The uplink interface name" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:496 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:531 msgid "" "This option is selected by default if this uplink was added automatically " "and counts as 'Open Uplink'." @@ -651,7 +678,12 @@ msgstr "" msgid "Trigger Delay" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:513 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:449 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1005 +msgid "Use system certificates" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:548 msgid "Use the specified MAC address for this uplink." msgstr "" @@ -659,15 +691,15 @@ msgstr "" msgid "User Agent" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:634 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:669 msgid "VPN Hook" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:666 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:701 msgid "VPN Interface" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:651 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:686 msgid "VPN Service" msgstr "" @@ -675,17 +707,22 @@ msgstr "" msgid "VPN Settings" msgstr "" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:449 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1005 +msgid "Validate server certificate using built-in system CA bundle" +msgstr "" + #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:305 msgid "Verbose Debug Logging" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:313 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:903 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:314 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:943 msgid "WPA Ent. (CCMP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:314 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:904 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:315 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:944 msgid "WPA Ent. (TKIP)" msgstr "" @@ -694,66 +731,71 @@ msgid "WPA Flags" msgstr "" #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:304 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:894 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:933 msgid "WPA Pers." msgstr "" #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:305 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:895 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:934 msgid "WPA Pers. (CCMP)" msgstr "" #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:306 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:896 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:935 msgid "WPA Pers. (TKIP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:315 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:905 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:316 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:945 msgid "WPA/WPA2 Ent. (CCMP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:316 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:906 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:317 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:946 msgid "WPA/WPA2 Ent. (TKIP)" msgstr "" #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:307 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:897 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:936 msgid "WPA/WPA2 Pers. (CCMP)" msgstr "" #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:308 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:898 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:937 msgid "WPA/WPA2 Pers. (TKIP)" msgstr "" #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:311 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:901 -msgid "WPA2 Ent. (CCMP)" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:940 +msgid "WPA2 Ent." msgstr "" #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:312 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:902 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:941 +msgid "WPA2 Ent. (CCMP)" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:313 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:942 msgid "WPA2 Ent. (TKIP)" msgstr "" #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:301 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:891 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:930 msgid "WPA2 Pers." msgstr "" #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:302 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:892 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:931 msgid "WPA2 Pers. (CCMP)" msgstr "" #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:303 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:893 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:932 msgid "WPA2 Pers. (TKIP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:900 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:939 msgid "WPA2/WPA3 Ent." msgstr "" @@ -762,11 +804,11 @@ msgid "WPA2/WPA3 Ent. (CCMP)" msgstr "" #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:300 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:890 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:929 msgid "WPA2/WPA3 Pers. (CCMP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:899 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:938 msgid "WPA3 Ent." msgstr "" @@ -774,16 +816,16 @@ msgstr "" msgid "WPA3 Ent. (CCMP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:907 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:947 msgid "WPA3 OWE (CCMP)" msgstr "" #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:299 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:889 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:928 msgid "WPA3 Pers. (SAE)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:721 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:756 msgid "Wireless Scan" msgstr "" @@ -795,18 +837,18 @@ msgstr "" msgid "Wireless Stations" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:412 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:937 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:421 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:981 msgid "auth=MSCHAPV2" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:411 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:936 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:420 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:980 msgid "auth=PAP" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:318 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:908 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:319 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:948 msgid "none" msgstr "없음" diff --git a/applications/luci-app-travelmate/po/mr/travelmate.po b/applications/luci-app-travelmate/po/mr/travelmate.po index ea27aaa76a..bd1e8cba11 100644 --- a/applications/luci-app-travelmate/po/mr/travelmate.po +++ b/applications/luci-app-travelmate/po/mr/travelmate.po @@ -18,11 +18,11 @@ msgstr "" msgid "AP QR-Codes..." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:962 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1030 msgid "Add Uplink %q" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:819 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:858 msgid "Add Uplink..." msgstr "" @@ -35,16 +35,21 @@ msgid "" "Additional trigger delay in seconds before travelmate processing begins." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:402 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:926 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:430 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:987 +msgid "Anonymous Identity" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:411 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:970 msgid "Authentication" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:495 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:530 msgid "Auto Added Open Uplink" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:574 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:609 msgid "Auto Login Script" msgstr "" @@ -52,7 +57,7 @@ msgstr "" msgid "AutoAdd Open Uplinks" 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:592 msgid "" "Automatically (re-)enable the uplink after n minutes, e.g. after " "failed login attempts.
The default of '0' disables this feature." @@ -64,13 +69,13 @@ msgid "" "config." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:539 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:574 msgid "" "Automatically disable the uplink after n minutes, e.g. for timed " "connections.
The default of '0' disables this feature." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:634 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:669 msgid "" "Automatically handle VPN connections.
Please note: This feature " "requires the additional configuration of Wireguard or OpenVPNgreen." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:403 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:928 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:412 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:972 msgid "PAP" msgstr "" -#: 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:922 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:406 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:966 msgid "PEAP" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:385 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:911 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:389 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:396 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:951 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:957 msgid "Password" msgstr "संकेतशब्द" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:436 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:955 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:472 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1024 msgid "Password of Private Key" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:421 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:943 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:456 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1011 msgid "Path to CA-Certificate" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:426 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:947 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:462 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1016 msgid "Path to Client-Certificate" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:431 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:951 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:467 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1020 msgid "Path to Private Key" msgstr "" @@ -466,10 +488,15 @@ msgid "" "WLAN credentials to your mobile devices." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:732 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:767 msgid "Repeat Scan" msgstr "" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:441 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:998 +msgid "Required" +msgstr "" + #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:277 msgid "Restart Interface" msgstr "" @@ -488,18 +515,18 @@ msgid "Run Flags" msgstr "" #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:290 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:451 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:713 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:868 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:486 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:748 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:907 msgid "SSID" msgstr "SSID" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:864 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:903 msgid "SSID (hidden)" msgstr "" #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:64 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:973 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1041 msgid "Save" msgstr "" @@ -507,11 +534,11 @@ msgstr "" msgid "Scan Limit" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:697 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:732 msgid "Scan on" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:613 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:648 msgid "Script Arguments" msgstr "" @@ -535,13 +562,13 @@ msgstr "" msgid "Signal Quality Threshold" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:614 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:649 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:719 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:754 msgid "Starting wireless scan on '" msgstr "" @@ -561,17 +588,17 @@ msgstr "" msgid "Status / Version" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:711 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:746 msgid "Strength" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:394 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:920 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:404 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:964 msgid "TLS" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:395 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:921 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:405 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:965 msgid "TTLS" msgstr "" @@ -587,7 +614,7 @@ msgstr "" msgid "The interface metric" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:666 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:701 msgid "The logical vpn network interface, e.g. 'wg0' or 'tun0'." msgstr "" @@ -618,7 +645,7 @@ msgstr "" msgid "The uplink interface name" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:496 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:531 msgid "" "This option is selected by default if this uplink was added automatically " "and counts as 'Open Uplink'." @@ -651,7 +678,12 @@ msgstr "" msgid "Trigger Delay" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:513 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:449 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1005 +msgid "Use system certificates" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:548 msgid "Use the specified MAC address for this uplink." msgstr "" @@ -659,15 +691,15 @@ msgstr "" msgid "User Agent" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:634 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:669 msgid "VPN Hook" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:666 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:701 msgid "VPN Interface" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:651 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:686 msgid "VPN Service" msgstr "" @@ -675,17 +707,22 @@ msgstr "" msgid "VPN Settings" msgstr "" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:449 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1005 +msgid "Validate server certificate using built-in system CA bundle" +msgstr "" + #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:305 msgid "Verbose Debug Logging" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:313 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:903 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:314 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:943 msgid "WPA Ent. (CCMP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:314 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:904 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:315 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:944 msgid "WPA Ent. (TKIP)" msgstr "" @@ -694,66 +731,71 @@ msgid "WPA Flags" msgstr "" #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:304 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:894 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:933 msgid "WPA Pers." msgstr "" #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:305 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:895 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:934 msgid "WPA Pers. (CCMP)" msgstr "" #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:306 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:896 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:935 msgid "WPA Pers. (TKIP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:315 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:905 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:316 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:945 msgid "WPA/WPA2 Ent. (CCMP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:316 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:906 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:317 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:946 msgid "WPA/WPA2 Ent. (TKIP)" msgstr "" #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:307 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:897 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:936 msgid "WPA/WPA2 Pers. (CCMP)" msgstr "" #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:308 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:898 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:937 msgid "WPA/WPA2 Pers. (TKIP)" msgstr "" #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:311 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:901 -msgid "WPA2 Ent. (CCMP)" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:940 +msgid "WPA2 Ent." msgstr "" #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:312 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:902 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:941 +msgid "WPA2 Ent. (CCMP)" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:313 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:942 msgid "WPA2 Ent. (TKIP)" msgstr "" #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:301 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:891 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:930 msgid "WPA2 Pers." msgstr "" #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:302 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:892 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:931 msgid "WPA2 Pers. (CCMP)" msgstr "" #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:303 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:893 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:932 msgid "WPA2 Pers. (TKIP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:900 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:939 msgid "WPA2/WPA3 Ent." msgstr "" @@ -762,11 +804,11 @@ msgid "WPA2/WPA3 Ent. (CCMP)" msgstr "" #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:300 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:890 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:929 msgid "WPA2/WPA3 Pers. (CCMP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:899 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:938 msgid "WPA3 Ent." msgstr "" @@ -774,16 +816,16 @@ msgstr "" msgid "WPA3 Ent. (CCMP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:907 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:947 msgid "WPA3 OWE (CCMP)" msgstr "" #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:299 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:889 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:928 msgid "WPA3 Pers. (SAE)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:721 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:756 msgid "Wireless Scan" msgstr "" @@ -795,18 +837,18 @@ msgstr "" msgid "Wireless Stations" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:412 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:937 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:421 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:981 msgid "auth=MSCHAPV2" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:411 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:936 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:420 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:980 msgid "auth=PAP" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:318 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:908 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:319 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:948 msgid "none" msgstr "" diff --git a/applications/luci-app-travelmate/po/ms/travelmate.po b/applications/luci-app-travelmate/po/ms/travelmate.po index c776caf72f..42a824c17e 100644 --- a/applications/luci-app-travelmate/po/ms/travelmate.po +++ b/applications/luci-app-travelmate/po/ms/travelmate.po @@ -18,11 +18,11 @@ msgstr "" msgid "AP QR-Codes..." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:962 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1030 msgid "Add Uplink %q" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:819 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:858 msgid "Add Uplink..." msgstr "" @@ -35,16 +35,21 @@ msgid "" "Additional trigger delay in seconds before travelmate processing begins." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:402 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:926 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:430 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:987 +msgid "Anonymous Identity" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:411 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:970 msgid "Authentication" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:495 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:530 msgid "Auto Added Open Uplink" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:574 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:609 msgid "Auto Login Script" msgstr "" @@ -52,7 +57,7 @@ msgstr "" msgid "AutoAdd Open Uplinks" 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:592 msgid "" "Automatically (re-)enable the uplink after n minutes, e.g. after " "failed login attempts.
The default of '0' disables this feature." @@ -64,13 +69,13 @@ msgid "" "config." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:539 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:574 msgid "" "Automatically disable the uplink after n minutes, e.g. for timed " "connections.
The default of '0' disables this feature." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:634 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:669 msgid "" "Automatically handle VPN connections.
Please note: This feature " "requires the additional configuration of Wireguard or OpenVPNgreen." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:403 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:928 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:412 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:972 msgid "PAP" msgstr "" -#: 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:922 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:406 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:966 msgid "PEAP" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:385 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:911 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:389 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:396 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:951 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:957 msgid "Password" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:436 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:955 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:472 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1024 msgid "Password of Private Key" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:421 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:943 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:456 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1011 msgid "Path to CA-Certificate" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:426 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:947 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:462 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1016 msgid "Path to Client-Certificate" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:431 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:951 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:467 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1020 msgid "Path to Private Key" msgstr "" @@ -466,10 +488,15 @@ msgid "" "WLAN credentials to your mobile devices." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:732 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:767 msgid "Repeat Scan" msgstr "" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:441 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:998 +msgid "Required" +msgstr "" + #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:277 msgid "Restart Interface" msgstr "" @@ -488,18 +515,18 @@ msgid "Run Flags" msgstr "" #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:290 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:451 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:713 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:868 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:486 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:748 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:907 msgid "SSID" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:864 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:903 msgid "SSID (hidden)" msgstr "" #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:64 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:973 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1041 msgid "Save" msgstr "" @@ -507,11 +534,11 @@ msgstr "" msgid "Scan Limit" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:697 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:732 msgid "Scan on" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:613 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:648 msgid "Script Arguments" msgstr "" @@ -535,13 +562,13 @@ msgstr "" msgid "Signal Quality Threshold" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:614 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:649 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:719 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:754 msgid "Starting wireless scan on '" msgstr "" @@ -561,17 +588,17 @@ msgstr "" msgid "Status / Version" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:711 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:746 msgid "Strength" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:394 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:920 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:404 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:964 msgid "TLS" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:395 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:921 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:405 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:965 msgid "TTLS" msgstr "" @@ -587,7 +614,7 @@ msgstr "" msgid "The interface metric" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:666 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:701 msgid "The logical vpn network interface, e.g. 'wg0' or 'tun0'." msgstr "" @@ -618,7 +645,7 @@ msgstr "" msgid "The uplink interface name" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:496 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:531 msgid "" "This option is selected by default if this uplink was added automatically " "and counts as 'Open Uplink'." @@ -651,7 +678,12 @@ msgstr "" msgid "Trigger Delay" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:513 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:449 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1005 +msgid "Use system certificates" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:548 msgid "Use the specified MAC address for this uplink." msgstr "" @@ -659,15 +691,15 @@ msgstr "" msgid "User Agent" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:634 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:669 msgid "VPN Hook" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:666 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:701 msgid "VPN Interface" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:651 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:686 msgid "VPN Service" msgstr "" @@ -675,17 +707,22 @@ msgstr "" msgid "VPN Settings" msgstr "" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:449 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1005 +msgid "Validate server certificate using built-in system CA bundle" +msgstr "" + #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:305 msgid "Verbose Debug Logging" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:313 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:903 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:314 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:943 msgid "WPA Ent. (CCMP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:314 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:904 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:315 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:944 msgid "WPA Ent. (TKIP)" msgstr "" @@ -694,66 +731,71 @@ msgid "WPA Flags" msgstr "" #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:304 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:894 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:933 msgid "WPA Pers." msgstr "" #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:305 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:895 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:934 msgid "WPA Pers. (CCMP)" msgstr "" #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:306 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:896 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:935 msgid "WPA Pers. (TKIP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:315 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:905 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:316 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:945 msgid "WPA/WPA2 Ent. (CCMP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:316 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:906 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:317 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:946 msgid "WPA/WPA2 Ent. (TKIP)" msgstr "" #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:307 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:897 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:936 msgid "WPA/WPA2 Pers. (CCMP)" msgstr "" #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:308 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:898 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:937 msgid "WPA/WPA2 Pers. (TKIP)" msgstr "" #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:311 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:901 -msgid "WPA2 Ent. (CCMP)" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:940 +msgid "WPA2 Ent." msgstr "" #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:312 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:902 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:941 +msgid "WPA2 Ent. (CCMP)" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:313 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:942 msgid "WPA2 Ent. (TKIP)" msgstr "" #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:301 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:891 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:930 msgid "WPA2 Pers." msgstr "" #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:302 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:892 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:931 msgid "WPA2 Pers. (CCMP)" msgstr "" #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:303 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:893 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:932 msgid "WPA2 Pers. (TKIP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:900 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:939 msgid "WPA2/WPA3 Ent." msgstr "" @@ -762,11 +804,11 @@ msgid "WPA2/WPA3 Ent. (CCMP)" msgstr "" #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:300 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:890 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:929 msgid "WPA2/WPA3 Pers. (CCMP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:899 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:938 msgid "WPA3 Ent." msgstr "" @@ -774,16 +816,16 @@ msgstr "" msgid "WPA3 Ent. (CCMP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:907 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:947 msgid "WPA3 OWE (CCMP)" msgstr "" #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:299 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:889 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:928 msgid "WPA3 Pers. (SAE)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:721 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:756 msgid "Wireless Scan" msgstr "" @@ -795,18 +837,18 @@ msgstr "" msgid "Wireless Stations" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:412 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:937 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:421 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:981 msgid "auth=MSCHAPV2" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:411 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:936 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:420 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:980 msgid "auth=PAP" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:318 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:908 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:319 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:948 msgid "none" msgstr "" diff --git a/applications/luci-app-travelmate/po/nb_NO/travelmate.po b/applications/luci-app-travelmate/po/nb_NO/travelmate.po index 408f95817a..e00fb526d1 100644 --- a/applications/luci-app-travelmate/po/nb_NO/travelmate.po +++ b/applications/luci-app-travelmate/po/nb_NO/travelmate.po @@ -18,11 +18,11 @@ msgstr "" msgid "AP QR-Codes..." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:962 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1030 msgid "Add Uplink %q" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:819 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:858 msgid "Add Uplink..." msgstr "" @@ -35,16 +35,21 @@ msgid "" "Additional trigger delay in seconds before travelmate processing begins." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:402 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:926 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:430 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:987 +msgid "Anonymous Identity" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:411 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:970 msgid "Authentication" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:495 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:530 msgid "Auto Added Open Uplink" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:574 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:609 msgid "Auto Login Script" msgstr "" @@ -52,7 +57,7 @@ msgstr "" msgid "AutoAdd Open Uplinks" 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:592 msgid "" "Automatically (re-)enable the uplink after n minutes, e.g. after " "failed login attempts.
The default of '0' disables this feature." @@ -64,13 +69,13 @@ msgid "" "config." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:539 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:574 msgid "" "Automatically disable the uplink after n minutes, e.g. for timed " "connections.
The default of '0' disables this feature." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:634 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:669 msgid "" "Automatically handle VPN connections.
Please note: This feature " "requires the additional configuration of Wireguard or OpenVPNgreen." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:403 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:928 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:412 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:972 msgid "PAP" msgstr "" -#: 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:922 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:406 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:966 msgid "PEAP" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:385 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:911 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:389 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:396 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:951 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:957 msgid "Password" msgstr "Passord" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:436 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:955 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:472 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1024 msgid "Password of Private Key" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:421 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:943 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:456 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1011 msgid "Path to CA-Certificate" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:426 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:947 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:462 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1016 msgid "Path to Client-Certificate" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:431 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:951 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:467 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1020 msgid "Path to Private Key" msgstr "" @@ -466,10 +488,15 @@ msgid "" "WLAN credentials to your mobile devices." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:732 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:767 msgid "Repeat Scan" msgstr "" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:441 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:998 +msgid "Required" +msgstr "" + #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:277 msgid "Restart Interface" msgstr "" @@ -489,18 +516,18 @@ msgid "Run Flags" msgstr "Kjøringsflagg" #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:290 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:451 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:713 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:868 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:486 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:748 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:907 msgid "SSID" msgstr "SSID" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:864 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:903 msgid "SSID (hidden)" msgstr "" #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:64 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:973 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1041 msgid "Save" msgstr "Lagre" @@ -508,11 +535,11 @@ msgstr "Lagre" msgid "Scan Limit" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:697 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:732 msgid "Scan on" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:613 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:648 msgid "Script Arguments" msgstr "" @@ -536,13 +563,13 @@ msgstr "Innstillinger" msgid "Signal Quality Threshold" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:614 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:649 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:719 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:754 msgid "Starting wireless scan on '" msgstr "" @@ -562,17 +589,17 @@ msgstr "" msgid "Status / Version" msgstr "Status/versjon" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:711 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:746 msgid "Strength" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:394 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:920 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:404 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:964 msgid "TLS" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:395 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:921 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:405 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:965 msgid "TTLS" msgstr "" @@ -588,7 +615,7 @@ msgstr "" msgid "The interface metric" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:666 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:701 msgid "The logical vpn network interface, e.g. 'wg0' or 'tun0'." msgstr "" @@ -619,7 +646,7 @@ msgstr "" msgid "The uplink interface name" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:496 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:531 msgid "" "This option is selected by default if this uplink was added automatically " "and counts as 'Open Uplink'." @@ -652,7 +679,12 @@ msgstr "" msgid "Trigger Delay" msgstr "Utløserforsinkelse" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:513 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:449 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1005 +msgid "Use system certificates" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:548 msgid "Use the specified MAC address for this uplink." msgstr "" @@ -660,15 +692,15 @@ msgstr "" msgid "User Agent" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:634 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:669 msgid "VPN Hook" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:666 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:701 msgid "VPN Interface" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:651 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:686 msgid "VPN Service" msgstr "" @@ -676,17 +708,22 @@ msgstr "" msgid "VPN Settings" msgstr "" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:449 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1005 +msgid "Validate server certificate using built-in system CA bundle" +msgstr "" + #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:305 msgid "Verbose Debug Logging" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:313 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:903 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:314 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:943 msgid "WPA Ent. (CCMP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:314 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:904 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:315 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:944 msgid "WPA Ent. (TKIP)" msgstr "" @@ -695,66 +732,71 @@ msgid "WPA Flags" msgstr "" #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:304 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:894 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:933 msgid "WPA Pers." msgstr "" #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:305 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:895 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:934 msgid "WPA Pers. (CCMP)" msgstr "" #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:306 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:896 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:935 msgid "WPA Pers. (TKIP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:315 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:905 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:316 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:945 msgid "WPA/WPA2 Ent. (CCMP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:316 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:906 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:317 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:946 msgid "WPA/WPA2 Ent. (TKIP)" msgstr "" #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:307 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:897 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:936 msgid "WPA/WPA2 Pers. (CCMP)" msgstr "" #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:308 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:898 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:937 msgid "WPA/WPA2 Pers. (TKIP)" msgstr "" #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:311 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:901 -msgid "WPA2 Ent. (CCMP)" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:940 +msgid "WPA2 Ent." msgstr "" #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:312 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:902 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:941 +msgid "WPA2 Ent. (CCMP)" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:313 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:942 msgid "WPA2 Ent. (TKIP)" msgstr "" #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:301 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:891 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:930 msgid "WPA2 Pers." msgstr "" #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:302 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:892 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:931 msgid "WPA2 Pers. (CCMP)" msgstr "" #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:303 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:893 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:932 msgid "WPA2 Pers. (TKIP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:900 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:939 msgid "WPA2/WPA3 Ent." msgstr "" @@ -763,11 +805,11 @@ msgid "WPA2/WPA3 Ent. (CCMP)" msgstr "" #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:300 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:890 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:929 msgid "WPA2/WPA3 Pers. (CCMP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:899 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:938 msgid "WPA3 Ent." msgstr "" @@ -775,16 +817,16 @@ msgstr "" msgid "WPA3 Ent. (CCMP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:907 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:947 msgid "WPA3 OWE (CCMP)" msgstr "" #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:299 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:889 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:928 msgid "WPA3 Pers. (SAE)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:721 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:756 msgid "Wireless Scan" msgstr "" @@ -796,18 +838,18 @@ msgstr "" msgid "Wireless Stations" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:412 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:937 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:421 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:981 msgid "auth=MSCHAPV2" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:411 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:936 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:420 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:980 msgid "auth=PAP" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:318 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:908 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:319 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:948 msgid "none" msgstr "" diff --git a/applications/luci-app-travelmate/po/pl/travelmate.po b/applications/luci-app-travelmate/po/pl/travelmate.po index 070aaf8283..0862f32c48 100644 --- a/applications/luci-app-travelmate/po/pl/travelmate.po +++ b/applications/luci-app-travelmate/po/pl/travelmate.po @@ -1,6 +1,6 @@ msgid "" msgstr "" -"PO-Revision-Date: 2021-08-22 19:59+0000\n" +"PO-Revision-Date: 2021-09-05 21:35+0000\n" "Last-Translator: Matthaiks \n" "Language-Team: Polish \n" @@ -19,11 +19,11 @@ msgstr "-- Wybór AP --" msgid "AP QR-Codes..." msgstr "Kody QR AP..." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:962 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1030 msgid "Add Uplink %q" msgstr "Dodaj Uplink %q" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:819 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:858 msgid "Add Uplink..." msgstr "Dodaj Uplink..." @@ -38,16 +38,21 @@ msgstr "" "Dodatkowe opóźnienie wyzwalacza w sekundach zanim travelmate zacznie " "przetwarzać." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:402 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:926 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:430 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:987 +msgid "Anonymous Identity" +msgstr "Tożsamość anonimowa" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:411 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:970 msgid "Authentication" msgstr "Uwierzytelnienie" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:495 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:530 msgid "Auto Added Open Uplink" msgstr "Automatycznie dodane otwarte łącza uplink" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:574 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:609 msgid "Auto Login Script" msgstr "Automatyczny skrypt logowania" @@ -55,7 +60,7 @@ msgstr "Automatyczny skrypt logowania" msgid "AutoAdd Open Uplinks" msgstr "Automatycznie dodawaj otwarte łącza uplink" -#: 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:592 msgid "" "Automatically (re-)enable the uplink after n minutes, e.g. after " "failed login attempts.
The default of '0' disables this feature." @@ -71,7 +76,7 @@ msgstr "" "Automatycznie dodawaj otwarte łącza zwrotne takie jak strony logowania w " "sieci w hotelu do swojej bezprzewodowej konfiguracji." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:539 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:574 msgid "" "Automatically disable the uplink after n minutes, e.g. for timed " "connections.
The default of '0' disables this feature." @@ -79,7 +84,7 @@ msgstr "" "Automatycznie wyłącza łącze uplink po n minutach, np. dla połączeń " "czasowych.
Domyślna wartość '0' wyłącza tę funkcję." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:634 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:669 msgid "" "Automatically handle VPN connections.
Please note: This feature " "requires the additional configuration of Wireguard or OpenVPNWireguard lub OpenVPN." #: 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:462 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:714 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:882 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:497 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:749 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:921 msgid "BSSID" msgstr "BSSID" -#: 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:929 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:413 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:973 msgid "CHAP" msgstr "CHAP" @@ -108,7 +113,7 @@ msgstr "Wykrywanie logowania w sieci" msgid "Captive Portal URL" msgstr "Adres URL portalu przechwytującego" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:712 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:747 msgid "Channel" msgstr "Kanał" @@ -136,11 +141,11 @@ msgstr "" "Uwaga: przy pierwszym uruchomieniu wywołaj raz 'Kreatora " "interfejsu', aby dokonać niezbędnych ustawień sieci i zapory." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:484 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:519 msgid "Connection End" msgstr "Koniec połączenia" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:556 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:591 msgid "Connection End Expiry" msgstr "Wygaśnięcie zakończenia połączenia" @@ -148,11 +153,11 @@ msgstr "Wygaśnięcie zakończenia połączenia" msgid "Connection Limit" msgstr "Limit połączenia" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:473 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:508 msgid "Connection Start" msgstr "Rozpoczęcie połączenia" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:538 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:573 msgid "Connection Start Expiry" msgstr "Wygaśnięcie zakończenia połączenia" @@ -160,14 +165,19 @@ msgstr "Wygaśnięcie zakończenia połączenia" msgid "Device" msgstr "Urządzenie" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:855 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:894 msgid "Device Name" msgstr "Nazwa urządzenia" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:439 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:996 +msgid "Disabled" +msgstr "Wyłączone" + #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:46 #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:132 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:727 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:968 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:762 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1036 msgid "Dismiss" msgstr "Odrzuć" @@ -199,28 +209,28 @@ msgstr "Ustawienia e-mail" msgid "E-Mail Topic" msgstr "Temat e-mail" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:407 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:932 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:416 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:976 msgid "EAP-GTC" msgstr "EAP-GTC" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:408 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:933 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:417 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:977 msgid "EAP-MD5" msgstr "EAP-MD5" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:409 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:934 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:418 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:978 msgid "EAP-MSCHAPV2" msgstr "EAP-MSCHAPV2" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:393 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:918 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:402 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:962 msgid "EAP-Method" msgstr "Metoda protokołu rozszerzonego uwierzytelniania (EAP)" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:410 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:935 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:419 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:979 msgid "EAP-TLS" msgstr "EAP-TLS" @@ -252,8 +262,8 @@ msgid "Enabled" msgstr "Włączone" #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:298 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:715 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:888 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:750 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:927 msgid "Encryption" msgstr "Szyfrowanie" @@ -261,7 +271,7 @@ msgstr "Szyfrowanie" msgid "Ext. Hooks" msgstr "Zewnętrzne Hooks'y" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:575 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:610 msgid "" "External script reference which will be called for automated captive portal " "logins." @@ -269,8 +279,8 @@ msgstr "" "Nawiązanie do zewnętrznego skryptu który będzie użyty do automatycznego " "logowania w sieci." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:397 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:923 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:407 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:967 msgid "FAST" msgstr "FAST" @@ -292,12 +302,12 @@ msgid "" msgstr "" "Jak długo travelmate powinien czekać na udane połączenie bezprzewodowe." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:417 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:940 -msgid "Identify" -msgstr "Identyfikuj" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:426 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:984 +msgid "Identity" +msgstr "Tożsamość" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:874 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:913 msgid "Ignore BSSID" msgstr "Ignoruj BSSID" @@ -305,7 +315,7 @@ msgstr "Ignoruj BSSID" msgid "Information" msgstr "Informacje" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:859 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:898 msgid "Interface Name" msgstr "Nazwa interfejsu" @@ -347,20 +357,25 @@ msgstr "" msgid "Log View" msgstr "Widok dziennika" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:512 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:547 msgid "MAC Address" msgstr "Adres MAC" -#: 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 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:414 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:974 msgid "MSCHAP" msgstr "MSCHAP" -#: 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 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:415 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:975 msgid "MSCHAPV2" msgstr "MSCHAPV2" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:434 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:991 +msgid "Mgmt. Frame Protection" +msgstr "" + #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:355 msgid "" "Minimum signal quality threshold as percent for conditional uplink (dis-) " @@ -377,7 +392,7 @@ msgstr "Kontrola błędów sieci" msgid "No travelmate related logs yet!" msgstr "Brak powiązanych dzienników travelmate!" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:317 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:318 msgid "OWE" msgstr "OWE" @@ -385,6 +400,11 @@ msgstr "OWE" msgid "On/Off" msgstr "Wł./Wył." +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:440 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:997 +msgid "Optional" +msgstr "Opcjonalne" + #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:365 msgid "Overall Timeout" msgstr "Ogólny limit czasu" @@ -409,43 +429,45 @@ msgstr "" "Przegląd wszystkich skonfigurowanych łączy uplink dla travelmate. Możesz " "edytować, usuwać lub ustalać priorytety istniejących łączy uplink, " "przeciągając i upuszczając oraz skanując w poszukiwaniu nowych.
" -"Aktualnie używane łącze uplink jest podkreślone na niebiesko, szyfrowane łącze VPN " +"Aktualnie używane łącze uplink jest podkreślone na niebiesko, szyfrowane łącze VPN " "uplink jest podkreślone na zielono." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:403 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:928 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:412 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:972 msgid "PAP" msgstr "PAP" -#: 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:922 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:406 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:966 msgid "PEAP" msgstr "PEAP" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:385 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:911 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:389 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:396 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:951 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:957 msgid "Password" msgstr "Hasło" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:436 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:955 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:472 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1024 msgid "Password of Private Key" msgstr "Hasło klucza prywatnego" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:421 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:943 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:456 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1011 msgid "Path to CA-Certificate" msgstr "Ścieżka do certyfikatu CA" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:426 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:947 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:462 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1016 msgid "Path to Client-Certificate" msgstr "Ścieżka do certyfikatu klienta" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:431 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:951 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:467 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1020 msgid "Path to Private Key" msgstr "Ścieżka do klucza prywatnego" @@ -509,10 +531,15 @@ 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:732 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:767 msgid "Repeat Scan" msgstr "Powtórz skanowanie" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:441 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:998 +msgid "Required" +msgstr "" + #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:277 msgid "Restart Interface" msgstr "Uruchom ponownie interfejs" @@ -532,18 +559,18 @@ msgid "Run Flags" msgstr "Uruchomione flagi" #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:290 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:451 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:713 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:868 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:486 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:748 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:907 msgid "SSID" msgstr "SSID" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:864 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:903 msgid "SSID (hidden)" msgstr "SSID (ukryty)" #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:64 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:973 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1041 msgid "Save" msgstr "Zapisz" @@ -551,11 +578,11 @@ msgstr "Zapisz" msgid "Scan Limit" msgstr "Ograniczenie skanowania" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:697 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:732 msgid "Scan on" msgstr "Skanowanie włączone" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:613 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:648 msgid "Script Arguments" msgstr "Argumenty skryptu" @@ -580,7 +607,7 @@ msgstr "Ustawienia" msgid "Signal Quality Threshold" msgstr "Próg jakości sygnału" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:614 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:649 msgid "" "Space separated list of additional arguments passed to the Auto Login " "Script, i.e. username and password" @@ -588,7 +615,7 @@ 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:719 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:754 msgid "Starting wireless scan on '" msgstr "Rozpoczynanie skanowania" @@ -608,17 +635,17 @@ msgstr "Stacja MAC" msgid "Status / Version" msgstr "Status / Wersja" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:711 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:746 msgid "Strength" msgstr "Siła" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:394 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:920 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:404 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:964 msgid "TLS" msgstr "TLS" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:395 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:921 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:405 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:965 msgid "TTLS" msgstr "TTLS" @@ -634,7 +661,7 @@ msgstr "Nazwa strefy zapory" msgid "The interface metric" msgstr "Metryka interfejsu" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:666 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:701 msgid "The logical vpn network interface, e.g. 'wg0' or 'tun0'." msgstr "Logiczny interfejs sieci VPN, np. „wg0” lub „tun0”." @@ -671,7 +698,7 @@ msgstr "Interfejs uplink został zaktualizowany." msgid "The uplink interface name" msgstr "Nazwa interfejsu uplink" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:496 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:531 msgid "" "This option is selected by default if this uplink was added automatically " "and counts as 'Open Uplink'." @@ -709,7 +736,12 @@ msgstr "Traktuj brak dostępu do internetu jako błąd." msgid "Trigger Delay" msgstr "Opóźnienie wyzwalacza" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:513 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:449 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1005 +msgid "Use system certificates" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:548 msgid "Use the specified MAC address for this uplink." msgstr "Użyj określonego adresu MAC dla tego łącza uplink." @@ -717,15 +749,15 @@ msgstr "Użyj określonego adresu MAC dla tego łącza uplink." msgid "User Agent" msgstr "Agent użytkownika" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:634 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:669 msgid "VPN Hook" msgstr "VPN Hook" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:666 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:701 msgid "VPN Interface" msgstr "Interfejs VPN" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:651 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:686 msgid "VPN Service" msgstr "Usługa VPN" @@ -733,17 +765,22 @@ msgstr "Usługa VPN" msgid "VPN Settings" msgstr "Ustawienia VPN" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:449 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1005 +msgid "Validate server certificate using built-in system CA bundle" +msgstr "" + #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:305 msgid "Verbose Debug Logging" msgstr "Pełne rejestrowanie debugowania" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:313 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:903 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:314 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:943 msgid "WPA Ent. (CCMP)" msgstr "WPA Ent. (CCMP)" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:314 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:904 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:315 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:944 msgid "WPA Ent. (TKIP)" msgstr "WPA Ent. (TKIP)" @@ -752,66 +789,71 @@ msgid "WPA Flags" msgstr "Flagi WPA" #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:304 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:894 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:933 msgid "WPA Pers." msgstr "WPA Pers." #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:305 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:895 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:934 msgid "WPA Pers. (CCMP)" msgstr "WPA Pers. (CCMP)" #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:306 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:896 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:935 msgid "WPA Pers. (TKIP)" msgstr "WPA Pers. (TKIP)" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:315 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:905 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:316 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:945 msgid "WPA/WPA2 Ent. (CCMP)" msgstr "WPA/WPA2 Ent. (CCMP)" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:316 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:906 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:317 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:946 msgid "WPA/WPA2 Ent. (TKIP)" msgstr "WPA/WPA2 Ent. (TKIP)" #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:307 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:897 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:936 msgid "WPA/WPA2 Pers. (CCMP)" msgstr "WPA/WPA2 Pers. (CCMP)" #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:308 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:898 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:937 msgid "WPA/WPA2 Pers. (TKIP)" msgstr "WPA/WPA2 Pers. (TKIP)" #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:311 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:901 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:940 +msgid "WPA2 Ent." +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:312 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:941 msgid "WPA2 Ent. (CCMP)" msgstr "WPA2 Ent. (CCMP)" -#: 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 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:313 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:942 msgid "WPA2 Ent. (TKIP)" msgstr "WPA2 Ent. (TKIP)" #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:301 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:891 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:930 msgid "WPA2 Pers." msgstr "WPA2 Pers." #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:302 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:892 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:931 msgid "WPA2 Pers. (CCMP)" msgstr "WPA2 Pers. (CCMP)" #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:303 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:893 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:932 msgid "WPA2 Pers. (TKIP)" msgstr "WPA2 Pers. (TKIP)" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:900 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:939 msgid "WPA2/WPA3 Ent." msgstr "WPA2/WPA3 Ent." @@ -820,11 +862,11 @@ msgid "WPA2/WPA3 Ent. (CCMP)" msgstr "WPA2/WPA3 Ent. (CCMP)" #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:300 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:890 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:929 msgid "WPA2/WPA3 Pers. (CCMP)" msgstr "WPA2/WPA3 Pers. (CCMP)" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:899 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:938 msgid "WPA3 Ent." msgstr "WPA3 Ent." @@ -832,16 +874,16 @@ msgstr "WPA3 Ent." msgid "WPA3 Ent. (CCMP)" msgstr "WPA3 Ent. (CCMP)" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:907 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:947 msgid "WPA3 OWE (CCMP)" msgstr "WPA3 OWE (CCMP)" #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:299 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:889 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:928 msgid "WPA3 Pers. (SAE)" msgstr "WPA3 Pers. (SAE)" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:721 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:756 msgid "Wireless Scan" msgstr "Bezprzewodowe skanowanie" @@ -853,18 +895,18 @@ msgstr "Ustawienia sieci bezprzewodowej" msgid "Wireless Stations" msgstr "Stacje bezprzewodowe" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:412 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:937 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:421 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:981 msgid "auth=MSCHAPV2" msgstr "auth=MSCHAPV2" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:411 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:936 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:420 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:980 msgid "auth=PAP" msgstr "auth=PAP" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:318 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:908 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:319 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:948 msgid "none" msgstr "brak" @@ -884,6 +926,9 @@ msgstr "używaj tylko pierwszego radia (radio0)" msgid "use the second radio only (radio1)" msgstr "używaj tylko drugiego radia (radio1)" +#~ msgid "Identify" +#~ msgstr "Identyfikuj" + #~ msgid "" #~ "Overview of all configured uplinks for travelmate.
You can edit, " #~ "remove or prioritize existing uplinks by drag & drop and scan for new " @@ -1062,9 +1107,6 @@ msgstr "używaj tylko drugiego radia (radio1)" #~ msgid "Grant UCI access for luci-app-travelmate" #~ msgstr "Udziel dostępu UCI do luci-app-travelmate" -#~ msgid "Identity" -#~ msgstr "Tożsamość" - #~ msgid "Input file not found, please check your configuration." #~ msgstr "" #~ "Nie znaleziono pliku wejściowego, proszę sprawdzić swoją konfigurację." diff --git a/applications/luci-app-travelmate/po/pt/travelmate.po b/applications/luci-app-travelmate/po/pt/travelmate.po index 4159c86a64..7397d5dedf 100644 --- a/applications/luci-app-travelmate/po/pt/travelmate.po +++ b/applications/luci-app-travelmate/po/pt/travelmate.po @@ -18,11 +18,11 @@ msgstr "-- Seleção do AP --" msgid "AP QR-Codes..." msgstr "Códigos QR do AP..." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:962 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1030 msgid "Add Uplink %q" msgstr "Adicionar ligação ascendente %q" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:819 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:858 msgid "Add Uplink..." msgstr "Adicionar ligação ascendente..." @@ -35,16 +35,21 @@ 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:402 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:926 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:430 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:987 +msgid "Anonymous Identity" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:411 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:970 msgid "Authentication" msgstr "Autenticação" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:495 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:530 msgid "Auto Added Open Uplink" msgstr "Ligação ascendente aberta adicionada automaticamente" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:574 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:609 msgid "Auto Login Script" msgstr "Script de Login Automático" @@ -52,7 +57,7 @@ msgstr "Script de Login Automático" msgid "AutoAdd Open Uplinks" msgstr "Adicionar ligações ascendentes abertos automaticamente" -#: 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:592 msgid "" "Automatically (re-)enable the uplink after n minutes, e.g. after " "failed login attempts.
The default of '0' disables this feature." @@ -69,7 +74,7 @@ msgstr "" "Adicionar ligações ascendentes abertas automaticamente, como portais cativos " "de hotéis, à sua configuração wireless." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:539 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:574 msgid "" "Automatically disable the uplink after n minutes, e.g. for timed " "connections.
The default of '0' disables this feature." @@ -78,7 +83,7 @@ msgstr "" "por exemplo, para conexões que forem cronometradas.
A predefinição " "'0' desativa esse recurso." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:634 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:669 msgid "" "Automatically handle VPN connections.
Please note: This feature " "requires the additional configuration of Wireguard or OpenVPNOpenVPN." #: 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:462 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:714 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:882 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:497 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:749 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:921 msgid "BSSID" msgstr "BSSID" -#: 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:929 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:413 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:973 msgid "CHAP" msgstr "CHAP" @@ -108,7 +113,7 @@ msgstr "Detecção de Portal de Autenticação" msgid "Captive Portal URL" msgstr "URL do portal cativo" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:712 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:747 msgid "Channel" msgstr "Canal" @@ -136,11 +141,11 @@ msgstr "" "Nota:
Na primeira inicialização chame o 'Assistente da interface', para " "fazer as configurações necessárias da rede e do firewall." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:484 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:519 msgid "Connection End" msgstr "Fim da conexão" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:556 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:591 msgid "Connection End Expiry" msgstr "Validade do fim da conexão" @@ -148,11 +153,11 @@ msgstr "Validade do fim da conexão" msgid "Connection Limit" msgstr "Limite de conexão" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:473 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:508 msgid "Connection Start" msgstr "Início da conexão" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:538 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:573 msgid "Connection Start Expiry" msgstr "Validade do inicio da conexão" @@ -160,14 +165,19 @@ msgstr "Validade do inicio da conexão" msgid "Device" msgstr "Aparelho" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:855 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:894 msgid "Device Name" msgstr "Nome do aparelho" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:439 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:996 +msgid "Disabled" +msgstr "" + #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:46 #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:132 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:727 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:968 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:762 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1036 msgid "Dismiss" msgstr "Dispensar" @@ -199,28 +209,28 @@ msgstr "Configurações do e-mail" msgid "E-Mail Topic" msgstr "Assunto do e-mail" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:407 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:932 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:416 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:976 msgid "EAP-GTC" msgstr "EAP-GTC" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:408 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:933 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:417 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:977 msgid "EAP-MD5" msgstr "EAP-MD5" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:409 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:934 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:418 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:978 msgid "EAP-MSCHAPV2" msgstr "EAP-MSCHAPV2" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:393 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:918 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:402 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:962 msgid "EAP-Method" msgstr "Método EAP" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:410 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:935 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:419 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:979 msgid "EAP-TLS" msgstr "EAP-TLS" @@ -252,8 +262,8 @@ msgid "Enabled" msgstr "Ativado" #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:298 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:715 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:888 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:750 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:927 msgid "Encryption" msgstr "Encriptação" @@ -261,7 +271,7 @@ msgstr "Encriptação" msgid "Ext. Hooks" msgstr "Ganchos externos" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:575 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:610 msgid "" "External script reference which will be called for automated captive portal " "logins." @@ -269,8 +279,8 @@ msgstr "" "Referência de script externo que será chamado para logins automatizados de " "portal cativo." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:397 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:923 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:407 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:967 msgid "FAST" msgstr "RÁPIDO" @@ -295,12 +305,12 @@ msgstr "" "Quanto tempo o travelmate irá esperar pelo sucesso da ligação ascendente sem " "fio." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:417 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:940 -msgid "Identify" -msgstr "Identificar" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:426 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:984 +msgid "Identity" +msgstr "Identidade" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:874 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:913 msgid "Ignore BSSID" msgstr "Ignore o BSSID" @@ -308,7 +318,7 @@ msgstr "Ignore o BSSID" msgid "Information" msgstr "Informação" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:859 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:898 msgid "Interface Name" msgstr "Nome da interface" @@ -350,20 +360,25 @@ msgstr "" msgid "Log View" msgstr "Vista do registo log" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:512 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:547 msgid "MAC Address" msgstr "Endereço MAC" -#: 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 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:414 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:974 msgid "MSCHAP" msgstr "MSCHAP" -#: 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 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:415 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:975 msgid "MSCHAPV2" msgstr "MSCHAPV2" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:434 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:991 +msgid "Mgmt. Frame Protection" +msgstr "" + #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:355 msgid "" "Minimum signal quality threshold as percent for conditional uplink (dis-) " @@ -380,7 +395,7 @@ msgstr "Verificação de Erros de Rede" msgid "No travelmate related logs yet!" msgstr "Ainda não há registos log relacionados com o travelmate!" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:317 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:318 msgid "OWE" msgstr "OWE" @@ -388,6 +403,11 @@ msgstr "OWE" msgid "On/Off" msgstr "Ligado/Desligado" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:440 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:997 +msgid "Optional" +msgstr "" + #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:365 msgid "Overall Timeout" msgstr "Estouro de Tempo Global" @@ -417,38 +437,40 @@ msgstr "" "de VPN criptografada fica destacada na cor verde." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:403 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:928 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:412 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:972 msgid "PAP" msgstr "PAP" -#: 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:922 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:406 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:966 msgid "PEAP" msgstr "PEAP" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:385 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:911 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:389 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:396 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:951 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:957 msgid "Password" msgstr "Palavra-passe" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:436 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:955 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:472 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1024 msgid "Password of Private Key" msgstr "Palavra-passe da Chave Privada" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:421 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:943 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:456 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1011 msgid "Path to CA-Certificate" msgstr "Caminho para o certificado da AC" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:426 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:947 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:462 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1016 msgid "Path to Client-Certificate" msgstr "Caminho para o Certificado do Cliente" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:431 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:951 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:467 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1020 msgid "Path to Private Key" msgstr "Caminho para a Chave Privada" @@ -515,10 +537,15 @@ 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:732 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:767 msgid "Repeat Scan" msgstr "Repetir a varredura" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:441 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:998 +msgid "Required" +msgstr "" + #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:277 msgid "Restart Interface" msgstr "Reiniciar interface" @@ -539,18 +566,18 @@ msgid "Run Flags" msgstr "Flags de Execução" #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:290 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:451 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:713 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:868 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:486 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:748 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:907 msgid "SSID" msgstr "SSID" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:864 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:903 msgid "SSID (hidden)" msgstr "SSID (oculto)" #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:64 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:973 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1041 msgid "Save" msgstr "Guardar" @@ -558,11 +585,11 @@ msgstr "Guardar" msgid "Scan Limit" msgstr "Limite de varredura" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:697 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:732 msgid "Scan on" msgstr "Varredura ligada" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:613 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:648 msgid "Script Arguments" msgstr "Argumentos do script" @@ -588,7 +615,7 @@ msgstr "Configurações" msgid "Signal Quality Threshold" msgstr "Limite da Qualidade do Sinal" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:614 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:649 msgid "" "Space separated list of additional arguments passed to the Auto Login " "Script, i.e. username and password" @@ -596,7 +623,7 @@ 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:719 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:754 msgid "Starting wireless scan on '" msgstr "A iniciar a varredura sem fio em '" @@ -616,17 +643,17 @@ msgstr "MAC da estação" msgid "Status / Version" msgstr "Condição geral / versão" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:711 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:746 msgid "Strength" msgstr "Força" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:394 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:920 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:404 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:964 msgid "TLS" msgstr "TLS" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:395 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:921 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:405 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:965 msgid "TTLS" msgstr "TTLS" @@ -642,7 +669,7 @@ msgstr "O nome da zona do firewall" msgid "The interface metric" msgstr "A métrica de interface" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:666 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:701 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'." @@ -677,7 +704,7 @@ msgstr "A interface da ligação ascendente foi atualizada." msgid "The uplink interface name" msgstr "O nome da interface da ligação ascendente" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:496 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:531 msgid "" "This option is selected by default if this uplink was added automatically " "and counts as 'Open Uplink'." @@ -715,7 +742,12 @@ msgstr "Tratar a falta de disponibilidade da Internet como um erro." msgid "Trigger Delay" msgstr "Atraso do Gatilho" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:513 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:449 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1005 +msgid "Use system certificates" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:548 msgid "Use the specified MAC address for this uplink." msgstr "Usar o endereço MAC especificado para esta ligação ascendente." @@ -723,15 +755,15 @@ msgstr "Usar o endereço MAC especificado para esta ligação ascendente." msgid "User Agent" msgstr "Agente do utilizador" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:634 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:669 msgid "VPN Hook" msgstr "Gancho de VPN" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:666 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:701 msgid "VPN Interface" msgstr "Interface da VPN" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:651 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:686 msgid "VPN Service" msgstr "Serviço de VPN" @@ -739,17 +771,22 @@ msgstr "Serviço de VPN" msgid "VPN Settings" msgstr "Configurações da VPN" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:449 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1005 +msgid "Validate server certificate using built-in system CA bundle" +msgstr "" + #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:305 msgid "Verbose Debug Logging" msgstr "Registos detalhados de depuração" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:313 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:903 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:314 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:943 msgid "WPA Ent. (CCMP)" msgstr "WPA Ent. (CCMP)" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:314 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:904 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:315 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:944 msgid "WPA Ent. (TKIP)" msgstr "WPA Ent. (TKIP)" @@ -758,66 +795,71 @@ msgid "WPA Flags" msgstr "Sinalizadores do WPA" #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:304 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:894 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:933 msgid "WPA Pers." msgstr "WPA Pers." #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:305 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:895 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:934 msgid "WPA Pers. (CCMP)" msgstr "WPA Pers. (CCMP)" #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:306 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:896 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:935 msgid "WPA Pers. (TKIP)" msgstr "WPA Pers. (TKIP)" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:315 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:905 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:316 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:945 msgid "WPA/WPA2 Ent. (CCMP)" msgstr "WPA/WPA2 Ent. (CCMP)" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:316 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:906 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:317 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:946 msgid "WPA/WPA2 Ent. (TKIP)" msgstr "WPA/WPA2 Ent. (TKIP)" #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:307 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:897 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:936 msgid "WPA/WPA2 Pers. (CCMP)" msgstr "WPA/WPA2 Pers. (CCMP)" #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:308 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:898 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:937 msgid "WPA/WPA2 Pers. (TKIP)" msgstr "WPA/WPA2 Pers. (TKIP)" #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:311 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:901 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:940 +msgid "WPA2 Ent." +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:312 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:941 msgid "WPA2 Ent. (CCMP)" msgstr "WPA2 Ent. (CCMP)" -#: 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 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:313 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:942 msgid "WPA2 Ent. (TKIP)" msgstr "WPA2 Ent. (TKIP)" #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:301 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:891 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:930 msgid "WPA2 Pers." msgstr "WPA2 Pers." #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:302 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:892 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:931 msgid "WPA2 Pers. (CCMP)" msgstr "WPA2 Pers. (CCMP)" #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:303 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:893 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:932 msgid "WPA2 Pers. (TKIP)" msgstr "WPA2 Pers. (TKIP)" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:900 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:939 msgid "WPA2/WPA3 Ent." msgstr "WPA2/WPA3 Ent." @@ -826,11 +868,11 @@ msgid "WPA2/WPA3 Ent. (CCMP)" msgstr "WPA2/WPA3 Ent. (CCMP)" #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:300 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:890 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:929 msgid "WPA2/WPA3 Pers. (CCMP)" msgstr "WPA2/WPA3 Pers. (CCMP)" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:899 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:938 msgid "WPA3 Ent." msgstr "WPA3 Ent." @@ -838,16 +880,16 @@ msgstr "WPA3 Ent." msgid "WPA3 Ent. (CCMP)" msgstr "WPA3 Ent. (CCMP)" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:907 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:947 msgid "WPA3 OWE (CCMP)" msgstr "WPA3 OWE (CCMP)" #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:299 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:889 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:928 msgid "WPA3 Pers. (SAE)" msgstr "WPA3 Pers. (SAE)" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:721 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:756 msgid "Wireless Scan" msgstr "Escaneamento da Rede Sem Fio" @@ -859,18 +901,18 @@ 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:412 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:937 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:421 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:981 msgid "auth=MSCHAPV2" msgstr "auth=MSCHAPV2" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:411 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:936 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:420 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:980 msgid "auth=PAP" msgstr "auth=PAP" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:318 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:908 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:319 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:948 msgid "none" msgstr "nenhum" @@ -890,6 +932,9 @@ msgstr "usar apenas o primeiro rádio (radio0)" msgid "use the second radio only (radio1)" msgstr "usar apenas o segundo rádio (radio1)" +#~ msgid "Identify" +#~ msgstr "Identificar" + #~ msgid "" #~ "Overview of all configured uplinks for travelmate.
You can edit, " #~ "remove or prioritize existing uplinks by drag & drop and scan for new " @@ -1070,9 +1115,6 @@ msgstr "usar apenas o segundo rádio (radio1)" #~ msgid "Grant UCI access for luci-app-travelmate" #~ msgstr "Conceder acesso UCI ao luci-app-travelmate" -#~ msgid "Identity" -#~ msgstr "Identidade" - #~ msgid "Input file not found, please check your configuration." #~ msgstr "" #~ "Ficheiro de entrada não encontrado, por favor verifique a sua " diff --git a/applications/luci-app-travelmate/po/pt_BR/travelmate.po b/applications/luci-app-travelmate/po/pt_BR/travelmate.po index d0c98445a0..18fd498987 100644 --- a/applications/luci-app-travelmate/po/pt_BR/travelmate.po +++ b/applications/luci-app-travelmate/po/pt_BR/travelmate.po @@ -21,11 +21,11 @@ msgstr "-- Seleção do AP --" msgid "AP QR-Codes..." msgstr "Códigos QR do AP..." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:962 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1030 msgid "Add Uplink %q" msgstr "Adicionar Enlace %q" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:819 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:858 msgid "Add Uplink..." msgstr "Adicionar o Enlace..." @@ -38,16 +38,21 @@ 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:402 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:926 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:430 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:987 +msgid "Anonymous Identity" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:411 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:970 msgid "Authentication" msgstr "Autenticação" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:495 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:530 msgid "Auto Added Open Uplink" msgstr "O enlace aberto foi adicionado automaticamente" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:574 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:609 msgid "Auto Login Script" msgstr "Script de Login Automático" @@ -55,7 +60,7 @@ msgstr "Script de Login Automático" msgid "AutoAdd Open Uplinks" msgstr "Adicionar Automaticamente os Uplinks Abertos" -#: 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:592 msgid "" "Automatically (re-)enable the uplink after n minutes, e.g. after " "failed login attempts.
The default of '0' disables this feature." @@ -72,7 +77,7 @@ msgstr "" "Adicione automaticamente uplinks abertos, como os usados em portais cativos " "de hotéis na sua configuração sem fio." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:539 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:574 msgid "" "Automatically disable the uplink after n minutes, e.g. for timed " "connections.
The default of '0' disables this feature." @@ -81,7 +86,7 @@ msgstr "" "para conexões que forem cronometradas.
A predefinição '0' desativa " "esse recurso." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:634 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:669 msgid "" "Automatically handle VPN connections.
Please note: This feature " "requires the additional configuration of Wireguard or OpenVPNWireguard ou do OpenVPN." #: 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:462 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:714 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:882 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:497 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:749 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:921 msgid "BSSID" msgstr "BSSID" -#: 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:929 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:413 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:973 msgid "CHAP" msgstr "CHAP" @@ -110,7 +115,7 @@ msgstr "Detecção de Portal de Autenticação" msgid "Captive Portal URL" msgstr "URL do Portal Cativo" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:712 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:747 msgid "Channel" msgstr "Canal" @@ -138,11 +143,11 @@ msgstr "" "Nota:
Na primeira inicialização chame o 'Assistente da interface', para " "fazer as configurações necessárias da rede e do firewall." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:484 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:519 msgid "Connection End" msgstr "Fim da conexão" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:556 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:591 msgid "Connection End Expiry" msgstr "Validade do fim da conexão" @@ -150,11 +155,11 @@ msgstr "Validade do fim da conexão" msgid "Connection Limit" msgstr "Limite de conexão" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:473 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:508 msgid "Connection Start" msgstr "Início da conexão" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:538 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:573 msgid "Connection Start Expiry" msgstr "Validade do inicio da conexão" @@ -162,14 +167,19 @@ msgstr "Validade do inicio da conexão" msgid "Device" msgstr "Dispositivo" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:855 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:894 msgid "Device Name" msgstr "Nome do dispositivo" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:439 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:996 +msgid "Disabled" +msgstr "" + #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:46 #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:132 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:727 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:968 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:762 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1036 msgid "Dismiss" msgstr "Dispensar" @@ -201,28 +211,28 @@ msgstr "Configurações do E-Mail" msgid "E-Mail Topic" msgstr "Assunto do E-Mail" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:407 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:932 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:416 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:976 msgid "EAP-GTC" msgstr "EAP-GTC" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:408 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:933 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:417 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:977 msgid "EAP-MD5" msgstr "EAP-MD5" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:409 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:934 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:418 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:978 msgid "EAP-MSCHAPV2" msgstr "EAP-MSCHAPV2" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:393 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:918 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:402 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:962 msgid "EAP-Method" msgstr "Método EAP" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:410 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:935 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:419 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:979 msgid "EAP-TLS" msgstr "EAP-TLS" @@ -254,8 +264,8 @@ msgid "Enabled" msgstr "Ativado" #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:298 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:715 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:888 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:750 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:927 msgid "Encryption" msgstr "Criptografia" @@ -263,14 +273,14 @@ msgstr "Criptografia" msgid "Ext. Hooks" msgstr "Ganchos Externos" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:575 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:610 msgid "" "External script reference which will be called for automated captive portal " "logins." msgstr "Script externo de referência que será usado para logins automatizados." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:397 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:923 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:407 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:967 msgid "FAST" msgstr "RÁPIDO" @@ -293,12 +303,12 @@ msgstr "" "Quanto tempo o travelmate irá esperar pelo sucesso da conexão sem fio " "externa." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:417 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:940 -msgid "Identify" -msgstr "Identificar" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:426 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:984 +msgid "Identity" +msgstr "Identidade" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:874 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:913 msgid "Ignore BSSID" msgstr "Ignore o BSSID" @@ -306,7 +316,7 @@ msgstr "Ignore o BSSID" msgid "Information" msgstr "Informações" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:859 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:898 msgid "Interface Name" msgstr "Nome da Interface" @@ -348,20 +358,25 @@ msgstr "" msgid "Log View" msgstr "Exiba o registro log" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:512 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:547 msgid "MAC Address" msgstr "Endereço MAC" -#: 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 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:414 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:974 msgid "MSCHAP" msgstr "MSCHAP" -#: 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 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:415 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:975 msgid "MSCHAPV2" msgstr "MSCHAPV2" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:434 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:991 +msgid "Mgmt. Frame Protection" +msgstr "" + #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:355 msgid "" "Minimum signal quality threshold as percent for conditional uplink (dis-) " @@ -378,7 +393,7 @@ msgstr "Verificação de Erros da Rede" msgid "No travelmate related logs yet!" msgstr "Ainda não há registos log relacionados com o travelmate!" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:317 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:318 msgid "OWE" msgstr "OWE" @@ -386,6 +401,11 @@ msgstr "OWE" msgid "On/Off" msgstr "Ligado/Desligado" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:440 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:997 +msgid "Optional" +msgstr "" + #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:365 msgid "Overall Timeout" msgstr "Estouro de Tempo Global" @@ -412,41 +432,43 @@ msgstr "" "soltar para novas digitalizações.
O enlace da conexão usada " "atualmente é enfatizada na cor azul, uma conexão do enlace criptografado da VPN fica " -"destacada na cor verde." +"destacada na cor verde." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:403 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:928 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:412 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:972 msgid "PAP" msgstr "PAP" -#: 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:922 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:406 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:966 msgid "PEAP" msgstr "PEAP" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:385 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:911 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:389 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:396 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:951 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:957 msgid "Password" msgstr "Senha" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:436 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:955 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:472 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1024 msgid "Password of Private Key" msgstr "Senha da chave privada" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:421 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:943 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:456 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1011 msgid "Path to CA-Certificate" msgstr "Caminho para o certificado CA" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:426 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:947 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:462 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1016 msgid "Path to Client-Certificate" msgstr "Caminho para o certificado do cliente" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:431 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:951 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:467 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1020 msgid "Path to Private Key" msgstr "Caminho para a chave privada" @@ -513,10 +535,15 @@ 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:732 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:767 msgid "Repeat Scan" msgstr "Repetir a varredura" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:441 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:998 +msgid "Required" +msgstr "" + #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:277 msgid "Restart Interface" msgstr "Reinicie a interface" @@ -537,18 +564,18 @@ msgid "Run Flags" msgstr "Executar Flags" #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:290 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:451 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:713 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:868 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:486 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:748 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:907 msgid "SSID" msgstr "SSID" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:864 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:903 msgid "SSID (hidden)" msgstr "SSID (oculto)" #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:64 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:973 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1041 msgid "Save" msgstr "Salvar" @@ -556,11 +583,11 @@ msgstr "Salvar" msgid "Scan Limit" msgstr "Limite da varredura" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:697 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:732 msgid "Scan on" msgstr "Varredura ligada" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:613 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:648 msgid "Script Arguments" msgstr "Argumentos do script" @@ -584,7 +611,7 @@ msgstr "Configurações" msgid "Signal Quality Threshold" msgstr "Limite da Qualidade do Sinal" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:614 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:649 msgid "" "Space separated list of additional arguments passed to the Auto Login " "Script, i.e. username and password" @@ -592,7 +619,7 @@ 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:719 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:754 msgid "Starting wireless scan on '" msgstr "Iniciando a varredura sem fio em '" @@ -612,17 +639,17 @@ msgstr "MAC da estação" msgid "Status / Version" msgstr "Condição Geral / Versão" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:711 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:746 msgid "Strength" msgstr "Força" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:394 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:920 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:404 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:964 msgid "TLS" msgstr "TLS" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:395 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:921 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:405 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:965 msgid "TTLS" msgstr "TTLS" @@ -638,7 +665,7 @@ msgstr "O nome da zona do firewall" msgid "The interface metric" msgstr "A métrica de interface" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:666 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:701 msgid "The logical vpn network interface, e.g. 'wg0' or 'tun0'." msgstr "A interface lógica da rede vpn, por exemplo, 'wg0' ou 'tun0'." @@ -673,7 +700,7 @@ msgstr "A interface do enlace foi atualizada." msgid "The uplink interface name" msgstr "O nome da interface do enlace" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:496 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:531 msgid "" "This option is selected by default if this uplink was added automatically " "and counts as 'Open Uplink'." @@ -711,7 +738,12 @@ msgstr "Tratar a falta de disponibilidade da Internet como um erro." msgid "Trigger Delay" msgstr "Gatilho de Atraso" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:513 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:449 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1005 +msgid "Use system certificates" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:548 msgid "Use the specified MAC address for this uplink." msgstr "Use o endereço MAC definido para este enlace." @@ -719,15 +751,15 @@ msgstr "Use o endereço MAC definido para este enlace." msgid "User Agent" msgstr "Agente do usuário" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:634 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:669 msgid "VPN Hook" msgstr "Gancho VPN" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:666 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:701 msgid "VPN Interface" msgstr "Interface da VPN" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:651 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:686 msgid "VPN Service" msgstr "Serviço VPN" @@ -735,17 +767,22 @@ msgstr "Serviço VPN" msgid "VPN Settings" msgstr "Configurações da VPN" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:449 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1005 +msgid "Validate server certificate using built-in system CA bundle" +msgstr "" + #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:305 msgid "Verbose Debug Logging" msgstr "Registros Detalhados de Depuração" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:313 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:903 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:314 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:943 msgid "WPA Ent. (CCMP)" msgstr "WPA Ent. (CCMP)" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:314 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:904 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:315 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:944 msgid "WPA Ent. (TKIP)" msgstr "WPA Ent. (TKIP)" @@ -754,66 +791,71 @@ msgid "WPA Flags" msgstr "Sinalizadores do WPA" #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:304 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:894 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:933 msgid "WPA Pers." msgstr "WPA Pers." #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:305 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:895 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:934 msgid "WPA Pers. (CCMP)" msgstr "WPA Pers. (CCMP)" #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:306 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:896 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:935 msgid "WPA Pers. (TKIP)" msgstr "WPA Pers. (TKIP)" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:315 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:905 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:316 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:945 msgid "WPA/WPA2 Ent. (CCMP)" msgstr "WPA/WPA2 Ent. (CCMP)" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:316 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:906 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:317 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:946 msgid "WPA/WPA2 Ent. (TKIP)" msgstr "WPA/WPA2 Ent. (TKIP)" #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:307 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:897 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:936 msgid "WPA/WPA2 Pers. (CCMP)" msgstr "WPA/WPA2 Pers. (CCMP)" #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:308 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:898 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:937 msgid "WPA/WPA2 Pers. (TKIP)" msgstr "WPA/WPA2 Pers. (TKIP)" #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:311 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:901 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:940 +msgid "WPA2 Ent." +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:312 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:941 msgid "WPA2 Ent. (CCMP)" msgstr "WPA2 Ent. (CCMP)" -#: 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 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:313 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:942 msgid "WPA2 Ent. (TKIP)" msgstr "WPA2 Ent. (TKIP)" #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:301 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:891 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:930 msgid "WPA2 Pers." msgstr "WPA2 Pers." #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:302 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:892 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:931 msgid "WPA2 Pers. (CCMP)" msgstr "WPA2 Pers. (CCMP)" #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:303 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:893 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:932 msgid "WPA2 Pers. (TKIP)" msgstr "WPA2 Pers. (TKIP)" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:900 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:939 msgid "WPA2/WPA3 Ent." msgstr "WPA2/WPA3 Ent." @@ -822,11 +864,11 @@ msgid "WPA2/WPA3 Ent. (CCMP)" msgstr "WPA2/WPA3 Ent. (CCMP)" #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:300 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:890 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:929 msgid "WPA2/WPA3 Pers. (CCMP)" msgstr "WPA2/WPA3 Pers. (CCMP)" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:899 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:938 msgid "WPA3 Ent." msgstr "WPA3 Ent." @@ -834,16 +876,16 @@ msgstr "WPA3 Ent." msgid "WPA3 Ent. (CCMP)" msgstr "WPA3 Ent. (CCMP)" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:907 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:947 msgid "WPA3 OWE (CCMP)" msgstr "WPA3 OWE (CCMP)" #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:299 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:889 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:928 msgid "WPA3 Pers. (SAE)" msgstr "WPA3 Pers. (SAE)" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:721 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:756 msgid "Wireless Scan" msgstr "Escaneamento da Rede Sem Fio" @@ -855,18 +897,18 @@ 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:412 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:937 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:421 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:981 msgid "auth=MSCHAPV2" msgstr "auth=MSCHAPV2" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:411 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:936 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:420 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:980 msgid "auth=PAP" msgstr "auth=PAP" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:318 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:908 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:319 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:948 msgid "none" msgstr "nenhum" @@ -886,6 +928,9 @@ msgstr "use apenas o primeiro rádio (radio0)" msgid "use the second radio only (radio1)" msgstr "use apenas o segundo rádio (radio1)" +#~ msgid "Identify" +#~ msgstr "Identificar" + #~ msgid "" #~ "Overview of all configured uplinks for travelmate.
You can edit, " #~ "remove or prioritize existing uplinks by drag & drop and scan for new " @@ -1071,9 +1116,6 @@ msgstr "use apenas o segundo rádio (radio1)" #~ msgid "Grant UCI access for luci-app-travelmate" #~ msgstr "Conceda acesso UCI ao luci-app-travelmate" -#~ msgid "Identity" -#~ msgstr "Identidade" - #~ msgid "Input file not found, please check your configuration." #~ msgstr "" #~ "O arquivo de entrada não foi encontrado. Por favor, verifique a sua " diff --git a/applications/luci-app-travelmate/po/ro/travelmate.po b/applications/luci-app-travelmate/po/ro/travelmate.po index 0e944adbc2..c339f99846 100644 --- a/applications/luci-app-travelmate/po/ro/travelmate.po +++ b/applications/luci-app-travelmate/po/ro/travelmate.po @@ -19,11 +19,11 @@ msgstr "" msgid "AP QR-Codes..." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:962 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1030 msgid "Add Uplink %q" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:819 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:858 msgid "Add Uplink..." msgstr "" @@ -36,16 +36,21 @@ msgid "" "Additional trigger delay in seconds before travelmate processing begins." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:402 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:926 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:430 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:987 +msgid "Anonymous Identity" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:411 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:970 msgid "Authentication" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:495 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:530 msgid "Auto Added Open Uplink" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:574 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:609 msgid "Auto Login Script" msgstr "" @@ -53,7 +58,7 @@ msgstr "" msgid "AutoAdd Open Uplinks" 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:592 msgid "" "Automatically (re-)enable the uplink after n minutes, e.g. after " "failed login attempts.
The default of '0' disables this feature." @@ -65,13 +70,13 @@ msgid "" "config." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:539 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:574 msgid "" "Automatically disable the uplink after n minutes, e.g. for timed " "connections.
The default of '0' disables this feature." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:634 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:669 msgid "" "Automatically handle VPN connections.
Please note: This feature " "requires the additional configuration of Wireguard or OpenVPNgreen." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:403 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:928 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:412 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:972 msgid "PAP" msgstr "" -#: 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:922 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:406 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:966 msgid "PEAP" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:385 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:911 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:389 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:396 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:951 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:957 msgid "Password" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:436 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:955 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:472 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1024 msgid "Password of Private Key" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:421 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:943 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:456 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1011 msgid "Path to CA-Certificate" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:426 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:947 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:462 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1016 msgid "Path to Client-Certificate" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:431 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:951 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:467 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1020 msgid "Path to Private Key" msgstr "" @@ -467,10 +489,15 @@ msgid "" "WLAN credentials to your mobile devices." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:732 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:767 msgid "Repeat Scan" msgstr "" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:441 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:998 +msgid "Required" +msgstr "" + #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:277 msgid "Restart Interface" msgstr "" @@ -489,18 +516,18 @@ msgid "Run Flags" msgstr "" #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:290 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:451 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:713 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:868 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:486 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:748 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:907 msgid "SSID" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:864 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:903 msgid "SSID (hidden)" msgstr "" #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:64 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:973 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1041 msgid "Save" msgstr "Salvează" @@ -508,11 +535,11 @@ msgstr "Salvează" msgid "Scan Limit" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:697 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:732 msgid "Scan on" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:613 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:648 msgid "Script Arguments" msgstr "" @@ -536,13 +563,13 @@ msgstr "" msgid "Signal Quality Threshold" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:614 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:649 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:719 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:754 msgid "Starting wireless scan on '" msgstr "" @@ -562,17 +589,17 @@ msgstr "" msgid "Status / Version" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:711 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:746 msgid "Strength" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:394 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:920 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:404 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:964 msgid "TLS" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:395 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:921 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:405 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:965 msgid "TTLS" msgstr "" @@ -588,7 +615,7 @@ msgstr "" msgid "The interface metric" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:666 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:701 msgid "The logical vpn network interface, e.g. 'wg0' or 'tun0'." msgstr "" @@ -619,7 +646,7 @@ msgstr "" msgid "The uplink interface name" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:496 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:531 msgid "" "This option is selected by default if this uplink was added automatically " "and counts as 'Open Uplink'." @@ -652,7 +679,12 @@ msgstr "" msgid "Trigger Delay" msgstr "Intârzierea declanșării" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:513 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:449 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1005 +msgid "Use system certificates" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:548 msgid "Use the specified MAC address for this uplink." msgstr "" @@ -660,15 +692,15 @@ msgstr "" msgid "User Agent" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:634 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:669 msgid "VPN Hook" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:666 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:701 msgid "VPN Interface" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:651 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:686 msgid "VPN Service" msgstr "" @@ -676,17 +708,22 @@ msgstr "" msgid "VPN Settings" msgstr "" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:449 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1005 +msgid "Validate server certificate using built-in system CA bundle" +msgstr "" + #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:305 msgid "Verbose Debug Logging" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:313 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:903 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:314 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:943 msgid "WPA Ent. (CCMP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:314 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:904 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:315 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:944 msgid "WPA Ent. (TKIP)" msgstr "" @@ -695,66 +732,71 @@ msgid "WPA Flags" msgstr "" #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:304 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:894 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:933 msgid "WPA Pers." msgstr "" #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:305 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:895 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:934 msgid "WPA Pers. (CCMP)" msgstr "" #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:306 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:896 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:935 msgid "WPA Pers. (TKIP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:315 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:905 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:316 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:945 msgid "WPA/WPA2 Ent. (CCMP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:316 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:906 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:317 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:946 msgid "WPA/WPA2 Ent. (TKIP)" msgstr "" #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:307 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:897 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:936 msgid "WPA/WPA2 Pers. (CCMP)" msgstr "" #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:308 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:898 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:937 msgid "WPA/WPA2 Pers. (TKIP)" msgstr "" #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:311 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:901 -msgid "WPA2 Ent. (CCMP)" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:940 +msgid "WPA2 Ent." msgstr "" #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:312 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:902 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:941 +msgid "WPA2 Ent. (CCMP)" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:313 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:942 msgid "WPA2 Ent. (TKIP)" msgstr "" #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:301 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:891 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:930 msgid "WPA2 Pers." msgstr "" #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:302 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:892 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:931 msgid "WPA2 Pers. (CCMP)" msgstr "" #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:303 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:893 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:932 msgid "WPA2 Pers. (TKIP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:900 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:939 msgid "WPA2/WPA3 Ent." msgstr "" @@ -763,11 +805,11 @@ msgid "WPA2/WPA3 Ent. (CCMP)" msgstr "" #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:300 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:890 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:929 msgid "WPA2/WPA3 Pers. (CCMP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:899 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:938 msgid "WPA3 Ent." msgstr "" @@ -775,16 +817,16 @@ msgstr "" msgid "WPA3 Ent. (CCMP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:907 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:947 msgid "WPA3 OWE (CCMP)" msgstr "" #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:299 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:889 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:928 msgid "WPA3 Pers. (SAE)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:721 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:756 msgid "Wireless Scan" msgstr "" @@ -796,18 +838,18 @@ msgstr "" msgid "Wireless Stations" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:412 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:937 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:421 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:981 msgid "auth=MSCHAPV2" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:411 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:936 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:420 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:980 msgid "auth=PAP" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:318 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:908 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:319 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:948 msgid "none" msgstr "" diff --git a/applications/luci-app-travelmate/po/ru/travelmate.po b/applications/luci-app-travelmate/po/ru/travelmate.po index 6fd9449998..9e52fbc608 100644 --- a/applications/luci-app-travelmate/po/ru/travelmate.po +++ b/applications/luci-app-travelmate/po/ru/travelmate.po @@ -24,11 +24,11 @@ msgstr "-- Выбор точки доступа --" msgid "AP QR-Codes..." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:962 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1030 msgid "Add Uplink %q" msgstr "Добавить канал %q" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:819 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:858 msgid "Add Uplink..." msgstr "Добавить канал..." @@ -41,16 +41,21 @@ msgid "" "Additional trigger delay in seconds before travelmate processing begins." msgstr "Дополнительная задержка в секундах до запуска TravelMate." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:402 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:926 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:430 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:987 +msgid "Anonymous Identity" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:411 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:970 msgid "Authentication" msgstr "Аутентификация" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:495 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:530 msgid "Auto Added Open Uplink" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:574 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:609 msgid "Auto Login Script" msgstr "Скрипт автоматического входа" @@ -58,7 +63,7 @@ msgstr "Скрипт автоматического входа" msgid "AutoAdd Open Uplinks" 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:592 msgid "" "Automatically (re-)enable the uplink after n minutes, e.g. after " "failed login attempts.
The default of '0' disables this feature." @@ -70,13 +75,13 @@ msgid "" "config." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:539 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:574 msgid "" "Automatically disable the uplink after n minutes, e.g. for timed " "connections.
The default of '0' disables this feature." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:634 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:669 msgid "" "Automatically handle VPN connections.
Please note: This feature " "requires the additional configuration of Wireguard or OpenVPNgreen." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:403 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:928 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:412 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:972 msgid "PAP" msgstr "" -#: 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:922 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:406 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:966 msgid "PEAP" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:385 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:911 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:389 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:396 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:951 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:957 msgid "Password" msgstr "Пароль" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:436 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:955 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:472 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1024 msgid "Password of Private Key" msgstr "Пароль к Приватному ключу" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:421 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:943 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:456 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1011 msgid "Path to CA-Certificate" msgstr "Путь к CA-сертификату" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:426 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:947 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:462 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1016 msgid "Path to Client-Certificate" msgstr "Путь к client-сертификату" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:431 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:951 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:467 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1020 msgid "Path to Private Key" msgstr "Путь к Приватному ключу" @@ -472,10 +494,15 @@ msgid "" "WLAN credentials to your mobile devices." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:732 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:767 msgid "Repeat Scan" msgstr "" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:441 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:998 +msgid "Required" +msgstr "" + #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:277 msgid "Restart Interface" msgstr "" @@ -495,18 +522,18 @@ msgid "Run Flags" msgstr "Рабочие флаги" #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:290 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:451 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:713 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:868 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:486 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:748 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:907 msgid "SSID" msgstr "SSID" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:864 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:903 msgid "SSID (hidden)" msgstr "SSID (скрытый)" #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:64 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:973 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1041 msgid "Save" msgstr "Сохранить" @@ -514,11 +541,11 @@ msgstr "Сохранить" msgid "Scan Limit" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:697 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:732 msgid "Scan on" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:613 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:648 msgid "Script Arguments" msgstr "" @@ -542,13 +569,13 @@ msgstr "Настройки" msgid "Signal Quality Threshold" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:614 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:649 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:719 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:754 msgid "Starting wireless scan on '" msgstr "" @@ -568,17 +595,17 @@ msgstr "" msgid "Status / Version" msgstr "Статус / Версия" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:711 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:746 msgid "Strength" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:394 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:920 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:404 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:964 msgid "TLS" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:395 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:921 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:405 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:965 msgid "TTLS" msgstr "" @@ -594,7 +621,7 @@ msgstr "" msgid "The interface metric" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:666 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:701 msgid "The logical vpn network interface, e.g. 'wg0' or 'tun0'." msgstr "" @@ -627,7 +654,7 @@ msgstr "" msgid "The uplink interface name" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:496 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:531 msgid "" "This option is selected by default if this uplink was added automatically " "and counts as 'Open Uplink'." @@ -660,7 +687,12 @@ msgstr "" msgid "Trigger Delay" msgstr "Задержка запуска" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:513 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:449 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1005 +msgid "Use system certificates" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:548 msgid "Use the specified MAC address for this uplink." msgstr "" @@ -668,15 +700,15 @@ msgstr "" msgid "User Agent" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:634 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:669 msgid "VPN Hook" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:666 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:701 msgid "VPN Interface" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:651 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:686 msgid "VPN Service" msgstr "" @@ -684,17 +716,22 @@ msgstr "" msgid "VPN Settings" msgstr "" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:449 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1005 +msgid "Validate server certificate using built-in system CA bundle" +msgstr "" + #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:305 msgid "Verbose Debug Logging" msgstr "Подробный журнал отладки" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:313 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:903 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:314 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:943 msgid "WPA Ent. (CCMP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:314 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:904 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:315 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:944 msgid "WPA Ent. (TKIP)" msgstr "" @@ -703,66 +740,71 @@ msgid "WPA Flags" msgstr "" #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:304 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:894 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:933 msgid "WPA Pers." msgstr "" #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:305 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:895 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:934 msgid "WPA Pers. (CCMP)" msgstr "" #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:306 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:896 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:935 msgid "WPA Pers. (TKIP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:315 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:905 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:316 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:945 msgid "WPA/WPA2 Ent. (CCMP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:316 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:906 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:317 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:946 msgid "WPA/WPA2 Ent. (TKIP)" msgstr "" #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:307 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:897 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:936 msgid "WPA/WPA2 Pers. (CCMP)" msgstr "" #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:308 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:898 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:937 msgid "WPA/WPA2 Pers. (TKIP)" msgstr "" #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:311 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:901 -msgid "WPA2 Ent. (CCMP)" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:940 +msgid "WPA2 Ent." msgstr "" #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:312 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:902 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:941 +msgid "WPA2 Ent. (CCMP)" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:313 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:942 msgid "WPA2 Ent. (TKIP)" msgstr "" #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:301 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:891 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:930 msgid "WPA2 Pers." msgstr "" #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:302 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:892 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:931 msgid "WPA2 Pers. (CCMP)" msgstr "" #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:303 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:893 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:932 msgid "WPA2 Pers. (TKIP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:900 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:939 msgid "WPA2/WPA3 Ent." msgstr "" @@ -771,11 +813,11 @@ msgid "WPA2/WPA3 Ent. (CCMP)" msgstr "" #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:300 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:890 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:929 msgid "WPA2/WPA3 Pers. (CCMP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:899 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:938 msgid "WPA3 Ent." msgstr "" @@ -783,16 +825,16 @@ msgstr "" msgid "WPA3 Ent. (CCMP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:907 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:947 msgid "WPA3 OWE (CCMP)" msgstr "" #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:299 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:889 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:928 msgid "WPA3 Pers. (SAE)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:721 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:756 msgid "Wireless Scan" msgstr "Найденные точки доступа Wi-Fi" @@ -804,18 +846,18 @@ msgstr "" msgid "Wireless Stations" msgstr "Клиенты беспроводной сети" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:412 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:937 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:421 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:981 msgid "auth=MSCHAPV2" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:411 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:936 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:420 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:980 msgid "auth=PAP" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:318 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:908 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:319 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:948 msgid "none" msgstr "ничего" @@ -928,9 +970,6 @@ msgstr "" #~ msgid "Grant UCI access for luci-app-travelmate" #~ msgstr "Предоставить UCI доступ для luci-app-travelmate" -#~ msgid "Identity" -#~ msgstr "Идентификация EAP" - #~ msgid "Input file not found, please check your configuration." #~ msgstr "Config файл не найден, пожалуйста, проверьте ваши настройки." diff --git a/applications/luci-app-travelmate/po/sk/travelmate.po b/applications/luci-app-travelmate/po/sk/travelmate.po index ff37f8b32d..9f87b554ba 100644 --- a/applications/luci-app-travelmate/po/sk/travelmate.po +++ b/applications/luci-app-travelmate/po/sk/travelmate.po @@ -18,11 +18,11 @@ msgstr "" msgid "AP QR-Codes..." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:962 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1030 msgid "Add Uplink %q" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:819 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:858 msgid "Add Uplink..." msgstr "" @@ -35,16 +35,21 @@ msgid "" "Additional trigger delay in seconds before travelmate processing begins." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:402 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:926 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:430 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:987 +msgid "Anonymous Identity" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:411 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:970 msgid "Authentication" msgstr "Overenie totožnosti" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:495 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:530 msgid "Auto Added Open Uplink" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:574 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:609 msgid "Auto Login Script" msgstr "" @@ -52,7 +57,7 @@ msgstr "" msgid "AutoAdd Open Uplinks" 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:592 msgid "" "Automatically (re-)enable the uplink after n minutes, e.g. after " "failed login attempts.
The default of '0' disables this feature." @@ -64,13 +69,13 @@ msgid "" "config." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:539 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:574 msgid "" "Automatically disable the uplink after n minutes, e.g. for timed " "connections.
The default of '0' disables this feature." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:634 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:669 msgid "" "Automatically handle VPN connections.
Please note: This feature " "requires the additional configuration of Wireguard or OpenVPNgreen." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:403 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:928 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:412 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:972 msgid "PAP" msgstr "" -#: 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:922 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:406 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:966 msgid "PEAP" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:385 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:911 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:389 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:396 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:951 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:957 msgid "Password" msgstr "Heslo" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:436 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:955 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:472 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1024 msgid "Password of Private Key" msgstr "Heslo súkromného kľúča" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:421 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:943 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:456 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1011 msgid "Path to CA-Certificate" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:426 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:947 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:462 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1016 msgid "Path to Client-Certificate" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:431 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:951 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:467 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1020 msgid "Path to Private Key" msgstr "Cesta k súkromnému kľúču" @@ -466,10 +488,15 @@ msgid "" "WLAN credentials to your mobile devices." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:732 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:767 msgid "Repeat Scan" msgstr "" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:441 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:998 +msgid "Required" +msgstr "" + #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:277 msgid "Restart Interface" msgstr "" @@ -488,18 +515,18 @@ msgid "Run Flags" msgstr "" #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:290 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:451 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:713 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:868 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:486 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:748 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:907 msgid "SSID" msgstr "SSID" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:864 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:903 msgid "SSID (hidden)" msgstr "" #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:64 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:973 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1041 msgid "Save" msgstr "Uložiť" @@ -507,11 +534,11 @@ msgstr "Uložiť" msgid "Scan Limit" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:697 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:732 msgid "Scan on" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:613 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:648 msgid "Script Arguments" msgstr "" @@ -535,13 +562,13 @@ msgstr "Nastavenia" msgid "Signal Quality Threshold" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:614 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:649 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:719 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:754 msgid "Starting wireless scan on '" msgstr "" @@ -561,17 +588,17 @@ msgstr "" msgid "Status / Version" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:711 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:746 msgid "Strength" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:394 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:920 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:404 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:964 msgid "TLS" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:395 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:921 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:405 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:965 msgid "TTLS" msgstr "" @@ -587,7 +614,7 @@ msgstr "" msgid "The interface metric" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:666 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:701 msgid "The logical vpn network interface, e.g. 'wg0' or 'tun0'." msgstr "" @@ -618,7 +645,7 @@ msgstr "" msgid "The uplink interface name" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:496 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:531 msgid "" "This option is selected by default if this uplink was added automatically " "and counts as 'Open Uplink'." @@ -651,7 +678,12 @@ msgstr "" msgid "Trigger Delay" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:513 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:449 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1005 +msgid "Use system certificates" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:548 msgid "Use the specified MAC address for this uplink." msgstr "" @@ -659,15 +691,15 @@ msgstr "" msgid "User Agent" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:634 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:669 msgid "VPN Hook" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:666 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:701 msgid "VPN Interface" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:651 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:686 msgid "VPN Service" msgstr "" @@ -675,17 +707,22 @@ msgstr "" msgid "VPN Settings" msgstr "" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:449 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1005 +msgid "Validate server certificate using built-in system CA bundle" +msgstr "" + #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:305 msgid "Verbose Debug Logging" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:313 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:903 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:314 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:943 msgid "WPA Ent. (CCMP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:314 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:904 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:315 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:944 msgid "WPA Ent. (TKIP)" msgstr "" @@ -694,66 +731,71 @@ msgid "WPA Flags" msgstr "" #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:304 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:894 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:933 msgid "WPA Pers." msgstr "" #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:305 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:895 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:934 msgid "WPA Pers. (CCMP)" msgstr "" #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:306 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:896 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:935 msgid "WPA Pers. (TKIP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:315 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:905 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:316 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:945 msgid "WPA/WPA2 Ent. (CCMP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:316 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:906 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:317 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:946 msgid "WPA/WPA2 Ent. (TKIP)" msgstr "" #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:307 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:897 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:936 msgid "WPA/WPA2 Pers. (CCMP)" msgstr "" #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:308 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:898 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:937 msgid "WPA/WPA2 Pers. (TKIP)" msgstr "" #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:311 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:901 -msgid "WPA2 Ent. (CCMP)" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:940 +msgid "WPA2 Ent." msgstr "" #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:312 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:902 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:941 +msgid "WPA2 Ent. (CCMP)" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:313 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:942 msgid "WPA2 Ent. (TKIP)" msgstr "" #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:301 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:891 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:930 msgid "WPA2 Pers." msgstr "" #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:302 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:892 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:931 msgid "WPA2 Pers. (CCMP)" msgstr "" #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:303 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:893 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:932 msgid "WPA2 Pers. (TKIP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:900 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:939 msgid "WPA2/WPA3 Ent." msgstr "" @@ -762,11 +804,11 @@ msgid "WPA2/WPA3 Ent. (CCMP)" msgstr "" #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:300 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:890 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:929 msgid "WPA2/WPA3 Pers. (CCMP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:899 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:938 msgid "WPA3 Ent." msgstr "" @@ -774,16 +816,16 @@ msgstr "" msgid "WPA3 Ent. (CCMP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:907 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:947 msgid "WPA3 OWE (CCMP)" msgstr "" #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:299 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:889 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:928 msgid "WPA3 Pers. (SAE)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:721 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:756 msgid "Wireless Scan" msgstr "" @@ -795,18 +837,18 @@ msgstr "" msgid "Wireless Stations" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:412 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:937 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:421 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:981 msgid "auth=MSCHAPV2" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:411 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:936 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:420 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:980 msgid "auth=PAP" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:318 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:908 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:319 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:948 msgid "none" msgstr "" @@ -838,9 +880,6 @@ msgstr "" #~ msgid "Force TKIP and CCMP (AES)" #~ msgstr "Vynútiť TKIP a CCMP (AES)" -#~ msgid "Identity" -#~ msgstr "Identita" - #~ 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 de8d6d68bf..d2f91283a1 100644 --- a/applications/luci-app-travelmate/po/sv/travelmate.po +++ b/applications/luci-app-travelmate/po/sv/travelmate.po @@ -18,11 +18,11 @@ msgstr "" msgid "AP QR-Codes..." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:962 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1030 msgid "Add Uplink %q" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:819 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:858 msgid "Add Uplink..." msgstr "" @@ -35,16 +35,21 @@ msgid "" "Additional trigger delay in seconds before travelmate processing begins." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:402 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:926 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:430 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:987 +msgid "Anonymous Identity" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:411 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:970 msgid "Authentication" msgstr "Autentisering" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:495 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:530 msgid "Auto Added Open Uplink" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:574 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:609 msgid "Auto Login Script" msgstr "Automatiskt inloggningsskript" @@ -52,7 +57,7 @@ msgstr "Automatiskt inloggningsskript" msgid "AutoAdd Open Uplinks" 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:592 msgid "" "Automatically (re-)enable the uplink after n minutes, e.g. after " "failed login attempts.
The default of '0' disables this feature." @@ -64,13 +69,13 @@ msgid "" "config." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:539 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:574 msgid "" "Automatically disable the uplink after n minutes, e.g. for timed " "connections.
The default of '0' disables this feature." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:634 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:669 msgid "" "Automatically handle VPN connections.
Please note: This feature " "requires the additional configuration of Wireguard or OpenVPNgreen." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:403 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:928 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:412 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:972 msgid "PAP" msgstr "PAP" -#: 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:922 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:406 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:966 msgid "PEAP" msgstr "PEAP" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:385 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:911 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:389 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:396 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:951 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:957 msgid "Password" msgstr "Lösenord" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:436 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:955 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:472 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1024 msgid "Password of Private Key" msgstr "Den privata nyckelns lösenord" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:421 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:943 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:456 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1011 msgid "Path to CA-Certificate" msgstr "Genväg till CA-certifikat" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:426 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:947 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:462 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1016 msgid "Path to Client-Certificate" msgstr "Genväg till klient-certifikat" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:431 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:951 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:467 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1020 msgid "Path to Private Key" msgstr "Genväg till privat nyckel" @@ -466,10 +488,15 @@ msgid "" "WLAN credentials to your mobile devices." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:732 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:767 msgid "Repeat Scan" msgstr "Upprepa skanning" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:441 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:998 +msgid "Required" +msgstr "" + #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:277 msgid "Restart Interface" msgstr "" @@ -488,18 +515,18 @@ msgid "Run Flags" msgstr "Förflaggor" #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:290 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:451 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:713 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:868 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:486 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:748 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:907 msgid "SSID" msgstr "SSID" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:864 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:903 msgid "SSID (hidden)" msgstr "SSID (gömd)" #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:64 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:973 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1041 msgid "Save" msgstr "Spara" @@ -507,11 +534,11 @@ msgstr "Spara" msgid "Scan Limit" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:697 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:732 msgid "Scan on" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:613 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:648 msgid "Script Arguments" msgstr "" @@ -535,13 +562,13 @@ msgstr "Inställningar" msgid "Signal Quality Threshold" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:614 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:649 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:719 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:754 msgid "Starting wireless scan on '" msgstr "" @@ -561,17 +588,17 @@ msgstr "Stationens MAC" msgid "Status / Version" msgstr "Status / Version" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:711 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:746 msgid "Strength" msgstr "Styrka" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:394 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:920 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:404 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:964 msgid "TLS" msgstr "TLS" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:395 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:921 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:405 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:965 msgid "TTLS" msgstr "TTLS" @@ -587,7 +614,7 @@ msgstr "Namnet på brandväggszonen" msgid "The interface metric" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:666 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:701 msgid "The logical vpn network interface, e.g. 'wg0' or 'tun0'." msgstr "" @@ -618,7 +645,7 @@ msgstr "" msgid "The uplink interface name" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:496 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:531 msgid "" "This option is selected by default if this uplink was added automatically " "and counts as 'Open Uplink'." @@ -651,7 +678,12 @@ msgstr "" msgid "Trigger Delay" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:513 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:449 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1005 +msgid "Use system certificates" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:548 msgid "Use the specified MAC address for this uplink." msgstr "" @@ -659,15 +691,15 @@ msgstr "" msgid "User Agent" msgstr "Användaragent" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:634 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:669 msgid "VPN Hook" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:666 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:701 msgid "VPN Interface" msgstr "VPN-gränsnitt" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:651 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:686 msgid "VPN Service" msgstr "VPN-tjänst" @@ -675,17 +707,22 @@ msgstr "VPN-tjänst" msgid "VPN Settings" msgstr "" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:449 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1005 +msgid "Validate server certificate using built-in system CA bundle" +msgstr "" + #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:305 msgid "Verbose Debug Logging" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:313 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:903 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:314 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:943 msgid "WPA Ent. (CCMP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:314 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:904 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:315 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:944 msgid "WPA Ent. (TKIP)" msgstr "" @@ -694,66 +731,71 @@ msgid "WPA Flags" msgstr "WPA-flaggor" #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:304 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:894 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:933 msgid "WPA Pers." msgstr "" #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:305 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:895 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:934 msgid "WPA Pers. (CCMP)" msgstr "" #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:306 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:896 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:935 msgid "WPA Pers. (TKIP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:315 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:905 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:316 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:945 msgid "WPA/WPA2 Ent. (CCMP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:316 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:906 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:317 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:946 msgid "WPA/WPA2 Ent. (TKIP)" msgstr "" #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:307 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:897 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:936 msgid "WPA/WPA2 Pers. (CCMP)" msgstr "" #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:308 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:898 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:937 msgid "WPA/WPA2 Pers. (TKIP)" msgstr "" #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:311 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:901 -msgid "WPA2 Ent. (CCMP)" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:940 +msgid "WPA2 Ent." msgstr "" #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:312 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:902 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:941 +msgid "WPA2 Ent. (CCMP)" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:313 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:942 msgid "WPA2 Ent. (TKIP)" msgstr "" #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:301 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:891 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:930 msgid "WPA2 Pers." msgstr "" #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:302 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:892 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:931 msgid "WPA2 Pers. (CCMP)" msgstr "" #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:303 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:893 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:932 msgid "WPA2 Pers. (TKIP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:900 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:939 msgid "WPA2/WPA3 Ent." msgstr "" @@ -762,11 +804,11 @@ msgid "WPA2/WPA3 Ent. (CCMP)" msgstr "" #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:300 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:890 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:929 msgid "WPA2/WPA3 Pers. (CCMP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:899 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:938 msgid "WPA3 Ent." msgstr "" @@ -774,16 +816,16 @@ msgstr "" msgid "WPA3 Ent. (CCMP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:907 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:947 msgid "WPA3 OWE (CCMP)" msgstr "" #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:299 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:889 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:928 msgid "WPA3 Pers. (SAE)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:721 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:756 msgid "Wireless Scan" msgstr "Trådlös skanning" @@ -795,18 +837,18 @@ msgstr "" msgid "Wireless Stations" msgstr "Trådlösa stationer" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:412 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:937 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:421 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:981 msgid "auth=MSCHAPV2" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:411 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:936 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:420 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:980 msgid "auth=PAP" msgstr "auth=pap" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:318 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:908 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:319 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:948 msgid "none" msgstr "inga" @@ -826,6 +868,9 @@ msgstr "" msgid "use the second radio only (radio1)" msgstr "" +#~ msgid "Identify" +#~ msgstr "Identifiera" + #~ msgid "Delete this network" #~ msgstr "Ta bort det här nätverket" @@ -853,9 +898,6 @@ msgstr "" #~ msgid "Force TKIP and CCMP (AES)" #~ msgstr "Tvinga TKIP och CCMP (AES)" -#~ msgid "Identity" -#~ msgstr "Identitet" - #~ msgid "Input file not found, please check your configuration." #~ msgstr "" #~ "Inmatningsfilen kunde inte hittas, var vänlig kontrollera din " diff --git a/applications/luci-app-travelmate/po/templates/travelmate.pot b/applications/luci-app-travelmate/po/templates/travelmate.pot index cf94988279..4f58c0c53a 100644 --- a/applications/luci-app-travelmate/po/templates/travelmate.pot +++ b/applications/luci-app-travelmate/po/templates/travelmate.pot @@ -9,11 +9,11 @@ msgstr "" msgid "AP QR-Codes..." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:962 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1030 msgid "Add Uplink %q" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:819 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:858 msgid "Add Uplink..." msgstr "" @@ -26,16 +26,21 @@ msgid "" "Additional trigger delay in seconds before travelmate processing begins." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:402 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:926 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:430 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:987 +msgid "Anonymous Identity" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:411 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:970 msgid "Authentication" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:495 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:530 msgid "Auto Added Open Uplink" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:574 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:609 msgid "Auto Login Script" msgstr "" @@ -43,7 +48,7 @@ msgstr "" msgid "AutoAdd Open Uplinks" 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:592 msgid "" "Automatically (re-)enable the uplink after n minutes, e.g. after " "failed login attempts.
The default of '0' disables this feature." @@ -55,13 +60,13 @@ msgid "" "config." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:539 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:574 msgid "" "Automatically disable the uplink after n minutes, e.g. for timed " "connections.
The default of '0' disables this feature." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:634 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:669 msgid "" "Automatically handle VPN connections.
Please note: This feature " "requires the additional configuration of Wireguard or OpenVPNgreen." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:403 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:928 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:412 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:972 msgid "PAP" msgstr "" -#: 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:922 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:406 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:966 msgid "PEAP" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:385 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:911 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:389 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:396 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:951 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:957 msgid "Password" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:436 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:955 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:472 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1024 msgid "Password of Private Key" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:421 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:943 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:456 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1011 msgid "Path to CA-Certificate" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:426 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:947 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:462 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1016 msgid "Path to Client-Certificate" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:431 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:951 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:467 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1020 msgid "Path to Private Key" msgstr "" @@ -457,10 +479,15 @@ msgid "" "WLAN credentials to your mobile devices." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:732 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:767 msgid "Repeat Scan" msgstr "" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:441 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:998 +msgid "Required" +msgstr "" + #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:277 msgid "Restart Interface" msgstr "" @@ -479,18 +506,18 @@ msgid "Run Flags" msgstr "" #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:290 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:451 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:713 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:868 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:486 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:748 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:907 msgid "SSID" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:864 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:903 msgid "SSID (hidden)" msgstr "" #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:64 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:973 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1041 msgid "Save" msgstr "" @@ -498,11 +525,11 @@ msgstr "" msgid "Scan Limit" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:697 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:732 msgid "Scan on" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:613 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:648 msgid "Script Arguments" msgstr "" @@ -526,13 +553,13 @@ msgstr "" msgid "Signal Quality Threshold" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:614 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:649 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:719 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:754 msgid "Starting wireless scan on '" msgstr "" @@ -552,17 +579,17 @@ msgstr "" msgid "Status / Version" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:711 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:746 msgid "Strength" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:394 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:920 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:404 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:964 msgid "TLS" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:395 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:921 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:405 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:965 msgid "TTLS" msgstr "" @@ -578,7 +605,7 @@ msgstr "" msgid "The interface metric" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:666 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:701 msgid "The logical vpn network interface, e.g. 'wg0' or 'tun0'." msgstr "" @@ -609,7 +636,7 @@ msgstr "" msgid "The uplink interface name" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:496 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:531 msgid "" "This option is selected by default if this uplink was added automatically " "and counts as 'Open Uplink'." @@ -642,7 +669,12 @@ msgstr "" msgid "Trigger Delay" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:513 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:449 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1005 +msgid "Use system certificates" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:548 msgid "Use the specified MAC address for this uplink." msgstr "" @@ -650,15 +682,15 @@ msgstr "" msgid "User Agent" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:634 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:669 msgid "VPN Hook" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:666 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:701 msgid "VPN Interface" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:651 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:686 msgid "VPN Service" msgstr "" @@ -666,17 +698,22 @@ msgstr "" msgid "VPN Settings" msgstr "" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:449 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1005 +msgid "Validate server certificate using built-in system CA bundle" +msgstr "" + #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:305 msgid "Verbose Debug Logging" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:313 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:903 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:314 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:943 msgid "WPA Ent. (CCMP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:314 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:904 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:315 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:944 msgid "WPA Ent. (TKIP)" msgstr "" @@ -685,66 +722,71 @@ msgid "WPA Flags" msgstr "" #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:304 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:894 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:933 msgid "WPA Pers." msgstr "" #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:305 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:895 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:934 msgid "WPA Pers. (CCMP)" msgstr "" #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:306 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:896 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:935 msgid "WPA Pers. (TKIP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:315 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:905 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:316 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:945 msgid "WPA/WPA2 Ent. (CCMP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:316 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:906 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:317 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:946 msgid "WPA/WPA2 Ent. (TKIP)" msgstr "" #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:307 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:897 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:936 msgid "WPA/WPA2 Pers. (CCMP)" msgstr "" #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:308 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:898 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:937 msgid "WPA/WPA2 Pers. (TKIP)" msgstr "" #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:311 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:901 -msgid "WPA2 Ent. (CCMP)" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:940 +msgid "WPA2 Ent." msgstr "" #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:312 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:902 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:941 +msgid "WPA2 Ent. (CCMP)" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:313 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:942 msgid "WPA2 Ent. (TKIP)" msgstr "" #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:301 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:891 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:930 msgid "WPA2 Pers." msgstr "" #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:302 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:892 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:931 msgid "WPA2 Pers. (CCMP)" msgstr "" #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:303 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:893 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:932 msgid "WPA2 Pers. (TKIP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:900 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:939 msgid "WPA2/WPA3 Ent." msgstr "" @@ -753,11 +795,11 @@ msgid "WPA2/WPA3 Ent. (CCMP)" msgstr "" #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:300 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:890 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:929 msgid "WPA2/WPA3 Pers. (CCMP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:899 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:938 msgid "WPA3 Ent." msgstr "" @@ -765,16 +807,16 @@ msgstr "" msgid "WPA3 Ent. (CCMP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:907 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:947 msgid "WPA3 OWE (CCMP)" msgstr "" #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:299 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:889 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:928 msgid "WPA3 Pers. (SAE)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:721 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:756 msgid "Wireless Scan" msgstr "" @@ -786,18 +828,18 @@ msgstr "" msgid "Wireless Stations" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:412 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:937 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:421 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:981 msgid "auth=MSCHAPV2" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:411 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:936 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:420 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:980 msgid "auth=PAP" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:318 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:908 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:319 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:948 msgid "none" msgstr "" diff --git a/applications/luci-app-travelmate/po/tr/travelmate.po b/applications/luci-app-travelmate/po/tr/travelmate.po index 4907b93fcb..56b9ff49b3 100644 --- a/applications/luci-app-travelmate/po/tr/travelmate.po +++ b/applications/luci-app-travelmate/po/tr/travelmate.po @@ -1,7 +1,7 @@ msgid "" msgstr "" -"PO-Revision-Date: 2021-08-25 15:34+0000\n" -"Last-Translator: ToldYouThat \n" +"PO-Revision-Date: 2021-09-04 07:10+0000\n" +"Last-Translator: Oğuz Ersen \n" "Language-Team: Turkish \n" "Language: tr\n" @@ -18,11 +18,11 @@ msgstr "-- Erişim Noktası Seçimi --" msgid "AP QR-Codes..." msgstr "Bağlantı Noktası QR-Kodları..." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:962 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1030 msgid "Add Uplink %q" msgstr "Yukarı Bağlantı Ekle %q" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:819 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:858 msgid "Add Uplink..." msgstr "Yukarı Bağlantı Ekle..." @@ -36,16 +36,21 @@ msgid "" msgstr "" "Travelmate işleme başlamadan önce saniye cinsinden ek tetikleme gecikmesi." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:402 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:926 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:430 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:987 +msgid "Anonymous Identity" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:411 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:970 msgid "Authentication" msgstr "Kimlik Doğrulama" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:495 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:530 msgid "Auto Added Open Uplink" -msgstr "" +msgstr "Otomatik Eklenen Açık Yukarı Bağlantı" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:574 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:609 msgid "Auto Login Script" msgstr "Otomatik Oturum Açma Betiği" @@ -53,7 +58,7 @@ msgstr "Otomatik Oturum Açma Betiği" 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:557 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:592 msgid "" "Automatically (re-)enable the uplink after n minutes, e.g. after " "failed login attempts.
The default of '0' disables this feature." @@ -70,7 +75,7 @@ msgstr "" "Kablosuz yapılandırmanıza otomatik olarak otel giriş portalları gibi açık " "yukarı bağlantıları ekleyin." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:539 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:574 msgid "" "Automatically disable the uplink after n minutes, e.g. for timed " "connections.
The default of '0' disables this feature." @@ -79,7 +84,7 @@ msgstr "" "bırakın, ör. zamanlanmış bağlantılar için.
Varsayılan \"0\" bu " "özelliği devre dışı bırakır." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:634 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:669 msgid "" "Automatically handle VPN connections.
Please note: This feature " "requires the additional configuration of Wireguard or OpenVPN İlk başlangıçta gerekli ağ ve güvenlik duvarı ayarlarını " "yapmak için lütfen 'Arayüz Sihirbazı'nı bir kez çalıştırın." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:484 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:519 msgid "Connection End" msgstr "Bağlantı Sonu" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:556 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:591 msgid "Connection End Expiry" msgstr "Bağlantı Sonu Son kullanma tarihi" @@ -149,11 +154,11 @@ msgstr "Bağlantı Sonu Son kullanma tarihi" msgid "Connection Limit" msgstr "Bağlantı Sınırı" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:473 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:508 msgid "Connection Start" msgstr "Bağlantı Başlatma" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:538 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:573 msgid "Connection Start Expiry" msgstr "Bağlantı Başlangıcı Son kullanma tarihi" @@ -161,14 +166,19 @@ msgstr "Bağlantı Başlangıcı Son kullanma tarihi" msgid "Device" msgstr "Cihaz" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:855 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:894 msgid "Device Name" msgstr "Cihaz adı" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:439 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:996 +msgid "Disabled" +msgstr "" + #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:46 #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:132 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:727 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:968 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:762 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1036 msgid "Dismiss" msgstr "Kapat" @@ -200,28 +210,28 @@ msgstr "E-Posta ayarları" msgid "E-Mail Topic" msgstr "E-Posta Konusu" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:407 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:932 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:416 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:976 msgid "EAP-GTC" msgstr "EAP-GTC" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:408 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:933 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:417 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:977 msgid "EAP-MD5" msgstr "EAP-MD5" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:409 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:934 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:418 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:978 msgid "EAP-MSCHAPV2" msgstr "EAP-MSCHAPV2" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:393 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:918 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:402 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:962 msgid "EAP-Method" msgstr "EAP Yöntemi" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:410 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:935 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:419 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:979 msgid "EAP-TLS" msgstr "EAP-TLS" @@ -253,8 +263,8 @@ msgid "Enabled" msgstr "Etkin" #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:298 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:715 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:888 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:750 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:927 msgid "Encryption" msgstr "Şifreleme" @@ -262,7 +272,7 @@ msgstr "Şifreleme" msgid "Ext. Hooks" msgstr "Harici Kancalar" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:575 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:610 msgid "" "External script reference which will be called for automated captive portal " "logins." @@ -270,8 +280,8 @@ msgstr "" "Otomatik sabit portal oturum açma işlemleri için çağrılacak harici komut " "dosyası referansı." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:397 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:923 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:407 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:967 msgid "FAST" msgstr "HIZLI" @@ -295,12 +305,12 @@ msgid "" msgstr "" "Travelmate başarılı bir wlan uplink bağlantısı için ne kadar beklemelidir." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:417 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:940 -msgid "Identify" -msgstr "Tanımla" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:426 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:984 +msgid "Identity" +msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:874 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:913 msgid "Ignore BSSID" msgstr "BSSID'yi Yoksay" @@ -308,7 +318,7 @@ msgstr "BSSID'yi Yoksay" msgid "Information" msgstr "Bilgi" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:859 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:898 msgid "Interface Name" msgstr "Arayüz Adı" @@ -350,20 +360,25 @@ msgstr "" msgid "Log View" msgstr "Günlük Kayıtlarını Göster" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:512 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:547 msgid "MAC Address" msgstr "MAC Adresi" -#: 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 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:414 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:974 msgid "MSCHAP" msgstr "MSCHAP" -#: 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 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:415 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:975 msgid "MSCHAPV2" msgstr "MSCHAPV2" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:434 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:991 +msgid "Mgmt. Frame Protection" +msgstr "" + #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:355 msgid "" "Minimum signal quality threshold as percent for conditional uplink (dis-) " @@ -380,7 +395,7 @@ msgstr "Net Hata Kontrolü" msgid "No travelmate related logs yet!" msgstr "Henüz travelmate ile ilgili kayıt yok!" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:317 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:318 msgid "OWE" msgstr "OWE" @@ -388,6 +403,11 @@ msgstr "OWE" msgid "On/Off" msgstr "Açık/Kapalı" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:440 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:997 +msgid "Optional" +msgstr "" + #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:365 msgid "Overall Timeout" msgstr "Genel Zaman Aşımı" @@ -409,39 +429,48 @@ msgid "" "connection is emphasized in green." msgstr "" +"Travelmate için yapılandırılan tüm yukarı bağlantılara genel bakış. " +"Sürükleyip bırakarak mevcut yukarı bağlantıları düzenleyebilir, kaldırabilir " +"veya önceliklerini değiştirebilirsiniz ve yenilerini tarayabilirsiniz.
" +"Geçerli olarak kullanılan yukarı bağlantısı mavi renkle, şifreli bir VPN yukarı " +"bağlantısı yeşil renkle vurgulanır." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:403 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:928 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:412 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:972 msgid "PAP" msgstr "PAP" -#: 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:922 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:406 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:966 msgid "PEAP" msgstr "PEAP" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:385 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:911 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:389 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:396 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:951 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:957 msgid "Password" msgstr "Parola" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:436 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:955 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:472 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1024 msgid "Password of Private Key" msgstr "Özel Anahtarın Şifresi" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:421 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:943 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:456 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1011 msgid "Path to CA-Certificate" msgstr "CA-Sertifikasına Giden Yol" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:426 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:947 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:462 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1016 msgid "Path to Client-Certificate" msgstr "İstemci Sertifikasına Giden Yol" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:431 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:951 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:467 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1020 msgid "Path to Private Key" msgstr "Özel Anahtara Giden Yol" @@ -506,10 +535,15 @@ 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:732 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:767 msgid "Repeat Scan" msgstr "Taramayı Tekrarla" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:441 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:998 +msgid "Required" +msgstr "" + #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:277 msgid "Restart Interface" msgstr "Arayüzü Yeniden Başlat" @@ -530,18 +564,18 @@ msgid "Run Flags" msgstr "Bayrakları Çalıştır" #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:290 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:451 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:713 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:868 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:486 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:748 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:907 msgid "SSID" msgstr "SSID" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:864 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:903 msgid "SSID (hidden)" msgstr "SSID (gizli)" #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:64 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:973 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1041 msgid "Save" msgstr "Kaydet" @@ -549,11 +583,11 @@ msgstr "Kaydet" msgid "Scan Limit" msgstr "Tarama Sınırı" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:697 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:732 msgid "Scan on" msgstr "Tarama açık" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:613 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:648 msgid "Script Arguments" msgstr "Komut Dosyası Bağımsız Değişkenleri" @@ -578,7 +612,7 @@ msgstr "Ayarlar" msgid "Signal Quality Threshold" msgstr "Sinyal Kalitesi Eşiği" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:614 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:649 msgid "" "Space separated list of additional arguments passed to the Auto Login " "Script, i.e. username and password" @@ -586,7 +620,7 @@ 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:719 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:754 msgid "Starting wireless scan on '" msgstr "Kablosuz tarama başlatılıyor '" @@ -606,17 +640,17 @@ msgstr "İstasyon MAC'i" msgid "Status / Version" msgstr "Durum / Sürüm" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:711 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:746 msgid "Strength" msgstr "Güç" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:394 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:920 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:404 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:964 msgid "TLS" msgstr "TLS" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:395 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:921 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:405 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:965 msgid "TTLS" msgstr "TTLS" @@ -632,7 +666,7 @@ msgstr "Güvenlik duvarı bölgesi adı" msgid "The interface metric" msgstr "Arayüz metriği" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:666 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:701 msgid "The logical vpn network interface, e.g. 'wg0' or 'tun0'." msgstr "Mantıksal vpn ağ arayüzü, ör. 'wg0' veya 'tun0'." @@ -669,11 +703,13 @@ msgstr "Uplink arayüzü güncellendi." msgid "The uplink interface name" msgstr "Uplink arayüzü adı" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:496 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:531 msgid "" "This option is selected by default if this uplink was added automatically " "and counts as 'Open Uplink'." msgstr "" +"Bu seçenek, bu yukarı bağlantı otomatik olarak eklendiyse ve 'Açık Yukarı " +"Bağlantı' olarak sayılıyorsa öntanımlı olarak seçilidir." #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:24 msgid "" @@ -705,7 +741,12 @@ msgstr "Eksik internet kullanılabilirliğini bir hata olarak ele al." msgid "Trigger Delay" msgstr "Tetikleme Gecikmesi" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:513 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:449 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1005 +msgid "Use system certificates" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:548 msgid "Use the specified MAC address for this uplink." msgstr "Bu uplink için belirtilen MAC adresini kullanın." @@ -713,15 +754,15 @@ msgstr "Bu uplink için belirtilen MAC adresini kullanın." msgid "User Agent" msgstr "Kullanıcı Aracısı" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:634 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:669 msgid "VPN Hook" msgstr "VPN Kancası" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:666 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:701 msgid "VPN Interface" msgstr "VPN Arayüzü" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:651 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:686 msgid "VPN Service" msgstr "VPN Hizmeti" @@ -729,17 +770,22 @@ msgstr "VPN Hizmeti" msgid "VPN Settings" msgstr "VPN Ayarları" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:449 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1005 +msgid "Validate server certificate using built-in system CA bundle" +msgstr "" + #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:305 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:313 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:903 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:314 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:943 msgid "WPA Ent. (CCMP)" msgstr "WPA Ent. (CCMP)" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:314 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:904 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:315 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:944 msgid "WPA Ent. (TKIP)" msgstr "WPA Ent. (TKIP)" @@ -748,66 +794,71 @@ msgid "WPA Flags" msgstr "WPA Bayrakları" #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:304 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:894 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:933 msgid "WPA Pers." msgstr "WPA Pers." #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:305 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:895 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:934 msgid "WPA Pers. (CCMP)" msgstr "WPA Pers. (CCMP)" #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:306 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:896 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:935 msgid "WPA Pers. (TKIP)" msgstr "WPA Pers. (TKIP)" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:315 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:905 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:316 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:945 msgid "WPA/WPA2 Ent. (CCMP)" msgstr "WPA/WPA2 Ent. (CCMP)" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:316 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:906 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:317 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:946 msgid "WPA/WPA2 Ent. (TKIP)" msgstr "WPA/WPA2 Ent. (TKIP)" #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:307 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:897 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:936 msgid "WPA/WPA2 Pers. (CCMP)" msgstr "WPA/WPA2 Pers. (CCMP)" #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:308 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:898 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:937 msgid "WPA/WPA2 Pers. (TKIP)" msgstr "WPA/WPA2 Pers. (TKIP)" #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:311 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:901 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:940 +msgid "WPA2 Ent." +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:312 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:941 msgid "WPA2 Ent. (CCMP)" msgstr "WPA2 Ent. (CCMP)" -#: 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 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:313 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:942 msgid "WPA2 Ent. (TKIP)" msgstr "WPA2 Ent. (TKIP)" #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:301 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:891 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:930 msgid "WPA2 Pers." msgstr "WPA2 Pers." #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:302 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:892 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:931 msgid "WPA2 Pers. (CCMP)" msgstr "WPA2 Pers. (CCMP)" #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:303 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:893 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:932 msgid "WPA2 Pers. (TKIP)" msgstr "WPA2 Pers. (TKIP)" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:900 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:939 msgid "WPA2/WPA3 Ent." msgstr "WPA2/WPA3 Ent." @@ -816,11 +867,11 @@ msgid "WPA2/WPA3 Ent. (CCMP)" msgstr "WPA2/WPA3 Ent. (CCMP)" #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:300 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:890 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:929 msgid "WPA2/WPA3 Pers. (CCMP)" msgstr "WPA2/WPA3 Pers. (CCMP)" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:899 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:938 msgid "WPA3 Ent." msgstr "WPA3 Ent." @@ -828,16 +879,16 @@ msgstr "WPA3 Ent." msgid "WPA3 Ent. (CCMP)" msgstr "WPA3 Ent. (CCMP)" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:907 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:947 msgid "WPA3 OWE (CCMP)" msgstr "WPA3 OWE (CCMP)" #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:299 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:889 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:928 msgid "WPA3 Pers. (SAE)" msgstr "WPA3 Pers. (SAE)" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:721 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:756 msgid "Wireless Scan" msgstr "Kablosuz Tarama" @@ -849,18 +900,18 @@ msgstr "Kablosuz Ağ Ayarları" msgid "Wireless Stations" msgstr "Kablosuz İstasyonları" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:412 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:937 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:421 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:981 msgid "auth=MSCHAPV2" msgstr "auth=MSCHAPV2" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:411 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:936 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:420 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:980 msgid "auth=PAP" msgstr "auth=PAP" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:318 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:908 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:319 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:948 msgid "none" msgstr "hiçbiri" @@ -880,6 +931,9 @@ msgstr "sadece ilk radyoyu kullan (radyo0)" msgid "use the second radio only (radio1)" msgstr "sadece ikinci radyoyu kullan (radyo1)" +#~ msgid "Identify" +#~ msgstr "Tanımla" + #~ msgid "" #~ "Overview of all configured uplinks for travelmate.
You can edit, " #~ "remove or prioritize existing uplinks by drag & drop and scan for new " diff --git a/applications/luci-app-travelmate/po/uk/travelmate.po b/applications/luci-app-travelmate/po/uk/travelmate.po index 8a9c01dd48..0dd3ce29e5 100644 --- a/applications/luci-app-travelmate/po/uk/travelmate.po +++ b/applications/luci-app-travelmate/po/uk/travelmate.po @@ -19,11 +19,11 @@ msgstr "" msgid "AP QR-Codes..." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:962 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1030 msgid "Add Uplink %q" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:819 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:858 msgid "Add Uplink..." msgstr "" @@ -36,16 +36,21 @@ msgid "" "Additional trigger delay in seconds before travelmate processing begins." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:402 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:926 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:430 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:987 +msgid "Anonymous Identity" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:411 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:970 msgid "Authentication" msgstr "Автентифікація" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:495 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:530 msgid "Auto Added Open Uplink" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:574 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:609 msgid "Auto Login Script" msgstr "" @@ -53,7 +58,7 @@ msgstr "" msgid "AutoAdd Open Uplinks" 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:592 msgid "" "Automatically (re-)enable the uplink after n minutes, e.g. after " "failed login attempts.
The default of '0' disables this feature." @@ -65,13 +70,13 @@ msgid "" "config." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:539 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:574 msgid "" "Automatically disable the uplink after n minutes, e.g. for timed " "connections.
The default of '0' disables this feature." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:634 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:669 msgid "" "Automatically handle VPN connections.
Please note: This feature " "requires the additional configuration of Wireguard or OpenVPNgreen
." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:403 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:928 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:412 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:972 msgid "PAP" msgstr "" -#: 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:922 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:406 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:966 msgid "PEAP" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:385 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:911 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:389 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:396 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:951 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:957 msgid "Password" msgstr "Пароль" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:436 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:955 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:472 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1024 msgid "Password of Private Key" msgstr "Пароль закритого ключа" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:421 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:943 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:456 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1011 msgid "Path to CA-Certificate" msgstr "Шлях до сертифіката CA" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:426 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:947 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:462 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1016 msgid "Path to Client-Certificate" msgstr "Шлях до сертифіката клієнта" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:431 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:951 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:467 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1020 msgid "Path to Private Key" msgstr "Шлях до закритого ключа" @@ -467,10 +489,15 @@ msgid "" "WLAN credentials to your mobile devices." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:732 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:767 msgid "Repeat Scan" msgstr "" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:441 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:998 +msgid "Required" +msgstr "" + #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:277 msgid "Restart Interface" msgstr "" @@ -489,18 +516,18 @@ msgid "Run Flags" msgstr "" #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:290 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:451 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:713 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:868 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:486 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:748 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:907 msgid "SSID" msgstr "SSID" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:864 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:903 msgid "SSID (hidden)" msgstr "" #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:64 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:973 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1041 msgid "Save" msgstr "Зберегти" @@ -508,11 +535,11 @@ msgstr "Зберегти" msgid "Scan Limit" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:697 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:732 msgid "Scan on" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:613 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:648 msgid "Script Arguments" msgstr "" @@ -536,13 +563,13 @@ msgstr "Налаштування" msgid "Signal Quality Threshold" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:614 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:649 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:719 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:754 msgid "Starting wireless scan on '" msgstr "" @@ -562,17 +589,17 @@ msgstr "" msgid "Status / Version" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:711 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:746 msgid "Strength" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:394 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:920 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:404 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:964 msgid "TLS" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:395 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:921 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:405 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:965 msgid "TTLS" msgstr "" @@ -588,7 +615,7 @@ msgstr "" msgid "The interface metric" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:666 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:701 msgid "The logical vpn network interface, e.g. 'wg0' or 'tun0'." msgstr "" @@ -619,7 +646,7 @@ msgstr "" msgid "The uplink interface name" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:496 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:531 msgid "" "This option is selected by default if this uplink was added automatically " "and counts as 'Open Uplink'." @@ -652,7 +679,12 @@ msgstr "" msgid "Trigger Delay" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:513 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:449 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1005 +msgid "Use system certificates" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:548 msgid "Use the specified MAC address for this uplink." msgstr "" @@ -660,15 +692,15 @@ msgstr "" msgid "User Agent" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:634 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:669 msgid "VPN Hook" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:666 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:701 msgid "VPN Interface" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:651 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:686 msgid "VPN Service" msgstr "" @@ -676,17 +708,22 @@ msgstr "" msgid "VPN Settings" msgstr "" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:449 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1005 +msgid "Validate server certificate using built-in system CA bundle" +msgstr "" + #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:305 msgid "Verbose Debug Logging" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:313 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:903 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:314 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:943 msgid "WPA Ent. (CCMP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:314 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:904 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:315 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:944 msgid "WPA Ent. (TKIP)" msgstr "" @@ -695,66 +732,71 @@ msgid "WPA Flags" msgstr "" #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:304 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:894 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:933 msgid "WPA Pers." msgstr "" #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:305 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:895 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:934 msgid "WPA Pers. (CCMP)" msgstr "" #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:306 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:896 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:935 msgid "WPA Pers. (TKIP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:315 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:905 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:316 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:945 msgid "WPA/WPA2 Ent. (CCMP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:316 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:906 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:317 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:946 msgid "WPA/WPA2 Ent. (TKIP)" msgstr "" #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:307 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:897 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:936 msgid "WPA/WPA2 Pers. (CCMP)" msgstr "" #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:308 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:898 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:937 msgid "WPA/WPA2 Pers. (TKIP)" msgstr "" #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:311 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:901 -msgid "WPA2 Ent. (CCMP)" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:940 +msgid "WPA2 Ent." msgstr "" #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:312 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:902 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:941 +msgid "WPA2 Ent. (CCMP)" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:313 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:942 msgid "WPA2 Ent. (TKIP)" msgstr "" #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:301 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:891 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:930 msgid "WPA2 Pers." msgstr "" #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:302 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:892 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:931 msgid "WPA2 Pers. (CCMP)" msgstr "" #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:303 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:893 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:932 msgid "WPA2 Pers. (TKIP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:900 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:939 msgid "WPA2/WPA3 Ent." msgstr "" @@ -763,11 +805,11 @@ msgid "WPA2/WPA3 Ent. (CCMP)" msgstr "" #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:300 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:890 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:929 msgid "WPA2/WPA3 Pers. (CCMP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:899 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:938 msgid "WPA3 Ent." msgstr "" @@ -775,16 +817,16 @@ msgstr "" msgid "WPA3 Ent. (CCMP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:907 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:947 msgid "WPA3 OWE (CCMP)" msgstr "" #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:299 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:889 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:928 msgid "WPA3 Pers. (SAE)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:721 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:756 msgid "Wireless Scan" msgstr "" @@ -796,18 +838,18 @@ msgstr "" msgid "Wireless Stations" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:412 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:937 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:421 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:981 msgid "auth=MSCHAPV2" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:411 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:936 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:420 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:980 msgid "auth=PAP" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:318 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:908 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:319 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:948 msgid "none" msgstr "" @@ -851,9 +893,6 @@ msgstr "" #~ msgid "Force TKIP and CCMP (AES)" #~ msgstr "Примусово TKIP та CCMP (AES)" -#~ msgid "Identity" -#~ msgstr "Ідентифікація EAP" - #~ msgid "Input file not found, please check your configuration." #~ msgstr "Вхідний файл не знайдено, будь ласка, перевірте вашу конфігурацію." diff --git a/applications/luci-app-travelmate/po/vi/travelmate.po b/applications/luci-app-travelmate/po/vi/travelmate.po index 0bd3e0e386..ed6c6a22f8 100644 --- a/applications/luci-app-travelmate/po/vi/travelmate.po +++ b/applications/luci-app-travelmate/po/vi/travelmate.po @@ -18,11 +18,11 @@ msgstr "" msgid "AP QR-Codes..." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:962 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1030 msgid "Add Uplink %q" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:819 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:858 msgid "Add Uplink..." msgstr "" @@ -35,16 +35,21 @@ msgid "" "Additional trigger delay in seconds before travelmate processing begins." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:402 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:926 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:430 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:987 +msgid "Anonymous Identity" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:411 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:970 msgid "Authentication" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:495 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:530 msgid "Auto Added Open Uplink" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:574 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:609 msgid "Auto Login Script" msgstr "" @@ -52,7 +57,7 @@ msgstr "" msgid "AutoAdd Open Uplinks" 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:592 msgid "" "Automatically (re-)enable the uplink after n minutes, e.g. after " "failed login attempts.
The default of '0' disables this feature." @@ -64,13 +69,13 @@ msgid "" "config." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:539 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:574 msgid "" "Automatically disable the uplink after n minutes, e.g. for timed " "connections.
The default of '0' disables this feature." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:634 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:669 msgid "" "Automatically handle VPN connections.
Please note: This feature " "requires the additional configuration of Wireguard or OpenVPNgreen." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:403 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:928 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:412 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:972 msgid "PAP" msgstr "" -#: 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:922 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:406 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:966 msgid "PEAP" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:385 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:911 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:389 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:396 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:951 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:957 msgid "Password" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:436 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:955 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:472 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1024 msgid "Password of Private Key" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:421 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:943 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:456 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1011 msgid "Path to CA-Certificate" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:426 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:947 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:462 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1016 msgid "Path to Client-Certificate" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:431 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:951 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:467 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1020 msgid "Path to Private Key" msgstr "" @@ -466,10 +488,15 @@ msgid "" "WLAN credentials to your mobile devices." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:732 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:767 msgid "Repeat Scan" msgstr "" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:441 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:998 +msgid "Required" +msgstr "" + #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:277 msgid "Restart Interface" msgstr "" @@ -488,18 +515,18 @@ msgid "Run Flags" msgstr "" #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:290 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:451 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:713 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:868 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:486 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:748 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:907 msgid "SSID" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:864 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:903 msgid "SSID (hidden)" msgstr "" #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:64 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:973 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1041 msgid "Save" msgstr "" @@ -507,11 +534,11 @@ msgstr "" msgid "Scan Limit" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:697 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:732 msgid "Scan on" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:613 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:648 msgid "Script Arguments" msgstr "" @@ -535,13 +562,13 @@ msgstr "" msgid "Signal Quality Threshold" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:614 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:649 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:719 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:754 msgid "Starting wireless scan on '" msgstr "" @@ -561,17 +588,17 @@ msgstr "" msgid "Status / Version" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:711 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:746 msgid "Strength" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:394 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:920 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:404 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:964 msgid "TLS" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:395 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:921 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:405 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:965 msgid "TTLS" msgstr "" @@ -587,7 +614,7 @@ msgstr "" msgid "The interface metric" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:666 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:701 msgid "The logical vpn network interface, e.g. 'wg0' or 'tun0'." msgstr "" @@ -618,7 +645,7 @@ msgstr "" msgid "The uplink interface name" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:496 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:531 msgid "" "This option is selected by default if this uplink was added automatically " "and counts as 'Open Uplink'." @@ -651,7 +678,12 @@ msgstr "" msgid "Trigger Delay" msgstr "Kích hoạt độ trễ" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:513 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:449 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1005 +msgid "Use system certificates" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:548 msgid "Use the specified MAC address for this uplink." msgstr "" @@ -659,15 +691,15 @@ msgstr "" msgid "User Agent" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:634 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:669 msgid "VPN Hook" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:666 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:701 msgid "VPN Interface" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:651 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:686 msgid "VPN Service" msgstr "" @@ -675,17 +707,22 @@ msgstr "" msgid "VPN Settings" msgstr "" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:449 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1005 +msgid "Validate server certificate using built-in system CA bundle" +msgstr "" + #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:305 msgid "Verbose Debug Logging" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:313 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:903 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:314 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:943 msgid "WPA Ent. (CCMP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:314 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:904 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:315 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:944 msgid "WPA Ent. (TKIP)" msgstr "" @@ -694,66 +731,71 @@ msgid "WPA Flags" msgstr "" #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:304 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:894 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:933 msgid "WPA Pers." msgstr "" #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:305 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:895 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:934 msgid "WPA Pers. (CCMP)" msgstr "" #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:306 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:896 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:935 msgid "WPA Pers. (TKIP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:315 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:905 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:316 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:945 msgid "WPA/WPA2 Ent. (CCMP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:316 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:906 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:317 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:946 msgid "WPA/WPA2 Ent. (TKIP)" msgstr "" #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:307 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:897 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:936 msgid "WPA/WPA2 Pers. (CCMP)" msgstr "" #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:308 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:898 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:937 msgid "WPA/WPA2 Pers. (TKIP)" msgstr "" #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:311 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:901 -msgid "WPA2 Ent. (CCMP)" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:940 +msgid "WPA2 Ent." msgstr "" #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:312 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:902 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:941 +msgid "WPA2 Ent. (CCMP)" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:313 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:942 msgid "WPA2 Ent. (TKIP)" msgstr "" #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:301 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:891 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:930 msgid "WPA2 Pers." msgstr "" #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:302 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:892 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:931 msgid "WPA2 Pers. (CCMP)" msgstr "" #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:303 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:893 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:932 msgid "WPA2 Pers. (TKIP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:900 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:939 msgid "WPA2/WPA3 Ent." msgstr "" @@ -762,11 +804,11 @@ msgid "WPA2/WPA3 Ent. (CCMP)" msgstr "" #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:300 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:890 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:929 msgid "WPA2/WPA3 Pers. (CCMP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:899 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:938 msgid "WPA3 Ent." msgstr "" @@ -774,16 +816,16 @@ msgstr "" msgid "WPA3 Ent. (CCMP)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:907 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:947 msgid "WPA3 OWE (CCMP)" msgstr "" #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:299 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:889 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:928 msgid "WPA3 Pers. (SAE)" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:721 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:756 msgid "Wireless Scan" msgstr "" @@ -795,18 +837,18 @@ msgstr "" msgid "Wireless Stations" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:412 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:937 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:421 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:981 msgid "auth=MSCHAPV2" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:411 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:936 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:420 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:980 msgid "auth=PAP" msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:318 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:908 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:319 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:948 msgid "none" msgstr "" diff --git a/applications/luci-app-travelmate/po/zh_Hans/travelmate.po b/applications/luci-app-travelmate/po/zh_Hans/travelmate.po index 6638800d39..9b319a7f7d 100644 --- a/applications/luci-app-travelmate/po/zh_Hans/travelmate.po +++ b/applications/luci-app-travelmate/po/zh_Hans/travelmate.po @@ -24,11 +24,11 @@ msgstr "-- 选择 AP --" msgid "AP QR-Codes..." msgstr "AP二维码..." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:962 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1030 msgid "Add Uplink %q" msgstr "添加上行链路%q" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:819 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:858 msgid "Add Uplink..." msgstr "添加上行链路..." @@ -41,16 +41,21 @@ msgid "" "Additional trigger delay in seconds before travelmate processing begins." msgstr "在 travelmate 处理开始前的额外触发延迟(秒)。" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:402 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:926 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:430 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:987 +msgid "Anonymous Identity" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:411 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:970 msgid "Authentication" msgstr "身份验证" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:495 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:530 msgid "Auto Added Open Uplink" msgstr "自动添加开放上行链路" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:574 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:609 msgid "Auto Login Script" msgstr "自动登录脚本" @@ -58,7 +63,7 @@ msgstr "自动登录脚本" msgid "AutoAdd Open Uplinks" 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:592 msgid "" "Automatically (re-)enable the uplink after n minutes, e.g. after " "failed login attempts.
The default of '0' disables this feature." @@ -72,7 +77,7 @@ msgid "" "config." msgstr "自动将开放的上行链路(例如酒店的强制登录门户)添加到您的无线配置中。" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:539 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:574 msgid "" "Automatically disable the uplink after n minutes, e.g. for timed " "connections.
The default of '0' disables this feature." @@ -80,7 +85,7 @@ msgstr "" "在连接超时等情况下,等待n分钟后自动禁用上行链路。
默认数值“0”将" "禁用此功能。" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:634 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:669 msgid "" "Automatically handle VPN connections.
Please note: This feature " "requires the additional configuration of Wireguard or OpenVPNOpenVPN。" #: 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:462 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:714 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:882 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:497 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:749 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:921 msgid "BSSID" msgstr "BSSID" -#: 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:929 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:413 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:973 msgid "CHAP" msgstr "CHAP" @@ -109,7 +114,7 @@ msgstr "强制登录门户检测" msgid "Captive Portal URL" msgstr "强制登录门户网址" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:712 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:747 msgid "Channel" msgstr "信道" @@ -135,11 +140,11 @@ 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:519 msgid "Connection End" msgstr "连接终止" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:556 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:591 msgid "Connection End Expiry" msgstr "连接终止超时" @@ -147,11 +152,11 @@ msgstr "连接终止超时" msgid "Connection Limit" msgstr "连接限制" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:473 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:508 msgid "Connection Start" msgstr "连接启动" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:538 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:573 msgid "Connection Start Expiry" msgstr "连接启动超时" @@ -159,14 +164,19 @@ msgstr "连接启动超时" msgid "Device" msgstr "设备" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:855 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:894 msgid "Device Name" msgstr "设备名称" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:439 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:996 +msgid "Disabled" +msgstr "" + #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:46 #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:132 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:727 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:968 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:762 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1036 msgid "Dismiss" msgstr "关闭" @@ -198,28 +208,28 @@ msgstr "电子邮件设置" msgid "E-Mail Topic" msgstr "电子邮件主题" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:407 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:932 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:416 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:976 msgid "EAP-GTC" msgstr "EAP-GTC" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:408 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:933 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:417 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:977 msgid "EAP-MD5" msgstr "EAP-MD5" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:409 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:934 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:418 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:978 msgid "EAP-MSCHAPV2" msgstr "EAP-MSCHAPV2" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:393 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:918 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:402 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:962 msgid "EAP-Method" msgstr "EAP 类型" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:410 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:935 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:419 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:979 msgid "EAP-TLS" msgstr "EAP-TLS" @@ -249,8 +259,8 @@ msgid "Enabled" msgstr "已启用" #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:298 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:715 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:888 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:750 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:927 msgid "Encryption" msgstr "加密" @@ -258,14 +268,14 @@ msgstr "加密" msgid "Ext. Hooks" msgstr "外部接口" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:575 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:610 msgid "" "External script reference which will be called for automated captive portal " "logins." msgstr "引用外部脚本,将用于强制登录门户的登录。" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:397 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:923 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:407 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:967 msgid "FAST" msgstr "FAST" @@ -286,12 +296,12 @@ msgid "" "How long should travelmate wait for a successful wlan uplink connection." msgstr "travelmate 等待 wlan 上行链路连接成功的最长时间。" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:417 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:940 -msgid "Identify" -msgstr "认证" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:426 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:984 +msgid "Identity" +msgstr "鉴权" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:874 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:913 msgid "Ignore BSSID" msgstr "忽略 BSSID" @@ -299,7 +309,7 @@ msgstr "忽略 BSSID" msgid "Information" msgstr "信息" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:859 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:898 msgid "Interface Name" msgstr "接口名称" @@ -337,20 +347,25 @@ msgstr "将附近的扫描结果限制为仅处理最强的上行链路。" msgid "Log View" msgstr "日志视图" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:512 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:547 msgid "MAC Address" msgstr "MAC 地址" -#: 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 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:414 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:974 msgid "MSCHAP" msgstr "MSCHAP" -#: 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 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:415 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:975 msgid "MSCHAPV2" msgstr "MSCHAPV2" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:434 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:991 +msgid "Mgmt. Frame Protection" +msgstr "" + #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:355 msgid "" "Minimum signal quality threshold as percent for conditional uplink (dis-) " @@ -365,7 +380,7 @@ msgstr "网络错误检查" msgid "No travelmate related logs yet!" msgstr "还没有和travlemate相关的日志!" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:317 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:318 msgid "OWE" msgstr "OWE" @@ -373,6 +388,11 @@ msgstr "OWE" msgid "On/Off" msgstr "开/关" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:440 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:997 +msgid "Optional" +msgstr "" + #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:365 msgid "Overall Timeout" msgstr "总体超时" @@ -394,43 +414,46 @@ msgid "" "connection is emphasized in green." msgstr "" -"travelmate 所有已配置上行链路的概览。你可以编辑、删除或对现有上行链路进行优先级设置,方法是拖 & 放并扫描新上行链路。
当前使用的上行连接以蓝色表示,加密的 VPN 上行连接以绿色表示。" +"travelmate 所有已配置上行链路的概览。你可以编辑、删除或对现有上行链路进行优先" +"级设置,方法是拖 & 放并扫描新上行链路。
当前使用的上行连接以蓝色表示,加密的 " +"VPN 上行连接以绿色表示。" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:403 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:928 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:412 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:972 msgid "PAP" msgstr "PAP" -#: 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:922 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:406 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:966 msgid "PEAP" msgstr "PEAP" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:385 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:911 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:389 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:396 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:951 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:957 msgid "Password" msgstr "密码" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:436 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:955 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:472 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1024 msgid "Password of Private Key" msgstr "私钥密码" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:421 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:943 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:456 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1011 msgid "Path to CA-Certificate" msgstr "CA 证书路径" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:426 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:947 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:462 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1016 msgid "Path to Client-Certificate" msgstr "客户端证书路径" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:431 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:951 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:467 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1020 msgid "Path to Private Key" msgstr "私钥路径" @@ -488,10 +511,15 @@ msgid "" "WLAN credentials to your mobile devices." msgstr "为选中的AP生成二维码来便利的传输登录信息至移动设备。" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:732 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:767 msgid "Repeat Scan" msgstr "重复扫描" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:441 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:998 +msgid "Required" +msgstr "" + #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:277 msgid "Restart Interface" msgstr "重启实例" @@ -510,18 +538,18 @@ msgid "Run Flags" msgstr "运行标记" #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:290 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:451 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:713 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:868 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:486 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:748 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:907 msgid "SSID" msgstr "SSID" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:864 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:903 msgid "SSID (hidden)" msgstr "SSID(隐藏)" #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:64 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:973 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1041 msgid "Save" msgstr "保存" @@ -529,11 +557,11 @@ msgstr "保存" msgid "Scan Limit" msgstr "扫描限制" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:697 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:732 msgid "Scan on" msgstr "在此扫描" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:613 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:648 msgid "Script Arguments" msgstr "脚本参数" @@ -557,13 +585,13 @@ msgstr "设置" msgid "Signal Quality Threshold" msgstr "信号质量阈值" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:614 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:649 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:719 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:754 msgid "Starting wireless scan on '" msgstr "在此开始无线扫描" @@ -583,17 +611,17 @@ msgstr "站点MAC" msgid "Status / Version" msgstr "状态 / 版本" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:711 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:746 msgid "Strength" msgstr "强度" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:394 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:920 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:404 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:964 msgid "TLS" msgstr "TLS" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:395 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:921 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:405 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:965 msgid "TTLS" msgstr "TTLS" @@ -609,7 +637,7 @@ msgstr "防火墙区域名称" msgid "The interface metric" msgstr "接口跃点" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:666 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:701 msgid "The logical vpn network interface, e.g. 'wg0' or 'tun0'." msgstr "VPN网络逻辑接口,如“wg0”或“tun0”。" @@ -640,7 +668,7 @@ msgstr "上行链路接口已被更新。" msgid "The uplink interface name" msgstr "上行链路接口名称" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:496 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:531 msgid "" "This option is selected by default if this uplink was added automatically " "and counts as 'Open Uplink'." @@ -675,7 +703,12 @@ msgstr "将无法连接互联网视为错误。" msgid "Trigger Delay" msgstr "触发延时" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:513 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:449 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1005 +msgid "Use system certificates" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:548 msgid "Use the specified MAC address for this uplink." msgstr "为此上行链路使用指定的 MAC 地址。" @@ -683,15 +716,15 @@ msgstr "为此上行链路使用指定的 MAC 地址。" msgid "User Agent" msgstr "User Agent" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:634 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:669 msgid "VPN Hook" msgstr "VPN接口" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:666 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:701 msgid "VPN Interface" msgstr "VPN接口" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:651 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:686 msgid "VPN Service" msgstr "VPN服务" @@ -699,17 +732,22 @@ msgstr "VPN服务" msgid "VPN Settings" msgstr "VPN设置" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:449 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1005 +msgid "Validate server certificate using built-in system CA bundle" +msgstr "" + #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:305 msgid "Verbose Debug Logging" msgstr "详细的调试记录" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:313 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:903 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:314 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:943 msgid "WPA Ent. (CCMP)" msgstr "WPA Ent. (CCMP)" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:314 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:904 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:315 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:944 msgid "WPA Ent. (TKIP)" msgstr "WPA Ent. (TKIP)" @@ -718,66 +756,71 @@ msgid "WPA Flags" msgstr "WPA参数" #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:304 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:894 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:933 msgid "WPA Pers." msgstr "WPA Pers." #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:305 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:895 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:934 msgid "WPA Pers. (CCMP)" msgstr "WPA Pers. (CCMP)" #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:306 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:896 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:935 msgid "WPA Pers. (TKIP)" msgstr "WPA Pers. (TKIP)" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:315 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:905 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:316 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:945 msgid "WPA/WPA2 Ent. (CCMP)" msgstr "WPA/WPA2 Ent. (CCMP)" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:316 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:906 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:317 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:946 msgid "WPA/WPA2 Ent. (TKIP)" msgstr "WPA/WPA2 Ent. (TKIP)" #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:307 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:897 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:936 msgid "WPA/WPA2 Pers. (CCMP)" msgstr "WPA/WPA2 Pers. (CCMP)" #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:308 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:898 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:937 msgid "WPA/WPA2 Pers. (TKIP)" msgstr "WPA/WPA2 Pers. (TKIP)" #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:311 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:901 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:940 +msgid "WPA2 Ent." +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:312 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:941 msgid "WPA2 Ent. (CCMP)" msgstr "WPA2 Ent. (CCMP)" -#: 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 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:313 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:942 msgid "WPA2 Ent. (TKIP)" msgstr "WPA2 Ent. (TKIP)" #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:301 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:891 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:930 msgid "WPA2 Pers." msgstr "WPA2 Pers." #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:302 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:892 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:931 msgid "WPA2 Pers. (CCMP)" msgstr "WPA2 Pers. (CCMP)" #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:303 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:893 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:932 msgid "WPA2 Pers. (TKIP)" msgstr "WPA2 Pers. (TKIP)" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:900 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:939 msgid "WPA2/WPA3 Ent." msgstr "WPA2/WPA3 Ent." @@ -786,11 +829,11 @@ msgid "WPA2/WPA3 Ent. (CCMP)" msgstr "WPA2/WPA3 Ent. (CCMP)" #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:300 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:890 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:929 msgid "WPA2/WPA3 Pers. (CCMP)" msgstr "WPA2/WPA3 Pers. (CCMP)" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:899 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:938 msgid "WPA3 Ent." msgstr "WPA3 Ent." @@ -798,16 +841,16 @@ msgstr "WPA3 Ent." msgid "WPA3 Ent. (CCMP)" msgstr "WPA3 Ent. (CCMP)" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:907 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:947 msgid "WPA3 OWE (CCMP)" msgstr "WPA3 OWE (CCMP)" #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:299 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:889 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:928 msgid "WPA3 Pers. (SAE)" msgstr "WPA3 Pers. (SAE)" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:721 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:756 msgid "Wireless Scan" msgstr "无线扫描" @@ -819,18 +862,18 @@ msgstr "无线设置" msgid "Wireless Stations" msgstr "无线站点" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:412 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:937 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:421 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:981 msgid "auth=MSCHAPV2" msgstr "auth=MSCHAPV2" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:411 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:936 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:420 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:980 msgid "auth=PAP" msgstr "auth=PAP" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:318 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:908 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:319 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:948 msgid "none" msgstr "无" @@ -850,6 +893,9 @@ msgstr "仅使用第一个 radio (radio0)" msgid "use the second radio only (radio1)" msgstr "仅使用第二个 radio (radio1)" +#~ msgid "Identify" +#~ msgstr "认证" + #~ msgid "" #~ "Overview of all configured uplinks for travelmate.
You can edit, " #~ "remove or prioritize existing uplinks by drag & drop and scan for new " @@ -1012,9 +1058,6 @@ msgstr "仅使用第二个 radio (radio1)" #~ msgid "Force TKIP and CCMP (AES)" #~ msgstr "强制 TKIP 和 CCMP(AES)" -#~ msgid "Identity" -#~ msgstr "鉴权" - #~ msgid "Input file not found, please check your configuration." #~ msgstr "未找到输入文件,请检查您的配置。" diff --git a/applications/luci-app-travelmate/po/zh_Hant/travelmate.po b/applications/luci-app-travelmate/po/zh_Hant/travelmate.po index 6b04cd4d46..e79583ae2d 100644 --- a/applications/luci-app-travelmate/po/zh_Hant/travelmate.po +++ b/applications/luci-app-travelmate/po/zh_Hant/travelmate.po @@ -24,11 +24,11 @@ msgstr "-- 選擇AP --" msgid "AP QR-Codes..." msgstr "AP QR-Codes..." -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:962 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1030 msgid "Add Uplink %q" msgstr "新增上行連接 %q" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:819 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:858 msgid "Add Uplink..." msgstr "上行連接..." @@ -41,16 +41,21 @@ msgid "" "Additional trigger delay in seconds before travelmate processing begins." msgstr "附加觸發 travelmate 行程開始延遲的秒數。" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:402 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:926 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:430 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:987 +msgid "Anonymous Identity" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:411 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:970 msgid "Authentication" msgstr "認證" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:495 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:530 msgid "Auto Added Open Uplink" msgstr "自動加入開放上行鏈路" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:574 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:609 msgid "Auto Login Script" msgstr "自動登入指令碼" @@ -58,7 +63,7 @@ msgstr "自動登入指令碼" msgid "AutoAdd Open Uplinks" 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:592 msgid "" "Automatically (re-)enable the uplink after n minutes, e.g. after " "failed login attempts.
The default of '0' disables this feature." @@ -72,7 +77,7 @@ msgid "" "config." msgstr "自動新增開放的上行連接 (例如旅館的強制登錄門戶) 加入到您的無線設定中。" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:539 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:574 msgid "" "Automatically disable the uplink after n minutes, e.g. for timed " "connections.
The default of '0' disables this feature." @@ -80,7 +85,7 @@ msgstr "" "在連接逾時等情況下,等待n分鍾後自動停用上行連接。
預設數值 '0' " "將停用此功能。" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:634 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:669 msgid "" "Automatically handle VPN connections.
Please note: This feature " "requires the additional configuration of Wireguard or OpenVPNOpenVPN。" #: 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:462 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:714 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:882 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:497 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:749 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:921 msgid "BSSID" msgstr "BSSID" -#: 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:929 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:413 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:973 msgid "CHAP" msgstr "CHAP" @@ -109,7 +114,7 @@ msgstr "網頁驗證入口偵測" msgid "Captive Portal URL" msgstr "網頁驗證入口網址" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:712 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:747 msgid "Channel" msgstr "頻道" @@ -135,11 +140,11 @@ 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:519 msgid "Connection End" msgstr "連接終止" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:556 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:591 msgid "Connection End Expiry" msgstr "連線終止逾時" @@ -147,11 +152,11 @@ msgstr "連線終止逾時" msgid "Connection Limit" msgstr "連線限制" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:473 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:508 msgid "Connection Start" msgstr "連線啟動" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:538 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:573 msgid "Connection Start Expiry" msgstr "連線啟動逾時" @@ -159,14 +164,19 @@ msgstr "連線啟動逾時" msgid "Device" msgstr "裝置" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:855 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:894 msgid "Device Name" msgstr "裝置名稱" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:439 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:996 +msgid "Disabled" +msgstr "" + #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:46 #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:132 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:727 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:968 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:762 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1036 msgid "Dismiss" msgstr "關閉" @@ -198,28 +208,28 @@ msgstr "電子郵件設定" msgid "E-Mail Topic" msgstr "電郵主旨" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:407 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:932 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:416 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:976 msgid "EAP-GTC" msgstr "EAP-GTC" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:408 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:933 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:417 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:977 msgid "EAP-MD5" msgstr "EAP-MD5" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:409 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:934 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:418 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:978 msgid "EAP-MSCHAPV2" msgstr "EAP-MSCHAPV2" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:393 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:918 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:402 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:962 msgid "EAP-Method" msgstr "可擴展身份驗證協定(EAP)-方式" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:410 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:935 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:419 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:979 msgid "EAP-TLS" msgstr "EAP-TLS" @@ -249,8 +259,8 @@ msgid "Enabled" msgstr "啟用" #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:298 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:715 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:888 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:750 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:927 msgid "Encryption" msgstr "加密(Encryption)" @@ -258,14 +268,14 @@ msgstr "加密(Encryption)" msgid "Ext. Hooks" msgstr "外部掛勾" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:575 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:610 msgid "" "External script reference which will be called for automated captive portal " "logins." msgstr "引用外部指令碼,將用於網頁驗證入口的登錄。" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:397 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:923 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:407 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:967 msgid "FAST" msgstr "快速" @@ -286,12 +296,12 @@ msgid "" "How long should travelmate wait for a successful wlan uplink connection." msgstr "travelmate 等待 wlan 上行連線成功最長時間。" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:417 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:940 -msgid "Identify" -msgstr "識別" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:426 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:984 +msgid "Identity" +msgstr "身份" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:874 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:913 msgid "Ignore BSSID" msgstr "忽略 BSSID" @@ -299,7 +309,7 @@ msgstr "忽略 BSSID" msgid "Information" msgstr "資訊" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:859 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:898 msgid "Interface Name" msgstr "介面名稱" @@ -338,20 +348,25 @@ msgstr "將附近的掃描結果限制為僅處理最強的上行鏈路。" msgid "Log View" msgstr "日誌檢視" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:512 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:547 msgid "MAC Address" msgstr "MAC 位址" -#: 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 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:414 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:974 msgid "MSCHAP" msgstr "MSCHAP" -#: 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 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:415 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:975 msgid "MSCHAPV2" msgstr "MSCHAPV2" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:434 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:991 +msgid "Mgmt. Frame Protection" +msgstr "" + #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:355 msgid "" "Minimum signal quality threshold as percent for conditional uplink (dis-) " @@ -366,7 +381,7 @@ msgstr "網路錯誤檢查" msgid "No travelmate related logs yet!" msgstr "還沒有和 travlemate 相關的日誌!" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:317 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:318 msgid "OWE" msgstr "OWE" @@ -374,6 +389,11 @@ msgstr "OWE" msgid "On/Off" msgstr "開/關" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:440 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:997 +msgid "Optional" +msgstr "" + #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:365 msgid "Overall Timeout" msgstr "總體逾時" @@ -396,38 +416,40 @@ msgid "" "bold\">green." msgstr "" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:403 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:928 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:412 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:972 msgid "PAP" msgstr "PAP" -#: 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:922 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:406 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:966 msgid "PEAP" msgstr "PEAP" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:385 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:911 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:389 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:396 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:951 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:957 msgid "Password" msgstr "密碼" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:436 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:955 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:472 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1024 msgid "Password of Private Key" msgstr "私鑰密碼" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:421 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:943 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:456 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1011 msgid "Path to CA-Certificate" msgstr "CA 憑證路徑" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:426 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:947 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:462 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1016 msgid "Path to Client-Certificate" msgstr "用戶憑證的路徑" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:431 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:951 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:467 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1020 msgid "Path to Private Key" msgstr "私鑰的路徑" @@ -485,10 +507,15 @@ msgid "" "WLAN credentials to your mobile devices." msgstr "為選取的 AP 產生 QR-Code 來便利的傳輸登錄資訊至行動裝置。" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:732 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:767 msgid "Repeat Scan" msgstr "重複掃描" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:441 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:998 +msgid "Required" +msgstr "" + #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:277 msgid "Restart Interface" msgstr "重啟實例" @@ -507,18 +534,18 @@ msgid "Run Flags" msgstr "執行旗標" #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:290 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:451 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:713 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:868 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:486 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:748 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:907 msgid "SSID" msgstr "SSID" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:864 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:903 msgid "SSID (hidden)" msgstr "SSID (隱藏)" #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:64 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:973 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1041 msgid "Save" msgstr "儲存" @@ -526,11 +553,11 @@ msgstr "儲存" msgid "Scan Limit" msgstr "掃描限制" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:697 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:732 msgid "Scan on" msgstr "在此掃描" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:613 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:648 msgid "Script Arguments" msgstr "指令碼參數" @@ -554,13 +581,13 @@ msgstr "設定" msgid "Signal Quality Threshold" msgstr "訊號品質閾值" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:614 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:649 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:719 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:754 msgid "Starting wireless scan on '" msgstr "在此開始無線掃描" @@ -580,17 +607,17 @@ msgstr "站台MAC位址" msgid "Status / Version" msgstr "狀態/版本" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:711 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:746 msgid "Strength" msgstr "強度" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:394 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:920 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:404 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:964 msgid "TLS" msgstr "傳輸層安全性協定" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:395 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:921 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:405 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:965 msgid "TTLS" msgstr "TTLS" @@ -606,7 +633,7 @@ msgstr "防火牆區域名稱" msgid "The interface metric" msgstr "介面指標" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:666 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:701 msgid "The logical vpn network interface, e.g. 'wg0' or 'tun0'." msgstr "VPN 網路邏輯介面,如「wg0」或「tun0」。" @@ -637,7 +664,7 @@ msgstr "上行介面已被更新。" msgid "The uplink interface name" msgstr "上行介面名稱" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:496 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:531 msgid "" "This option is selected by default if this uplink was added automatically " "and counts as 'Open Uplink'." @@ -673,7 +700,12 @@ msgstr "將無法連接網際網路視為錯誤。" msgid "Trigger Delay" msgstr "觸發延遲" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:513 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:449 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1005 +msgid "Use system certificates" +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:548 msgid "Use the specified MAC address for this uplink." msgstr "為此上行鏈路使用指定的 MAC 位址。" @@ -681,15 +713,15 @@ msgstr "為此上行鏈路使用指定的 MAC 位址。" msgid "User Agent" msgstr "用戶代理" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:634 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:669 msgid "VPN Hook" msgstr "VPN掛鉤" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:666 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:701 msgid "VPN Interface" msgstr "VPN 介面" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:651 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:686 msgid "VPN Service" msgstr "VPN 服務" @@ -697,17 +729,22 @@ msgstr "VPN 服務" msgid "VPN Settings" msgstr "VPN 設定" +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:449 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:1005 +msgid "Validate server certificate using built-in system CA bundle" +msgstr "" + #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/overview.js:305 msgid "Verbose Debug Logging" msgstr "詳細除錯日誌" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:313 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:903 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:314 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:943 msgid "WPA Ent. (CCMP)" msgstr "WPA企業(CCMP)" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:314 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:904 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:315 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:944 msgid "WPA Ent. (TKIP)" msgstr "WPA 企業. (TKIP)" @@ -716,66 +753,71 @@ msgid "WPA Flags" msgstr "WPA 參數" #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:304 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:894 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:933 msgid "WPA Pers." msgstr "WPA 個人." #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:305 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:895 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:934 msgid "WPA Pers. (CCMP)" msgstr "WPA 個人. (CCMP)" #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:306 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:896 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:935 msgid "WPA Pers. (TKIP)" msgstr "WPA 個人. (TKIP)" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:315 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:905 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:316 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:945 msgid "WPA/WPA2 Ent. (CCMP)" msgstr "WPA/WPA2 企業. (CCMP)" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:316 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:906 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:317 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:946 msgid "WPA/WPA2 Ent. (TKIP)" msgstr "WPA/WPA2 個人. (TKIP)" #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:307 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:897 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:936 msgid "WPA/WPA2 Pers. (CCMP)" msgstr "WPA/WPA2 個人. (CCMP)" #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:308 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:898 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:937 msgid "WPA/WPA2 Pers. (TKIP)" msgstr "WPA/WPA2 個人. (TKIP)" #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:311 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:901 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:940 +msgid "WPA2 Ent." +msgstr "" + +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:312 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:941 msgid "WPA2 Ent. (CCMP)" msgstr "WPA2 企業. (CCMP)" -#: 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 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:313 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:942 msgid "WPA2 Ent. (TKIP)" msgstr "WPA2 企業. (TKIP)" #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:301 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:891 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:930 msgid "WPA2 Pers." msgstr "WPA2 個人." #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:302 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:892 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:931 msgid "WPA2 Pers. (CCMP)" msgstr "WPA2 個人. (CCMP)" #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:303 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:893 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:932 msgid "WPA2 Pers. (TKIP)" msgstr "WPA2 個人. (TKIP)" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:900 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:939 msgid "WPA2/WPA3 Ent." msgstr "WPA2/WPA3 企業." @@ -784,11 +826,11 @@ msgid "WPA2/WPA3 Ent. (CCMP)" msgstr "WPA2/WPA3 企業 (CCMP)" #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:300 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:890 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:929 msgid "WPA2/WPA3 Pers. (CCMP)" msgstr "WPA2/WPA3 個人. (CCMP)" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:899 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:938 msgid "WPA3 Ent." msgstr "WPA3 企業." @@ -796,16 +838,16 @@ msgstr "WPA3 企業." msgid "WPA3 Ent. (CCMP)" msgstr "WPA3 企業. (CCMP)" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:907 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:947 msgid "WPA3 OWE (CCMP)" msgstr "WPA3 OWE (CCMP)" #: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:299 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:889 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:928 msgid "WPA3 Pers. (SAE)" msgstr "WPA3 個人. (CCMP)" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:721 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:756 msgid "Wireless Scan" msgstr "無線掃描" @@ -817,18 +859,18 @@ msgstr "無線設定" msgid "Wireless Stations" msgstr "無線站點" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:412 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:937 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:421 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:981 msgid "auth=MSCHAPV2" msgstr "驗證= MSCHAPV2" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:411 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:936 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:420 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:980 msgid "auth=PAP" msgstr "驗證= PAP" -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:318 -#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:908 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:319 +#: applications/luci-app-travelmate/htdocs/luci-static/resources/view/travelmate/stations.js:948 msgid "none" msgstr "無" @@ -848,6 +890,9 @@ msgstr "僅使用第一個 radio (radio0)" msgid "use the second radio only (radio1)" msgstr "僅使用第二個 radio (radio1)" +#~ msgid "Identify" +#~ msgstr "識別" + #~ msgid "" #~ "Overview of all configured uplinks for travelmate.
You can edit, " #~ "remove or prioritize existing uplinks by drag & drop and scan for new " @@ -1001,9 +1046,6 @@ msgstr "僅使用第二個 radio (radio1)" #~ msgid "Force TKIP and CCMP (AES)" #~ msgstr "強制 TKIP 和 CCMP(AES)" -#~ msgid "Identity" -#~ msgstr "身份" - #~ msgid "Input file not found, please check your configuration." #~ msgstr "找不到輸入檔案,請確認您的設定" diff --git a/applications/luci-app-yggdrasil/po/es/yggdrasil.po b/applications/luci-app-yggdrasil/po/es/yggdrasil.po index 7395d4e0ef..a62c9b3f79 100644 --- a/applications/luci-app-yggdrasil/po/es/yggdrasil.po +++ b/applications/luci-app-yggdrasil/po/es/yggdrasil.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: \n" "POT-Creation-Date: \n" -"PO-Revision-Date: 2021-02-11 14:23+0000\n" +"PO-Revision-Date: 2021-09-04 07:10+0000\n" "Last-Translator: Franco Castillo \n" "Language-Team: Spanish \n" @@ -11,7 +11,7 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Weblate 4.5-dev\n" +"X-Generator: Weblate 4.8.1-dev\n" #: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/status.js:33 msgid "Active peers" @@ -42,6 +42,13 @@ msgid "" "connections on Port. Listen controls whether or not the node listens for " "multicast beacons and opens outgoing connections." msgstr "" +"Configuración para qué interfaces se debe activar el descubrimiento de pares " +"de multidifusión. Regex es una expresión regular que se compara con el " +"nombre de una interfaz, y las interfaces usan la primera configuración con " +"la que coinciden. Beacon configura si el nodo debe enviar balizas de " +"multidifusión local de enlace para anunciar su presencia, mientras escucha " +"las conexiones entrantes en el puerto. Listen controla si el nodo escucha o " +"no balizas de multidifusión y abre conexiones salientes." #: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:16 msgid "Enable NodeInfo privacy" @@ -84,7 +91,7 @@ msgstr "" #: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:52 msgid "Link-local port" -msgstr "" +msgstr "Puerto de enlace local" #: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/peers.js:21 msgid "" @@ -131,7 +138,7 @@ msgstr "" #: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:51 msgid "Listen for beacons" -msgstr "" +msgstr "Escuche las balizas" #: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:31 msgid "MTU size for the interface" @@ -139,7 +146,7 @@ msgstr "Tamaño de MTU para la interfaz" #: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:44 msgid "Multicast interface" -msgstr "" +msgstr "Interfaz de multidifusión" #: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:23 msgid "NodeInfo" @@ -162,11 +169,11 @@ msgstr "Pares" #: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:49 msgid "Regular expression" -msgstr "" +msgstr "Expresión regular" #: applications/luci-app-yggdrasil/htdocs/luci-static/resources/view/yggdrasil/settings.js:50 msgid "Send beacons" -msgstr "" +msgstr "Enviar balizas" #: applications/luci-app-yggdrasil/root/usr/share/luci/menu.d/luci-app-yggdrasil.json:32 msgid "Settings" diff --git a/modules/luci-base/po/ar/base.po b/modules/luci-base/po/ar/base.po index 8a951e34d1..5873d4c01b 100644 --- a/modules/luci-base/po/ar/base.po +++ b/modules/luci-base/po/ar/base.po @@ -506,7 +506,7 @@ msgstr "إدارة" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:633 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1523 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:39 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:126 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:127 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:924 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:988 #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:241 @@ -1717,7 +1717,7 @@ msgstr "تصميم" msgid "Designated master" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:158 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:159 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:386 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:71 msgid "Destination" @@ -1803,8 +1803,8 @@ msgstr "رقم الاتصال الهاتفي" msgid "Directory" msgstr "الدليل" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:112 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:197 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:113 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:195 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:897 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:937 msgid "Disable" @@ -2587,7 +2587,7 @@ msgstr "اعدادات جدار الحماية" msgid "Firewall Status" msgstr "حالة جدار الحماية" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:178 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:176 msgid "Firewall mark" msgstr "" @@ -2761,7 +2761,7 @@ msgstr "نفق GRETAP عبر IPv4" msgid "GRETAP tunnel over IPv6" msgstr "نفق GRETAP عبر IPv6" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:74 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:75 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:44 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:188 msgid "Gateway" @@ -2779,7 +2779,7 @@ msgstr "عنوان البوابة غير صالح" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:251 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:477 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:38 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:125 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:126 #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:240 #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:108 msgid "General Settings" @@ -3100,7 +3100,7 @@ msgstr "" msgid "IPv4 Routing" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:119 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:120 msgid "IPv4 Rules" msgstr "" @@ -3199,7 +3199,7 @@ msgstr "" msgid "IPv6 Routing" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:119 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:120 msgid "IPv6 Rules" msgstr "" @@ -3425,7 +3425,7 @@ msgstr "" msgid "Incoming checksum" msgstr "المجموع الاختباري الوارد" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:143 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:144 msgid "Incoming interface" msgstr "" @@ -3647,7 +3647,7 @@ msgstr "قيمة سداسية عشرية غير صالحة" msgid "Invalid username and/or password! Please try again." msgstr "اسم المستخدم و / أو كلمة المرور غير صالحة! حاول مرة اخرى." -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:193 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:191 msgid "Invert match" msgstr "" @@ -3681,7 +3681,7 @@ msgstr "الانضمام إلى الشبكة: المسح اللاسلكي" msgid "Joining Network: %q" msgstr "الانضمام إلى الشبكة: q%" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:173 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:171 msgid "Jump to rule" msgstr "" @@ -4162,7 +4162,7 @@ msgstr "الفاصل الزمني MII" #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:580 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1418 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:85 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:86 #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:53 #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:92 msgid "MTU" @@ -4306,7 +4306,7 @@ msgstr "طريقة مراقبة الارتباط" msgid "Method to determine link status" msgstr "طريقة لتحديد حالة الارتباط" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:78 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:79 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:189 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:215 msgid "Metric" @@ -4875,7 +4875,7 @@ msgstr "مفتوح" msgid "On-State Delay" msgstr "حالة التأخير" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:108 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:109 msgid "On-link" msgstr "طريق على الارتباط" @@ -5071,7 +5071,7 @@ msgstr "صادر:" msgid "Outgoing checksum" msgstr "المجموع الاختباري الصادر" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:154 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:155 msgid "Outgoing interface" msgstr "" @@ -5491,7 +5491,7 @@ msgstr "UMTS المفضل" msgid "Prefix Delegated" msgstr "تفويض البادئة" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:188 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:186 msgid "Prefix suppressor" msgstr "" @@ -5538,7 +5538,7 @@ msgid "Primary becomes active slave whenever it comes back up (always, 0)" msgstr "يصبح الأساسي مستخدماً نشطًا كلما ظهر مرة أخرى (دائمًا ، 0)" #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:508 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:128 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:129 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:197 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:223 msgid "Priority" @@ -6052,7 +6052,7 @@ msgstr "" msgid "Rule" msgstr "القاعدة" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:135 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:136 msgid "Rule type" msgstr "" @@ -6415,8 +6415,8 @@ msgstr "" "عذرًا ، لا يوجد دعم لترقية النظام ؛ يجب أن تومض صورة البرنامج الثابت الجديدة " "يدويًا. يرجى الرجوع إلى wiki للحصول على إرشادات التثبيت الخاصة بالجهاز." -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:98 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:147 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:99 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:148 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:385 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:70 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:214 @@ -6913,8 +6913,8 @@ msgstr "معدل الإرسال" msgid "TX queue length" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:90 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:165 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:91 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:166 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:18 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:190 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:216 @@ -7530,7 +7530,7 @@ msgstr "قوة الإرسال" msgid "Type" msgstr "نوع" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:183 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:181 msgid "Type of service" msgstr "" @@ -8296,16 +8296,16 @@ msgid "ZRam Size" msgstr "حجم ZRam" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:440 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:151 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:162 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:152 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:163 msgid "any" msgstr "أي" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1463 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1471 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1476 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:101 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:132 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:102 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:133 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1230 #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:79 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoe.js:48 diff --git a/modules/luci-base/po/bg/base.po b/modules/luci-base/po/bg/base.po index 6772b522e5..8d5c6dd6a3 100644 --- a/modules/luci-base/po/bg/base.po +++ b/modules/luci-base/po/bg/base.po @@ -503,7 +503,7 @@ msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:633 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1523 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:39 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:126 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:127 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:924 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:988 #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:241 @@ -1687,7 +1687,7 @@ msgstr "" msgid "Designated master" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:158 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:159 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:386 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:71 msgid "Destination" @@ -1773,8 +1773,8 @@ msgstr "" msgid "Directory" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:112 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:197 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:113 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:195 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:897 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:937 msgid "Disable" @@ -2527,7 +2527,7 @@ msgstr "" msgid "Firewall Status" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:178 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:176 msgid "Firewall mark" msgstr "" @@ -2699,7 +2699,7 @@ msgstr "" msgid "GRETAP tunnel over IPv6" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:74 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:75 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:44 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:188 msgid "Gateway" @@ -2717,7 +2717,7 @@ msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:251 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:477 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:38 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:125 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:126 #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:240 #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:108 msgid "General Settings" @@ -3037,7 +3037,7 @@ msgstr "" msgid "IPv4 Routing" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:119 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:120 msgid "IPv4 Rules" msgstr "" @@ -3136,7 +3136,7 @@ msgstr "" msgid "IPv6 Routing" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:119 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:120 msgid "IPv6 Rules" msgstr "" @@ -3349,7 +3349,7 @@ msgstr "" msgid "Incoming checksum" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:143 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:144 msgid "Incoming interface" msgstr "" @@ -3567,7 +3567,7 @@ msgstr "" msgid "Invalid username and/or password! Please try again." msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:193 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:191 msgid "Invert match" msgstr "" @@ -3599,7 +3599,7 @@ msgstr "" msgid "Joining Network: %q" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:173 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:171 msgid "Jump to rule" msgstr "" @@ -4065,7 +4065,7 @@ msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:580 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1418 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:85 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:86 #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:53 #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:92 msgid "MTU" @@ -4207,7 +4207,7 @@ msgstr "" msgid "Method to determine link status" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:78 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:79 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:189 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:215 msgid "Metric" @@ -4769,7 +4769,7 @@ msgstr "" msgid "On-State Delay" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:108 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:109 msgid "On-link" msgstr "" @@ -4956,7 +4956,7 @@ msgstr "" msgid "Outgoing checksum" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:154 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:155 msgid "Outgoing interface" msgstr "" @@ -5374,7 +5374,7 @@ msgstr "" msgid "Prefix Delegated" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:188 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:186 msgid "Prefix suppressor" msgstr "" @@ -5417,7 +5417,7 @@ msgid "Primary becomes active slave whenever it comes back up (always, 0)" msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:508 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:128 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:129 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:197 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:223 msgid "Priority" @@ -5920,7 +5920,7 @@ msgstr "" msgid "Rule" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:135 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:136 msgid "Rule type" msgstr "" @@ -6275,8 +6275,8 @@ msgid "" "instructions." msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:98 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:147 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:99 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:148 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:385 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:70 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:214 @@ -6738,8 +6738,8 @@ msgstr "" msgid "TX queue length" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:90 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:165 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:91 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:166 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:18 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:190 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:216 @@ -7307,7 +7307,7 @@ msgstr "" msgid "Type" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:183 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:181 msgid "Type of service" msgstr "" @@ -8038,16 +8038,16 @@ msgid "ZRam Size" msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:440 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:151 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:162 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:152 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:163 msgid "any" msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1463 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1471 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1476 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:101 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:132 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:102 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:133 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1230 #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:79 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoe.js:48 diff --git a/modules/luci-base/po/bn_BD/base.po b/modules/luci-base/po/bn_BD/base.po index 836a56a9c6..79aa2bd6ba 100644 --- a/modules/luci-base/po/bn_BD/base.po +++ b/modules/luci-base/po/bn_BD/base.po @@ -502,7 +502,7 @@ msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:633 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1523 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:39 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:126 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:127 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:924 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:988 #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:241 @@ -1665,7 +1665,7 @@ msgstr "" msgid "Designated master" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:158 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:159 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:386 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:71 msgid "Destination" @@ -1751,8 +1751,8 @@ msgstr "" msgid "Directory" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:112 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:197 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:113 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:195 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:897 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:937 msgid "Disable" @@ -2505,7 +2505,7 @@ msgstr "" msgid "Firewall Status" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:178 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:176 msgid "Firewall mark" msgstr "" @@ -2677,7 +2677,7 @@ msgstr "" msgid "GRETAP tunnel over IPv6" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:74 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:75 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:44 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:188 msgid "Gateway" @@ -2695,7 +2695,7 @@ msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:251 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:477 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:38 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:125 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:126 #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:240 #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:108 msgid "General Settings" @@ -3015,7 +3015,7 @@ msgstr "" msgid "IPv4 Routing" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:119 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:120 msgid "IPv4 Rules" msgstr "" @@ -3114,7 +3114,7 @@ msgstr "" msgid "IPv6 Routing" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:119 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:120 msgid "IPv6 Rules" msgstr "" @@ -3327,7 +3327,7 @@ msgstr "" msgid "Incoming checksum" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:143 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:144 msgid "Incoming interface" msgstr "" @@ -3545,7 +3545,7 @@ msgstr "" msgid "Invalid username and/or password! Please try again." msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:193 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:191 msgid "Invert match" msgstr "" @@ -3577,7 +3577,7 @@ msgstr "" msgid "Joining Network: %q" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:173 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:171 msgid "Jump to rule" msgstr "" @@ -4043,7 +4043,7 @@ msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:580 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1418 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:85 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:86 #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:53 #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:92 msgid "MTU" @@ -4183,7 +4183,7 @@ msgstr "" msgid "Method to determine link status" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:78 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:79 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:189 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:215 msgid "Metric" @@ -4745,7 +4745,7 @@ msgstr "" msgid "On-State Delay" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:108 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:109 msgid "On-link" msgstr "" @@ -4932,7 +4932,7 @@ msgstr "" msgid "Outgoing checksum" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:154 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:155 msgid "Outgoing interface" msgstr "" @@ -5350,7 +5350,7 @@ msgstr "" msgid "Prefix Delegated" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:188 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:186 msgid "Prefix suppressor" msgstr "" @@ -5393,7 +5393,7 @@ msgid "Primary becomes active slave whenever it comes back up (always, 0)" msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:508 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:128 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:129 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:197 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:223 msgid "Priority" @@ -5896,7 +5896,7 @@ msgstr "" msgid "Rule" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:135 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:136 msgid "Rule type" msgstr "" @@ -6251,8 +6251,8 @@ msgid "" "instructions." msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:98 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:147 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:99 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:148 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:385 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:70 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:214 @@ -6714,8 +6714,8 @@ msgstr "" msgid "TX queue length" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:90 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:165 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:91 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:166 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:18 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:190 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:216 @@ -7283,7 +7283,7 @@ msgstr "" msgid "Type" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:183 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:181 msgid "Type of service" msgstr "" @@ -8014,16 +8014,16 @@ msgid "ZRam Size" msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:440 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:151 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:162 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:152 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:163 msgid "any" msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1463 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1471 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1476 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:101 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:132 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:102 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:133 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1230 #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:79 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoe.js:48 diff --git a/modules/luci-base/po/ca/base.po b/modules/luci-base/po/ca/base.po index ec8b219d1f..c98e272397 100644 --- a/modules/luci-base/po/ca/base.po +++ b/modules/luci-base/po/ca/base.po @@ -514,7 +514,7 @@ msgstr "Administració" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:633 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1523 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:39 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:126 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:127 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:924 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:988 #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:241 @@ -1700,7 +1700,7 @@ msgstr "Disseny" msgid "Designated master" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:158 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:159 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:386 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:71 msgid "Destination" @@ -1786,8 +1786,8 @@ msgstr "" msgid "Directory" msgstr "Directori" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:112 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:197 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:113 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:195 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:897 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:937 msgid "Disable" @@ -2553,7 +2553,7 @@ msgstr "Ajusts de tallafocs" msgid "Firewall Status" msgstr "Estat de tallafocs" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:178 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:176 msgid "Firewall mark" msgstr "" @@ -2725,7 +2725,7 @@ msgstr "" msgid "GRETAP tunnel over IPv6" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:74 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:75 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:44 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:188 msgid "Gateway" @@ -2743,7 +2743,7 @@ msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:251 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:477 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:38 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:125 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:126 #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:240 #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:108 msgid "General Settings" @@ -3068,7 +3068,7 @@ msgstr "" msgid "IPv4 Routing" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:119 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:120 msgid "IPv4 Rules" msgstr "" @@ -3167,7 +3167,7 @@ msgstr "" msgid "IPv6 Routing" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:119 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:120 msgid "IPv6 Rules" msgstr "" @@ -3386,7 +3386,7 @@ msgstr "" msgid "Incoming checksum" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:143 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:144 msgid "Incoming interface" msgstr "" @@ -3604,7 +3604,7 @@ msgstr "" msgid "Invalid username and/or password! Please try again." msgstr "Usuari i/o contrasenya invàlids! Si us plau prova-ho de nou." -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:193 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:191 msgid "Invert match" msgstr "" @@ -3639,7 +3639,7 @@ msgstr "" msgid "Joining Network: %q" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:173 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:171 msgid "Jump to rule" msgstr "" @@ -4107,7 +4107,7 @@ msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:580 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1418 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:85 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:86 #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:53 #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:92 msgid "MTU" @@ -4251,7 +4251,7 @@ msgstr "" msgid "Method to determine link status" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:78 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:79 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:189 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:215 msgid "Metric" @@ -4815,7 +4815,7 @@ msgstr "" msgid "On-State Delay" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:108 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:109 msgid "On-link" msgstr "" @@ -5002,7 +5002,7 @@ msgstr "Sortint:" msgid "Outgoing checksum" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:154 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:155 msgid "Outgoing interface" msgstr "" @@ -5420,7 +5420,7 @@ msgstr "" msgid "Prefix Delegated" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:188 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:186 msgid "Prefix suppressor" msgstr "" @@ -5463,7 +5463,7 @@ msgid "Primary becomes active slave whenever it comes back up (always, 0)" msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:508 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:128 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:129 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:197 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:223 msgid "Priority" @@ -5970,7 +5970,7 @@ msgstr "" msgid "Rule" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:135 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:136 msgid "Rule type" msgstr "" @@ -6325,8 +6325,8 @@ msgid "" "instructions." msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:98 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:147 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:99 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:148 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:385 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:70 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:214 @@ -6788,8 +6788,8 @@ msgstr "Velocitat TX" msgid "TX queue length" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:90 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:165 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:91 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:166 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:18 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:190 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:216 @@ -7389,7 +7389,7 @@ msgstr "Potència Tx" msgid "Type" msgstr "Tipus" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:183 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:181 msgid "Type of service" msgstr "" @@ -8130,16 +8130,16 @@ msgid "ZRam Size" msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:440 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:151 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:162 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:152 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:163 msgid "any" msgstr "qualsevol" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1463 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1471 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1476 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:101 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:132 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:102 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:133 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1230 #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:79 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoe.js:48 diff --git a/modules/luci-base/po/cs/base.po b/modules/luci-base/po/cs/base.po index db56f74318..9c9c83f3f4 100644 --- a/modules/luci-base/po/cs/base.po +++ b/modules/luci-base/po/cs/base.po @@ -512,7 +512,7 @@ msgstr "Správa" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:633 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1523 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:39 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:126 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:127 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:924 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:988 #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:241 @@ -1723,7 +1723,7 @@ msgstr "Vzhled" msgid "Designated master" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:158 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:159 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:386 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:71 msgid "Destination" @@ -1809,8 +1809,8 @@ msgstr "Vytáčené číslo" msgid "Directory" msgstr "Adresář" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:112 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:197 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:113 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:195 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:897 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:937 msgid "Disable" @@ -2599,7 +2599,7 @@ msgstr "Nastavení brány firewall" msgid "Firewall Status" msgstr "Stav brány firewall" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:178 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:176 msgid "Firewall mark" msgstr "" @@ -2774,7 +2774,7 @@ msgstr "Tunel GRETAP přes IPv4" msgid "GRETAP tunnel over IPv6" msgstr "Tunel GRETAP přes IPv6" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:74 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:75 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:44 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:188 msgid "Gateway" @@ -2792,7 +2792,7 @@ msgstr "Adresa brány není platná" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:251 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:477 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:38 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:125 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:126 #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:240 #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:108 msgid "General Settings" @@ -3114,7 +3114,7 @@ msgstr "" msgid "IPv4 Routing" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:119 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:120 msgid "IPv4 Rules" msgstr "" @@ -3214,7 +3214,7 @@ msgstr "" msgid "IPv6 Routing" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:119 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:120 msgid "IPv6 Rules" msgstr "" @@ -3437,7 +3437,7 @@ msgstr "" msgid "Incoming checksum" msgstr "Příchozí kontrolní součet" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:143 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:144 msgid "Incoming interface" msgstr "" @@ -3660,7 +3660,7 @@ msgstr "Neplatná šestnáctková hodnota" msgid "Invalid username and/or password! Please try again." msgstr "Špatné uživatelské jméno a/nebo heslo! Prosím zkuste to znovu." -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:193 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:191 msgid "Invert match" msgstr "" @@ -3694,7 +3694,7 @@ msgstr "Připojit k síti: Vyhledání bezdrátových sítí" msgid "Joining Network: %q" msgstr "Připojování k síti: %q" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:173 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:171 msgid "Jump to rule" msgstr "" @@ -4185,7 +4185,7 @@ msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:580 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1418 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:85 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:86 #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:53 #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:92 msgid "MTU" @@ -4332,7 +4332,7 @@ msgstr "Způsob monitorování spojení" msgid "Method to determine link status" msgstr "Způsob pro určení stavu spojení" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:78 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:79 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:189 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:215 msgid "Metric" @@ -4909,7 +4909,7 @@ msgstr "Zapnuto" msgid "On-State Delay" msgstr "Zapnutí prodlevy" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:108 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:109 msgid "On-link" msgstr "Link-local trasa" @@ -5110,7 +5110,7 @@ msgstr "Odchozí:" msgid "Outgoing checksum" msgstr "Odchozí kontrolní součet" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:154 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:155 msgid "Outgoing interface" msgstr "" @@ -5530,7 +5530,7 @@ msgstr "Preferovat UMTS" msgid "Prefix Delegated" msgstr "Delegovaný prefix" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:188 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:186 msgid "Prefix suppressor" msgstr "" @@ -5575,7 +5575,7 @@ msgid "Primary becomes active slave whenever it comes back up (always, 0)" msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:508 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:128 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:129 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:197 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:223 msgid "Priority" @@ -6092,7 +6092,7 @@ msgstr "" msgid "Rule" msgstr "Pravidlo" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:135 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:136 msgid "Rule type" msgstr "" @@ -6457,8 +6457,8 @@ msgstr "" "systému. Nový obraz firmwaru musí být zapsán ručně. Prosím, obraťte se na " "wiki pro zařízení specifické instalační instrukce." -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:98 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:147 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:99 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:148 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:385 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:70 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:214 @@ -6933,8 +6933,8 @@ msgstr "Rychlost TX" msgid "TX queue length" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:90 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:165 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:91 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:166 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:18 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:190 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:216 @@ -7566,7 +7566,7 @@ msgstr "Tx-Power" msgid "Type" msgstr "Typ" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:183 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:181 msgid "Type of service" msgstr "" @@ -8335,16 +8335,16 @@ msgid "ZRam Size" msgstr "Velikost ZRam" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:440 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:151 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:162 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:152 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:163 msgid "any" msgstr "libovolný" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1463 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1471 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1476 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:101 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:132 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:102 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:133 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1230 #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:79 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoe.js:48 diff --git a/modules/luci-base/po/de/base.po b/modules/luci-base/po/de/base.po index b4042457a6..3d54c44201 100644 --- a/modules/luci-base/po/de/base.po +++ b/modules/luci-base/po/de/base.po @@ -513,7 +513,7 @@ msgstr "Administration" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:633 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1523 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:39 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:126 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:127 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:924 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:988 #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:241 @@ -1777,7 +1777,7 @@ msgstr "Design" msgid "Designated master" msgstr "Master-Schnittstelle" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:158 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:159 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:386 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:71 msgid "Destination" @@ -1864,8 +1864,8 @@ msgstr "Einwahlnummer" msgid "Directory" msgstr "Verzeichnis" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:112 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:197 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:113 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:195 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:897 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:937 msgid "Disable" @@ -2665,7 +2665,7 @@ msgstr "Firewall Einstellungen" msgid "Firewall Status" msgstr "Firewall-Status" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:178 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:176 msgid "Firewall mark" msgstr "" @@ -2851,7 +2851,7 @@ msgstr "GRETAP-Tunnel über IPv4" msgid "GRETAP tunnel over IPv6" msgstr "GRETAP-Tunnel über IPv6" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:74 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:75 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:44 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:188 msgid "Gateway" @@ -2869,7 +2869,7 @@ msgstr "Gateway-Adresse ist ungültig" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:251 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:477 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:38 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:125 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:126 #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:240 #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:108 msgid "General Settings" @@ -3194,7 +3194,7 @@ msgstr "" msgid "IPv4 Routing" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:119 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:120 msgid "IPv4 Rules" msgstr "" @@ -3293,7 +3293,7 @@ msgstr "IPv6-RA-Einstellungen" msgid "IPv6 Routing" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:119 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:120 msgid "IPv6 Rules" msgstr "" @@ -3522,7 +3522,7 @@ msgstr "" msgid "Incoming checksum" msgstr "Eingehende Prüfsumme" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:143 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:144 msgid "Incoming interface" msgstr "" @@ -3755,7 +3755,7 @@ msgid "Invalid username and/or password! Please try again." msgstr "" "Ungültiger Benutzername oder ungültiges Passwort! Bitte erneut versuchen." -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:193 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:191 msgid "Invert match" msgstr "" @@ -3789,7 +3789,7 @@ msgstr "Netzwerk beitreten: Suche nach Netzwerken" msgid "Joining Network: %q" msgstr "Trete Netzwerk %q bei" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:173 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:171 msgid "Jump to rule" msgstr "" @@ -4283,7 +4283,7 @@ msgstr "MII Intervall" #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:580 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1418 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:85 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:86 #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:53 #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:92 msgid "MTU" @@ -4430,7 +4430,7 @@ msgstr "Methode zur Verbindungsüberwachung" msgid "Method to determine link status" msgstr "Methode zur Bestimmung des Verbindungsstatus" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:78 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:79 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:189 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:215 msgid "Metric" @@ -5010,7 +5010,7 @@ msgstr "An" msgid "On-State Delay" msgstr "Verzögerung für Anschalt-Zustand" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:108 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:109 msgid "On-link" msgstr "Link-lokale Route" @@ -5222,7 +5222,7 @@ msgstr "Ausgehend:" msgid "Outgoing checksum" msgstr "Ausgehende Prüfsumme" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:154 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:155 msgid "Outgoing interface" msgstr "" @@ -5643,7 +5643,7 @@ msgstr "UMTS bevorzugen" msgid "Prefix Delegated" msgstr "Delegiertes Präfix" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:188 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:186 msgid "Prefix suppressor" msgstr "" @@ -5693,7 +5693,7 @@ msgstr "" "(immer 0)" #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:508 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:128 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:129 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:197 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:223 msgid "Priority" @@ -6221,7 +6221,7 @@ msgstr "" msgid "Rule" msgstr "Regel" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:135 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:136 msgid "Rule type" msgstr "" @@ -6602,8 +6602,8 @@ msgstr "" "geflasht werden. Weitere Informationen sowie gerätespezifische " "Installationsanleitungen entnehmen Sie bitte dem Wiki." -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:98 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:147 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:99 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:148 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:385 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:70 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:214 @@ -7146,8 +7146,8 @@ msgstr "TX-Rate" msgid "TX queue length" msgstr "Sendewarteschlangenlänge" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:90 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:165 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:91 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:166 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:18 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:190 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:216 @@ -7852,7 +7852,7 @@ msgstr "Sendestärke" msgid "Type" msgstr "Typ" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:183 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:181 msgid "Type of service" msgstr "" @@ -8643,16 +8643,16 @@ msgid "ZRam Size" msgstr "ZRAM Größe" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:440 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:151 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:162 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:152 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:163 msgid "any" msgstr "beliebig" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1463 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1471 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1476 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:101 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:132 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:102 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:133 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1230 #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:79 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoe.js:48 diff --git a/modules/luci-base/po/el/base.po b/modules/luci-base/po/el/base.po index 3ff2f43640..5d3be4037d 100644 --- a/modules/luci-base/po/el/base.po +++ b/modules/luci-base/po/el/base.po @@ -511,7 +511,7 @@ msgstr "Διαχείριση" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:633 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1523 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:39 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:126 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:127 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:924 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:988 #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:241 @@ -1696,7 +1696,7 @@ msgstr "Εμφάνιση" msgid "Designated master" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:158 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:159 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:386 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:71 msgid "Destination" @@ -1782,8 +1782,8 @@ msgstr "" msgid "Directory" msgstr "Φάκελος" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:112 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:197 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:113 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:195 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:897 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:937 msgid "Disable" @@ -2561,7 +2561,7 @@ msgstr "Ρυθμίσεις Τείχους Προστασίας" msgid "Firewall Status" msgstr "Κατάσταση Τείχους Προστασίας" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:178 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:176 msgid "Firewall mark" msgstr "" @@ -2735,7 +2735,7 @@ msgstr "" msgid "GRETAP tunnel over IPv6" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:74 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:75 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:44 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:188 msgid "Gateway" @@ -2753,7 +2753,7 @@ msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:251 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:477 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:38 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:125 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:126 #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:240 #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:108 msgid "General Settings" @@ -3075,7 +3075,7 @@ msgstr "" msgid "IPv4 Routing" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:119 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:120 msgid "IPv4 Rules" msgstr "" @@ -3174,7 +3174,7 @@ msgstr "" msgid "IPv6 Routing" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:119 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:120 msgid "IPv6 Rules" msgstr "" @@ -3397,7 +3397,7 @@ msgstr "" msgid "Incoming checksum" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:143 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:144 msgid "Incoming interface" msgstr "" @@ -3615,7 +3615,7 @@ msgstr "" msgid "Invalid username and/or password! Please try again." msgstr "Άκυρο όνομα χρήστη και/ή κωδικός πρόσβασης! Παρακαλώ προσπαθήστε ξανά." -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:193 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:191 msgid "Invert match" msgstr "" @@ -3650,7 +3650,7 @@ msgstr "" msgid "Joining Network: %q" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:173 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:171 msgid "Jump to rule" msgstr "" @@ -4116,7 +4116,7 @@ msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:580 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1418 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:85 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:86 #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:53 #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:92 msgid "MTU" @@ -4261,7 +4261,7 @@ msgstr "" msgid "Method to determine link status" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:78 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:79 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:189 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:215 msgid "Metric" @@ -4825,7 +4825,7 @@ msgstr "" msgid "On-State Delay" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:108 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:109 msgid "On-link" msgstr "" @@ -5012,7 +5012,7 @@ msgstr "" msgid "Outgoing checksum" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:154 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:155 msgid "Outgoing interface" msgstr "" @@ -5430,7 +5430,7 @@ msgstr "" msgid "Prefix Delegated" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:188 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:186 msgid "Prefix suppressor" msgstr "" @@ -5474,7 +5474,7 @@ msgid "Primary becomes active slave whenever it comes back up (always, 0)" msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:508 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:128 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:129 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:197 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:223 msgid "Priority" @@ -5981,7 +5981,7 @@ msgstr "" msgid "Rule" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:135 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:136 msgid "Rule type" msgstr "" @@ -6336,8 +6336,8 @@ msgid "" "instructions." msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:98 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:147 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:99 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:148 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:385 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:70 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:214 @@ -6799,8 +6799,8 @@ msgstr "" msgid "TX queue length" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:90 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:165 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:91 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:166 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:18 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:190 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:216 @@ -7389,7 +7389,7 @@ msgstr "Ισχύς Εκπομπής" msgid "Type" msgstr "Τύπος" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:183 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:181 msgid "Type of service" msgstr "" @@ -8126,16 +8126,16 @@ msgid "ZRam Size" msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:440 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:151 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:162 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:152 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:163 msgid "any" msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1463 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1471 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1476 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:101 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:132 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:102 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:133 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1230 #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:79 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoe.js:48 diff --git a/modules/luci-base/po/en/base.po b/modules/luci-base/po/en/base.po index e66fe35404..44cc3f8561 100644 --- a/modules/luci-base/po/en/base.po +++ b/modules/luci-base/po/en/base.po @@ -509,7 +509,7 @@ msgstr "Administration" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:633 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1523 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:39 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:126 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:127 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:924 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:988 #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:241 @@ -1688,7 +1688,7 @@ msgstr "Design" msgid "Designated master" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:158 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:159 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:386 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:71 msgid "Destination" @@ -1774,8 +1774,8 @@ msgstr "" msgid "Directory" msgstr "Directory" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:112 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:197 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:113 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:195 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:897 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:937 msgid "Disable" @@ -2540,7 +2540,7 @@ msgstr "Firewall Settings" msgid "Firewall Status" msgstr "Firewall Status" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:178 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:176 msgid "Firewall mark" msgstr "" @@ -2712,7 +2712,7 @@ msgstr "" msgid "GRETAP tunnel over IPv6" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:74 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:75 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:44 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:188 msgid "Gateway" @@ -2730,7 +2730,7 @@ msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:251 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:477 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:38 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:125 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:126 #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:240 #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:108 msgid "General Settings" @@ -3052,7 +3052,7 @@ msgstr "" msgid "IPv4 Routing" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:119 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:120 msgid "IPv4 Rules" msgstr "" @@ -3151,7 +3151,7 @@ msgstr "" msgid "IPv6 Routing" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:119 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:120 msgid "IPv6 Rules" msgstr "" @@ -3369,7 +3369,7 @@ msgstr "" msgid "Incoming checksum" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:143 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:144 msgid "Incoming interface" msgstr "" @@ -3587,7 +3587,7 @@ msgstr "" msgid "Invalid username and/or password! Please try again." msgstr "Invalid username and/or password! Please try again." -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:193 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:191 msgid "Invert match" msgstr "" @@ -3622,7 +3622,7 @@ msgstr "" msgid "Joining Network: %q" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:173 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:171 msgid "Jump to rule" msgstr "" @@ -4088,7 +4088,7 @@ msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:580 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1418 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:85 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:86 #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:53 #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:92 msgid "MTU" @@ -4232,7 +4232,7 @@ msgstr "" msgid "Method to determine link status" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:78 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:79 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:189 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:215 msgid "Metric" @@ -4796,7 +4796,7 @@ msgstr "" msgid "On-State Delay" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:108 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:109 msgid "On-link" msgstr "" @@ -4983,7 +4983,7 @@ msgstr "" msgid "Outgoing checksum" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:154 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:155 msgid "Outgoing interface" msgstr "" @@ -5401,7 +5401,7 @@ msgstr "" msgid "Prefix Delegated" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:188 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:186 msgid "Prefix suppressor" msgstr "" @@ -5444,7 +5444,7 @@ msgid "Primary becomes active slave whenever it comes back up (always, 0)" msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:508 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:128 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:129 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:197 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:223 msgid "Priority" @@ -5951,7 +5951,7 @@ msgstr "" msgid "Rule" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:135 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:136 msgid "Rule type" msgstr "" @@ -6306,8 +6306,8 @@ msgid "" "instructions." msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:98 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:147 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:99 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:148 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:385 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:70 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:214 @@ -6769,8 +6769,8 @@ msgstr "" msgid "TX queue length" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:90 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:165 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:91 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:166 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:18 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:190 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:216 @@ -7354,7 +7354,7 @@ msgstr "" msgid "Type" msgstr "Type" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:183 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:181 msgid "Type of service" msgstr "" @@ -8092,16 +8092,16 @@ msgid "ZRam Size" msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:440 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:151 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:162 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:152 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:163 msgid "any" msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1463 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1471 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1476 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:101 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:132 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:102 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:133 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1230 #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:79 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoe.js:48 diff --git a/modules/luci-base/po/es/base.po b/modules/luci-base/po/es/base.po index 1fa0e824be..ea3a9ee86d 100644 --- a/modules/luci-base/po/es/base.po +++ b/modules/luci-base/po/es/base.po @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2009-06-10 03:41+0200\n" -"PO-Revision-Date: 2021-09-03 03:27+0000\n" +"PO-Revision-Date: 2021-09-04 07:10+0000\n" "Last-Translator: Franco Castillo \n" "Language-Team: Spanish " "\n" @@ -518,7 +518,7 @@ msgstr "Administración" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:633 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1523 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:39 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:126 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:127 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:924 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:988 #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:241 @@ -1778,7 +1778,7 @@ msgstr "Diseño" msgid "Designated master" msgstr "Maestro designado" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:158 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:159 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:386 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:71 msgid "Destination" @@ -1864,8 +1864,8 @@ msgstr "Marcar el número" msgid "Directory" msgstr "Directorio" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:112 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:197 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:113 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:195 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:897 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:937 msgid "Disable" @@ -2662,9 +2662,10 @@ msgstr "Configuración del cortafuegos" msgid "Firewall Status" msgstr "Estado del Cortafuegos" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:178 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:176 +#, fuzzy msgid "Firewall mark" -msgstr "" +msgstr "Marca de cortafuegos" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1487 msgid "Firmware File" @@ -2849,7 +2850,7 @@ msgstr "Túnel GRETAP sobre IPv4" msgid "GRETAP tunnel over IPv6" msgstr "Túnel GRETAP sobre IPv6" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:74 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:75 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:44 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:188 msgid "Gateway" @@ -2867,7 +2868,7 @@ msgstr "La dirección de la puerta de enlace es inválida" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:251 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:477 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:38 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:125 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:126 #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:240 #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:108 msgid "General Settings" @@ -3189,15 +3190,15 @@ msgstr "Cortafuegos IPv4" #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:252 msgid "IPv4 Neighbours" -msgstr "" +msgstr "Vecinos IPv4" #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:251 msgid "IPv4 Routing" msgstr "Enrutamiento IPv4" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:119 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:120 msgid "IPv4 Rules" -msgstr "" +msgstr "Reglas de IPv4" #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:29 msgid "IPv4 Upstream" @@ -3294,9 +3295,9 @@ msgstr "Configuración de RA de IPv6" msgid "IPv6 Routing" msgstr "Enrutamiento IPv6" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:119 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:120 msgid "IPv6 Rules" -msgstr "" +msgstr "Reglas de IPv6" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:634 msgid "IPv6 Settings" @@ -3525,9 +3526,9 @@ msgstr "" msgid "Incoming checksum" msgstr "Suma de comprobación entrante" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:143 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:144 msgid "Incoming interface" -msgstr "" +msgstr "Interfaz entrante" #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:92 #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:97 @@ -3751,9 +3752,10 @@ msgstr "Valor hexadecimal inválido" msgid "Invalid username and/or password! Please try again." msgstr "¡Nombre de usuario y/o contraseña no válidos! Por favor reintente." -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:193 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:191 +#, fuzzy msgid "Invert match" -msgstr "" +msgstr "Invertir partido" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1148 msgid "Isolate Clients" @@ -3785,9 +3787,10 @@ msgstr "Conectarse a una red: Búsqueda de redes Wi-Fi" msgid "Joining Network: %q" msgstr "Conectarse a: %q" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:173 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:171 +#, fuzzy msgid "Jump to rule" -msgstr "" +msgstr "Saltar a la regla" #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:228 msgid "Keep settings and retain the current configuration" @@ -4272,7 +4275,7 @@ msgstr "Intervalo MII" #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:580 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1418 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:85 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:86 #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:53 #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:92 msgid "MTU" @@ -4421,7 +4424,7 @@ msgstr "Método de monitoreo de enlaces" msgid "Method to determine link status" msgstr "Método para determinar el estado del enlace" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:78 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:79 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:189 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:215 msgid "Metric" @@ -4797,7 +4800,7 @@ msgstr "Sin aplicación" #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:241 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:244 msgid "No entries available" -msgstr "" +msgstr "No hay entradas disponibles" #: modules/luci-base/htdocs/luci-static/resources/ui.js:2899 msgid "No entries in this directory" @@ -5001,7 +5004,7 @@ msgstr "Encendido" msgid "On-State Delay" msgstr "Retraso de activación" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:108 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:109 msgid "On-link" msgstr "Ruta en enlace" @@ -5215,9 +5218,9 @@ msgstr "Saliente:" msgid "Outgoing checksum" msgstr "Suma de comprobación saliente" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:154 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:155 msgid "Outgoing interface" -msgstr "" +msgstr "Interfaz saliente" #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:96 #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:101 @@ -5635,9 +5638,9 @@ msgstr "Preferir UMTS" msgid "Prefix Delegated" msgstr "Prefijo delegado" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:188 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:186 msgid "Prefix suppressor" -msgstr "" +msgstr "Supresor de prefijo" #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:138 msgid "Preshared Key" @@ -5684,7 +5687,7 @@ msgstr "" "(siempre, 0)" #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:508 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:128 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:129 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:197 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:223 msgid "Priority" @@ -6209,9 +6212,9 @@ msgstr "" msgid "Rule" msgstr "Regla" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:135 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:136 msgid "Rule type" -msgstr "" +msgstr "Tipo de regla" #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:335 msgid "Run a filesystem check before mounting the device" @@ -6589,8 +6592,8 @@ msgstr "" "grabarse manualmente. Por favor, mire el wiki para instrucciones de " "instalación específicas." -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:98 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:147 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:99 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:148 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:385 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:70 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:214 @@ -7130,8 +7133,8 @@ msgstr "Tasa TX" msgid "TX queue length" msgstr "Longitud de la cola de TX" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:90 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:165 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:91 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:166 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:18 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:190 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:216 @@ -7813,9 +7816,9 @@ msgstr "Potencia-TX" msgid "Type" msgstr "Tipo" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:183 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:181 msgid "Type of service" -msgstr "" +msgstr "Tipo de servicio" #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:328 msgid "UDP:" @@ -8603,16 +8606,16 @@ msgid "ZRam Size" msgstr "Tamaño de ZRam" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:440 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:151 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:162 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:152 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:163 msgid "any" msgstr "cualquiera" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1463 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1471 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1476 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:101 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:132 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:102 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:133 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1230 #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:79 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoe.js:48 diff --git a/modules/luci-base/po/fi/base.po b/modules/luci-base/po/fi/base.po index 0d19041b34..54a686b789 100644 --- a/modules/luci-base/po/fi/base.po +++ b/modules/luci-base/po/fi/base.po @@ -510,7 +510,7 @@ msgstr "Hallinta" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:633 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1523 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:39 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:126 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:127 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:924 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:988 #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:241 @@ -1733,7 +1733,7 @@ msgstr "Suunnittelu" msgid "Designated master" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:158 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:159 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:386 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:71 msgid "Destination" @@ -1819,8 +1819,8 @@ msgstr "Soita numeroon" msgid "Directory" msgstr "Hakemisto" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:112 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:197 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:113 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:195 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:897 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:937 msgid "Disable" @@ -2611,7 +2611,7 @@ msgstr "Palomuurin asetukset" msgid "Firewall Status" msgstr "Palomuurin tila" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:178 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:176 msgid "Firewall mark" msgstr "" @@ -2785,7 +2785,7 @@ msgstr "GRETAP tunneli IPv4:n yli" msgid "GRETAP tunnel over IPv6" msgstr "GRETAP tunneli IPv6:n yli" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:74 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:75 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:44 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:188 msgid "Gateway" @@ -2803,7 +2803,7 @@ msgstr "Yhdyskäytävän osoite ei kelpaa" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:251 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:477 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:38 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:125 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:126 #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:240 #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:108 msgid "General Settings" @@ -3126,7 +3126,7 @@ msgstr "" msgid "IPv4 Routing" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:119 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:120 msgid "IPv4 Rules" msgstr "" @@ -3225,7 +3225,7 @@ msgstr "" msgid "IPv6 Routing" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:119 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:120 msgid "IPv6 Rules" msgstr "" @@ -3447,7 +3447,7 @@ msgstr "" msgid "Incoming checksum" msgstr "Tuleva tarkistussumma" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:143 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:144 msgid "Incoming interface" msgstr "" @@ -3670,7 +3670,7 @@ msgstr "Virheellinen heksadesimaaliarvo" msgid "Invalid username and/or password! Please try again." msgstr "Virheellinen käyttäjätunnus tai salasana! Yritä uudelleen." -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:193 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:191 msgid "Invert match" msgstr "" @@ -3704,7 +3704,7 @@ msgstr "Liity verkkoon: Langattoman verkon etsintä" msgid "Joining Network: %q" msgstr "Liittyminen verkkoon: %q" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:173 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:171 msgid "Jump to rule" msgstr "" @@ -4191,7 +4191,7 @@ msgstr "MII-väli" #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:580 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1418 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:85 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:86 #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:53 #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:92 msgid "MTU" @@ -4337,7 +4337,7 @@ msgstr "Linkkien seurantamenetelmä" msgid "Method to determine link status" msgstr "Linkin tilan määrittäminen" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:78 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:79 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:189 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:215 msgid "Metric" @@ -4909,7 +4909,7 @@ msgstr "Päällä" msgid "On-State Delay" msgstr "Ylöstulon viive" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:108 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:109 msgid "On-link" msgstr "Reitti aina ylhäällä" @@ -5110,7 +5110,7 @@ msgstr "Lähtevä:" msgid "Outgoing checksum" msgstr "Lähtevä tarkistusumma" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:154 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:155 msgid "Outgoing interface" msgstr "" @@ -5530,7 +5530,7 @@ msgstr "Mieluummin UMTS" msgid "Prefix Delegated" msgstr "Delegoitu etuliite" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:188 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:186 msgid "Prefix suppressor" msgstr "" @@ -5579,7 +5579,7 @@ msgstr "" "(aina, 0)" #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:508 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:128 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:129 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:197 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:223 msgid "Priority" @@ -6098,7 +6098,7 @@ msgstr "" msgid "Rule" msgstr "Sääntö" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:135 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:136 msgid "Rule type" msgstr "" @@ -6460,8 +6460,8 @@ msgstr "" "Valitettavasti sysupgrade-tukea ei ole; uusi laiteohjelmiston kuva on " "asennetava käsin. Katso laitekohtaiset asennusohjeet wikistä." -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:98 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:147 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:99 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:148 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:385 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:70 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:214 @@ -6975,8 +6975,8 @@ msgstr "TX-nopeus" msgid "TX queue length" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:90 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:165 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:91 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:166 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:18 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:190 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:216 @@ -7607,7 +7607,7 @@ msgstr "Tx-teho" msgid "Type" msgstr "Tyyppi" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:183 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:181 msgid "Type of service" msgstr "" @@ -8381,16 +8381,16 @@ msgid "ZRam Size" msgstr "ZRam-koko" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:440 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:151 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:162 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:152 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:163 msgid "any" msgstr "mikä tahansa" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1463 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1471 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1476 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:101 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:132 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:102 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:133 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1230 #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:79 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoe.js:48 diff --git a/modules/luci-base/po/fr/base.po b/modules/luci-base/po/fr/base.po index 1fa1cd716f..49c8338795 100644 --- a/modules/luci-base/po/fr/base.po +++ b/modules/luci-base/po/fr/base.po @@ -523,7 +523,7 @@ msgstr "Administration" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:633 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1523 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:39 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:126 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:127 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:924 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:988 #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:241 @@ -1761,7 +1761,7 @@ msgstr "Apparence" msgid "Designated master" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:158 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:159 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:386 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:71 msgid "Destination" @@ -1847,8 +1847,8 @@ msgstr "Composer le numéro" msgid "Directory" msgstr "Répertoire" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:112 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:197 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:113 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:195 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:897 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:937 msgid "Disable" @@ -2647,7 +2647,7 @@ msgstr "Paramètres du pare-feu" msgid "Firewall Status" msgstr "État du pare-feu" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:178 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:176 msgid "Firewall mark" msgstr "" @@ -2821,7 +2821,7 @@ msgstr "Tunnel GRETAP sur IPv4" msgid "GRETAP tunnel over IPv6" msgstr "Tunnel GRETAP sur IPv6" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:74 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:75 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:44 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:188 msgid "Gateway" @@ -2839,7 +2839,7 @@ msgstr "L'adresse de la passerelle n'est pas valide" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:251 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:477 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:38 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:125 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:126 #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:240 #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:108 msgid "General Settings" @@ -3163,7 +3163,7 @@ msgstr "" msgid "IPv4 Routing" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:119 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:120 msgid "IPv4 Rules" msgstr "" @@ -3262,7 +3262,7 @@ msgstr "" msgid "IPv6 Routing" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:119 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:120 msgid "IPv6 Rules" msgstr "" @@ -3490,7 +3490,7 @@ msgstr "" msgid "Incoming checksum" msgstr "Somme de contrôle entrante" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:143 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:144 msgid "Incoming interface" msgstr "" @@ -3713,7 +3713,7 @@ msgstr "Valeur hexadécimale invalide" msgid "Invalid username and/or password! Please try again." msgstr "Nom d'utilisateur et/ou mot de passe invalides ! Réessayez." -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:193 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:191 msgid "Invert match" msgstr "" @@ -3747,7 +3747,7 @@ msgstr "Rejoindre un réseau : recherche des réseaux sans-fil" msgid "Joining Network: %q" msgstr "Rejoindre le réseau : %q" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:173 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:171 msgid "Jump to rule" msgstr "" @@ -4231,7 +4231,7 @@ msgstr "MII Intervalle" #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:580 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1418 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:85 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:86 #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:53 #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:92 msgid "MTU" @@ -4377,7 +4377,7 @@ msgstr "Méthode de surveillance des liens" msgid "Method to determine link status" msgstr "Méthode de détermination du statut des liens" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:78 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:79 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:189 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:215 msgid "Metric" @@ -4946,7 +4946,7 @@ msgstr "Allumé" msgid "On-State Delay" msgstr "Durée allumée" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:108 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:109 msgid "On-link" msgstr "Route On-Link" @@ -5149,7 +5149,7 @@ msgstr "Sortant :" msgid "Outgoing checksum" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:154 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:155 msgid "Outgoing interface" msgstr "" @@ -5569,7 +5569,7 @@ msgstr "Préférer l'UMTS" msgid "Prefix Delegated" msgstr "Préfixe Délégué" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:188 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:186 msgid "Prefix suppressor" msgstr "" @@ -5616,7 +5616,7 @@ msgid "Primary becomes active slave whenever it comes back up (always, 0)" msgstr "Le primaire devient un esclave actif dès qu'il revient (toujours, 0)" #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:508 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:128 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:129 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:197 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:223 msgid "Priority" @@ -6135,7 +6135,7 @@ msgstr "" msgid "Rule" msgstr "Règle" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:135 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:136 msgid "Rule type" msgstr "" @@ -6505,8 +6505,8 @@ msgstr "" "au wiki pour connaître les instructions d'installation spécifiques à votre " "matériel." -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:98 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:147 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:99 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:148 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:385 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:70 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:214 @@ -7019,8 +7019,8 @@ msgstr "Débit en émission" msgid "TX queue length" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:90 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:165 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:91 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:166 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:18 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:190 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:216 @@ -7670,7 +7670,7 @@ msgstr "Puissance d'émission" msgid "Type" msgstr "Type" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:183 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:181 msgid "Type of service" msgstr "" @@ -8445,16 +8445,16 @@ msgid "ZRam Size" msgstr "Taille ZRam" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:440 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:151 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:162 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:152 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:163 msgid "any" msgstr "tous" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1463 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1471 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1476 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:101 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:132 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:102 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:133 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1230 #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:79 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoe.js:48 diff --git a/modules/luci-base/po/he/base.po b/modules/luci-base/po/he/base.po index 99da97bb83..b32c7c773b 100644 --- a/modules/luci-base/po/he/base.po +++ b/modules/luci-base/po/he/base.po @@ -510,7 +510,7 @@ msgstr "מנהלה" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:633 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1523 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:39 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:126 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:127 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:924 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:988 #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:241 @@ -1686,7 +1686,7 @@ msgstr "עיצוב" msgid "Designated master" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:158 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:159 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:386 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:71 msgid "Destination" @@ -1772,8 +1772,8 @@ msgstr "" msgid "Directory" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:112 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:197 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:113 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:195 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:897 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:937 msgid "Disable" @@ -2528,7 +2528,7 @@ msgstr "" msgid "Firewall Status" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:178 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:176 msgid "Firewall mark" msgstr "" @@ -2700,7 +2700,7 @@ msgstr "" msgid "GRETAP tunnel over IPv6" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:74 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:75 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:44 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:188 msgid "Gateway" @@ -2718,7 +2718,7 @@ msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:251 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:477 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:38 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:125 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:126 #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:240 #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:108 msgid "General Settings" @@ -3038,7 +3038,7 @@ msgstr "" msgid "IPv4 Routing" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:119 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:120 msgid "IPv4 Rules" msgstr "" @@ -3137,7 +3137,7 @@ msgstr "" msgid "IPv6 Routing" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:119 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:120 msgid "IPv6 Rules" msgstr "" @@ -3350,7 +3350,7 @@ msgstr "" msgid "Incoming checksum" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:143 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:144 msgid "Incoming interface" msgstr "" @@ -3568,7 +3568,7 @@ msgstr "" msgid "Invalid username and/or password! Please try again." msgstr "שם משתמש ו/או סיסמה שגויים! אנא נסה שנית." -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:193 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:191 msgid "Invert match" msgstr "" @@ -3600,7 +3600,7 @@ msgstr "" msgid "Joining Network: %q" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:173 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:171 msgid "Jump to rule" msgstr "" @@ -4066,7 +4066,7 @@ msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:580 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1418 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:85 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:86 #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:53 #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:92 msgid "MTU" @@ -4206,7 +4206,7 @@ msgstr "" msgid "Method to determine link status" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:78 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:79 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:189 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:215 msgid "Metric" @@ -4768,7 +4768,7 @@ msgstr "" msgid "On-State Delay" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:108 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:109 msgid "On-link" msgstr "" @@ -4955,7 +4955,7 @@ msgstr "" msgid "Outgoing checksum" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:154 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:155 msgid "Outgoing interface" msgstr "" @@ -5373,7 +5373,7 @@ msgstr "" msgid "Prefix Delegated" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:188 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:186 msgid "Prefix suppressor" msgstr "" @@ -5416,7 +5416,7 @@ msgid "Primary becomes active slave whenever it comes back up (always, 0)" msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:508 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:128 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:129 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:197 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:223 msgid "Priority" @@ -5919,7 +5919,7 @@ msgstr "" msgid "Rule" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:135 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:136 msgid "Rule type" msgstr "" @@ -6276,8 +6276,8 @@ msgstr "" "סליחה, אין תמיכה בעדכון מערכת, ולכן קושחה חדשה חייבת להיצרב ידנית. אנא פנה " "אל ה-wiki של OpenWrt עבור הוראות ספציפיות למכשיר שלך." -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:98 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:147 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:99 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:148 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:385 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:70 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:214 @@ -6742,8 +6742,8 @@ msgstr "קצב שידור" msgid "TX queue length" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:90 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:165 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:91 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:166 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:18 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:190 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:216 @@ -7312,7 +7312,7 @@ msgstr "עוצמת שידור" msgid "Type" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:183 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:181 msgid "Type of service" msgstr "" @@ -8043,16 +8043,16 @@ msgid "ZRam Size" msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:440 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:151 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:162 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:152 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:163 msgid "any" msgstr "כלשהו" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1463 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1471 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1476 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:101 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:132 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:102 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:133 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1230 #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:79 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoe.js:48 diff --git a/modules/luci-base/po/hi/base.po b/modules/luci-base/po/hi/base.po index fc33b0852e..03f88649a5 100644 --- a/modules/luci-base/po/hi/base.po +++ b/modules/luci-base/po/hi/base.po @@ -504,7 +504,7 @@ msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:633 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1523 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:39 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:126 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:127 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:924 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:988 #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:241 @@ -1667,7 +1667,7 @@ msgstr "" msgid "Designated master" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:158 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:159 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:386 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:71 msgid "Destination" @@ -1753,8 +1753,8 @@ msgstr "" msgid "Directory" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:112 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:197 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:113 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:195 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:897 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:937 msgid "Disable" @@ -2507,7 +2507,7 @@ msgstr "" msgid "Firewall Status" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:178 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:176 msgid "Firewall mark" msgstr "" @@ -2679,7 +2679,7 @@ msgstr "" msgid "GRETAP tunnel over IPv6" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:74 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:75 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:44 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:188 msgid "Gateway" @@ -2697,7 +2697,7 @@ msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:251 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:477 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:38 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:125 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:126 #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:240 #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:108 msgid "General Settings" @@ -3017,7 +3017,7 @@ msgstr "" msgid "IPv4 Routing" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:119 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:120 msgid "IPv4 Rules" msgstr "" @@ -3116,7 +3116,7 @@ msgstr "" msgid "IPv6 Routing" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:119 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:120 msgid "IPv6 Rules" msgstr "" @@ -3329,7 +3329,7 @@ msgstr "" msgid "Incoming checksum" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:143 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:144 msgid "Incoming interface" msgstr "" @@ -3547,7 +3547,7 @@ msgstr "" msgid "Invalid username and/or password! Please try again." msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:193 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:191 msgid "Invert match" msgstr "" @@ -3579,7 +3579,7 @@ msgstr "" msgid "Joining Network: %q" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:173 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:171 msgid "Jump to rule" msgstr "" @@ -4045,7 +4045,7 @@ msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:580 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1418 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:85 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:86 #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:53 #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:92 msgid "MTU" @@ -4185,7 +4185,7 @@ msgstr "" msgid "Method to determine link status" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:78 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:79 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:189 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:215 msgid "Metric" @@ -4747,7 +4747,7 @@ msgstr "" msgid "On-State Delay" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:108 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:109 msgid "On-link" msgstr "" @@ -4934,7 +4934,7 @@ msgstr "" msgid "Outgoing checksum" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:154 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:155 msgid "Outgoing interface" msgstr "" @@ -5352,7 +5352,7 @@ msgstr "" msgid "Prefix Delegated" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:188 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:186 msgid "Prefix suppressor" msgstr "" @@ -5395,7 +5395,7 @@ msgid "Primary becomes active slave whenever it comes back up (always, 0)" msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:508 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:128 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:129 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:197 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:223 msgid "Priority" @@ -5898,7 +5898,7 @@ msgstr "" msgid "Rule" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:135 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:136 msgid "Rule type" msgstr "" @@ -6253,8 +6253,8 @@ msgid "" "instructions." msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:98 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:147 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:99 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:148 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:385 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:70 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:214 @@ -6716,8 +6716,8 @@ msgstr "" msgid "TX queue length" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:90 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:165 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:91 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:166 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:18 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:190 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:216 @@ -7285,7 +7285,7 @@ msgstr "" msgid "Type" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:183 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:181 msgid "Type of service" msgstr "" @@ -8016,16 +8016,16 @@ msgid "ZRam Size" msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:440 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:151 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:162 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:152 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:163 msgid "any" msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1463 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1471 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1476 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:101 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:132 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:102 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:133 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1230 #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:79 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoe.js:48 diff --git a/modules/luci-base/po/hu/base.po b/modules/luci-base/po/hu/base.po index 1522bbc7b7..45ab58aa6f 100644 --- a/modules/luci-base/po/hu/base.po +++ b/modules/luci-base/po/hu/base.po @@ -514,7 +514,7 @@ msgstr "Adminisztráció" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:633 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1523 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:39 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:126 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:127 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:924 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:988 #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:241 @@ -1739,7 +1739,7 @@ msgstr "Megjelenés" msgid "Designated master" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:158 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:159 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:386 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:71 msgid "Destination" @@ -1825,8 +1825,8 @@ msgstr "Szám tárcsázása" msgid "Directory" msgstr "Könyvtár" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:112 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:197 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:113 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:195 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:897 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:937 msgid "Disable" @@ -2613,7 +2613,7 @@ msgstr "Tűzfalbeállítások" msgid "Firewall Status" msgstr "Tűzfal állapota" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:178 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:176 msgid "Firewall mark" msgstr "" @@ -2789,7 +2789,7 @@ msgstr "" msgid "GRETAP tunnel over IPv6" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:74 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:75 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:44 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:188 msgid "Gateway" @@ -2807,7 +2807,7 @@ msgstr "Az átjáró címe érvénytelen" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:251 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:477 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:38 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:125 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:126 #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:240 #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:108 msgid "General Settings" @@ -3130,7 +3130,7 @@ msgstr "" msgid "IPv4 Routing" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:119 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:120 msgid "IPv4 Rules" msgstr "" @@ -3229,7 +3229,7 @@ msgstr "" msgid "IPv6 Routing" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:119 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:120 msgid "IPv6 Rules" msgstr "" @@ -3458,7 +3458,7 @@ msgstr "" msgid "Incoming checksum" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:143 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:144 msgid "Incoming interface" msgstr "" @@ -3682,7 +3682,7 @@ msgstr "Érvénytelen hexadecimális érték" msgid "Invalid username and/or password! Please try again." msgstr "Érvénytelen felhasználónév és/vagy jelszó! Próbálja újra." -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:193 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:191 msgid "Invert match" msgstr "" @@ -3716,7 +3716,7 @@ msgstr "Csatlakozás hálózathoz: vezeték nélküli keresés" msgid "Joining Network: %q" msgstr "Csatlakozás hálózathoz: %q" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:173 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:171 msgid "Jump to rule" msgstr "" @@ -4199,7 +4199,7 @@ msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:580 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1418 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:85 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:86 #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:53 #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:92 msgid "MTU" @@ -4345,7 +4345,7 @@ msgstr "" msgid "Method to determine link status" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:78 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:79 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:189 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:215 msgid "Metric" @@ -4920,7 +4920,7 @@ msgstr "Be" msgid "On-State Delay" msgstr "Állapotkori késleltetés" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:108 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:109 msgid "On-link" msgstr "Kapcsolatkori útválasztás" @@ -5121,7 +5121,7 @@ msgstr "Kimenő:" msgid "Outgoing checksum" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:154 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:155 msgid "Outgoing interface" msgstr "" @@ -5543,7 +5543,7 @@ msgstr "UMTS előnyben részesítése" msgid "Prefix Delegated" msgstr "Előtag delegálva" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:188 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:186 msgid "Prefix suppressor" msgstr "" @@ -5588,7 +5588,7 @@ msgid "Primary becomes active slave whenever it comes back up (always, 0)" msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:508 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:128 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:129 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:197 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:223 msgid "Priority" @@ -6110,7 +6110,7 @@ msgstr "" msgid "Rule" msgstr "Szabály" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:135 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:136 msgid "Rule type" msgstr "" @@ -6477,8 +6477,8 @@ msgstr "" "lemezképet kézzel kell telepíteni. Nézze meg a wiki szócikket az eszközhöz " "tartozó telepítési utasításokért." -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:98 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:147 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:99 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:148 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:385 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:70 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:214 @@ -6959,8 +6959,8 @@ msgstr "TX sebesség" msgid "TX queue length" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:90 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:165 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:91 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:166 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:18 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:190 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:216 @@ -7604,7 +7604,7 @@ msgstr "Adóteljesítmény" msgid "Type" msgstr "Típus" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:183 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:181 msgid "Type of service" msgstr "" @@ -8372,16 +8372,16 @@ msgid "ZRam Size" msgstr "ZRam mérete" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:440 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:151 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:162 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:152 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:163 msgid "any" msgstr "bármely" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1463 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1471 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1476 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:101 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:132 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:102 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:133 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1230 #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:79 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoe.js:48 diff --git a/modules/luci-base/po/it/base.po b/modules/luci-base/po/it/base.po index 8c84fefa48..83c4df419d 100644 --- a/modules/luci-base/po/it/base.po +++ b/modules/luci-base/po/it/base.po @@ -516,7 +516,7 @@ msgstr "Amministrazione" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:633 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1523 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:39 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:126 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:127 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:924 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:988 #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:241 @@ -1705,7 +1705,7 @@ msgstr "Design" msgid "Designated master" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:158 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:159 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:386 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:71 msgid "Destination" @@ -1791,8 +1791,8 @@ msgstr "" msgid "Directory" msgstr "Directory" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:112 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:197 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:113 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:195 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:897 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:937 msgid "Disable" @@ -2567,7 +2567,7 @@ msgstr "Impostazioni Firewall" msgid "Firewall Status" msgstr "Stato del Firewall" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:178 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:176 msgid "Firewall mark" msgstr "" @@ -2739,7 +2739,7 @@ msgstr "" msgid "GRETAP tunnel over IPv6" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:74 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:75 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:44 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:188 msgid "Gateway" @@ -2757,7 +2757,7 @@ msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:251 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:477 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:38 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:125 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:126 #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:240 #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:108 msgid "General Settings" @@ -3079,7 +3079,7 @@ msgstr "" msgid "IPv4 Routing" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:119 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:120 msgid "IPv4 Rules" msgstr "" @@ -3178,7 +3178,7 @@ msgstr "" msgid "IPv6 Routing" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:119 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:120 msgid "IPv6 Rules" msgstr "" @@ -3404,7 +3404,7 @@ msgstr "" msgid "Incoming checksum" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:143 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:144 msgid "Incoming interface" msgstr "" @@ -3622,7 +3622,7 @@ msgstr "" msgid "Invalid username and/or password! Please try again." msgstr "Username e/o password non validi! Per favore riprova." -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:193 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:191 msgid "Invert match" msgstr "" @@ -3656,7 +3656,7 @@ msgstr "Aggiunta Rete: Rilevamento Wireless" msgid "Joining Network: %q" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:173 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:171 msgid "Jump to rule" msgstr "" @@ -4124,7 +4124,7 @@ msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:580 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1418 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:85 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:86 #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:53 #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:92 msgid "MTU" @@ -4268,7 +4268,7 @@ msgstr "" msgid "Method to determine link status" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:78 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:79 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:189 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:215 msgid "Metric" @@ -4834,7 +4834,7 @@ msgstr "" msgid "On-State Delay" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:108 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:109 msgid "On-link" msgstr "" @@ -5021,7 +5021,7 @@ msgstr "In uscita:" msgid "Outgoing checksum" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:154 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:155 msgid "Outgoing interface" msgstr "" @@ -5441,7 +5441,7 @@ msgstr "" msgid "Prefix Delegated" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:188 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:186 msgid "Prefix suppressor" msgstr "" @@ -5484,7 +5484,7 @@ msgid "Primary becomes active slave whenever it comes back up (always, 0)" msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:508 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:128 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:129 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:197 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:223 msgid "Priority" @@ -5993,7 +5993,7 @@ msgstr "" msgid "Rule" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:135 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:136 msgid "Rule type" msgstr "" @@ -6352,8 +6352,8 @@ msgstr "" "riferimento al wiki per le istruzioni di installazione di dispositivi " "specifici." -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:98 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:147 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:99 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:148 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:385 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:70 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:214 @@ -6823,8 +6823,8 @@ msgstr "Velocità TX" msgid "TX queue length" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:90 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:165 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:91 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:166 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:18 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:190 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:216 @@ -7411,7 +7411,7 @@ msgstr "" msgid "Type" msgstr "Tipo" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:183 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:181 msgid "Type of service" msgstr "" @@ -8159,16 +8159,16 @@ msgid "ZRam Size" msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:440 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:151 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:162 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:152 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:163 msgid "any" msgstr "qualsiasi" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1463 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1471 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1476 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:101 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:132 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:102 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:133 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1230 #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:79 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoe.js:48 diff --git a/modules/luci-base/po/ja/base.po b/modules/luci-base/po/ja/base.po index 9a6bc00d65..dccc0cc523 100644 --- a/modules/luci-base/po/ja/base.po +++ b/modules/luci-base/po/ja/base.po @@ -512,7 +512,7 @@ msgstr "管理" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:633 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1523 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:39 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:126 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:127 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:924 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:988 #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:241 @@ -1735,7 +1735,7 @@ msgstr "デザイン" msgid "Designated master" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:158 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:159 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:386 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:71 msgid "Destination" @@ -1821,8 +1821,8 @@ msgstr "ダイヤル番号" msgid "Directory" msgstr "ディレクトリ" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:112 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:197 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:113 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:195 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:897 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:937 msgid "Disable" @@ -2609,7 +2609,7 @@ msgstr "ファイアウォール設定" msgid "Firewall Status" msgstr "ファイアウォールステータス" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:178 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:176 msgid "Firewall mark" msgstr "" @@ -2787,7 +2787,7 @@ msgstr "IPv4上のGRETAPトンネル" msgid "GRETAP tunnel over IPv6" msgstr "IPv6上のGRETAPトンネル" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:74 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:75 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:44 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:188 msgid "Gateway" @@ -2805,7 +2805,7 @@ msgstr "無効なゲートウェイアドレス" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:251 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:477 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:38 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:125 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:126 #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:240 #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:108 msgid "General Settings" @@ -3129,7 +3129,7 @@ msgstr "" msgid "IPv4 Routing" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:119 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:120 msgid "IPv4 Rules" msgstr "" @@ -3228,7 +3228,7 @@ msgstr "" msgid "IPv6 Routing" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:119 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:120 msgid "IPv6 Rules" msgstr "" @@ -3450,7 +3450,7 @@ msgstr "" msgid "Incoming checksum" msgstr "受信チェックサム" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:143 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:144 msgid "Incoming interface" msgstr "" @@ -3674,7 +3674,7 @@ msgstr "" "ユーザー名とパスワードのどちらかもしくは両方が間違っています!もう一度入力し" "てください。" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:193 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:191 msgid "Invert match" msgstr "" @@ -3708,7 +3708,7 @@ msgstr "ネットワークに接続: 無線スキャン" msgid "Joining Network: %q" msgstr "ネットワークに接続中: %q" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:173 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:171 msgid "Jump to rule" msgstr "" @@ -4195,7 +4195,7 @@ msgstr "MII間隔" #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:580 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1418 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:85 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:86 #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:53 #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:92 msgid "MTU" @@ -4339,7 +4339,7 @@ msgstr "リンクを監視する方法" msgid "Method to determine link status" msgstr "リンクの状態を確認する方法" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:78 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:79 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:189 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:215 msgid "Metric" @@ -4912,7 +4912,7 @@ msgstr "オン" msgid "On-State Delay" msgstr "点灯時間" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:108 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:109 msgid "On-link" msgstr "On-Linkルート" @@ -5115,7 +5115,7 @@ msgstr "送信:" msgid "Outgoing checksum" msgstr "送信チェックサム" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:154 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:155 msgid "Outgoing interface" msgstr "" @@ -5536,7 +5536,7 @@ msgstr "UMTSを優先" msgid "Prefix Delegated" msgstr "委任されたプレフィックス(PD)" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:188 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:186 msgid "Prefix suppressor" msgstr "" @@ -5584,7 +5584,7 @@ msgid "Primary becomes active slave whenever it comes back up (always, 0)" msgstr "プライマリが復旧するとアクティブスレーブになります(always、0)" #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:508 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:128 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:129 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:197 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:223 msgid "Priority" @@ -6104,7 +6104,7 @@ msgstr "" msgid "Rule" msgstr "ルール" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:135 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:136 msgid "Rule type" msgstr "" @@ -6471,8 +6471,8 @@ msgstr "" "は手動で行う必要があります。このデバイスへのインストール方法については、wiki" "を参照してください。" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:98 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:147 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:99 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:148 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:385 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:70 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:214 @@ -6983,8 +6983,8 @@ msgstr "送信レート" msgid "TX queue length" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:90 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:165 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:91 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:166 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:18 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:190 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:216 @@ -7615,7 +7615,7 @@ msgstr "送信出力" msgid "Type" msgstr "タイプ" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:183 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:181 msgid "Type of service" msgstr "" @@ -8386,16 +8386,16 @@ msgid "ZRam Size" msgstr "ZRamサイズ" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:440 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:151 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:162 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:152 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:163 msgid "any" msgstr "すべて" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1463 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1471 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1476 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:101 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:132 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:102 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:133 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1230 #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:79 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoe.js:48 diff --git a/modules/luci-base/po/ko/base.po b/modules/luci-base/po/ko/base.po index 15f3c1a5f2..743445b8a5 100644 --- a/modules/luci-base/po/ko/base.po +++ b/modules/luci-base/po/ko/base.po @@ -513,7 +513,7 @@ msgstr "관리" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:633 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1523 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:39 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:126 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:127 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:924 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:988 #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:241 @@ -1700,7 +1700,7 @@ msgstr "테마" msgid "Designated master" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:158 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:159 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:386 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:71 msgid "Destination" @@ -1786,8 +1786,8 @@ msgstr "" msgid "Directory" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:112 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:197 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:113 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:195 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:897 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:937 msgid "Disable" @@ -2551,7 +2551,7 @@ msgstr "방화벽 설정" msgid "Firewall Status" msgstr "방화벽 상태" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:178 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:176 msgid "Firewall mark" msgstr "" @@ -2723,7 +2723,7 @@ msgstr "" msgid "GRETAP tunnel over IPv6" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:74 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:75 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:44 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:188 msgid "Gateway" @@ -2741,7 +2741,7 @@ msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:251 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:477 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:38 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:125 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:126 #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:240 #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:108 msgid "General Settings" @@ -3062,7 +3062,7 @@ msgstr "" msgid "IPv4 Routing" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:119 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:120 msgid "IPv4 Rules" msgstr "" @@ -3162,7 +3162,7 @@ msgstr "" msgid "IPv6 Routing" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:119 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:120 msgid "IPv6 Rules" msgstr "" @@ -3376,7 +3376,7 @@ msgstr "" msgid "Incoming checksum" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:143 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:144 msgid "Incoming interface" msgstr "" @@ -3594,7 +3594,7 @@ msgstr "" msgid "Invalid username and/or password! Please try again." msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:193 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:191 msgid "Invert match" msgstr "" @@ -3626,7 +3626,7 @@ msgstr "네트워크 연결: 무선랜 스캔 결과" msgid "Joining Network: %q" msgstr "네트워크 연결중: %q" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:173 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:171 msgid "Jump to rule" msgstr "" @@ -4094,7 +4094,7 @@ msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:580 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1418 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:85 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:86 #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:53 #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:92 msgid "MTU" @@ -4238,7 +4238,7 @@ msgstr "" msgid "Method to determine link status" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:78 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:79 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:189 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:215 msgid "Metric" @@ -4800,7 +4800,7 @@ msgstr "" msgid "On-State Delay" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:108 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:109 msgid "On-link" msgstr "" @@ -4987,7 +4987,7 @@ msgstr "" msgid "Outgoing checksum" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:154 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:155 msgid "Outgoing interface" msgstr "" @@ -5407,7 +5407,7 @@ msgstr "" msgid "Prefix Delegated" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:188 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:186 msgid "Prefix suppressor" msgstr "" @@ -5450,7 +5450,7 @@ msgid "Primary becomes active slave whenever it comes back up (always, 0)" msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:508 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:128 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:129 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:197 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:223 msgid "Priority" @@ -5962,7 +5962,7 @@ msgstr "" msgid "Rule" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:135 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:136 msgid "Rule type" msgstr "" @@ -6324,8 +6324,8 @@ msgstr "" "죄송합니다. 현재 sysupgrade 를 지원하지 않습니다. 새 펌웨어 이미지를 수동으" "로 플래시해야 합니다. 장치별 설치 지침은 OpenWrt 위키를 참조하세요." -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:98 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:147 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:99 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:148 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:385 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:70 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:214 @@ -6792,8 +6792,8 @@ msgstr "" msgid "TX queue length" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:90 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:165 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:91 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:166 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:18 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:190 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:216 @@ -7401,7 +7401,7 @@ msgstr "" msgid "Type" msgstr "유형" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:183 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:181 msgid "Type of service" msgstr "" @@ -8145,16 +8145,16 @@ msgid "ZRam Size" msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:440 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:151 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:162 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:152 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:163 msgid "any" msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1463 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1471 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1476 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:101 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:132 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:102 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:133 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1230 #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:79 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoe.js:48 diff --git a/modules/luci-base/po/mr/base.po b/modules/luci-base/po/mr/base.po index df0f6032e0..c6d9de73b2 100644 --- a/modules/luci-base/po/mr/base.po +++ b/modules/luci-base/po/mr/base.po @@ -502,7 +502,7 @@ msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:633 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1523 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:39 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:126 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:127 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:924 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:988 #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:241 @@ -1665,7 +1665,7 @@ msgstr "" msgid "Designated master" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:158 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:159 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:386 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:71 msgid "Destination" @@ -1751,8 +1751,8 @@ msgstr "" msgid "Directory" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:112 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:197 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:113 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:195 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:897 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:937 msgid "Disable" @@ -2505,7 +2505,7 @@ msgstr "" msgid "Firewall Status" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:178 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:176 msgid "Firewall mark" msgstr "" @@ -2677,7 +2677,7 @@ msgstr "" msgid "GRETAP tunnel over IPv6" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:74 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:75 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:44 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:188 msgid "Gateway" @@ -2695,7 +2695,7 @@ msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:251 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:477 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:38 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:125 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:126 #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:240 #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:108 msgid "General Settings" @@ -3015,7 +3015,7 @@ msgstr "" msgid "IPv4 Routing" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:119 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:120 msgid "IPv4 Rules" msgstr "" @@ -3114,7 +3114,7 @@ msgstr "" msgid "IPv6 Routing" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:119 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:120 msgid "IPv6 Rules" msgstr "" @@ -3327,7 +3327,7 @@ msgstr "" msgid "Incoming checksum" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:143 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:144 msgid "Incoming interface" msgstr "" @@ -3545,7 +3545,7 @@ msgstr "" msgid "Invalid username and/or password! Please try again." msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:193 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:191 msgid "Invert match" msgstr "" @@ -3577,7 +3577,7 @@ msgstr "" msgid "Joining Network: %q" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:173 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:171 msgid "Jump to rule" msgstr "" @@ -4043,7 +4043,7 @@ msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:580 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1418 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:85 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:86 #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:53 #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:92 msgid "MTU" @@ -4183,7 +4183,7 @@ msgstr "" msgid "Method to determine link status" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:78 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:79 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:189 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:215 msgid "Metric" @@ -4745,7 +4745,7 @@ msgstr "" msgid "On-State Delay" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:108 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:109 msgid "On-link" msgstr "" @@ -4932,7 +4932,7 @@ msgstr "" msgid "Outgoing checksum" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:154 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:155 msgid "Outgoing interface" msgstr "" @@ -5350,7 +5350,7 @@ msgstr "" msgid "Prefix Delegated" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:188 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:186 msgid "Prefix suppressor" msgstr "" @@ -5393,7 +5393,7 @@ msgid "Primary becomes active slave whenever it comes back up (always, 0)" msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:508 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:128 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:129 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:197 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:223 msgid "Priority" @@ -5896,7 +5896,7 @@ msgstr "" msgid "Rule" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:135 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:136 msgid "Rule type" msgstr "" @@ -6251,8 +6251,8 @@ msgid "" "instructions." msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:98 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:147 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:99 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:148 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:385 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:70 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:214 @@ -6714,8 +6714,8 @@ msgstr "" msgid "TX queue length" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:90 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:165 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:91 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:166 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:18 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:190 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:216 @@ -7283,7 +7283,7 @@ msgstr "" msgid "Type" msgstr "प्रकार" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:183 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:181 msgid "Type of service" msgstr "" @@ -8014,16 +8014,16 @@ msgid "ZRam Size" msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:440 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:151 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:162 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:152 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:163 msgid "any" msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1463 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1471 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1476 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:101 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:132 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:102 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:133 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1230 #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:79 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoe.js:48 diff --git a/modules/luci-base/po/ms/base.po b/modules/luci-base/po/ms/base.po index 9a5ccb7319..476e9f5610 100644 --- a/modules/luci-base/po/ms/base.po +++ b/modules/luci-base/po/ms/base.po @@ -506,7 +506,7 @@ msgstr "Pentadbiran" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:633 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1523 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:39 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:126 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:127 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:924 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:988 #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:241 @@ -1669,7 +1669,7 @@ msgstr "Disain" msgid "Designated master" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:158 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:159 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:386 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:71 msgid "Destination" @@ -1755,8 +1755,8 @@ msgstr "" msgid "Directory" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:112 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:197 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:113 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:195 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:897 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:937 msgid "Disable" @@ -2515,7 +2515,7 @@ msgstr "Tetapan Firewall" msgid "Firewall Status" msgstr "Status Firewall" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:178 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:176 msgid "Firewall mark" msgstr "" @@ -2687,7 +2687,7 @@ msgstr "" msgid "GRETAP tunnel over IPv6" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:74 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:75 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:44 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:188 msgid "Gateway" @@ -2705,7 +2705,7 @@ msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:251 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:477 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:38 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:125 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:126 #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:240 #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:108 msgid "General Settings" @@ -3027,7 +3027,7 @@ msgstr "" msgid "IPv4 Routing" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:119 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:120 msgid "IPv4 Rules" msgstr "" @@ -3126,7 +3126,7 @@ msgstr "" msgid "IPv6 Routing" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:119 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:120 msgid "IPv6 Rules" msgstr "" @@ -3344,7 +3344,7 @@ msgstr "" msgid "Incoming checksum" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:143 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:144 msgid "Incoming interface" msgstr "" @@ -3562,7 +3562,7 @@ msgstr "" msgid "Invalid username and/or password! Please try again." msgstr "Username dan / atau password tak sah! Sila cuba lagi." -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:193 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:191 msgid "Invert match" msgstr "" @@ -3598,7 +3598,7 @@ msgstr "" msgid "Joining Network: %q" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:173 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:171 msgid "Jump to rule" msgstr "" @@ -4064,7 +4064,7 @@ msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:580 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1418 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:85 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:86 #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:53 #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:92 msgid "MTU" @@ -4204,7 +4204,7 @@ msgstr "" msgid "Method to determine link status" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:78 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:79 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:189 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:215 msgid "Metric" @@ -4768,7 +4768,7 @@ msgstr "" msgid "On-State Delay" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:108 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:109 msgid "On-link" msgstr "" @@ -4955,7 +4955,7 @@ msgstr "" msgid "Outgoing checksum" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:154 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:155 msgid "Outgoing interface" msgstr "" @@ -5373,7 +5373,7 @@ msgstr "" msgid "Prefix Delegated" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:188 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:186 msgid "Prefix suppressor" msgstr "" @@ -5416,7 +5416,7 @@ msgid "Primary becomes active slave whenever it comes back up (always, 0)" msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:508 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:128 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:129 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:197 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:223 msgid "Priority" @@ -5922,7 +5922,7 @@ msgstr "" msgid "Rule" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:135 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:136 msgid "Rule type" msgstr "" @@ -6277,8 +6277,8 @@ msgid "" "instructions." msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:98 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:147 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:99 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:148 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:385 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:70 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:214 @@ -6741,8 +6741,8 @@ msgstr "" msgid "TX queue length" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:90 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:165 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:91 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:166 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:18 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:190 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:216 @@ -7323,7 +7323,7 @@ msgstr "" msgid "Type" msgstr "Jenis" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:183 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:181 msgid "Type of service" msgstr "" @@ -8056,16 +8056,16 @@ msgid "ZRam Size" msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:440 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:151 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:162 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:152 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:163 msgid "any" msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1463 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1471 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1476 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:101 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:132 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:102 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:133 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1230 #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:79 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoe.js:48 diff --git a/modules/luci-base/po/nb_NO/base.po b/modules/luci-base/po/nb_NO/base.po index dc75480efa..4475c155f7 100644 --- a/modules/luci-base/po/nb_NO/base.po +++ b/modules/luci-base/po/nb_NO/base.po @@ -510,7 +510,7 @@ msgstr "Administrasjon" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:633 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1523 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:39 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:126 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:127 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:924 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:988 #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:241 @@ -1691,7 +1691,7 @@ msgstr "Design" msgid "Designated master" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:158 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:159 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:386 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:71 msgid "Destination" @@ -1777,8 +1777,8 @@ msgstr "" msgid "Directory" msgstr "Katalog" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:112 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:197 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:113 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:195 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:897 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:937 msgid "Disable" @@ -2551,7 +2551,7 @@ msgstr "Brannmur Innstillinger" msgid "Firewall Status" msgstr "Brannmur Status" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:178 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:176 msgid "Firewall mark" msgstr "" @@ -2724,7 +2724,7 @@ msgstr "" msgid "GRETAP tunnel over IPv6" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:74 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:75 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:44 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:188 msgid "Gateway" @@ -2742,7 +2742,7 @@ msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:251 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:477 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:38 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:125 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:126 #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:240 #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:108 msgid "General Settings" @@ -3064,7 +3064,7 @@ msgstr "" msgid "IPv4 Routing" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:119 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:120 msgid "IPv4 Rules" msgstr "" @@ -3163,7 +3163,7 @@ msgstr "" msgid "IPv6 Routing" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:119 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:120 msgid "IPv6 Rules" msgstr "" @@ -3380,7 +3380,7 @@ msgstr "" msgid "Incoming checksum" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:143 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:144 msgid "Incoming interface" msgstr "" @@ -3598,7 +3598,7 @@ msgstr "" msgid "Invalid username and/or password! Please try again." msgstr "Ugyldig brukernavn og/eller passord! Vennligst prøv igjen." -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:193 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:191 msgid "Invert match" msgstr "" @@ -3633,7 +3633,7 @@ msgstr "Koble til nettverk: Trådløs Skanning" msgid "Joining Network: %q" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:173 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:171 msgid "Jump to rule" msgstr "" @@ -4102,7 +4102,7 @@ msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:580 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1418 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:85 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:86 #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:53 #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:92 msgid "MTU" @@ -4246,7 +4246,7 @@ msgstr "" msgid "Method to determine link status" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:78 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:79 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:189 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:215 msgid "Metric" @@ -4813,7 +4813,7 @@ msgstr "" msgid "On-State Delay" msgstr "Forsinkelse ved tilstand -På-" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:108 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:109 msgid "On-link" msgstr "" @@ -5000,7 +5000,7 @@ msgstr "Ugående:" msgid "Outgoing checksum" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:154 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:155 msgid "Outgoing interface" msgstr "" @@ -5420,7 +5420,7 @@ msgstr "" msgid "Prefix Delegated" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:188 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:186 msgid "Prefix suppressor" msgstr "" @@ -5465,7 +5465,7 @@ msgid "Primary becomes active slave whenever it comes back up (always, 0)" msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:508 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:128 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:129 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:197 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:223 msgid "Priority" @@ -5974,7 +5974,7 @@ msgstr "" msgid "Rule" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:135 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:136 msgid "Rule type" msgstr "" @@ -6334,8 +6334,8 @@ msgstr "" "flashes manuelt. Viser til wiki for installering av firmare på forskjellige " "enheter." -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:98 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:147 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:99 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:148 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:385 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:70 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:214 @@ -6801,8 +6801,8 @@ msgstr "TX rate" msgid "TX queue length" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:90 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:165 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:91 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:166 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:18 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:190 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:216 @@ -7405,7 +7405,7 @@ msgstr "Tx-Styrke" msgid "Type" msgstr "Type" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:183 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:181 msgid "Type of service" msgstr "" @@ -8155,16 +8155,16 @@ msgid "ZRam Size" msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:440 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:151 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:162 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:152 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:163 msgid "any" msgstr "enhver" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1463 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1471 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1476 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:101 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:132 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:102 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:133 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1230 #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:79 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoe.js:48 diff --git a/modules/luci-base/po/nl/base.po b/modules/luci-base/po/nl/base.po index e9201496ce..d6a9de1caf 100644 --- a/modules/luci-base/po/nl/base.po +++ b/modules/luci-base/po/nl/base.po @@ -508,7 +508,7 @@ msgstr "Administratie" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:633 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1523 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:39 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:126 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:127 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:924 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:988 #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:241 @@ -1675,7 +1675,7 @@ msgstr "" msgid "Designated master" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:158 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:159 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:386 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:71 msgid "Destination" @@ -1761,8 +1761,8 @@ msgstr "" msgid "Directory" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:112 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:197 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:113 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:195 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:897 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:937 msgid "Disable" @@ -2517,7 +2517,7 @@ msgstr "" msgid "Firewall Status" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:178 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:176 msgid "Firewall mark" msgstr "" @@ -2689,7 +2689,7 @@ msgstr "" msgid "GRETAP tunnel over IPv6" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:74 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:75 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:44 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:188 msgid "Gateway" @@ -2707,7 +2707,7 @@ msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:251 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:477 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:38 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:125 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:126 #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:240 #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:108 msgid "General Settings" @@ -3027,7 +3027,7 @@ msgstr "" msgid "IPv4 Routing" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:119 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:120 msgid "IPv4 Rules" msgstr "" @@ -3126,7 +3126,7 @@ msgstr "" msgid "IPv6 Routing" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:119 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:120 msgid "IPv6 Rules" msgstr "" @@ -3340,7 +3340,7 @@ msgstr "" msgid "Incoming checksum" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:143 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:144 msgid "Incoming interface" msgstr "" @@ -3558,7 +3558,7 @@ msgstr "" msgid "Invalid username and/or password! Please try again." msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:193 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:191 msgid "Invert match" msgstr "" @@ -3590,7 +3590,7 @@ msgstr "" msgid "Joining Network: %q" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:173 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:171 msgid "Jump to rule" msgstr "" @@ -4056,7 +4056,7 @@ msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:580 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1418 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:85 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:86 #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:53 #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:92 msgid "MTU" @@ -4200,7 +4200,7 @@ msgstr "" msgid "Method to determine link status" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:78 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:79 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:189 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:215 msgid "Metric" @@ -4762,7 +4762,7 @@ msgstr "" msgid "On-State Delay" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:108 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:109 msgid "On-link" msgstr "" @@ -4949,7 +4949,7 @@ msgstr "" msgid "Outgoing checksum" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:154 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:155 msgid "Outgoing interface" msgstr "" @@ -5367,7 +5367,7 @@ msgstr "" msgid "Prefix Delegated" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:188 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:186 msgid "Prefix suppressor" msgstr "" @@ -5410,7 +5410,7 @@ msgid "Primary becomes active slave whenever it comes back up (always, 0)" msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:508 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:128 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:129 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:197 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:223 msgid "Priority" @@ -5913,7 +5913,7 @@ msgstr "" msgid "Rule" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:135 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:136 msgid "Rule type" msgstr "" @@ -6268,8 +6268,8 @@ msgid "" "instructions." msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:98 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:147 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:99 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:148 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:385 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:70 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:214 @@ -6731,8 +6731,8 @@ msgstr "" msgid "TX queue length" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:90 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:165 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:91 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:166 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:18 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:190 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:216 @@ -7300,7 +7300,7 @@ msgstr "" msgid "Type" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:183 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:181 msgid "Type of service" msgstr "" @@ -8033,16 +8033,16 @@ msgid "ZRam Size" msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:440 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:151 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:162 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:152 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:163 msgid "any" msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1463 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1471 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1476 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:101 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:132 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:102 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:133 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1230 #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:79 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoe.js:48 diff --git a/modules/luci-base/po/pl/base.po b/modules/luci-base/po/pl/base.po index e0d1473952..4aca24f0dd 100644 --- a/modules/luci-base/po/pl/base.po +++ b/modules/luci-base/po/pl/base.po @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: LuCI\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2010-04-20 09:40+0200\n" -"PO-Revision-Date: 2021-09-01 09:45+0000\n" +"PO-Revision-Date: 2021-09-05 21:35+0000\n" "Last-Translator: Matthaiks \n" "Language-Team: Polish " "\n" @@ -457,7 +457,7 @@ msgstr "Dodaj klucz" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:401 msgid "Add local domain suffix to names served from hosts files." -msgstr "Dodaj lokalny sufiks domeny do nazw urządzeń z pliku hosts" +msgstr "Dodaj lokalny sufiks domeny do nazw urządzeń z pliku hosts." #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:465 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1114 @@ -516,7 +516,7 @@ msgstr "Zarządzanie" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:633 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1523 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:39 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:126 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:127 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:924 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:988 #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:241 @@ -582,7 +582,7 @@ msgid "" "address." msgstr "" "Przydziel sekwencyjnie adresy IP, zaczynając od najmniejszego dostępnego " -"adresu" +"adresu." #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:369 msgid "Allocate IPs sequentially" @@ -986,9 +986,7 @@ msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:318 msgid "Bind dynamically to interfaces rather than wildcard address." -msgstr "" -"Dynamiczne powiązanie z interfejsami, a nie z adresami zastępczymi (zalecane " -"jako domyślne ustawienie linuksa)" +msgstr "Dynamiczne powiązanie z interfejsami, a nie z adresami zastępczymi." #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:59 #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:64 @@ -1065,7 +1063,7 @@ msgstr "Podnieś przy starcie" #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:504 msgid "Bring up the bridge interface even if no ports are attached" -msgstr "Uruchom interfejs mostu bez ustawionych portów" +msgstr "Uruchom interfejs mostu bez ustawionych portów" #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:207 msgid "Broadcast policy (broadcast, 3)" @@ -1759,7 +1757,7 @@ msgstr "Motyw" msgid "Designated master" msgstr "Wyznaczony nadrzędny" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:158 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:159 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:386 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:71 msgid "Destination" @@ -1845,8 +1843,8 @@ msgstr "Numer do wybrania" msgid "Directory" msgstr "Katalog" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:112 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:197 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:113 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:195 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:897 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:937 msgid "Disable" @@ -1897,7 +1895,7 @@ msgstr "Rozłączaj przy niskim stanie ramek ACK" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:294 msgid "Discard upstream RFC1918 responses." -msgstr "Odrzuć wychodzące odpowiedzi RFC1918" +msgstr "Odrzuć wychodzące odpowiedzi RFC1918." #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:198 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:723 @@ -1938,14 +1936,13 @@ msgid "" "\">DHCP server and DNS " "forwarder." msgstr "" -"Dnsmasq jest kombajnem serwera DHCP połączonym z serwerem DNS. Jest to serwer przekazujący (Forwarder) dla firewalli NAT" +"Dnsmasq to lekki serwer DHCP i serwer przekazujący (forwarder) DNS." #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:405 msgid "Do not cache negative replies, e.g. for non-existent domains." -msgstr "Nie buforuj odpowiedzi negatywnych, np. dla nieistniejących domen" +msgstr "Nie buforuj odpowiedzi negatywnych, np. dla nieistniejących domen." #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:86 #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:91 @@ -1956,19 +1953,17 @@ msgstr "Nie twórz trasy hosta do peera (opcjonalnie)." #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:260 msgid "Do not forward DNS queries without dots or domain parts." -msgstr "" -"Nie przekazuj zapytań DNS bez " -"nazwy DNS" +msgstr "Nie przekazuj dalej zapytań DNS bez kropek lub części domeny." #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:380 msgid "Do not forward queries that cannot be answered by public resolvers." msgstr "" "Nie przekazuj zapytań, które nie mogą być zrealizowane przez publiczne " -"serwery nazw" +"resolwery." #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:375 msgid "Do not forward reverse lookups for local networks." -msgstr "Nie przekazuj wyszukiwań wstecznych (lookups) do sieci lokalnych" +msgstr "Nie przekazuj wyszukiwań wstecznych (lookups) do sieci lokalnych." #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:331 msgid "Do not listen on the specified interfaces." @@ -2374,11 +2369,11 @@ msgstr "Egzekwuj IGMPv3" #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:691 msgid "Enforce MLD version 1" -msgstr "Egzekwuj MLD version 1" +msgstr "Egzekwuj MLD version 1" #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:692 msgid "Enforce MLD version 2" -msgstr "Egzekwuj MLD version 2" +msgstr "Egzekwuj MLD version 2" #: modules/luci-compat/luasrc/view/cbi/dropdown.htm:16 msgid "Enter custom value" @@ -2432,7 +2427,8 @@ msgid "" "Exempt 127.0.0.0/8 and ::1 from rebinding checks, " "e.g. for RBL services." msgstr "" -"Zezwól na ruch wychodzący (odpowiedzi) z podsieci 127.0.0.0/8, np. usługi RBL" +"Zwolnij 127.0.0.0/8 i ::1 z kontroli ponownego " +"wiązania, np. usług RBL." #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:356 msgid "Existing device" @@ -2554,8 +2550,8 @@ msgid "" "File listing upstream resolvers, optionally domain-specific, e.g. " "server=1.2.3.4, server=/domain/1.2.3.4." msgstr "" -"Plik może zawierać wiersze 'server=/domain/1.2.3.4' lub 'server=1.2.3.4' dla " -"domen lub nadrzędnych serwerów DNS." +"Lista plików źródłowych resolwerów, opcjonalnie specyficznych dla domeny, " +"np. server=1.2.3.4, server=/domain/1.2.3.4." #: modules/luci-base/htdocs/luci-static/resources/ui.js:2641 msgid "File not accessible" @@ -2563,13 +2559,11 @@ msgstr "Plik niedostępny" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:341 msgid "File to store DHCP lease information." -msgstr "" -"Plik, w którym podano żądania DHCP, zostanie zachowany" +msgstr "Plik do przechowywania informacji o dzierżawie DHCP." #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:349 msgid "File with upstream resolvers." -msgstr "lokalny plik DNS" +msgstr "Plik ze źródłowymi resolwerami." #: modules/luci-base/htdocs/luci-static/resources/ui.js:2832 msgid "Filename" @@ -2577,7 +2571,7 @@ msgstr "Nazwa pliku" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:483 msgid "Filename of the boot image advertised to clients." -msgstr "Rozgłaszana nazwa pliku obrazu startowego do klientów" +msgstr "Rozgłaszana nazwa pliku obrazu startowego do klientów." #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:191 #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:314 @@ -2645,9 +2639,9 @@ msgstr "Ustawienia zapory sieciowej" msgid "Firewall Status" msgstr "Status zapory sieciowej" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:178 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:176 msgid "Firewall mark" -msgstr "" +msgstr "Znacznik zapory" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1487 msgid "Firmware File" @@ -2659,7 +2653,7 @@ msgstr "Wersja firmware" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:437 msgid "Fixed source port for outbound DNS queries." -msgstr "Stały port źródłowy dla wychodzących zapytań DNS" +msgstr "Stały port źródłowy dla wychodzących zapytań DNS." #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:312 #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:449 @@ -2830,7 +2824,7 @@ msgstr "Tunel GRETAP przez IPv4" msgid "GRETAP tunnel over IPv6" msgstr "Tunel GRETAP przez IPv6" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:74 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:75 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:44 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:188 msgid "Gateway" @@ -2848,7 +2842,7 @@ msgstr "Adres bramy jest nieprawidłowy" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:251 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:477 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:38 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:125 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:126 #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:240 #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:108 msgid "General Settings" @@ -3169,15 +3163,15 @@ msgstr "Zapora sieciowa IPv4" #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:252 msgid "IPv4 Neighbours" -msgstr "" +msgstr "Sąsiedztwo IPv4" #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:251 msgid "IPv4 Routing" msgstr "Trasowanie IPv4" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:119 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:120 msgid "IPv4 Rules" -msgstr "" +msgstr "Reguły IPv4" #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:29 msgid "IPv4 Upstream" @@ -3274,9 +3268,9 @@ msgstr "Ustawienia RA IPv6" msgid "IPv6 Routing" msgstr "Trasowanie IPv6" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:119 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:120 msgid "IPv6 Rules" -msgstr "" +msgstr "Reguły IPv6" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:634 msgid "IPv6 Settings" @@ -3504,9 +3498,9 @@ msgstr "" msgid "Incoming checksum" msgstr "Przychodząca suma kontrolna" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:143 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:144 msgid "Incoming interface" -msgstr "" +msgstr "Interfejs przychodzący" #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:92 #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:97 @@ -3730,9 +3724,9 @@ msgstr "Nieprawidłowa wartość szesnastkowa" msgid "Invalid username and/or password! Please try again." msgstr "Niewłaściwy login i/lub hasło! Spróbuj ponownie." -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:193 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:191 msgid "Invert match" -msgstr "" +msgstr "Odwróć dopasowanie" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1148 msgid "Isolate Clients" @@ -3764,9 +3758,9 @@ msgstr "Przyłącz do sieci: Skanuj sieci WiFi" msgid "Joining Network: %q" msgstr "Przyłączanie do sieci: %q" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:173 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:171 msgid "Jump to rule" -msgstr "" +msgstr "Przejdź do reguły" #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:228 msgid "Keep settings and retain the current configuration" @@ -3961,7 +3955,7 @@ msgstr "Połączenie aktywne" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:424 msgid "List of IP addresses to convert into NXDOMAIN responses." -msgstr "Lista hostów, które dostarczają zafałszowane wyniki NX domain" +msgstr "Lista adresów IP do konwersji na odpowiedzi NXDOMAIN." #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1555 msgid "" @@ -3997,7 +3991,7 @@ msgstr "Lista kluczy SSH do autoryzacji" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:304 msgid "List of domains to allow RFC1918 responses for." -msgstr "Lista domen zezwalających na odpowiedzi RFC1918" +msgstr "Lista domen zezwalających na odpowiedzi RFC1918." #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:288 msgid "List of domains to force to an IP address." @@ -4005,9 +3999,7 @@ msgstr "Lista wymuszonych domen na adres IP." #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:281 msgid "List of upstream resolvers to forward queries to." -msgstr "" -"Lista serwerów DNS do których będą " -"przekazywane zapytania" +msgstr "Lista źródłowych resolwerów, do których będą przekazywane zapytania." #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:78 msgid "Listen Port" @@ -4030,7 +4022,7 @@ msgstr "Ogranicz nasłuchiwanie do tych interfesjów, oraz loopbacku." #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:430 msgid "Listening port for inbound DNS queries." -msgstr "Port nasłuchu dla przychodzących zapytań DNS" +msgstr "Port nasłuchu dla przychodzących zapytań DNS." #: modules/luci-mod-status/root/usr/share/luci/menu.d/luci-mod-status.json:106 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:54 @@ -4111,7 +4103,7 @@ msgstr "Domena lokalna" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:272 msgid "Local domain suffix appended to DHCP names and hosts file entries." msgstr "" -"Przyrostek (sufiks) domeny przyłączany do nazw DHCP i wpisów w pliku hosta" +"Przyrostek (sufiks) domeny przyłączany do nazw DHCP i wpisów w pliku hosts." #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:267 msgid "Local server" @@ -4251,7 +4243,7 @@ msgstr "Interwał MII" #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:580 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1418 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:85 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:86 #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:53 #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:92 msgid "MTU" @@ -4313,15 +4305,15 @@ msgstr "Maksymalny dozwolony odstęp czasu" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:444 msgid "Maximum allowed number of active DHCP leases." -msgstr "Maksymalna dozwolona liczba aktywnych dzierżaw DHCP" +msgstr "Maksymalna dozwolona liczba aktywnych dzierżaw DHCP." #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:458 msgid "Maximum allowed number of concurrent DNS queries." -msgstr "Maksymalna dozwolona liczba jednoczesnych zapytań DNS" +msgstr "Maksymalna dozwolona liczba jednoczesnych zapytań DNS." #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:451 msgid "Maximum allowed size of EDNS0 UDP packets." -msgstr "Maksymalny dozwolony rozmiar pakietu EDNS.0 UDP" +msgstr "Maksymalny dozwolony rozmiar pakietów EDNS.0 UDP." #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:126 #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:118 @@ -4400,7 +4392,7 @@ msgstr "Metoda monitorowania łącza" msgid "Method to determine link status" msgstr "Metoda określania statusu łącza" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:78 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:79 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:189 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:215 msgid "Metric" @@ -4709,8 +4701,8 @@ msgid "" "Never forward matching domains and subdomains, resolve from DHCP or hosts " "files only." msgstr "" -"Specyfikacja domeny lokalnej. Nazwy należące do tej domeny nie są " -"przekazywane dalej ani rozwijane przez DHCP lub tylko pliki hosta" +"Nigdy nie przesyłaj dalej pasujących domen i poddomen, rozwiązuj tylko z " +"DHCP lub plików hosts." #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1134 msgid "New interface for \"%s\" can not be created: %s" @@ -4774,7 +4766,7 @@ msgstr "Nie egzekwuj" #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:241 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:244 msgid "No entries available" -msgstr "" +msgstr "Brak wpisów" #: modules/luci-base/htdocs/luci-static/resources/ui.js:2899 msgid "No entries in this directory" @@ -4935,7 +4927,7 @@ msgstr "Liczba raportów członkowskich IGMP" msgid "Number of cached DNS entries, 10000 is maximum, 0 is no caching." msgstr "" "Liczba buforowanych wpisów DNS (maksymalnie 10000, 0 oznacza brak pamięci " -"podręcznej)" +"podręcznej)." #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:311 msgid "Number of peer notifications after failover event" @@ -4977,7 +4969,7 @@ msgstr "Włączone" msgid "On-State Delay" msgstr "Zwłoka połączenia" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:108 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:109 msgid "On-link" msgstr "Trasa łącza" @@ -5080,7 +5072,7 @@ msgstr "Usunięto wartość" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1681 msgid "Optional" -msgstr "Opcjonalny" +msgstr "Opcjonalne" #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:128 msgid "Optional, free-form notes about this device" @@ -5190,9 +5182,9 @@ msgstr "Wychodzący:" msgid "Outgoing checksum" msgstr "Wychodząca suma kontrolna" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:154 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:155 msgid "Outgoing interface" -msgstr "" +msgstr "Interfejs wychodzący" #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:96 #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:101 @@ -5612,9 +5604,9 @@ msgstr "Preferuj UMTS" msgid "Prefix Delegated" msgstr "Prefiks przekazany" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:188 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:186 msgid "Prefix suppressor" -msgstr "" +msgstr "Tłumik prefiksu" #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:138 msgid "Preshared Key" @@ -5660,7 +5652,7 @@ msgstr "" "Główny staje się aktywnym niewolnikiem za każdym razem, gdy wróci (zawsze 0)" #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:508 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:128 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:129 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:197 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:223 msgid "Priority" @@ -5747,9 +5739,7 @@ msgstr "Jakość" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:419 msgid "Query all available upstream resolvers." -msgstr "" -"Zapytaj o wszystkie dostępne serwery DNS" +msgstr "Zapytaj o wszystkie dostępne źródłowe resolwery." #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:556 msgid "Query interval" @@ -5825,8 +5815,7 @@ msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:337 msgid "Read /etc/ethers to configure the DHCP server." msgstr "" -"Przejrzyj plik /etc/ethers aby skonfigurować serwer DHCP" +"Przejrzyj plik /etc/ethers , aby skonfigurować serwer DHCP." #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:559 msgid "Really switch protocol?" @@ -6097,8 +6086,8 @@ msgid "" "Return answers to DNS queries matching the subnet from which the query was " "received if multiple IPs are available." msgstr "" -"Zlokalizuj nazwę hosta w zależności od odpytującej podsieci, jeśli jest " -"dostępne więcej niż jedno IP" +"Zwróć odpowiedzi na zapytania DNS pasujące do podsieci, z której otrzymano " +"zapytanie, jeśli dostępnych jest wiele adresów IP." #: modules/luci-base/htdocs/luci-static/resources/ui.js:371 #: modules/luci-base/htdocs/luci-static/resources/ui.js:372 @@ -6131,7 +6120,7 @@ msgstr "Wytrzymałość" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:476 msgid "Root directory for files served via TFTP." -msgstr "Katalog główny dla plików udostępnianych przez TFTP" +msgstr "Katalog główny dla plików udostępnianych przez TFTP." #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:297 msgid "Root preparation" @@ -6184,9 +6173,9 @@ msgstr "" msgid "Rule" msgstr "Reguła" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:135 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:136 msgid "Rule type" -msgstr "" +msgstr "Typ reguły" #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:335 msgid "Run a filesystem check before mounting the device" @@ -6561,8 +6550,8 @@ msgstr "" "być wgrany ręcznie. Sprawdź stronę wiki, aby uzyskać instrukcję dla danego " "urządzenia." -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:98 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:147 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:99 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:148 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:385 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:70 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:214 @@ -6995,7 +6984,7 @@ msgstr "Pomiń rejestrowanie" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:365 msgid "Suppress logging of the routine operation for the DHCP protocol." -msgstr "Pomiń rejestrowanie rutynowych operacji dla tych protokołów" +msgstr "Pomiń rejestrowanie rutynowych operacji dla protokołu DHCP." #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/20_memory.js:46 msgid "Swap free" @@ -7098,8 +7087,8 @@ msgstr "Szybkość TX" msgid "TX queue length" msgstr "Długość kolejki TX" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:90 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:165 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:91 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:166 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:18 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:190 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:216 @@ -7595,9 +7584,7 @@ msgstr "" # w tłumaczeniu pojawiła się spacja po DHCP co powoduje niepoprawne wyświetlanie się strony z lang PL #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:264 msgid "This is the only DHCP server in the local network." -msgstr "" -"To jest jedyny serwer DHCP w sieci lokalnej" +msgstr "To jest jedyny serwer DHCP w sieci lokalnej." #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6in4.js:73 msgid "This is the plain username for logging into the account" @@ -7770,9 +7757,9 @@ msgstr "Moc nadawania" msgid "Type" msgstr "Typ" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:183 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:181 msgid "Type of service" -msgstr "" +msgstr "Typ usługi" #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:328 msgid "UDP:" @@ -8007,8 +7994,7 @@ msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:414 msgid "Upstream resolvers will be queried in the order of the resolv file." msgstr "" -"Nazwa DNS będzie rozwijana przez " -"kolejne serwery w porządku podanym w resolvfile" +"Odpytywania źródłowych resolwerów będą odbywać się w kolejności pliku resolv." #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:82 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/10_system.js:60 @@ -8276,8 +8262,8 @@ msgid "" "Validate DNS replies and cache DNSSEC data, requires upstream to support " "DNSSEC." msgstr "" -"Wymagane wsparcie dla DNSSEC; sprawdza niepodpisane odpowiedzi czy pochodzą " -"z niepodpisanych domen" +"Wymagane wsparcie dla DNSSEC; sprawdza niepodpisane odpowiedzi, czy pochodzą " +"z niepodpisanych domen." #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1571 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1629 @@ -8486,7 +8472,7 @@ msgstr "Sieć bezprzewodowa jest włączona" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:276 msgid "Write received DNS queries to syslog." -msgstr "Zapisz otrzymane żądania DNS do dziennika systemowego" +msgstr "Zapisz otrzymane zapytania DNS do dziennika systemowego." #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:167 msgid "Write system log to file" @@ -8561,16 +8547,16 @@ msgid "ZRam Size" msgstr "Rozmiar ZRam" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:440 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:151 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:162 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:152 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:163 msgid "any" msgstr "dowolny" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1463 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1471 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1476 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:101 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:132 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:102 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:133 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1230 #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:79 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoe.js:48 diff --git a/modules/luci-base/po/pt/base.po b/modules/luci-base/po/pt/base.po index be88ffbd06..3ff8eb3ee7 100644 --- a/modules/luci-base/po/pt/base.po +++ b/modules/luci-base/po/pt/base.po @@ -519,7 +519,7 @@ msgstr "Gestão" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:633 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1523 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:39 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:126 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:127 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:924 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:988 #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:241 @@ -1776,7 +1776,7 @@ msgstr "Tema" msgid "Designated master" msgstr "Mestre designado" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:158 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:159 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:386 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:71 msgid "Destination" @@ -1862,8 +1862,8 @@ msgstr "Número de discagem" msgid "Directory" msgstr "Diretório" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:112 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:197 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:113 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:195 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:897 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:937 msgid "Disable" @@ -2663,7 +2663,7 @@ msgstr "Definições da Firewall" msgid "Firewall Status" msgstr "Estado da Firewall" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:178 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:176 msgid "Firewall mark" msgstr "" @@ -2839,7 +2839,7 @@ msgstr "Túnel GRETAP sobre IPv4" msgid "GRETAP tunnel over IPv6" msgstr "Túnel GRETAP sobre IPv6" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:74 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:75 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:44 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:188 msgid "Gateway" @@ -2857,7 +2857,7 @@ msgstr "O endereço do gateway é inválido" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:251 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:477 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:38 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:125 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:126 #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:240 #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:108 msgid "General Settings" @@ -3184,7 +3184,7 @@ msgstr "" msgid "IPv4 Routing" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:119 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:120 msgid "IPv4 Rules" msgstr "" @@ -3283,7 +3283,7 @@ msgstr "Configurações do IPv6 RA" msgid "IPv6 Routing" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:119 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:120 msgid "IPv6 Rules" msgstr "" @@ -3511,7 +3511,7 @@ msgstr "" msgid "Incoming checksum" msgstr "Checksum da entrada" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:143 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:144 msgid "Incoming interface" msgstr "" @@ -3738,7 +3738,7 @@ msgstr "Valor hexadecimal inválido" msgid "Invalid username and/or password! Please try again." msgstr "Username e/ou password inválidos! Por favor, tente novamente." -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:193 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:191 msgid "Invert match" msgstr "" @@ -3772,7 +3772,7 @@ msgstr "Associar à Rede: Procurar Redes Wireless" msgid "Joining Network: %q" msgstr "A associar à rede: %q" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:173 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:171 msgid "Jump to rule" msgstr "" @@ -4263,7 +4263,7 @@ msgstr "Intervalo MII" #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:580 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1418 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:85 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:86 #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:53 #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:92 msgid "MTU" @@ -4415,7 +4415,7 @@ msgstr "Método de monitoramento de enlace" msgid "Method to determine link status" msgstr "Método para determinar a condição do enlace" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:78 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:79 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:189 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:215 msgid "Metric" @@ -4996,7 +4996,7 @@ msgstr "Ligado" msgid "On-State Delay" msgstr "Atraso do On-State" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:108 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:109 msgid "On-link" msgstr "Rota On-Link" @@ -5207,7 +5207,7 @@ msgstr "Saída:" msgid "Outgoing checksum" msgstr "Checksum de saída" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:154 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:155 msgid "Outgoing interface" msgstr "" @@ -5631,7 +5631,7 @@ msgstr "Preferir UMTS" msgid "Prefix Delegated" msgstr "Prefixo Delegado" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:188 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:186 msgid "Prefix suppressor" msgstr "" @@ -5678,7 +5678,7 @@ msgid "Primary becomes active slave whenever it comes back up (always, 0)" msgstr "O primário torna-se um escravo ativo sempre que retornar (sempre, 0)" #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:508 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:128 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:129 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:197 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:223 msgid "Priority" @@ -6201,7 +6201,7 @@ msgstr "" msgid "Rule" msgstr "Regra" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:135 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:136 msgid "Rule type" msgstr "" @@ -6584,8 +6584,8 @@ msgstr "" "firmware deve ser gravada manualmente. Por favor, consulte a wiki para " "instruções específicas da instalação deste aparelho." -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:98 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:147 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:99 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:148 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:385 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:70 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:214 @@ -7125,8 +7125,8 @@ msgstr "Taxa de TX" msgid "TX queue length" msgstr "Comprimento da fila TX" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:90 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:165 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:91 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:166 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:18 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:190 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:216 @@ -7788,7 +7788,7 @@ msgstr "Potência de Tx" msgid "Type" msgstr "Tipo" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:183 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:181 msgid "Type of service" msgstr "" @@ -8579,16 +8579,16 @@ msgid "ZRam Size" msgstr "Tamanho do ZRam" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:440 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:151 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:162 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:152 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:163 msgid "any" msgstr "qualquer" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1463 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1471 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1476 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:101 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:132 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:102 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:133 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1230 #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:79 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoe.js:48 diff --git a/modules/luci-base/po/pt_BR/base.po b/modules/luci-base/po/pt_BR/base.po index c20d51cb77..1f66725d9f 100644 --- a/modules/luci-base/po/pt_BR/base.po +++ b/modules/luci-base/po/pt_BR/base.po @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2009-06-10 03:41+0200\n" -"PO-Revision-Date: 2021-09-03 03:27+0000\n" +"PO-Revision-Date: 2021-09-04 07:10+0000\n" "Last-Translator: Wellington Terumi Uemura \n" "Language-Team: Portuguese (Brazil) \n" @@ -530,7 +530,7 @@ msgstr "Administração" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:633 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1523 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:39 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:126 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:127 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:924 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:988 #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:241 @@ -1794,7 +1794,7 @@ msgstr "Tema" msgid "Designated master" msgstr "Mestre designado" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:158 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:159 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:386 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:71 msgid "Destination" @@ -1881,8 +1881,8 @@ msgstr "Número de discagem" msgid "Directory" msgstr "Diretório" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:112 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:197 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:113 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:195 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:897 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:937 msgid "Disable" @@ -2683,9 +2683,9 @@ msgstr "Configurações do firewall" msgid "Firewall Status" msgstr "Condição do firewall" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:178 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:176 msgid "Firewall mark" -msgstr "" +msgstr "Marca do firewall" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1487 msgid "Firmware File" @@ -2868,7 +2868,7 @@ msgstr "Túnel GRETAP sobre IPv4" msgid "GRETAP tunnel over IPv6" msgstr "Túnel GRETAP sobre IPv6" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:74 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:75 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:44 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:188 msgid "Gateway" @@ -2886,7 +2886,7 @@ msgstr "O endereço do roteador padrão é inválido" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:251 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:477 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:38 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:125 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:126 #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:240 #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:108 msgid "General Settings" @@ -3211,15 +3211,15 @@ msgstr "Firewall para IPv4" #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:252 msgid "IPv4 Neighbours" -msgstr "" +msgstr "Vizinhos IPv4" #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:251 msgid "IPv4 Routing" msgstr "Roteamento IPv4" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:119 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:120 msgid "IPv4 Rules" -msgstr "" +msgstr "Regras IPv4" #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:29 msgid "IPv4 Upstream" @@ -3316,9 +3316,9 @@ msgstr "Configurações do IPv6 RA" msgid "IPv6 Routing" msgstr "Roteamento IPv6" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:119 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:120 msgid "IPv6 Rules" -msgstr "" +msgstr "Regras IPv6" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:634 msgid "IPv6 Settings" @@ -3551,9 +3551,9 @@ msgstr "" msgid "Incoming checksum" msgstr "Checksum da entrada" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:143 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:144 msgid "Incoming interface" -msgstr "" +msgstr "Interface de entrada" #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:92 #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:97 @@ -3781,9 +3781,9 @@ msgstr "Valor hexadecimal inválido" msgid "Invalid username and/or password! Please try again." msgstr "Usuário e/ou senha inválida! Por favor, tente novamente." -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:193 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:191 msgid "Invert match" -msgstr "" +msgstr "Inverta a correspondência" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1148 msgid "Isolate Clients" @@ -3815,9 +3815,9 @@ msgstr "Conectar à Rede: Busca por Rede Sem Fio" msgid "Joining Network: %q" msgstr "Juntando-se à rede %q" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:173 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:171 msgid "Jump to rule" -msgstr "" +msgstr "Ir para a regra" #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:228 msgid "Keep settings and retain the current configuration" @@ -4303,7 +4303,7 @@ msgstr "Intervalo MII" #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:580 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1418 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:85 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:86 #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:53 #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:92 msgid "MTU" @@ -4454,7 +4454,7 @@ msgstr "Método de monitoramento de enlace" msgid "Method to determine link status" msgstr "Método para determinar a condição do enlace" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:78 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:79 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:189 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:215 msgid "Metric" @@ -4828,7 +4828,7 @@ msgstr "Sem imposição" #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:241 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:244 msgid "No entries available" -msgstr "" +msgstr "Não há entradas disponíveis" #: modules/luci-base/htdocs/luci-static/resources/ui.js:2899 msgid "No entries in this directory" @@ -5034,7 +5034,7 @@ msgstr "Ligado" msgid "On-State Delay" msgstr "Atraso no estado de conexões" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:108 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:109 msgid "On-link" msgstr "Rota em enlace" @@ -5249,9 +5249,9 @@ msgstr "Saindo:" msgid "Outgoing checksum" msgstr "Checksum de Saída" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:154 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:155 msgid "Outgoing interface" -msgstr "" +msgstr "Interface de saída" #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:96 #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:101 @@ -5673,9 +5673,9 @@ msgstr "Preferir UMTS" msgid "Prefix Delegated" msgstr "Prefixo Delegado" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:188 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:186 msgid "Prefix suppressor" -msgstr "" +msgstr "Supressor de prefixos" #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:138 msgid "Preshared Key" @@ -5720,7 +5720,7 @@ msgid "Primary becomes active slave whenever it comes back up (always, 0)" msgstr "O primário se torna um escravo ativo sempre que retornar (sempre, 0)" #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:508 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:128 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:129 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:197 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:223 msgid "Priority" @@ -6244,9 +6244,9 @@ msgstr "" msgid "Rule" msgstr "Regra" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:135 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:136 msgid "Rule type" -msgstr "" +msgstr "Tipo da regra" #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:335 msgid "Run a filesystem check before mounting the device" @@ -6627,8 +6627,8 @@ msgstr "" "firmware deve ser gravada manualmente. Por favor, consulte a wiki para " "instruções específicas da instalação deste dispositivo." -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:98 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:147 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:99 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:148 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:385 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:70 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:214 @@ -7171,8 +7171,8 @@ msgstr "Taxa de TX" msgid "TX queue length" msgstr "Comprimento da fila TX" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:90 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:165 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:91 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:166 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:18 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:190 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:216 @@ -7848,9 +7848,9 @@ msgstr "Potência de transmissão" msgid "Type" msgstr "Tipo" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:183 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:181 msgid "Type of service" -msgstr "" +msgstr "Tipo do serviço" #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:328 msgid "UDP:" @@ -8646,16 +8646,16 @@ msgid "ZRam Size" msgstr "Tamanho ZRam" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:440 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:151 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:162 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:152 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:163 msgid "any" msgstr "qualquer" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1463 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1471 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1476 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:101 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:132 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:102 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:133 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1230 #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:79 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoe.js:48 diff --git a/modules/luci-base/po/ro/base.po b/modules/luci-base/po/ro/base.po index 29dcdfbc32..bd62e89005 100644 --- a/modules/luci-base/po/ro/base.po +++ b/modules/luci-base/po/ro/base.po @@ -509,7 +509,7 @@ msgstr "Administrare" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:633 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1523 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:39 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:126 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:127 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:924 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:988 #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:241 @@ -1685,7 +1685,7 @@ msgstr "" msgid "Designated master" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:158 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:159 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:386 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:71 msgid "Destination" @@ -1771,8 +1771,8 @@ msgstr "" msgid "Directory" msgstr "Director" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:112 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:197 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:113 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:195 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:897 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:937 msgid "Disable" @@ -2528,7 +2528,7 @@ msgstr "Setarile firewall-ului" msgid "Firewall Status" msgstr "Status la firewall" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:178 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:176 msgid "Firewall mark" msgstr "" @@ -2701,7 +2701,7 @@ msgstr "" msgid "GRETAP tunnel over IPv6" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:74 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:75 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:44 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:188 msgid "Gateway" @@ -2719,7 +2719,7 @@ msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:251 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:477 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:38 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:125 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:126 #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:240 #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:108 msgid "General Settings" @@ -3041,7 +3041,7 @@ msgstr "" msgid "IPv4 Routing" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:119 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:120 msgid "IPv4 Rules" msgstr "" @@ -3140,7 +3140,7 @@ msgstr "" msgid "IPv6 Routing" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:119 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:120 msgid "IPv6 Rules" msgstr "" @@ -3353,7 +3353,7 @@ msgstr "" msgid "Incoming checksum" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:143 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:144 msgid "Incoming interface" msgstr "" @@ -3571,7 +3571,7 @@ msgstr "" msgid "Invalid username and/or password! Please try again." msgstr "Utilizator si/sau parola invalide! Incearcati din nou." -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:193 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:191 msgid "Invert match" msgstr "" @@ -3606,7 +3606,7 @@ msgstr "" msgid "Joining Network: %q" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:173 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:171 msgid "Jump to rule" msgstr "" @@ -4072,7 +4072,7 @@ msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:580 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1418 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:85 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:86 #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:53 #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:92 msgid "MTU" @@ -4214,7 +4214,7 @@ msgstr "" msgid "Method to determine link status" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:78 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:79 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:189 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:215 msgid "Metric" @@ -4776,7 +4776,7 @@ msgstr "Pornit" msgid "On-State Delay" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:108 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:109 msgid "On-link" msgstr "" @@ -4963,7 +4963,7 @@ msgstr "" msgid "Outgoing checksum" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:154 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:155 msgid "Outgoing interface" msgstr "" @@ -5381,7 +5381,7 @@ msgstr "" msgid "Prefix Delegated" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:188 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:186 msgid "Prefix suppressor" msgstr "" @@ -5424,7 +5424,7 @@ msgid "Primary becomes active slave whenever it comes back up (always, 0)" msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:508 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:128 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:129 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:197 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:223 msgid "Priority" @@ -5929,7 +5929,7 @@ msgstr "" msgid "Rule" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:135 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:136 msgid "Rule type" msgstr "" @@ -6284,8 +6284,8 @@ msgid "" "instructions." msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:98 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:147 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:99 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:148 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:385 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:70 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:214 @@ -6747,8 +6747,8 @@ msgstr "" msgid "TX queue length" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:90 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:165 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:91 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:166 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:18 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:190 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:216 @@ -7318,7 +7318,7 @@ msgstr "Puterea TX" msgid "Type" msgstr "Tip" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:183 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:181 msgid "Type of service" msgstr "" @@ -8053,16 +8053,16 @@ msgid "ZRam Size" msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:440 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:151 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:162 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:152 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:163 msgid "any" msgstr "oricare" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1463 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1471 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1476 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:101 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:132 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:102 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:133 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1230 #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:79 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoe.js:48 diff --git a/modules/luci-base/po/ru/base.po b/modules/luci-base/po/ru/base.po index 9630dad182..c893b08f80 100644 --- a/modules/luci-base/po/ru/base.po +++ b/modules/luci-base/po/ru/base.po @@ -521,7 +521,7 @@ msgstr "Управление" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:633 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1523 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:39 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:126 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:127 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:924 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:988 #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:241 @@ -1780,7 +1780,7 @@ msgstr "Тема оформления" msgid "Designated master" msgstr "Назначенный мастер" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:158 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:159 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:386 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:71 msgid "Destination" @@ -1866,8 +1866,8 @@ msgstr "Dial номер" msgid "Directory" msgstr "Папка" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:112 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:197 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:113 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:195 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:897 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:937 msgid "Disable" @@ -2661,7 +2661,7 @@ msgstr "Настройки межсетевого экрана" msgid "Firewall Status" msgstr "Состояние межсетевого экрана" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:178 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:176 msgid "Firewall mark" msgstr "" @@ -2844,7 +2844,7 @@ msgstr "GRETAP туннель через IPv4" msgid "GRETAP tunnel over IPv6" msgstr "GRETAP туннель через IPv6" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:74 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:75 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:44 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:188 msgid "Gateway" @@ -2862,7 +2862,7 @@ msgstr "Неверный адрес шлюза" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:251 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:477 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:38 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:125 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:126 #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:240 #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:108 msgid "General Settings" @@ -3187,7 +3187,7 @@ msgstr "" msgid "IPv4 Routing" msgstr "IPv4 маршрутизация" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:119 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:120 msgid "IPv4 Rules" msgstr "" @@ -3286,7 +3286,7 @@ msgstr "Настройки IPv6 RA" msgid "IPv6 Routing" msgstr "IPv6 маршрутизация" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:119 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:120 msgid "IPv6 Rules" msgstr "" @@ -3516,7 +3516,7 @@ msgstr "" msgid "Incoming checksum" msgstr "Входящая контрольная сумма" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:143 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:144 msgid "Incoming interface" msgstr "" @@ -3746,7 +3746,7 @@ msgstr "Неверное шестнадцатеричное значение" msgid "Invalid username and/or password! Please try again." msgstr "Неверный логин и/или пароль! Попробуйте снова." -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:193 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:191 msgid "Invert match" msgstr "" @@ -3780,7 +3780,7 @@ msgstr "Найденные точки доступа Wi-Fi" msgid "Joining Network: %q" msgstr "Подключение к сети: %q" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:173 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:171 msgid "Jump to rule" msgstr "" @@ -4269,7 +4269,7 @@ msgstr "MII интервал" #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:580 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1418 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:85 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:86 #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:53 #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:92 msgid "MTU" @@ -4420,7 +4420,7 @@ msgstr "Метод мониторинга соединений" msgid "Method to determine link status" msgstr "Метод определения состояния соединений" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:78 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:79 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:189 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:215 msgid "Metric" @@ -4998,7 +4998,7 @@ msgstr "Включено" msgid "On-State Delay" msgstr "Задержка включенного состояния" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:108 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:109 msgid "On-link" msgstr "On-link маршрут" @@ -5213,7 +5213,7 @@ msgstr "Исходящий:" msgid "Outgoing checksum" msgstr "Исходящая контрольная сумма" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:154 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:155 msgid "Outgoing interface" msgstr "" @@ -5633,7 +5633,7 @@ msgstr "Предпочитать UMTS" msgid "Prefix Delegated" msgstr "Делегированный префикс" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:188 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:186 msgid "Prefix suppressor" msgstr "" @@ -5682,7 +5682,7 @@ msgstr "" "(always, 0)" #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:508 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:128 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:129 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:197 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:223 msgid "Priority" @@ -6208,7 +6208,7 @@ msgstr "" msgid "Rule" msgstr "Правило" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:135 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:136 msgid "Rule type" msgstr "" @@ -6584,8 +6584,8 @@ msgstr "" "должна быть установлена вручную. Обратитесь к wiki для получения конкретных " "инструкций для вашего устройства." -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:98 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:147 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:99 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:148 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:385 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:70 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:214 @@ -7125,8 +7125,8 @@ msgstr "Cкорость передачи" msgid "TX queue length" msgstr "Длина очереди Tx" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:90 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:165 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:91 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:166 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:18 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:190 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:216 @@ -7789,7 +7789,7 @@ msgstr "Мощность передатчика" msgid "Type" msgstr "Тип" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:183 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:181 msgid "Type of service" msgstr "" @@ -8582,16 +8582,16 @@ msgid "ZRam Size" msgstr "Размер ZRam" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:440 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:151 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:162 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:152 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:163 msgid "any" msgstr "любой" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1463 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1471 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1476 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:101 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:132 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:102 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:133 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1230 #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:79 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoe.js:48 diff --git a/modules/luci-base/po/sk/base.po b/modules/luci-base/po/sk/base.po index 0658599153..25b44183a6 100644 --- a/modules/luci-base/po/sk/base.po +++ b/modules/luci-base/po/sk/base.po @@ -507,7 +507,7 @@ msgstr "Administrácia" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:633 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1523 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:39 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:126 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:127 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:924 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:988 #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:241 @@ -1685,7 +1685,7 @@ msgstr "Vzhľad" msgid "Designated master" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:158 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:159 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:386 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:71 msgid "Destination" @@ -1771,8 +1771,8 @@ msgstr "" msgid "Directory" msgstr "Adresár" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:112 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:197 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:113 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:195 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:897 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:937 msgid "Disable" @@ -2529,7 +2529,7 @@ msgstr "Nastavenia brány Firewall" msgid "Firewall Status" msgstr "Stav brány Firewall" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:178 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:176 msgid "Firewall mark" msgstr "" @@ -2701,7 +2701,7 @@ msgstr "" msgid "GRETAP tunnel over IPv6" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:74 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:75 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:44 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:188 msgid "Gateway" @@ -2719,7 +2719,7 @@ msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:251 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:477 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:38 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:125 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:126 #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:240 #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:108 msgid "General Settings" @@ -3042,7 +3042,7 @@ msgstr "" msgid "IPv4 Routing" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:119 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:120 msgid "IPv4 Rules" msgstr "" @@ -3142,7 +3142,7 @@ msgstr "" msgid "IPv6 Routing" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:119 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:120 msgid "IPv6 Rules" msgstr "" @@ -3356,7 +3356,7 @@ msgstr "" msgid "Incoming checksum" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:143 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:144 msgid "Incoming interface" msgstr "" @@ -3574,7 +3574,7 @@ msgstr "" msgid "Invalid username and/or password! Please try again." msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:193 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:191 msgid "Invert match" msgstr "" @@ -3608,7 +3608,7 @@ msgstr "Pripojiť sa k sieti: Prehľadanie bezdrôtovej siete" msgid "Joining Network: %q" msgstr "Pripája sa k sieti: %q" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:173 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:171 msgid "Jump to rule" msgstr "" @@ -4077,7 +4077,7 @@ msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:580 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1418 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:85 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:86 #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:53 #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:92 msgid "MTU" @@ -4221,7 +4221,7 @@ msgstr "" msgid "Method to determine link status" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:78 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:79 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:189 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:215 msgid "Metric" @@ -4783,7 +4783,7 @@ msgstr "Zapnuté" msgid "On-State Delay" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:108 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:109 msgid "On-link" msgstr "" @@ -4970,7 +4970,7 @@ msgstr "Výstupný:" msgid "Outgoing checksum" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:154 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:155 msgid "Outgoing interface" msgstr "" @@ -5388,7 +5388,7 @@ msgstr "" msgid "Prefix Delegated" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:188 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:186 msgid "Prefix suppressor" msgstr "" @@ -5431,7 +5431,7 @@ msgid "Primary becomes active slave whenever it comes back up (always, 0)" msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:508 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:128 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:129 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:197 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:223 msgid "Priority" @@ -5938,7 +5938,7 @@ msgstr "" msgid "Rule" msgstr "Pravidlo" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:135 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:136 msgid "Rule type" msgstr "" @@ -6293,8 +6293,8 @@ msgid "" "instructions." msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:98 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:147 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:99 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:148 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:385 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:70 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:214 @@ -6759,8 +6759,8 @@ msgstr "Rýchlosť odosielania" msgid "TX queue length" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:90 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:165 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:91 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:166 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:18 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:190 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:216 @@ -7349,7 +7349,7 @@ msgstr "" msgid "Type" msgstr "Typ" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:183 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:181 msgid "Type of service" msgstr "" @@ -8088,16 +8088,16 @@ msgid "ZRam Size" msgstr "Veľkosť ZRam" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:440 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:151 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:162 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:152 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:163 msgid "any" msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1463 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1471 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1476 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:101 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:132 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:102 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:133 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1230 #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:79 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoe.js:48 diff --git a/modules/luci-base/po/sv/base.po b/modules/luci-base/po/sv/base.po index 6718eef612..2cbd40da47 100644 --- a/modules/luci-base/po/sv/base.po +++ b/modules/luci-base/po/sv/base.po @@ -505,7 +505,7 @@ msgstr "Administration" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:633 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1523 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:39 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:126 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:127 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:924 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:988 #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:241 @@ -1674,7 +1674,7 @@ msgstr "" msgid "Designated master" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:158 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:159 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:386 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:71 msgid "Destination" @@ -1760,8 +1760,8 @@ msgstr "Slå nummer" msgid "Directory" msgstr "Mapp" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:112 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:197 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:113 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:195 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:897 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:937 msgid "Disable" @@ -2521,7 +2521,7 @@ msgstr "Inställningar för brandvägg" msgid "Firewall Status" msgstr "Status för brandvägg" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:178 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:176 msgid "Firewall mark" msgstr "" @@ -2693,7 +2693,7 @@ msgstr "" msgid "GRETAP tunnel over IPv6" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:74 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:75 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:44 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:188 msgid "Gateway" @@ -2711,7 +2711,7 @@ msgstr "Ogiltig Gateway-adress" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:251 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:477 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:38 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:125 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:126 #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:240 #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:108 msgid "General Settings" @@ -3033,7 +3033,7 @@ msgstr "" msgid "IPv4 Routing" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:119 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:120 msgid "IPv4 Rules" msgstr "" @@ -3132,7 +3132,7 @@ msgstr "" msgid "IPv6 Routing" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:119 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:120 msgid "IPv6 Rules" msgstr "" @@ -3345,7 +3345,7 @@ msgstr "" msgid "Incoming checksum" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:143 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:144 msgid "Incoming interface" msgstr "" @@ -3563,7 +3563,7 @@ msgstr "" msgid "Invalid username and/or password! Please try again." msgstr "Ogiltigt användarnamn och/eller lösenord! Vänligen försök igen." -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:193 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:191 msgid "Invert match" msgstr "" @@ -3595,7 +3595,7 @@ msgstr "Anslut till nätverk: Trådlös skanning" msgid "Joining Network: %q" msgstr "Ansluter till nätverk: %q" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:173 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:171 msgid "Jump to rule" msgstr "" @@ -4062,7 +4062,7 @@ msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:580 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1418 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:85 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:86 #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:53 #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:92 msgid "MTU" @@ -4204,7 +4204,7 @@ msgstr "" msgid "Method to determine link status" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:78 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:79 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:189 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:215 msgid "Metric" @@ -4766,7 +4766,7 @@ msgstr "" msgid "On-State Delay" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:108 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:109 msgid "On-link" msgstr "" @@ -4953,7 +4953,7 @@ msgstr "Utgående:" msgid "Outgoing checksum" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:154 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:155 msgid "Outgoing interface" msgstr "" @@ -5371,7 +5371,7 @@ msgstr "Föredra UMTS" msgid "Prefix Delegated" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:188 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:186 msgid "Prefix suppressor" msgstr "" @@ -5414,7 +5414,7 @@ msgid "Primary becomes active slave whenever it comes back up (always, 0)" msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:508 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:128 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:129 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:197 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:223 msgid "Priority" @@ -5919,7 +5919,7 @@ msgstr "" msgid "Rule" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:135 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:136 msgid "Rule type" msgstr "" @@ -6274,8 +6274,8 @@ msgid "" "instructions." msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:98 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:147 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:99 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:148 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:385 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:70 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:214 @@ -6737,8 +6737,8 @@ msgstr "TX-hastighet" msgid "TX queue length" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:90 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:165 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:91 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:166 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:18 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:190 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:216 @@ -7310,7 +7310,7 @@ msgstr "" msgid "Type" msgstr "Typ" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:183 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:181 msgid "Type of service" msgstr "" @@ -8044,16 +8044,16 @@ msgid "ZRam Size" msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:440 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:151 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:162 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:152 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:163 msgid "any" msgstr "något" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1463 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1471 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1476 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:101 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:132 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:102 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:133 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1230 #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:79 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoe.js:48 diff --git a/modules/luci-base/po/templates/base.pot b/modules/luci-base/po/templates/base.pot index 40cb923ca4..40fe4d76fc 100644 --- a/modules/luci-base/po/templates/base.pot +++ b/modules/luci-base/po/templates/base.pot @@ -493,7 +493,7 @@ msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:633 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1523 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:39 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:126 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:127 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:924 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:988 #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:241 @@ -1656,7 +1656,7 @@ msgstr "" msgid "Designated master" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:158 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:159 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:386 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:71 msgid "Destination" @@ -1742,8 +1742,8 @@ msgstr "" msgid "Directory" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:112 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:197 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:113 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:195 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:897 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:937 msgid "Disable" @@ -2496,7 +2496,7 @@ msgstr "" msgid "Firewall Status" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:178 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:176 msgid "Firewall mark" msgstr "" @@ -2668,7 +2668,7 @@ msgstr "" msgid "GRETAP tunnel over IPv6" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:74 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:75 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:44 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:188 msgid "Gateway" @@ -2686,7 +2686,7 @@ msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:251 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:477 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:38 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:125 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:126 #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:240 #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:108 msgid "General Settings" @@ -3006,7 +3006,7 @@ msgstr "" msgid "IPv4 Routing" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:119 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:120 msgid "IPv4 Rules" msgstr "" @@ -3105,7 +3105,7 @@ msgstr "" msgid "IPv6 Routing" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:119 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:120 msgid "IPv6 Rules" msgstr "" @@ -3318,7 +3318,7 @@ msgstr "" msgid "Incoming checksum" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:143 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:144 msgid "Incoming interface" msgstr "" @@ -3536,7 +3536,7 @@ msgstr "" msgid "Invalid username and/or password! Please try again." msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:193 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:191 msgid "Invert match" msgstr "" @@ -3568,7 +3568,7 @@ msgstr "" msgid "Joining Network: %q" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:173 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:171 msgid "Jump to rule" msgstr "" @@ -4034,7 +4034,7 @@ msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:580 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1418 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:85 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:86 #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:53 #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:92 msgid "MTU" @@ -4174,7 +4174,7 @@ msgstr "" msgid "Method to determine link status" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:78 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:79 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:189 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:215 msgid "Metric" @@ -4736,7 +4736,7 @@ msgstr "" msgid "On-State Delay" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:108 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:109 msgid "On-link" msgstr "" @@ -4923,7 +4923,7 @@ msgstr "" msgid "Outgoing checksum" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:154 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:155 msgid "Outgoing interface" msgstr "" @@ -5341,7 +5341,7 @@ msgstr "" msgid "Prefix Delegated" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:188 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:186 msgid "Prefix suppressor" msgstr "" @@ -5384,7 +5384,7 @@ msgid "Primary becomes active slave whenever it comes back up (always, 0)" msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:508 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:128 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:129 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:197 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:223 msgid "Priority" @@ -5887,7 +5887,7 @@ msgstr "" msgid "Rule" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:135 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:136 msgid "Rule type" msgstr "" @@ -6242,8 +6242,8 @@ msgid "" "instructions." msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:98 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:147 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:99 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:148 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:385 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:70 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:214 @@ -6705,8 +6705,8 @@ msgstr "" msgid "TX queue length" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:90 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:165 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:91 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:166 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:18 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:190 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:216 @@ -7274,7 +7274,7 @@ msgstr "" msgid "Type" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:183 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:181 msgid "Type of service" msgstr "" @@ -8005,16 +8005,16 @@ msgid "ZRam Size" msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:440 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:151 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:162 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:152 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:163 msgid "any" msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1463 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1471 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1476 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:101 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:132 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:102 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:133 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1230 #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:79 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoe.js:48 diff --git a/modules/luci-base/po/tr/base.po b/modules/luci-base/po/tr/base.po index 0a37299d9e..a346a23cdd 100644 --- a/modules/luci-base/po/tr/base.po +++ b/modules/luci-base/po/tr/base.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: \n" "POT-Creation-Date: \n" -"PO-Revision-Date: 2021-09-03 03:27+0000\n" +"PO-Revision-Date: 2021-09-04 07:10+0000\n" "Last-Translator: Oğuz Ersen \n" "Language-Team: Turkish " "\n" @@ -510,7 +510,7 @@ msgstr "Yönetim" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:633 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1523 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:39 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:126 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:127 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:924 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:988 #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:241 @@ -1753,7 +1753,7 @@ msgstr "Tasarım" msgid "Designated master" msgstr "Belirlenmiş asıl" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:158 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:159 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:386 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:71 msgid "Destination" @@ -1839,8 +1839,8 @@ msgstr "Arama numarası" msgid "Directory" msgstr "Dizin" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:112 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:197 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:113 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:195 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:897 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:937 msgid "Disable" @@ -1932,10 +1932,9 @@ msgid "" "\">DHCP server and DNS " "forwarder." msgstr "" -"Dnsmasq, NAT güvenlik " -"duvarları için kombine DHCP-Sunucusu ve DNS-" -"Yönlendiricisidir" +"Dnsmasq, hafif bir DHCP sunucusu ve DNS " +"yönlendiricisidir." #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:405 msgid "Do not cache negative replies, e.g. for non-existent domains." @@ -2419,8 +2418,8 @@ msgid "" "Exempt 127.0.0.0/8 and ::1 from rebinding checks, " "e.g. for RBL services." msgstr "" -"127.0.0.0/8 aralığında yukarı akış yanıtlarına izin verin, ör. RBL " -"hizmetleri için" +"127.0.0.0/8 ve ::1 ögelerini yeniden bağlama " +"denetimlerinden hariç tut, örn. RBL hizmetleri için." #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:356 msgid "Existing device" @@ -2543,9 +2542,9 @@ msgid "" "File listing upstream resolvers, optionally domain-specific, e.g. " "server=1.2.3.4, server=/domain/1.2.3.4." msgstr "" -"Bu dosya, alana özgü veya tam yukarı akış DNS sunucuları için 'server=/domain/1.2.3.4' veya " -"'server=1.2.3.4' gibi satırlar içerebilir." +"İsteğe bağlı olarak etki alanına özel, yukarı akış çözümleyicilerini " +"listeleyen dosya, ör. server=1.2.3.4, server=/domain/1.2.3" +".4." #: modules/luci-base/htdocs/luci-static/resources/ui.js:2641 msgid "File not accessible" @@ -2631,9 +2630,9 @@ msgstr "Güvenlik Duvarı Ayarları" msgid "Firewall Status" msgstr "Güvenlik Duvarı Durumu" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:178 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:176 msgid "Firewall mark" -msgstr "" +msgstr "Güvenlik duvarı işareti" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1487 msgid "Firmware File" @@ -2815,7 +2814,7 @@ msgstr "IPv4 üzerinden GRETAP tüneli" msgid "GRETAP tunnel over IPv6" msgstr "IPv6 üzerinden GRETAP tüneli" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:74 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:75 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:44 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:188 msgid "Gateway" @@ -2833,7 +2832,7 @@ msgstr "Ağ geçidi adresi geçersiz" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:251 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:477 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:38 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:125 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:126 #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:240 #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:108 msgid "General Settings" @@ -3153,15 +3152,15 @@ msgstr "IPv4 Güvenlik Duvarı" #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:252 msgid "IPv4 Neighbours" -msgstr "" +msgstr "IPv4 Komşuları" #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:251 msgid "IPv4 Routing" msgstr "IPv4 Yönlendirme" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:119 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:120 msgid "IPv4 Rules" -msgstr "" +msgstr "IPv4 Kuralları" #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:29 msgid "IPv4 Upstream" @@ -3258,9 +3257,9 @@ msgstr "IPv6 RA Ayarları" msgid "IPv6 Routing" msgstr "IPv6 Yönlendirme" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:119 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:120 msgid "IPv6 Rules" -msgstr "" +msgstr "IPv6 Kuralları" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:634 msgid "IPv6 Settings" @@ -3488,9 +3487,9 @@ msgstr "" msgid "Incoming checksum" msgstr "Gelen sağlama toplamı" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:143 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:144 msgid "Incoming interface" -msgstr "" +msgstr "Gelen arayüz" #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:92 #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:97 @@ -3717,9 +3716,9 @@ msgstr "Geçersiz onaltılık değer" msgid "Invalid username and/or password! Please try again." msgstr "Geçersiz kullanıcı adı ve/veya şifre! Lütfen tekrar deneyin." -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:193 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:191 msgid "Invert match" -msgstr "" +msgstr "Eşleşmeyi ters çevir" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1148 msgid "Isolate Clients" @@ -3751,9 +3750,9 @@ msgstr "Ağa Katıl: Kablosuz Tarama" msgid "Joining Network: %q" msgstr "Ağa Katılıyor: %q" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:173 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:171 msgid "Jump to rule" -msgstr "" +msgstr "Kurala git" #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:228 msgid "Keep settings and retain the current configuration" @@ -4235,7 +4234,7 @@ msgstr "MII Aralığı" #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:580 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1418 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:85 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:86 #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:53 #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:92 msgid "MTU" @@ -4383,7 +4382,7 @@ msgstr "Bağlantı izleme yöntemi" msgid "Method to determine link status" msgstr "Bağlantı durumunu belirleme yöntemi" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:78 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:79 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:189 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:215 msgid "Metric" @@ -4756,7 +4755,7 @@ msgstr "Uygulama yok" #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:241 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:244 msgid "No entries available" -msgstr "" +msgstr "Kullanılabilir girdi yok" #: modules/luci-base/htdocs/luci-static/resources/ui.js:2899 msgid "No entries in this directory" @@ -4959,7 +4958,7 @@ msgstr "Açık" msgid "On-State Delay" msgstr "Durum Gecikmesi" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:108 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:109 msgid "On-link" msgstr "Bağlantı rotası" @@ -5171,9 +5170,9 @@ msgstr "Giden:" msgid "Outgoing checksum" msgstr "Giden sağlama toplamı" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:154 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:155 msgid "Outgoing interface" -msgstr "" +msgstr "Giden arayüz" #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:96 #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:101 @@ -5591,9 +5590,9 @@ msgstr "UMTS'yi tercih et" msgid "Prefix Delegated" msgstr "Önek Delege Edildi" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:188 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:186 msgid "Prefix suppressor" -msgstr "" +msgstr "Ön ek bastırıcı" #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:138 msgid "Preshared Key" @@ -5636,7 +5635,7 @@ msgid "Primary becomes active slave whenever it comes back up (always, 0)" msgstr "Birincil, her geri geldiğinde aktif ikincil hale gelir (her zaman, 0)" #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:508 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:128 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:129 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:197 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:223 msgid "Priority" @@ -5797,8 +5796,7 @@ msgstr "Ham onaltılı kodlanmış baytlar. ISS'niz gerektirmedikçe boş bırak #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:337 msgid "Read /etc/ethers to configure the DHCP server." msgstr "" -"DHCP-Sunucusunu " -"yapılandırmak için /etc/ethers bölümünü okuyun" +"DHCP sunucusunu yapılandırmak için /etc/ethers bölümünü okuyun." #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:559 msgid "Really switch protocol?" @@ -6155,9 +6153,9 @@ msgstr "" msgid "Rule" msgstr "Kural" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:135 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:136 msgid "Rule type" -msgstr "" +msgstr "Kural türü" #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:335 msgid "Run a filesystem check before mounting the device" @@ -6530,8 +6528,8 @@ msgstr "" "manuel olarak flaşlanmalıdır. Cihaza özel kurulum talimatları için lütfen " "wiki'ye bakın." -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:98 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:147 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:99 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:148 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:385 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:70 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:214 @@ -7065,8 +7063,8 @@ msgstr "TX Oranı" msgid "TX queue length" msgstr "TX sıra uzunluğu" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:90 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:165 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:91 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:166 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:18 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:190 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:216 @@ -7734,9 +7732,9 @@ msgstr "Tx-Gücü" msgid "Type" msgstr "Tür" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:183 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:181 msgid "Type of service" -msgstr "" +msgstr "Hizmet türü" #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:328 msgid "UDP:" @@ -8521,16 +8519,16 @@ msgid "ZRam Size" msgstr "ZRam Boyutu" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:440 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:151 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:162 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:152 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:163 msgid "any" msgstr "herhangi" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1463 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1471 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1476 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:101 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:132 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:102 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:133 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1230 #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:79 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoe.js:48 diff --git a/modules/luci-base/po/uk/base.po b/modules/luci-base/po/uk/base.po index 0ba9d10e69..15cd955f14 100644 --- a/modules/luci-base/po/uk/base.po +++ b/modules/luci-base/po/uk/base.po @@ -524,7 +524,7 @@ msgstr "Адміністрування" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:633 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1523 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:39 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:126 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:127 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:924 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:988 #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:241 @@ -1766,7 +1766,7 @@ msgstr "Стиль" msgid "Designated master" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:158 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:159 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:386 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:71 msgid "Destination" @@ -1852,8 +1852,8 @@ msgstr "Набір номера" msgid "Directory" msgstr "Каталог" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:112 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:197 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:113 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:195 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:897 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:937 msgid "Disable" @@ -2646,7 +2646,7 @@ msgstr "Налаштування брандмауера" msgid "Firewall Status" msgstr "Стан брандмауера" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:178 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:176 msgid "Firewall mark" msgstr "" @@ -2820,7 +2820,7 @@ msgstr "Тунель GRETAP через IPv4" msgid "GRETAP tunnel over IPv6" msgstr "Тунель GRETAP через IPv6" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:74 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:75 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:44 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:188 msgid "Gateway" @@ -2838,7 +2838,7 @@ msgstr "Неприпустима адреса шлюзу" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:251 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:477 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:38 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:125 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:126 #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:240 #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:108 msgid "General Settings" @@ -3164,7 +3164,7 @@ msgstr "" msgid "IPv4 Routing" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:119 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:120 msgid "IPv4 Rules" msgstr "" @@ -3263,7 +3263,7 @@ msgstr "" msgid "IPv6 Routing" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:119 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:120 msgid "IPv6 Rules" msgstr "" @@ -3491,7 +3491,7 @@ msgstr "" msgid "Incoming checksum" msgstr "Вхідна контрольна сума" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:143 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:144 msgid "Incoming interface" msgstr "" @@ -3716,7 +3716,7 @@ msgstr "Неприпустиме шістнадцяткове значення" msgid "Invalid username and/or password! Please try again." msgstr "Неприпустиме ім'я користувача та/або пароль! Спробуйте ще раз." -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:193 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:191 msgid "Invert match" msgstr "" @@ -3750,7 +3750,7 @@ msgstr "Підключення до мережі: Сканування безд msgid "Joining Network: %q" msgstr "Приєднання до мережі: %q" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:173 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:171 msgid "Jump to rule" msgstr "" @@ -4245,7 +4245,7 @@ msgstr "Інтервал MII" #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:580 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1418 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:85 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:86 #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:53 #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:92 msgid "MTU" @@ -4392,7 +4392,7 @@ msgstr "Метод моніторингу з'єднань" msgid "Method to determine link status" msgstr "Метод визначення стану з'єднань" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:78 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:79 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:189 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:215 msgid "Metric" @@ -4961,7 +4961,7 @@ msgstr "Увімк." msgid "On-State Delay" msgstr "Затримка On-State" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:108 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:109 msgid "On-link" msgstr "Маршрут On-Link" @@ -5166,7 +5166,7 @@ msgstr "Вихідний:" msgid "Outgoing checksum" msgstr "Вихідна контрольна сума" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:154 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:155 msgid "Outgoing interface" msgstr "" @@ -5590,7 +5590,7 @@ msgstr "Переважно UMTS" msgid "Prefix Delegated" msgstr "Делеговано префікс" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:188 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:186 msgid "Prefix suppressor" msgstr "" @@ -5639,7 +5639,7 @@ msgstr "" "0)" #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:508 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:128 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:129 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:197 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:223 msgid "Priority" @@ -6157,7 +6157,7 @@ msgstr "" msgid "Rule" msgstr "Правило" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:135 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:136 msgid "Rule type" msgstr "" @@ -6524,8 +6524,8 @@ msgstr "" "прошити вручну. Зверніться до Wiki за інструкцією з інсталяції для " "конкретного пристрою." -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:98 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:147 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:99 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:148 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:385 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:70 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:214 @@ -7015,8 +7015,8 @@ msgstr "Швидкість передавання" msgid "TX queue length" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:90 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:165 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:91 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:166 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:18 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:190 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:216 @@ -7651,7 +7651,7 @@ msgstr "Потужність передавача" msgid "Type" msgstr "Тип" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:183 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:181 msgid "Type of service" msgstr "" @@ -8421,16 +8421,16 @@ msgid "ZRam Size" msgstr "Розмір ZRam" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:440 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:151 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:162 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:152 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:163 msgid "any" msgstr "будь-який" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1463 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1471 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1476 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:101 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:132 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:102 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:133 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1230 #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:79 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoe.js:48 diff --git a/modules/luci-base/po/vi/base.po b/modules/luci-base/po/vi/base.po index 23824bbe38..d5887a0cc0 100644 --- a/modules/luci-base/po/vi/base.po +++ b/modules/luci-base/po/vi/base.po @@ -517,7 +517,7 @@ msgstr "Quản trị" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:633 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1523 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:39 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:126 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:127 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:924 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:988 #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:241 @@ -1711,7 +1711,7 @@ msgstr "Thiết kế" msgid "Designated master" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:158 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:159 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:386 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:71 msgid "Destination" @@ -1797,8 +1797,8 @@ msgstr "Quay số" msgid "Directory" msgstr "Danh mục" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:112 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:197 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:113 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:195 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:897 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:937 msgid "Disable" @@ -2577,7 +2577,7 @@ msgstr "Cấu hình tường lửa" msgid "Firewall Status" msgstr "Trạng thái tường lửa" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:178 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:176 msgid "Firewall mark" msgstr "" @@ -2752,7 +2752,7 @@ msgstr "" msgid "GRETAP tunnel over IPv6" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:74 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:75 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:44 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:188 msgid "Gateway" @@ -2770,7 +2770,7 @@ msgstr "Địa chỉ Gateway không hợp lệ" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:251 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:477 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:38 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:125 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:126 #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:240 #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:108 msgid "General Settings" @@ -3092,7 +3092,7 @@ msgstr "" msgid "IPv4 Routing" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:119 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:120 msgid "IPv4 Rules" msgstr "" @@ -3191,7 +3191,7 @@ msgstr "" msgid "IPv6 Routing" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:119 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:120 msgid "IPv6 Rules" msgstr "" @@ -3416,7 +3416,7 @@ msgstr "" msgid "Incoming checksum" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:143 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:144 msgid "Incoming interface" msgstr "" @@ -3636,7 +3636,7 @@ msgstr "Giá trị không hợp lệ" msgid "Invalid username and/or password! Please try again." msgstr "Tên và mật mã không đúng. Xin thử lại " -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:193 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:191 msgid "Invert match" msgstr "" @@ -3671,7 +3671,7 @@ msgstr "Hòa mạng: Quét mạng wifi" msgid "Joining Network: %q" msgstr "Hòa mạng: %q" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:173 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:171 msgid "Jump to rule" msgstr "" @@ -4147,7 +4147,7 @@ msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:580 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1418 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:85 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:86 #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:53 #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:92 msgid "MTU" @@ -4293,7 +4293,7 @@ msgstr "" msgid "Method to determine link status" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:78 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:79 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:189 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:215 msgid "Metric" @@ -4861,7 +4861,7 @@ msgstr "" msgid "On-State Delay" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:108 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:109 msgid "On-link" msgstr "" @@ -5061,7 +5061,7 @@ msgstr "Ngoài ràng buộc:" msgid "Outgoing checksum" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:154 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:155 msgid "Outgoing interface" msgstr "" @@ -5481,7 +5481,7 @@ msgstr "Ưu tiên UMTS" msgid "Prefix Delegated" msgstr "Tiền tố được ủy quyền" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:188 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:186 msgid "Prefix suppressor" msgstr "" @@ -5526,7 +5526,7 @@ msgid "Primary becomes active slave whenever it comes back up (always, 0)" msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:508 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:128 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:129 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:197 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:223 msgid "Priority" @@ -6044,7 +6044,7 @@ msgstr "" msgid "Rule" msgstr "Luật" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:135 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:136 msgid "Rule type" msgstr "" @@ -6408,8 +6408,8 @@ msgstr "" "phần mềm mới phải được nạp thủ công. Vui lòng tham khảo wiki để biết hướng " "dẫn cài đặt cụ thể của thiết bị." -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:98 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:147 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:99 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:148 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:385 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:70 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:214 @@ -6884,8 +6884,8 @@ msgstr "Tốc độ truyền" msgid "TX queue length" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:90 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:165 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:91 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:166 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:18 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:190 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:216 @@ -7504,7 +7504,7 @@ msgstr "Năng lượng truyền" msgid "Type" msgstr "Loại " -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:183 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:181 msgid "Type of service" msgstr "" @@ -8263,16 +8263,16 @@ msgid "ZRam Size" msgstr "Kích cỡ ZRam" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:440 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:151 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:162 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:152 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:163 msgid "any" msgstr "Bất kể" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1463 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1471 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1476 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:101 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:132 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:102 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:133 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1230 #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:79 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoe.js:48 diff --git a/modules/luci-base/po/zh_Hans/base.po b/modules/luci-base/po/zh_Hans/base.po index c9e601db6b..7d9a9b0aa8 100644 --- a/modules/luci-base/po/zh_Hans/base.po +++ b/modules/luci-base/po/zh_Hans/base.po @@ -4,7 +4,7 @@ # msgid "" msgstr "" -"PO-Revision-Date: 2021-09-01 09:46+0000\n" +"PO-Revision-Date: 2021-09-04 07:10+0000\n" "Last-Translator: Eric \n" "Language-Team: Chinese (Simplified) \n" @@ -508,7 +508,7 @@ msgstr "管理权" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:633 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1523 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:39 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:126 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:127 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:924 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:988 #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:241 @@ -1703,7 +1703,7 @@ msgstr "主题" msgid "Designated master" msgstr "指定的主接口" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:158 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:159 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:386 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:71 msgid "Destination" @@ -1789,8 +1789,8 @@ msgstr "拨号号码" msgid "Directory" msgstr "目录" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:112 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:197 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:113 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:195 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:897 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:937 msgid "Disable" @@ -2555,9 +2555,9 @@ msgstr "防火墙设置" msgid "Firewall Status" msgstr "防火墙状态" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:178 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:176 msgid "Firewall mark" -msgstr "" +msgstr "防火墙标志" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1487 msgid "Firmware File" @@ -2734,7 +2734,7 @@ msgstr "承载于 IPv4 上的 GRETAP 通道" msgid "GRETAP tunnel over IPv6" msgstr "承载于 IPv6 上的 GRETAP 通道" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:74 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:75 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:44 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:188 msgid "Gateway" @@ -2752,7 +2752,7 @@ msgstr "网关地址无效" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:251 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:477 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:38 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:125 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:126 #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:240 #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:108 msgid "General Settings" @@ -3068,15 +3068,15 @@ msgstr "IPv4 防火墙" #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:252 msgid "IPv4 Neighbours" -msgstr "" +msgstr "IPv4 邻居" #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:251 msgid "IPv4 Routing" msgstr "IPv4 路由" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:119 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:120 msgid "IPv4 Rules" -msgstr "" +msgstr "IPv4 规则" #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:29 msgid "IPv4 Upstream" @@ -3173,9 +3173,9 @@ msgstr "IPv6 RA 设置" msgid "IPv6 Routing" msgstr "IPv6 路由" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:119 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:120 msgid "IPv6 Rules" -msgstr "" +msgstr "IPv6 规则" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:634 msgid "IPv6 Settings" @@ -3391,9 +3391,9 @@ msgstr "将当前安装的包列表备份在 /etc/backup/installed_packages.txt" msgid "Incoming checksum" msgstr "传入校验和" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:143 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:144 msgid "Incoming interface" -msgstr "" +msgstr "传入接口" #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:92 #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:97 @@ -3611,9 +3611,9 @@ msgstr "无效 16 进制值" msgid "Invalid username and/or password! Please try again." msgstr "无效的用户名和/或密码!请重试。" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:193 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:191 msgid "Invert match" -msgstr "" +msgstr "反向匹配" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1148 msgid "Isolate Clients" @@ -3643,9 +3643,9 @@ msgstr "加入网络:搜索无线" msgid "Joining Network: %q" msgstr "正在加入网络:%q" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:173 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:171 msgid "Jump to rule" -msgstr "" +msgstr "跳至规则" #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:228 msgid "Keep settings and retain the current configuration" @@ -4120,7 +4120,7 @@ msgstr "MII 间隔" #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:580 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1418 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:85 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:86 #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:53 #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:92 msgid "MTU" @@ -4188,7 +4188,7 @@ msgstr "允许的最大并发 DNS 查询数。" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:451 msgid "Maximum allowed size of EDNS0 UDP packets." -msgstr "允许的 EDNS.0 UDP 数据包的最大值" +msgstr "EDNS0 UDP 数据包的最大允许大小。" #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:126 #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:118 @@ -4266,7 +4266,7 @@ msgstr "链路监测方式" msgid "Method to determine link status" msgstr "确定链路状态的方式" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:78 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:79 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:189 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:215 msgid "Metric" @@ -4631,7 +4631,7 @@ msgstr "不强制" #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:241 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:244 msgid "No entries available" -msgstr "" +msgstr "没有可用的条目" #: modules/luci-base/htdocs/luci-static/resources/ui.js:2899 msgid "No entries in this directory" @@ -4831,7 +4831,7 @@ msgstr "开" msgid "On-State Delay" msgstr "通电时间" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:108 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:109 msgid "On-link" msgstr "On-Link 路由" @@ -5032,9 +5032,9 @@ msgstr "出站:" msgid "Outgoing checksum" msgstr "传出校验和" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:154 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:155 msgid "Outgoing interface" -msgstr "" +msgstr "传出接口" #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:96 #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:101 @@ -5450,9 +5450,9 @@ msgstr "首选 UMTS" msgid "Prefix Delegated" msgstr "分发前缀" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:188 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:186 msgid "Prefix suppressor" -msgstr "" +msgstr "前缀抑制器" #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:138 msgid "Preshared Key" @@ -5495,7 +5495,7 @@ msgid "Primary becomes active slave whenever it comes back up (always, 0)" msgstr "只要主从属设备重新上线,它就会成为活跃从属设备(always,0)" #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:508 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:128 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:129 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:197 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:223 msgid "Priority" @@ -6004,9 +6004,9 @@ msgstr "路由指定通过哪个接口和网关可以到达某个主机或网络 msgid "Rule" msgstr "规则" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:135 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:136 msgid "Rule type" -msgstr "" +msgstr "规则类型" #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:335 msgid "Run a filesystem check before mounting the device" @@ -6369,8 +6369,8 @@ msgstr "" "抱歉,您的设备暂不支持 sysupgrade 升级,需手动更新固件。请参考 Wiki 中关于此" "设备的固件更新说明。" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:98 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:147 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:99 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:148 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:385 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:70 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:214 @@ -6852,8 +6852,8 @@ msgstr "发送速率" msgid "TX queue length" msgstr "TX 队列长度" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:90 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:165 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:91 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:166 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:18 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:190 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:216 @@ -7459,9 +7459,9 @@ msgstr "传输功率" msgid "Type" msgstr "类型" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:183 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:181 msgid "Type of service" -msgstr "" +msgstr "服务类型" #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:328 msgid "UDP:" @@ -8213,16 +8213,16 @@ msgid "ZRam Size" msgstr "ZRam 大小" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:440 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:151 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:162 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:152 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:163 msgid "any" msgstr "任意" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1463 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1471 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1476 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:101 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:132 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:102 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:133 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1230 #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:79 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoe.js:48 diff --git a/modules/luci-base/po/zh_Hant/base.po b/modules/luci-base/po/zh_Hant/base.po index 51cb64d1ea..84f794a5a1 100644 --- a/modules/luci-base/po/zh_Hant/base.po +++ b/modules/luci-base/po/zh_Hant/base.po @@ -509,7 +509,7 @@ msgstr "管理" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:633 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1523 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:39 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:126 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:127 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:924 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:988 #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:241 @@ -1705,7 +1705,7 @@ msgstr "主題" msgid "Designated master" msgstr "指定的主介面" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:158 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:159 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:386 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:71 msgid "Destination" @@ -1791,8 +1791,8 @@ msgstr "撥號號碼" msgid "Directory" msgstr "目錄" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:112 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:197 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:113 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:195 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:897 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:937 msgid "Disable" @@ -2566,7 +2566,7 @@ msgstr "防火牆設定" msgid "Firewall Status" msgstr "防火牆狀況" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:178 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:176 msgid "Firewall mark" msgstr "" @@ -2745,7 +2745,7 @@ msgstr "IPv4上的GRETAP隧道" msgid "GRETAP tunnel over IPv6" msgstr "IPv6上的GRETAP隧道" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:74 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:75 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:44 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:188 msgid "Gateway" @@ -2763,7 +2763,7 @@ msgstr "閘道器位址錯誤無效" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:251 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:477 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:38 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:125 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:126 #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:240 #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:108 msgid "General Settings" @@ -3085,7 +3085,7 @@ msgstr "" msgid "IPv4 Routing" msgstr "IPv4 路由" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:119 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:120 msgid "IPv4 Rules" msgstr "" @@ -3184,7 +3184,7 @@ msgstr "IPv6 RA 設定" msgid "IPv6 Routing" msgstr "IPv6 路由" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:119 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:120 msgid "IPv6 Rules" msgstr "" @@ -3403,7 +3403,7 @@ msgstr "將目前安裝的套件列表備份在 /etc/backup/installed_packages.t msgid "Incoming checksum" msgstr "傳入校驗和" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:143 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:144 msgid "Incoming interface" msgstr "" @@ -3623,7 +3623,7 @@ msgstr "錯誤的十六進制數值" msgid "Invalid username and/or password! Please try again." msgstr "不正確的使用者名稱和/或者密碼!請再試一次。" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:193 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:191 msgid "Invert match" msgstr "" @@ -3655,7 +3655,7 @@ msgstr "加入網路:無線掃描" msgid "Joining Network: %q" msgstr "加入網路:%q" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:173 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:171 msgid "Jump to rule" msgstr "" @@ -4131,7 +4131,7 @@ msgstr "MII寄存器間隔" #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:580 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1418 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:85 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:86 #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:53 #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:92 msgid "MTU" @@ -4278,7 +4278,7 @@ msgstr "連線監視方式" msgid "Method to determine link status" msgstr "確定連接狀態的方式" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:78 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:79 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:189 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:215 msgid "Metric" @@ -4842,7 +4842,7 @@ msgstr "開" msgid "On-State Delay" msgstr "狀態延遲" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:108 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:109 msgid "On-link" msgstr "連接路線" @@ -5040,7 +5040,7 @@ msgstr "外連:" msgid "Outgoing checksum" msgstr "輸出校驗值" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:154 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:155 msgid "Outgoing interface" msgstr "" @@ -5458,7 +5458,7 @@ msgstr "偏好 UMTS" msgid "Prefix Delegated" msgstr "前綴委派" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:188 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:186 msgid "Prefix suppressor" msgstr "" @@ -5503,7 +5503,7 @@ msgid "Primary becomes active slave whenever it comes back up (always, 0)" msgstr "邏輯主控在恢復後, 始終變為活動的實體界面 (永遠, 0)" #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:508 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:128 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:129 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:197 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:223 msgid "Priority" @@ -6014,7 +6014,7 @@ msgstr "路由器指定介面導出到特定主機或者能夠到達的網路." msgid "Rule" msgstr "規則" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:135 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:136 msgid "Rule type" msgstr "" @@ -6379,8 +6379,8 @@ msgstr "" "抱歉,沒有 sysupgrade 支援出現; 新版韌體映像檔必須手動更新,請至 Wiki 尋找特" "定設備安裝指南。" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:98 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:147 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:99 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:148 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:385 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:70 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:214 @@ -6862,8 +6862,8 @@ msgstr "傳送速度" msgid "TX queue length" msgstr "TX 佇列長度" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:90 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:165 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:91 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:166 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:18 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:190 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:216 @@ -7479,7 +7479,7 @@ msgstr "傳送-功率" msgid "Type" msgstr "類型" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:183 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:181 msgid "Type of service" msgstr "" @@ -8229,16 +8229,16 @@ msgid "ZRam Size" msgstr "ZRam 大小" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:440 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:151 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:162 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:152 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:163 msgid "any" msgstr "任意" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1463 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1471 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1476 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:101 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:132 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:102 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:133 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1230 #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:79 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoe.js:48 diff --git a/modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js b/modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js index f19a5b41cf..701f16c75f 100644 --- a/modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js +++ b/modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js @@ -39,7 +39,7 @@ return view.extend({ s.tab('advanced', _('Advanced Settings')); o = s.taboption('general', widgets.NetworkSelect, 'interface', _('Interface')); - o.rmempty = false; + o.loopback = true; o.nocreate = true; o = s.taboption('general', form.ListValue, 'type', _('Route type')); @@ -58,12 +58,13 @@ return view.extend({ o.datatype = (family == 6) ? 'cidr6' : 'cidr4'; o.placeholder = (family == 6) ? '::/0' : '0.0.0.0/0'; o.cfgvalue = function(section_id) { - var t = uci.get('network', section_id, 'target'), - m = uci.get('network', section_id, 'netmask'), - s = (family == 6) ? 128 : 32, - p = m ? network.maskToPrefix(m, (family == 6) ? true : false) : s; - if (t) { - return t.split('/')[1] ? t : t + '/' + p; + var section_type = uci.get('network', section_id, '.type'), + target = uci.get('network', section_id, 'target'), + mask = uci.get('network', section_id, 'netmask'), + v6 = (section_type == 'route6') ? true : false, + bits = mask ? network.maskToPrefix(mask, v6) : (v6 ? 128 : 32); + if (target) { + return target.split('/')[1] ? target : target + '/' + bits; } } o.write = function(section_id, formvalue) { @@ -166,9 +167,6 @@ return view.extend({ o.datatype = 'or(uinteger, string)'; for (var i = 0; i < rtTables.length; i++) o.value(rtTables[i][1], '%s (%d)'.format(rtTables[i][1], rtTables[i][0])); - o.textvalue = function(section_id) { - return this.cfgvalue(section_id) || 'main'; - }; o = s.taboption('advanced', form.Value, 'goto', _('Jump to rule')); o.modalonly = true;