diff options
Diffstat (limited to 'modules/luci-base')
37 files changed, 4264 insertions, 332 deletions
diff --git a/modules/luci-base/htdocs/luci-static/resources/luci.js b/modules/luci-base/htdocs/luci-static/resources/luci.js index 78e8b8b30b..529a33ca3b 100644 --- a/modules/luci-base/htdocs/luci-static/resources/luci.js +++ b/modules/luci-base/htdocs/luci-static/resources/luci.js @@ -695,115 +695,117 @@ * The resulting HTTP response. */ request: function(target, options) { - var state = { xhr: new XMLHttpRequest(), url: this.expandURL(target), start: Date.now() }, - opt = Object.assign({}, options, state), - content = null, - contenttype = null, - callback = this.handleReadyStateChange; - - return new Promise(function(resolveFn, rejectFn) { - opt.xhr.onreadystatechange = callback.bind(opt, resolveFn, rejectFn); - opt.method = String(opt.method || 'GET').toUpperCase(); - - if ('query' in opt) { - var q = (opt.query != null) ? Object.keys(opt.query).map(function(k) { - if (opt.query[k] != null) { - var v = (typeof(opt.query[k]) == 'object') - ? JSON.stringify(opt.query[k]) - : String(opt.query[k]); - - return '%s=%s'.format(encodeURIComponent(k), encodeURIComponent(v)); - } - else { - return encodeURIComponent(k); - } - }).join('&') : ''; - - if (q !== '') { - switch (opt.method) { - case 'GET': - case 'HEAD': - case 'OPTIONS': - opt.url += ((/\?/).test(opt.url) ? '&' : '?') + q; - break; - - default: - if (content == null) { - content = q; - contenttype = 'application/x-www-form-urlencoded'; + return Promise.resolve(target).then((function(url) { + var state = { xhr: new XMLHttpRequest(), url: this.expandURL(url), start: Date.now() }, + opt = Object.assign({}, options, state), + content = null, + contenttype = null, + callback = this.handleReadyStateChange; + + return new Promise(function(resolveFn, rejectFn) { + opt.xhr.onreadystatechange = callback.bind(opt, resolveFn, rejectFn); + opt.method = String(opt.method || 'GET').toUpperCase(); + + if ('query' in opt) { + var q = (opt.query != null) ? Object.keys(opt.query).map(function(k) { + if (opt.query[k] != null) { + var v = (typeof(opt.query[k]) == 'object') + ? JSON.stringify(opt.query[k]) + : String(opt.query[k]); + + return '%s=%s'.format(encodeURIComponent(k), encodeURIComponent(v)); + } + else { + return encodeURIComponent(k); + } + }).join('&') : ''; + + if (q !== '') { + switch (opt.method) { + case 'GET': + case 'HEAD': + case 'OPTIONS': + opt.url += ((/\?/).test(opt.url) ? '&' : '?') + q; + break; + + default: + if (content == null) { + content = q; + contenttype = 'application/x-www-form-urlencoded'; + } } } } - } - if (!opt.cache) - opt.url += ((/\?/).test(opt.url) ? '&' : '?') + (new Date()).getTime(); + if (!opt.cache) + opt.url += ((/\?/).test(opt.url) ? '&' : '?') + (new Date()).getTime(); - if (isQueueableRequest(opt)) { - requestQueue.push([opt, rejectFn, resolveFn]); - requestAnimationFrame(flushRequestQueue); - return; - } + if (isQueueableRequest(opt)) { + requestQueue.push([opt, rejectFn, resolveFn]); + requestAnimationFrame(flushRequestQueue); + return; + } - if ('username' in opt && 'password' in opt) - opt.xhr.open(opt.method, opt.url, true, opt.username, opt.password); - else - opt.xhr.open(opt.method, opt.url, true); + if ('username' in opt && 'password' in opt) + opt.xhr.open(opt.method, opt.url, true, opt.username, opt.password); + else + opt.xhr.open(opt.method, opt.url, true); - opt.xhr.responseType = opt.responseType || 'text'; + opt.xhr.responseType = opt.responseType || 'text'; - if ('overrideMimeType' in opt.xhr) - opt.xhr.overrideMimeType('application/octet-stream'); + if ('overrideMimeType' in opt.xhr) + opt.xhr.overrideMimeType('application/octet-stream'); - if ('timeout' in opt) - opt.xhr.timeout = +opt.timeout; + if ('timeout' in opt) + opt.xhr.timeout = +opt.timeout; - if ('credentials' in opt) - opt.xhr.withCredentials = !!opt.credentials; + if ('credentials' in opt) + opt.xhr.withCredentials = !!opt.credentials; - if (opt.content != null) { - switch (typeof(opt.content)) { - case 'function': - content = opt.content(opt.xhr); - break; + if (opt.content != null) { + switch (typeof(opt.content)) { + case 'function': + content = opt.content(opt.xhr); + break; - case 'object': - if (!(opt.content instanceof FormData)) { - content = JSON.stringify(opt.content); - contenttype = 'application/json'; - } - else { - content = opt.content; - } - break; + case 'object': + if (!(opt.content instanceof FormData)) { + content = JSON.stringify(opt.content); + contenttype = 'application/json'; + } + else { + content = opt.content; + } + break; - default: - content = String(opt.content); + default: + content = String(opt.content); + } } - } - if ('headers' in opt) - for (var header in opt.headers) - if (opt.headers.hasOwnProperty(header)) { - if (header.toLowerCase() != 'content-type') - opt.xhr.setRequestHeader(header, opt.headers[header]); - else - contenttype = opt.headers[header]; - } + if ('headers' in opt) + for (var header in opt.headers) + if (opt.headers.hasOwnProperty(header)) { + if (header.toLowerCase() != 'content-type') + opt.xhr.setRequestHeader(header, opt.headers[header]); + else + contenttype = opt.headers[header]; + } - if ('progress' in opt && 'upload' in opt.xhr) - opt.xhr.upload.addEventListener('progress', opt.progress); + if ('progress' in opt && 'upload' in opt.xhr) + opt.xhr.upload.addEventListener('progress', opt.progress); - if (contenttype != null) - opt.xhr.setRequestHeader('Content-Type', contenttype); + if (contenttype != null) + opt.xhr.setRequestHeader('Content-Type', contenttype); - try { - opt.xhr.send(content); - } - catch (e) { - rejectFn.call(opt, e); - } - }); + try { + opt.xhr.send(content); + } + catch (e) { + rejectFn.call(opt, e); + } + }); + }).bind(this)); }, handleReadyStateChange: function(resolveFn, rejectFn, ev) { diff --git a/modules/luci-base/htdocs/luci-static/resources/tools/widgets.js b/modules/luci-base/htdocs/luci-static/resources/tools/widgets.js index 10b65be8ec..ae17d8197d 100644 --- a/modules/luci-base/htdocs/luci-static/resources/tools/widgets.js +++ b/modules/luci-base/htdocs/luci-static/resources/tools/widgets.js @@ -187,9 +187,10 @@ var CBIZoneSelect = form.ListValue.extend({ emptyval.setAttribute('data-value', ''); } - L.dom.content(emptyval.querySelector('span'), [ - E('strong', _('Device')), E('span', ' (%s)'.format(_('input'))) - ]); + if (opt[0].allowlocal) + L.dom.content(emptyval.querySelector('span'), [ + E('strong', _('Device')), E('span', ' (%s)'.format(_('input'))) + ]); L.dom.content(anyval.querySelector('span'), [ E('strong', _('Any zone')), E('span', ' (%s)'.format(_('forward'))) diff --git a/modules/luci-base/po/ar/base.po b/modules/luci-base/po/ar/base.po index fce9083d8b..58ea4b8fd0 100644 --- a/modules/luci-base/po/ar/base.po +++ b/modules/luci-base/po/ar/base.po @@ -1698,6 +1698,10 @@ msgid "" "priority on incoming frames" msgstr "" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:86 +msgid "Defines a specific MTU for this route" +msgstr "" + #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:970 msgid "Delegate IPv6 prefixes" msgstr "" @@ -1835,7 +1839,7 @@ msgid "Directory" msgstr "الدليل" #: 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/routes.js:200 #: 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" @@ -3471,6 +3475,10 @@ msgid "" "classes." msgstr "" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:196 +msgid "If set, the meaning of the match options is inverted" +msgstr "" + #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:254 #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:360 msgid "" @@ -3814,7 +3822,7 @@ msgstr "قيمة سداسية عشرية غير صالحة" msgid "Invalid username and/or password! Please try again." msgstr "اسم المستخدم و / أو كلمة المرور غير صالحة! حاول مرة اخرى." -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:191 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:196 msgid "Invert match" msgstr "" @@ -4756,6 +4764,10 @@ msgstr "l SSIDلشبكة" msgid "Network Utilities" msgstr "مرافق الشبكة" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:56 +msgid "Network address" +msgstr "" + #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:491 msgid "Network boot image" msgstr "صورة تمهيد الشبكة" @@ -5713,7 +5725,7 @@ msgstr "UMTS المفضل" msgid "Prefix Delegated" msgstr "تفويض البادئة" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:186 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:191 msgid "Prefix suppressor" msgstr "" @@ -5984,6 +5996,12 @@ msgstr "مراجع" msgid "Refreshing" msgstr "تجديد" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:191 +msgid "" +"Reject routing decisions that have a prefix length less than or equal to the " +"specified value" +msgstr "" + #: modules/luci-compat/luasrc/model/network/proto_relay.lua:153 #: protocols/luci-proto-relay/htdocs/luci-static/resources/protocol/relay.js:39 msgid "Relay" @@ -6702,6 +6720,13 @@ msgid "" "unless the <em>Local IPv6 DNS server</em> option is disabled." msgstr "" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:186 +msgid "" +"Specifies an individual UID or range of UIDs to match, e.g. 1000 to match " +"corresponding UID or 1000-1005 to inclusively match all UIDs within the " +"corresponding range" +msgstr "" + #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:343 msgid "" "Specifies that duplicate frames (received on inactive ports) should be " @@ -6722,10 +6747,18 @@ msgstr "يحدد عناوين IP لاستخدامها في مراقبة ARP" msgid "Specifies the MII link monitoring frequency in milliseconds" msgstr "يحدد تردد مراقبة ارتباط MII بالمللي ثانية" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:181 +msgid "Specifies the TOS value to match in IP headers" +msgstr "" + #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:261 msgid "Specifies the aggregation selection logic to use" msgstr "يحدد منطق اختيار التجميع المراد استخدامه" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:159 +msgid "Specifies the destination subnet to match (CIDR notation)" +msgstr "" + #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:292 msgid "Specifies the directory the device is attached to" msgstr "يحدد الدليل الذي يتصل به الجهاز" @@ -6737,6 +6770,22 @@ msgid "" "stateful DHCPv6." msgstr "" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:176 +msgid "" +"Specifies the fwmark and optionally its mask to match, e.g. 0xFF to match " +"mark 255 or 0x0/0x1 to match any even mark value" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:144 +msgid "Specifies the incoming logical interface name" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:41 +msgid "" +"Specifies the logical interface name of the parent (or master) interface " +"this route belongs to" +msgstr "" + #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:254 msgid "" "Specifies the mac-address for the actor in protocol packet exchanges " @@ -6778,6 +6827,13 @@ msgstr "يحدد الحد الأدنى لعدد الروابط التي يجب msgid "Specifies the mode to be used for this bonding interface" msgstr "يحدد الوضع الذي سيتم استخدامه لواجهة هدى الرابط" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:75 +msgid "" +"Specifies the network gateway. If omitted, the gateway from the parent " +"interface is taken if any, otherwise creates a link scope route. If set to " +"0.0.0.0 no gateway will be specified for the route" +msgstr "" + #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:334 msgid "" "Specifies the number of IGMP membership reports to be issued after a " @@ -6808,6 +6864,20 @@ msgid "" msgstr "" "يحدد عدد الثواني بين الحالات التي يرسل فيها سائق الربط حزم التعلم إلى كل تابع" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:129 +msgid "Specifies the ordering of the IP rules" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:155 +msgid "Specifies the outgoing logical interface name" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:99 +msgid "" +"Specifies the preferred source address when sending to destinations covered " +"by the target" +msgstr "" + #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:375 msgid "Specifies the quantity of ARP IP targets that must be reachable" msgstr "يحدد كمية أهداف ARP IP التي يجب أن تكون قابلة للوصول" @@ -6826,6 +6896,22 @@ msgstr "" "يحدد سياسة إعادة التحديد للتابع الأساسي عند حدوث فشل التابع النشط أو استرداد " "التابع الأساسي" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:79 +msgid "Specifies the route metric to use" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:45 +msgid "Specifies the route type to be created" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:136 +msgid "Specifies the rule target routing action" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:148 +msgid "Specifies the source subnet to match (CIDR notation)" +msgstr "" + #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:246 msgid "Specifies the system priority" msgstr "يحدد أولوية النظام" @@ -7549,6 +7635,19 @@ msgid "" "increased. IGMP is robust to (Robustness-1) packet losses" msgstr "" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:171 +msgid "" +"The rule target is a jump to another rule specified by its priority value" +msgstr "" + +#: 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 +msgid "" +"The rule target is a table lookup ID: a numeric table index ranging from 0 " +"to 65535 or symbol alias declared in /etc/iproute2/rt_tables. Special " +"aliases local (255), main (254) and default (253) are also valid" +msgstr "" + #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1371 msgid "The selected %s mode is incompatible with %s encryption" msgstr "وضع%s المحدد غير متوافق مع تشفير%s" @@ -8254,6 +8353,10 @@ msgstr "مجموعة المستخدمين" msgid "User certificate (PEM encoded)" msgstr "شهادة المستخدم (مشفرة PEM)" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:186 +msgid "User identifier" +msgstr "" + #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:132 msgid "User key (PEM encoded)" msgstr "مفتاح المستخدم (مشفر PEM)" @@ -8469,6 +8572,12 @@ msgid "" "preference value are considered first when allocating subnets." msgstr "" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:109 +msgid "" +"When enabled, gateway is on link even if the gateway does not match any " +"interface prefix" +msgstr "" + #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1537 msgid "" "When using a PSK, the PMK can be automatically generated. When enabled, the " diff --git a/modules/luci-base/po/bg/base.po b/modules/luci-base/po/bg/base.po index 94e7828beb..99e7b55538 100644 --- a/modules/luci-base/po/bg/base.po +++ b/modules/luci-base/po/bg/base.po @@ -1668,6 +1668,10 @@ msgid "" "priority on incoming frames" msgstr "" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:86 +msgid "Defines a specific MTU for this route" +msgstr "" + #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:970 msgid "Delegate IPv6 prefixes" msgstr "" @@ -1805,7 +1809,7 @@ msgid "Directory" msgstr "" #: 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/routes.js:200 #: 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" @@ -3444,6 +3448,10 @@ msgid "" "classes." msgstr "" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:196 +msgid "If set, the meaning of the match options is inverted" +msgstr "" + #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:254 #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:360 msgid "" @@ -3771,7 +3779,7 @@ msgstr "" msgid "Invalid username and/or password! Please try again." msgstr "Невалидно потребителско име и/или парола! Моля, опитайте отново." -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:191 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:196 msgid "Invert match" msgstr "" @@ -4696,6 +4704,10 @@ msgstr "" msgid "Network Utilities" msgstr "" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:56 +msgid "Network address" +msgstr "" + #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:491 msgid "Network boot image" msgstr "" @@ -5637,7 +5649,7 @@ msgstr "" msgid "Prefix Delegated" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:186 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:191 msgid "Prefix suppressor" msgstr "" @@ -5900,6 +5912,12 @@ msgstr "" msgid "Refreshing" msgstr "" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:191 +msgid "" +"Reject routing decisions that have a prefix length less than or equal to the " +"specified value" +msgstr "" + #: modules/luci-compat/luasrc/model/network/proto_relay.lua:153 #: protocols/luci-proto-relay/htdocs/luci-static/resources/protocol/relay.js:39 msgid "Relay" @@ -6607,6 +6625,13 @@ msgid "" "unless the <em>Local IPv6 DNS server</em> option is disabled." msgstr "" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:186 +msgid "" +"Specifies an individual UID or range of UIDs to match, e.g. 1000 to match " +"corresponding UID or 1000-1005 to inclusively match all UIDs within the " +"corresponding range" +msgstr "" + #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:343 msgid "" "Specifies that duplicate frames (received on inactive ports) should be " @@ -6625,10 +6650,18 @@ msgstr "" msgid "Specifies the MII link monitoring frequency in milliseconds" msgstr "" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:181 +msgid "Specifies the TOS value to match in IP headers" +msgstr "" + #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:261 msgid "Specifies the aggregation selection logic to use" msgstr "" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:159 +msgid "Specifies the destination subnet to match (CIDR notation)" +msgstr "" + #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:292 msgid "Specifies the directory the device is attached to" msgstr "" @@ -6640,6 +6673,22 @@ msgid "" "stateful DHCPv6." msgstr "" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:176 +msgid "" +"Specifies the fwmark and optionally its mask to match, e.g. 0xFF to match " +"mark 255 or 0x0/0x1 to match any even mark value" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:144 +msgid "Specifies the incoming logical interface name" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:41 +msgid "" +"Specifies the logical interface name of the parent (or master) interface " +"this route belongs to" +msgstr "" + #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:254 msgid "" "Specifies the mac-address for the actor in protocol packet exchanges " @@ -6675,6 +6724,13 @@ msgstr "" msgid "Specifies the mode to be used for this bonding interface" msgstr "" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:75 +msgid "" +"Specifies the network gateway. If omitted, the gateway from the parent " +"interface is taken if any, otherwise creates a link scope route. If set to " +"0.0.0.0 no gateway will be specified for the route" +msgstr "" + #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:334 msgid "" "Specifies the number of IGMP membership reports to be issued after a " @@ -6699,6 +6755,20 @@ msgid "" "sends learning packets to each slaves peer switch" msgstr "" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:129 +msgid "Specifies the ordering of the IP rules" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:155 +msgid "Specifies the outgoing logical interface name" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:99 +msgid "" +"Specifies the preferred source address when sending to destinations covered " +"by the target" +msgstr "" + #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:375 msgid "Specifies the quantity of ARP IP targets that must be reachable" msgstr "" @@ -6715,6 +6785,22 @@ msgid "" "active slave or recovery of the primary slave occurs" msgstr "" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:79 +msgid "Specifies the route metric to use" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:45 +msgid "Specifies the route type to be created" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:136 +msgid "Specifies the rule target routing action" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:148 +msgid "Specifies the source subnet to match (CIDR notation)" +msgstr "" + #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:246 msgid "Specifies the system priority" msgstr "" @@ -7399,6 +7485,19 @@ msgid "" "increased. IGMP is robust to (Robustness-1) packet losses" msgstr "" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:171 +msgid "" +"The rule target is a jump to another rule specified by its priority value" +msgstr "" + +#: 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 +msgid "" +"The rule target is a table lookup ID: a numeric table index ranging from 0 " +"to 65535 or symbol alias declared in /etc/iproute2/rt_tables. Special " +"aliases local (255), main (254) and default (253) are also valid" +msgstr "" + #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1371 msgid "The selected %s mode is incompatible with %s encryption" msgstr "" @@ -8063,6 +8162,10 @@ msgstr "" msgid "User certificate (PEM encoded)" msgstr "" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:186 +msgid "User identifier" +msgstr "" + #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:132 msgid "User key (PEM encoded)" msgstr "" @@ -8272,6 +8375,12 @@ msgid "" "preference value are considered first when allocating subnets." msgstr "" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:109 +msgid "" +"When enabled, gateway is on link even if the gateway does not match any " +"interface prefix" +msgstr "" + #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1537 msgid "" "When using a PSK, the PMK can be automatically generated. When enabled, the " diff --git a/modules/luci-base/po/bn_BD/base.po b/modules/luci-base/po/bn_BD/base.po index 1cccc86a45..8ffc6522f5 100644 --- a/modules/luci-base/po/bn_BD/base.po +++ b/modules/luci-base/po/bn_BD/base.po @@ -1646,6 +1646,10 @@ msgid "" "priority on incoming frames" msgstr "" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:86 +msgid "Defines a specific MTU for this route" +msgstr "" + #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:970 msgid "Delegate IPv6 prefixes" msgstr "" @@ -1783,7 +1787,7 @@ msgid "Directory" msgstr "" #: 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/routes.js:200 #: 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" @@ -3385,6 +3389,10 @@ msgid "" "classes." msgstr "" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:196 +msgid "If set, the meaning of the match options is inverted" +msgstr "" + #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:254 #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:360 msgid "" @@ -3712,7 +3720,7 @@ msgstr "" msgid "Invalid username and/or password! Please try again." msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:191 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:196 msgid "Invert match" msgstr "" @@ -4631,6 +4639,10 @@ msgstr "" msgid "Network Utilities" msgstr "" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:56 +msgid "Network address" +msgstr "" + #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:491 msgid "Network boot image" msgstr "" @@ -5572,7 +5584,7 @@ msgstr "" msgid "Prefix Delegated" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:186 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:191 msgid "Prefix suppressor" msgstr "" @@ -5831,6 +5843,12 @@ msgstr "" msgid "Refreshing" msgstr "" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:191 +msgid "" +"Reject routing decisions that have a prefix length less than or equal to the " +"specified value" +msgstr "" + #: modules/luci-compat/luasrc/model/network/proto_relay.lua:153 #: protocols/luci-proto-relay/htdocs/luci-static/resources/protocol/relay.js:39 msgid "Relay" @@ -6538,6 +6556,13 @@ msgid "" "unless the <em>Local IPv6 DNS server</em> option is disabled." msgstr "" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:186 +msgid "" +"Specifies an individual UID or range of UIDs to match, e.g. 1000 to match " +"corresponding UID or 1000-1005 to inclusively match all UIDs within the " +"corresponding range" +msgstr "" + #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:343 msgid "" "Specifies that duplicate frames (received on inactive ports) should be " @@ -6556,10 +6581,18 @@ msgstr "" msgid "Specifies the MII link monitoring frequency in milliseconds" msgstr "" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:181 +msgid "Specifies the TOS value to match in IP headers" +msgstr "" + #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:261 msgid "Specifies the aggregation selection logic to use" msgstr "" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:159 +msgid "Specifies the destination subnet to match (CIDR notation)" +msgstr "" + #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:292 msgid "Specifies the directory the device is attached to" msgstr "" @@ -6571,6 +6604,22 @@ msgid "" "stateful DHCPv6." msgstr "" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:176 +msgid "" +"Specifies the fwmark and optionally its mask to match, e.g. 0xFF to match " +"mark 255 or 0x0/0x1 to match any even mark value" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:144 +msgid "Specifies the incoming logical interface name" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:41 +msgid "" +"Specifies the logical interface name of the parent (or master) interface " +"this route belongs to" +msgstr "" + #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:254 msgid "" "Specifies the mac-address for the actor in protocol packet exchanges " @@ -6606,6 +6655,13 @@ msgstr "" msgid "Specifies the mode to be used for this bonding interface" msgstr "" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:75 +msgid "" +"Specifies the network gateway. If omitted, the gateway from the parent " +"interface is taken if any, otherwise creates a link scope route. If set to " +"0.0.0.0 no gateway will be specified for the route" +msgstr "" + #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:334 msgid "" "Specifies the number of IGMP membership reports to be issued after a " @@ -6630,6 +6686,20 @@ msgid "" "sends learning packets to each slaves peer switch" msgstr "" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:129 +msgid "Specifies the ordering of the IP rules" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:155 +msgid "Specifies the outgoing logical interface name" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:99 +msgid "" +"Specifies the preferred source address when sending to destinations covered " +"by the target" +msgstr "" + #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:375 msgid "Specifies the quantity of ARP IP targets that must be reachable" msgstr "" @@ -6646,6 +6716,22 @@ msgid "" "active slave or recovery of the primary slave occurs" msgstr "" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:79 +msgid "Specifies the route metric to use" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:45 +msgid "Specifies the route type to be created" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:136 +msgid "Specifies the rule target routing action" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:148 +msgid "Specifies the source subnet to match (CIDR notation)" +msgstr "" + #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:246 msgid "Specifies the system priority" msgstr "" @@ -7328,6 +7414,19 @@ msgid "" "increased. IGMP is robust to (Robustness-1) packet losses" msgstr "" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:171 +msgid "" +"The rule target is a jump to another rule specified by its priority value" +msgstr "" + +#: 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 +msgid "" +"The rule target is a table lookup ID: a numeric table index ranging from 0 " +"to 65535 or symbol alias declared in /etc/iproute2/rt_tables. Special " +"aliases local (255), main (254) and default (253) are also valid" +msgstr "" + #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1371 msgid "The selected %s mode is incompatible with %s encryption" msgstr "" @@ -7988,6 +8087,10 @@ msgstr "" msgid "User certificate (PEM encoded)" msgstr "" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:186 +msgid "User identifier" +msgstr "" + #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:132 msgid "User key (PEM encoded)" msgstr "" @@ -8197,6 +8300,12 @@ msgid "" "preference value are considered first when allocating subnets." msgstr "" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:109 +msgid "" +"When enabled, gateway is on link even if the gateway does not match any " +"interface prefix" +msgstr "" + #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1537 msgid "" "When using a PSK, the PMK can be automatically generated. When enabled, the " diff --git a/modules/luci-base/po/ca/base.po b/modules/luci-base/po/ca/base.po index cd0d98630b..bb2903ed2b 100644 --- a/modules/luci-base/po/ca/base.po +++ b/modules/luci-base/po/ca/base.po @@ -1686,6 +1686,10 @@ msgid "" "priority on incoming frames" msgstr "" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:86 +msgid "Defines a specific MTU for this route" +msgstr "" + #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:970 msgid "Delegate IPv6 prefixes" msgstr "" @@ -1823,7 +1827,7 @@ msgid "Directory" msgstr "Directori" #: 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/routes.js:200 #: 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" @@ -3443,6 +3447,10 @@ msgid "" "classes." msgstr "" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:196 +msgid "If set, the meaning of the match options is inverted" +msgstr "" + #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:254 #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:360 msgid "" @@ -3776,7 +3784,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:191 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:196 msgid "Invert match" msgstr "" @@ -4706,6 +4714,10 @@ msgstr "" msgid "Network Utilities" msgstr "Utilitats de xarxa" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:56 +msgid "Network address" +msgstr "" + #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:491 msgid "Network boot image" msgstr "Imatge d'inici de xarxa" @@ -5647,7 +5659,7 @@ msgstr "" msgid "Prefix Delegated" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:186 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:191 msgid "Prefix suppressor" msgstr "" @@ -5908,6 +5920,12 @@ msgstr "Referències" msgid "Refreshing" msgstr "Refrescant" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:191 +msgid "" +"Reject routing decisions that have a prefix length less than or equal to the " +"specified value" +msgstr "" + #: modules/luci-compat/luasrc/model/network/proto_relay.lua:153 #: protocols/luci-proto-relay/htdocs/luci-static/resources/protocol/relay.js:39 msgid "Relay" @@ -6617,6 +6635,13 @@ msgid "" "unless the <em>Local IPv6 DNS server</em> option is disabled." msgstr "" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:186 +msgid "" +"Specifies an individual UID or range of UIDs to match, e.g. 1000 to match " +"corresponding UID or 1000-1005 to inclusively match all UIDs within the " +"corresponding range" +msgstr "" + #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:343 msgid "" "Specifies that duplicate frames (received on inactive ports) should be " @@ -6635,10 +6660,18 @@ msgstr "" msgid "Specifies the MII link monitoring frequency in milliseconds" msgstr "" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:181 +msgid "Specifies the TOS value to match in IP headers" +msgstr "" + #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:261 msgid "Specifies the aggregation selection logic to use" msgstr "" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:159 +msgid "Specifies the destination subnet to match (CIDR notation)" +msgstr "" + #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:292 msgid "Specifies the directory the device is attached to" msgstr "Especifica el directori a que el dispositiu està adjuntat" @@ -6650,6 +6683,22 @@ msgid "" "stateful DHCPv6." msgstr "" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:176 +msgid "" +"Specifies the fwmark and optionally its mask to match, e.g. 0xFF to match " +"mark 255 or 0x0/0x1 to match any even mark value" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:144 +msgid "Specifies the incoming logical interface name" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:41 +msgid "" +"Specifies the logical interface name of the parent (or master) interface " +"this route belongs to" +msgstr "" + #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:254 msgid "" "Specifies the mac-address for the actor in protocol packet exchanges " @@ -6685,6 +6734,13 @@ msgstr "" msgid "Specifies the mode to be used for this bonding interface" msgstr "" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:75 +msgid "" +"Specifies the network gateway. If omitted, the gateway from the parent " +"interface is taken if any, otherwise creates a link scope route. If set to " +"0.0.0.0 no gateway will be specified for the route" +msgstr "" + #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:334 msgid "" "Specifies the number of IGMP membership reports to be issued after a " @@ -6709,6 +6765,20 @@ msgid "" "sends learning packets to each slaves peer switch" msgstr "" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:129 +msgid "Specifies the ordering of the IP rules" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:155 +msgid "Specifies the outgoing logical interface name" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:99 +msgid "" +"Specifies the preferred source address when sending to destinations covered " +"by the target" +msgstr "" + #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:375 msgid "Specifies the quantity of ARP IP targets that must be reachable" msgstr "" @@ -6725,6 +6795,22 @@ msgid "" "active slave or recovery of the primary slave occurs" msgstr "" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:79 +msgid "Specifies the route metric to use" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:45 +msgid "Specifies the route type to be created" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:136 +msgid "Specifies the rule target routing action" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:148 +msgid "Specifies the source subnet to match (CIDR notation)" +msgstr "" + #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:246 msgid "Specifies the system priority" msgstr "" @@ -7412,6 +7498,19 @@ msgid "" "increased. IGMP is robust to (Robustness-1) packet losses" msgstr "" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:171 +msgid "" +"The rule target is a jump to another rule specified by its priority value" +msgstr "" + +#: 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 +msgid "" +"The rule target is a table lookup ID: a numeric table index ranging from 0 " +"to 65535 or symbol alias declared in /etc/iproute2/rt_tables. Special " +"aliases local (255), main (254) and default (253) are also valid" +msgstr "" + #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1371 msgid "The selected %s mode is incompatible with %s encryption" msgstr "" @@ -8101,6 +8200,10 @@ msgstr "" msgid "User certificate (PEM encoded)" msgstr "" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:186 +msgid "User identifier" +msgstr "" + #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:132 msgid "User key (PEM encoded)" msgstr "" @@ -8312,6 +8415,12 @@ msgid "" "preference value are considered first when allocating subnets." msgstr "" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:109 +msgid "" +"When enabled, gateway is on link even if the gateway does not match any " +"interface prefix" +msgstr "" + #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1537 msgid "" "When using a PSK, the PMK can be automatically generated. When enabled, the " diff --git a/modules/luci-base/po/cs/base.po b/modules/luci-base/po/cs/base.po index 4fbf268e36..917ca5e1f0 100644 --- a/modules/luci-base/po/cs/base.po +++ b/modules/luci-base/po/cs/base.po @@ -1700,6 +1700,10 @@ msgid "" "priority on incoming frames" msgstr "" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:86 +msgid "Defines a specific MTU for this route" +msgstr "" + #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:970 msgid "Delegate IPv6 prefixes" msgstr "Delegovat prefix IPv6" @@ -1837,7 +1841,7 @@ msgid "Directory" msgstr "Adresář" #: 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/routes.js:200 #: 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" @@ -3483,6 +3487,10 @@ msgid "" "classes." msgstr "" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:196 +msgid "If set, the meaning of the match options is inverted" +msgstr "" + #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:254 #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:360 msgid "" @@ -3823,7 +3831,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:191 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:196 msgid "Invert match" msgstr "" @@ -4784,6 +4792,10 @@ msgstr "SSID sítě" msgid "Network Utilities" msgstr "Síťové nástroje" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:56 +msgid "Network address" +msgstr "" + #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:491 msgid "Network boot image" msgstr "Síťový bootovací obraz" @@ -5057,6 +5069,13 @@ msgstr "Oznámení" msgid "Nslookup" msgstr "Nslookup" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:75 +msgid "" +"Specifies the network gateway. If omitted, the gateway from the parent " +"interface is taken if any, otherwise creates a link scope route. If set to " +"0.0.0.0 no gateway will be specified for the route" +msgstr "" + #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:333 msgid "Number of IGMP membership reports" msgstr "" @@ -5748,7 +5767,7 @@ msgstr "Preferovat UMTS" msgid "Prefix Delegated" msgstr "Delegovaný prefix" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:186 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:191 msgid "Prefix suppressor" msgstr "" @@ -6019,6 +6038,12 @@ msgstr "Reference" msgid "Refreshing" msgstr "" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:191 +msgid "" +"Reject routing decisions that have a prefix length less than or equal to the " +"specified value" +msgstr "" + #: modules/luci-compat/luasrc/model/network/proto_relay.lua:153 #: protocols/luci-proto-relay/htdocs/luci-static/resources/protocol/relay.js:39 msgid "Relay" @@ -6740,6 +6765,13 @@ msgid "" "unless the <em>Local IPv6 DNS server</em> option is disabled." msgstr "" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:186 +msgid "" +"Specifies an individual UID or range of UIDs to match, e.g. 1000 to match " +"corresponding UID or 1000-1005 to inclusively match all UIDs within the " +"corresponding range" +msgstr "" + #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:343 msgid "" "Specifies that duplicate frames (received on inactive ports) should be " @@ -6758,10 +6790,18 @@ msgstr "" msgid "Specifies the MII link monitoring frequency in milliseconds" msgstr "" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:181 +msgid "Specifies the TOS value to match in IP headers" +msgstr "" + #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:261 msgid "Specifies the aggregation selection logic to use" msgstr "" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:159 +msgid "Specifies the destination subnet to match (CIDR notation)" +msgstr "" + #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:292 msgid "Specifies the directory the device is attached to" msgstr "Určuje adresář, ke kterému je zařízení připojeno" @@ -6773,6 +6813,22 @@ msgid "" "stateful DHCPv6." msgstr "" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:176 +msgid "" +"Specifies the fwmark and optionally its mask to match, e.g. 0xFF to match " +"mark 255 or 0x0/0x1 to match any even mark value" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:144 +msgid "Specifies the incoming logical interface name" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:41 +msgid "" +"Specifies the logical interface name of the parent (or master) interface " +"this route belongs to" +msgstr "" + #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:254 msgid "" "Specifies the mac-address for the actor in protocol packet exchanges " @@ -6837,6 +6893,20 @@ msgid "" "sends learning packets to each slaves peer switch" msgstr "" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:129 +msgid "Specifies the ordering of the IP rules" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:155 +msgid "Specifies the outgoing logical interface name" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:99 +msgid "" +"Specifies the preferred source address when sending to destinations covered " +"by the target" +msgstr "" + #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:375 msgid "Specifies the quantity of ARP IP targets that must be reachable" msgstr "" @@ -6853,6 +6923,22 @@ msgid "" "active slave or recovery of the primary slave occurs" msgstr "" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:79 +msgid "Specifies the route metric to use" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:45 +msgid "Specifies the route type to be created" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:136 +msgid "Specifies the rule target routing action" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:148 +msgid "Specifies the source subnet to match (CIDR notation)" +msgstr "" + #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:246 msgid "Specifies the system priority" msgstr "" @@ -7568,6 +7654,19 @@ msgid "" "increased. IGMP is robust to (Robustness-1) packet losses" msgstr "" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:171 +msgid "" +"The rule target is a jump to another rule specified by its priority value" +msgstr "" + +#: 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 +msgid "" +"The rule target is a table lookup ID: a numeric table index ranging from 0 " +"to 65535 or symbol alias declared in /etc/iproute2/rt_tables. Special " +"aliases local (255), main (254) and default (253) are also valid" +msgstr "" + #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1371 msgid "The selected %s mode is incompatible with %s encryption" msgstr "Vybraný režim %s není kompatibilní s šifrováním %s" @@ -8282,6 +8381,10 @@ msgstr "" msgid "User certificate (PEM encoded)" msgstr "Uživatelský certifikát (PEM formát)" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:186 +msgid "User identifier" +msgstr "" + #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:132 msgid "User key (PEM encoded)" msgstr "Uživatelský klíč (PEM formát)" @@ -8497,6 +8600,12 @@ msgid "" "preference value are considered first when allocating subnets." msgstr "" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:109 +msgid "" +"When enabled, gateway is on link even if the gateway does not match any " +"interface prefix" +msgstr "" + #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1537 msgid "" "When using a PSK, the PMK can be automatically generated. When enabled, the " diff --git a/modules/luci-base/po/da/base.po b/modules/luci-base/po/da/base.po index c18277630c..880ef1e14d 100644 --- a/modules/luci-base/po/da/base.po +++ b/modules/luci-base/po/da/base.po @@ -1,6 +1,6 @@ msgid "" msgstr "" -"PO-Revision-Date: 2022-01-25 09:41+0000\n" +"PO-Revision-Date: 2022-02-21 14:06+0000\n" "Last-Translator: drax red <drax@outlook.dk>\n" "Language-Team: Danish <https://hosted.weblate.org/projects/openwrt/luci/da/>" "\n" @@ -1739,6 +1739,10 @@ msgstr "" "Definerer en mapping af VLAN-headerprioritet til Linux-intern pakkeprioritet " "på indgående frames" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:86 +msgid "Defines a specific MTU for this route" +msgstr "Definerer en specifik MTU for denne rute" + #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:970 msgid "Delegate IPv6 prefixes" msgstr "Delegere IPv6-præfikser" @@ -1876,7 +1880,7 @@ msgid "Directory" msgstr "Mappe" #: 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/routes.js:200 #: 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" @@ -3539,6 +3543,10 @@ msgstr "" "Hvis de er angivet, tildeles downstream-suvbets kun fra de angivne IPv6-" "præfiksklasser." +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:196 +msgid "If set, the meaning of the match options is inverted" +msgstr "Hvis den er indstillet, bliver betydningen af matchmulighederne omvendt" + #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:254 #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:360 msgid "" @@ -3889,7 +3897,7 @@ msgstr "Ugyldig hexadecimal værdi" msgid "Invalid username and/or password! Please try again." msgstr "Ugyldigt brugernavn og/eller password! Prøv venligst igen." -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:191 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:196 msgid "Invert match" msgstr "Omvendt match" @@ -4842,6 +4850,10 @@ msgstr "Netværks-SSID" msgid "Network Utilities" msgstr "Netværksværktøjer" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:56 +msgid "Network address" +msgstr "Netværksadresse" + #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:491 msgid "Network boot image" msgstr "Netværks boot image" @@ -5818,7 +5830,7 @@ msgstr "Foretrækker UMTS" msgid "Prefix Delegated" msgstr "Præfiks Delegeret" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:186 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:191 msgid "Prefix suppressor" msgstr "Præfiksundertrykker" @@ -6092,6 +6104,14 @@ msgstr "Referencer" msgid "Refreshing" msgstr "Genopfriske" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:191 +msgid "" +"Reject routing decisions that have a prefix length less than or equal to the " +"specified value" +msgstr "" +"Afvis routingbeslutninger, der har en præfikslængde, der er mindre end eller " +"lig med den angivne værdi" + #: modules/luci-compat/luasrc/model/network/proto_relay.lua:153 #: protocols/luci-proto-relay/htdocs/luci-static/resources/protocol/relay.js:39 msgid "Relay" @@ -6837,6 +6857,16 @@ msgstr "" "DNS-server, medmindre indstillingen <em>Lokal IPv6 DNS-server</em> er " "deaktiveret." +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:186 +msgid "" +"Specifies an individual UID or range of UIDs to match, e.g. 1000 to match " +"corresponding UID or 1000-1005 to inclusively match all UIDs within the " +"corresponding range" +msgstr "" +"Angiver en individuel UID eller række af UID'er, der skal matche, f.eks. " +"1000 for at matche tilsvarende UID eller 1000-1005 for at matche alle UID'er " +"inden for det tilsvarende interval" + #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:343 msgid "" "Specifies that duplicate frames (received on inactive ports) should be " @@ -6857,10 +6887,18 @@ msgstr "Angiver de IP-adresser, der skal bruges til ARP-overvågning" msgid "Specifies the MII link monitoring frequency in milliseconds" msgstr "Angiver MII-forbindelsesovervågningsfrekvensen i millisekunder" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:181 +msgid "Specifies the TOS value to match in IP headers" +msgstr "Angiver den TOS-værdi, der skal matche i IP headers" + #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:261 msgid "Specifies the aggregation selection logic to use" msgstr "Angiver den aggregeringsvalglogik, der skal bruges" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:159 +msgid "Specifies the destination subnet to match (CIDR notation)" +msgstr "Angiver det destinations subnet, der skal matche (CIDR-notation)" + #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:292 msgid "Specifies the directory the device is attached to" msgstr "Angiver den mappe, som enheden er knyttet til" @@ -6875,6 +6913,26 @@ msgstr "" "meddelelser, f.eks. for at instruere klienterne om at anmode om yderligere " "oplysninger via stateful DHCPv6." +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:176 +msgid "" +"Specifies the fwmark and optionally its mask to match, e.g. 0xFF to match " +"mark 255 or 0x0/0x1 to match any even mark value" +msgstr "" +"Specificerer fw-mærket og eventuelt dets maske for at matche, f.eks. 0xFF " +"for at matche mærke 255 eller 0x0/0x1 for at matche enhver lige mærkeværdi" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:144 +msgid "Specifies the incoming logical interface name" +msgstr "Angiver navnet på det indgående logiske interface" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:41 +msgid "" +"Specifies the logical interface name of the parent (or master) interface " +"this route belongs to" +msgstr "" +"Angiver det logiske interface navn på den overordnede (eller master) " +"interface, som denne rute tilhører" + #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:254 msgid "" "Specifies the mac-address for the actor in protocol packet exchanges " @@ -6923,6 +6981,16 @@ msgid "Specifies the mode to be used for this bonding interface" msgstr "" "Specificerer den tilstand, der skal anvendes for dette bonding interface" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:75 +msgid "" +"Specifies the network gateway. If omitted, the gateway from the parent " +"interface is taken if any, otherwise creates a link scope route. If set to " +"0.0.0.0 no gateway will be specified for the route" +msgstr "" +"Angiver netværksgatewayen. Hvis den udelades, tages gateway fra den " +"overordnede interface, hvis nogen, ellers opretter en link scope route. Hvis " +"indstillet til 0.0.0.0, vil der ikke blive angivet nogen gateway for ruten" + #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:334 msgid "" "Specifies the number of IGMP membership reports to be issued after a " @@ -6956,6 +7024,22 @@ msgstr "" "Specificerer antallet af sekunder mellem de Instanser, hvor bonding-driveren " "sender læringspakker til hver slaves peer-switch" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:129 +msgid "Specifies the ordering of the IP rules" +msgstr "Angiver rækkefølgen af IP-reglerne" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:155 +msgid "Specifies the outgoing logical interface name" +msgstr "Angiver navnet på det udgående logiske interface" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:99 +msgid "" +"Specifies the preferred source address when sending to destinations covered " +"by the target" +msgstr "" +"Angiver den foretrukne kildeadresse, når der sendes til destinationer, der " +"er dækket af målet" + #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:375 msgid "Specifies the quantity of ARP IP targets that must be reachable" msgstr "Specificerer mængden af ARP IP-mål, der skal kunne nås" @@ -6976,6 +7060,22 @@ msgstr "" "Specificerer genvalgspolitikken for den primære slave, når der opstår fejl i " "den aktive slave eller gendannelse af den primære slave" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:79 +msgid "Specifies the route metric to use" +msgstr "Angiver den rutemetrik, der skal bruges" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:45 +msgid "Specifies the route type to be created" +msgstr "Angiver den rutetype, der skal oprettes" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:136 +msgid "Specifies the rule target routing action" +msgstr "Angiver handlingen for reglens routing" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:148 +msgid "Specifies the source subnet to match (CIDR notation)" +msgstr "Angiver det kilde subnet, der skal matche (CIDR-notation)" + #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:246 msgid "Specifies the system priority" msgstr "Specificerer systemets prioritet" @@ -7767,6 +7867,24 @@ msgstr "" "pakketab på netværket. Hvis et netværk forventes at være tabsgivende, kan " "robusthedsværdien øges. IGMP er robust over for (Robusthed-1) pakketab" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:171 +msgid "" +"The rule target is a jump to another rule specified by its priority value" +msgstr "" +"Regelmålet er et spring til en anden regel, der er angivet ved dens " +"prioritetsværdi" + +#: 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 +msgid "" +"The rule target is a table lookup ID: a numeric table index ranging from 0 " +"to 65535 or symbol alias declared in /etc/iproute2/rt_tables. Special " +"aliases local (255), main (254) and default (253) are also valid" +msgstr "" +"Regelmålet er et tabelopslags-id: et numerisk tabelindeks, der spænder fra 0 " +"til 65535 eller symbolalias, der er erklæret i /etc/iproute2/rt_tables. " +"Særlige aliaser lokal (255), main (254) og standard (253) er også gyldige" + #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1371 msgid "The selected %s mode is incompatible with %s encryption" msgstr "Den valgte %s-modus er ikke kompatibel med %s-kryptering" @@ -8489,6 +8607,10 @@ msgstr "Brugergruppe" msgid "User certificate (PEM encoded)" msgstr "Brugercertifikat (PEM kodet)" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:186 +msgid "User identifier" +msgstr "Bruger-id" + #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:132 msgid "User key (PEM encoded)" msgstr "Brugernøgle (PEM kodet)" @@ -8707,6 +8829,14 @@ msgstr "" "Når der delegeres præfikser til flere downstreams, tages interfaces med en " "højere præferenceværdi først i betragtning ved tildeling af subnets." +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:109 +msgid "" +"When enabled, gateway is on link even if the gateway does not match any " +"interface prefix" +msgstr "" +"Når den er aktiveret, er gatewayen på linket, selvom gatewayen ikke matcher " +"nogen interface præfiks" + #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1537 msgid "" "When using a PSK, the PMK can be automatically generated. When enabled, the " diff --git a/modules/luci-base/po/de/base.po b/modules/luci-base/po/de/base.po index e06e44680f..c86b82dc19 100644 --- a/modules/luci-base/po/de/base.po +++ b/modules/luci-base/po/de/base.po @@ -3,8 +3,8 @@ msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2009-05-26 17:57+0200\n" -"PO-Revision-Date: 2021-12-13 23:52+0000\n" -"Last-Translator: Josef Schlehofer <pepe@bloodkings.eu>\n" +"PO-Revision-Date: 2022-02-24 06:56+0000\n" +"Last-Translator: ssantos <ssantos@web.de>\n" "Language-Team: German <https://hosted.weblate.org/projects/openwrt/luci/de/>" "\n" "Language: de\n" @@ -12,7 +12,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.10-dev\n" +"X-Generator: Weblate 4.11-dev\n" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1516 msgid "%.1f dB" @@ -1758,6 +1758,10 @@ msgstr "" "Definiert eine Übersetzung von VLAN-Header-Prioritäten in eingehenden " "Paketen auf Linux-interne Paket-Prioritäten." +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:86 +msgid "Defines a specific MTU for this route" +msgstr "" + #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:970 msgid "Delegate IPv6 prefixes" msgstr "IPv6-Präfix-Delegation" @@ -1896,7 +1900,7 @@ msgid "Directory" msgstr "Verzeichnis" #: 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/routes.js:200 #: 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" @@ -3569,6 +3573,10 @@ msgstr "" "Wenn angegeben, dann werden Subnetze für nachgelagerte Netzwerke nur aus den " "genannten Präfix-Klassen alloziert." +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:196 +msgid "If set, the meaning of the match options is inverted" +msgstr "" + #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:254 #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:360 msgid "" @@ -3922,7 +3930,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:191 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:196 msgid "Invert match" msgstr "" @@ -4887,6 +4895,10 @@ msgstr "Netzwerk-SSID" msgid "Network Utilities" msgstr "Netzwerk-Werkzeuge" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:56 +msgid "Network address" +msgstr "" + #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:491 msgid "Network boot image" msgstr "Netzwerk-Boot-Image" @@ -5765,7 +5777,7 @@ msgstr "" #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:162 msgid "Peers" -msgstr "Verbindungspartner" +msgstr "Partner" #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:80 msgid "Perfect Forward Secrecy" @@ -5865,7 +5877,7 @@ msgstr "UMTS bevorzugen" msgid "Prefix Delegated" msgstr "Delegiertes Präfix" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:186 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:191 msgid "Prefix suppressor" msgstr "" @@ -6148,6 +6160,12 @@ msgstr "Verweise" msgid "Refreshing" msgstr "Aktualisierend" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:191 +msgid "" +"Reject routing decisions that have a prefix length less than or equal to the " +"specified value" +msgstr "" + #: modules/luci-compat/luasrc/model/network/proto_relay.lua:153 #: protocols/luci-proto-relay/htdocs/luci-static/resources/protocol/relay.js:39 msgid "Relay" @@ -6895,6 +6913,13 @@ msgstr "" "Server annoncieren, außer die <em>Lokaler IPv6-DNS-Server</em>-Option ist " "deaktiviert." +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:186 +msgid "" +"Specifies an individual UID or range of UIDs to match, e.g. 1000 to match " +"corresponding UID or 1000-1005 to inclusively match all UIDs within the " +"corresponding range" +msgstr "" + #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:343 msgid "" "Specifies that duplicate frames (received on inactive ports) should be " @@ -6916,10 +6941,18 @@ msgstr "" msgid "Specifies the MII link monitoring frequency in milliseconds" msgstr "Gibt die Häufigkeit der MII-Verbindungsüberwachung in Millisekunden an" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:181 +msgid "Specifies the TOS value to match in IP headers" +msgstr "" + #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:261 msgid "Specifies the aggregation selection logic to use" msgstr "Gibt die zu verwendende Aggregationsauswahllogik an" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:159 +msgid "Specifies the destination subnet to match (CIDR notation)" +msgstr "" + #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:292 msgid "Specifies the directory the device is attached to" msgstr "Nennt das Verzeichnis, an welches das Gerät angebunden ist" @@ -6934,6 +6967,22 @@ msgstr "" "Nachrichten gesendeten Marker, z.B. um Clients anzuweisen, weitere " "Information mittels DHCPv6-Anfragen zu beziehen." +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:176 +msgid "" +"Specifies the fwmark and optionally its mask to match, e.g. 0xFF to match " +"mark 255 or 0x0/0x1 to match any even mark value" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:144 +msgid "Specifies the incoming logical interface name" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:41 +msgid "" +"Specifies the logical interface name of the parent (or master) interface " +"this route belongs to" +msgstr "" + #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:254 msgid "" "Specifies the mac-address for the actor in protocol packet exchanges " @@ -6982,6 +7031,13 @@ msgid "Specifies the mode to be used for this bonding interface" msgstr "" "Gibt den Modus an, der für diese Bonding-Schnittstelle verwendet werden soll" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:75 +msgid "" +"Specifies the network gateway. If omitted, the gateway from the parent " +"interface is taken if any, otherwise creates a link scope route. If set to " +"0.0.0.0 no gateway will be specified for the route" +msgstr "" + #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:334 msgid "" "Specifies the number of IGMP membership reports to be issued after a " @@ -7015,6 +7071,20 @@ msgstr "" "Gibt die Anzahl der Sekunden zwischen Instanzen an, in denen der " "Bindungstreiber Lernpakete an jeden Peer-Switch des Slaves sendet" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:129 +msgid "Specifies the ordering of the IP rules" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:155 +msgid "Specifies the outgoing logical interface name" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:99 +msgid "" +"Specifies the preferred source address when sending to destinations covered " +"by the target" +msgstr "" + #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:375 msgid "Specifies the quantity of ARP IP targets that must be reachable" msgstr "Gibt die Anzahl der ARP-IP-Ziele an, die erreichbar sein müssen" @@ -7035,6 +7105,22 @@ msgstr "" "Gibt die Neuauswahlrichtlinie für den primären Slave an, wenn ein Ausfall " "des aktiven Slaves oder eine Wiederherstellung des primären Slaves auftritt" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:79 +msgid "Specifies the route metric to use" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:45 +msgid "Specifies the route type to be created" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:136 +msgid "Specifies the rule target routing action" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:148 +msgid "Specifies the source subnet to match (CIDR notation)" +msgstr "" + #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:246 msgid "Specifies the system priority" msgstr "Gibt die Systempriorität an" @@ -7840,6 +7926,19 @@ msgstr "" "Robustheitswert erhöht werden. IGMP ist bis zu <em>Robustheitswert - 1</em> " "Paketverlusten stabil." +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:171 +msgid "" +"The rule target is a jump to another rule specified by its priority value" +msgstr "" + +#: 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 +msgid "" +"The rule target is a table lookup ID: a numeric table index ranging from 0 " +"to 65535 or symbol alias declared in /etc/iproute2/rt_tables. Special " +"aliases local (255), main (254) and default (253) are also valid" +msgstr "" + #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1371 msgid "The selected %s mode is incompatible with %s encryption" msgstr "" @@ -8587,6 +8686,10 @@ msgstr "Benutzergruppe" msgid "User certificate (PEM encoded)" msgstr "PEM-kodiertes Benutzerzertifikat" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:186 +msgid "User identifier" +msgstr "" + #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:132 msgid "User key (PEM encoded)" msgstr "PEM-kodierter Benutzerschlüssel" @@ -8807,6 +8910,12 @@ msgstr "" "werden Schnittstellen mit einem höheren Präferenzwert bei der Allokation von " "Subnetzen priorisiert." +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:109 +msgid "" +"When enabled, gateway is on link even if the gateway does not match any " +"interface prefix" +msgstr "" + #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1537 msgid "" "When using a PSK, the PMK can be automatically generated. When enabled, the " diff --git a/modules/luci-base/po/el/base.po b/modules/luci-base/po/el/base.po index 4d97da95ae..7c6626b345 100644 --- a/modules/luci-base/po/el/base.po +++ b/modules/luci-base/po/el/base.po @@ -3,15 +3,15 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2009-06-10 03:40+0200\n" -"PO-Revision-Date: 2021-12-13 23:52+0000\n" -"Last-Translator: Josef Schlehofer <pepe@bloodkings.eu>\n" +"PO-Revision-Date: 2022-02-12 20:10+0000\n" +"Last-Translator: MarioK239 <marios.k239@gmail.com>\n" "Language-Team: Greek <https://hosted.weblate.org/projects/openwrt/luci/el/>\n" "Language: el\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Weblate 4.10-dev\n" +"X-Generator: Weblate 4.11-dev\n" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1516 msgid "%.1f dB" @@ -1675,6 +1675,10 @@ msgid "" "priority on incoming frames" msgstr "" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:86 +msgid "Defines a specific MTU for this route" +msgstr "" + #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:970 msgid "Delegate IPv6 prefixes" msgstr "" @@ -1812,7 +1816,7 @@ msgid "Directory" msgstr "Φάκελος" #: 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/routes.js:200 #: 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" @@ -3443,6 +3447,10 @@ msgid "" "classes." msgstr "" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:196 +msgid "If set, the meaning of the match options is inverted" +msgstr "" + #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:254 #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:360 msgid "" @@ -3780,7 +3788,7 @@ msgstr "" msgid "Invalid username and/or password! Please try again." msgstr "Άκυρο όνομα χρήστη και/ή κωδικός πρόσβασης! Παρακαλώ προσπαθήστε ξανά." -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:191 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:196 msgid "Invert match" msgstr "" @@ -4709,6 +4717,10 @@ msgstr "" msgid "Network Utilities" msgstr "Εργαλεία Δικτύου" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:56 +msgid "Network address" +msgstr "" + #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:491 msgid "Network boot image" msgstr "" @@ -5650,7 +5662,7 @@ msgstr "" msgid "Prefix Delegated" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:186 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:191 msgid "Prefix suppressor" msgstr "" @@ -5912,6 +5924,12 @@ msgstr "Αναφορές" msgid "Refreshing" msgstr "" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:191 +msgid "" +"Reject routing decisions that have a prefix length less than or equal to the " +"specified value" +msgstr "" + #: modules/luci-compat/luasrc/model/network/proto_relay.lua:153 #: protocols/luci-proto-relay/htdocs/luci-static/resources/protocol/relay.js:39 msgid "Relay" @@ -6476,7 +6494,7 @@ msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:210 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:39 msgid "Short GI" -msgstr "" +msgstr "Σύντομο GI" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1159 msgid "Short Preamble" @@ -6621,6 +6639,13 @@ msgid "" "unless the <em>Local IPv6 DNS server</em> option is disabled." msgstr "" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:186 +msgid "" +"Specifies an individual UID or range of UIDs to match, e.g. 1000 to match " +"corresponding UID or 1000-1005 to inclusively match all UIDs within the " +"corresponding range" +msgstr "" + #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:343 msgid "" "Specifies that duplicate frames (received on inactive ports) should be " @@ -6639,10 +6664,18 @@ msgstr "" msgid "Specifies the MII link monitoring frequency in milliseconds" msgstr "" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:181 +msgid "Specifies the TOS value to match in IP headers" +msgstr "" + #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:261 msgid "Specifies the aggregation selection logic to use" msgstr "" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:159 +msgid "Specifies the destination subnet to match (CIDR notation)" +msgstr "" + #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:292 msgid "Specifies the directory the device is attached to" msgstr "" @@ -6654,6 +6687,22 @@ msgid "" "stateful DHCPv6." msgstr "" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:176 +msgid "" +"Specifies the fwmark and optionally its mask to match, e.g. 0xFF to match " +"mark 255 or 0x0/0x1 to match any even mark value" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:144 +msgid "Specifies the incoming logical interface name" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:41 +msgid "" +"Specifies the logical interface name of the parent (or master) interface " +"this route belongs to" +msgstr "" + #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:254 msgid "" "Specifies the mac-address for the actor in protocol packet exchanges " @@ -6689,6 +6738,13 @@ msgstr "" msgid "Specifies the mode to be used for this bonding interface" msgstr "" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:75 +msgid "" +"Specifies the network gateway. If omitted, the gateway from the parent " +"interface is taken if any, otherwise creates a link scope route. If set to " +"0.0.0.0 no gateway will be specified for the route" +msgstr "" + #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:334 msgid "" "Specifies the number of IGMP membership reports to be issued after a " @@ -6713,6 +6769,20 @@ msgid "" "sends learning packets to each slaves peer switch" msgstr "" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:129 +msgid "Specifies the ordering of the IP rules" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:155 +msgid "Specifies the outgoing logical interface name" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:99 +msgid "" +"Specifies the preferred source address when sending to destinations covered " +"by the target" +msgstr "" + #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:375 msgid "Specifies the quantity of ARP IP targets that must be reachable" msgstr "" @@ -6729,6 +6799,22 @@ msgid "" "active slave or recovery of the primary slave occurs" msgstr "" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:79 +msgid "Specifies the route metric to use" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:45 +msgid "Specifies the route type to be created" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:136 +msgid "Specifies the rule target routing action" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:148 +msgid "Specifies the source subnet to match (CIDR notation)" +msgstr "" + #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:246 msgid "Specifies the system priority" msgstr "" @@ -7415,6 +7501,19 @@ msgid "" "increased. IGMP is robust to (Robustness-1) packet losses" msgstr "" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:171 +msgid "" +"The rule target is a jump to another rule specified by its priority value" +msgstr "" + +#: 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 +msgid "" +"The rule target is a table lookup ID: a numeric table index ranging from 0 " +"to 65535 or symbol alias declared in /etc/iproute2/rt_tables. Special " +"aliases local (255), main (254) and default (253) are also valid" +msgstr "" + #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1371 msgid "The selected %s mode is incompatible with %s encryption" msgstr "" @@ -8094,6 +8193,10 @@ msgstr "" msgid "User certificate (PEM encoded)" msgstr "" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:186 +msgid "User identifier" +msgstr "" + #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:132 msgid "User key (PEM encoded)" msgstr "" @@ -8303,6 +8406,12 @@ msgid "" "preference value are considered first when allocating subnets." msgstr "" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:109 +msgid "" +"When enabled, gateway is on link even if the gateway does not match any " +"interface prefix" +msgstr "" + #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1537 msgid "" "When using a PSK, the PMK can be automatically generated. When enabled, the " diff --git a/modules/luci-base/po/en/base.po b/modules/luci-base/po/en/base.po index c282968e38..61742e4861 100644 --- a/modules/luci-base/po/en/base.po +++ b/modules/luci-base/po/en/base.po @@ -1669,6 +1669,10 @@ msgid "" "priority on incoming frames" msgstr "" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:86 +msgid "Defines a specific MTU for this route" +msgstr "" + #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:970 msgid "Delegate IPv6 prefixes" msgstr "" @@ -1806,7 +1810,7 @@ msgid "Directory" msgstr "Directory" #: 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/routes.js:200 #: 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" @@ -3422,6 +3426,10 @@ msgid "" "classes." msgstr "" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:196 +msgid "If set, the meaning of the match options is inverted" +msgstr "" + #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:254 #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:360 msgid "" @@ -3754,7 +3762,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:191 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:196 msgid "Invert match" msgstr "" @@ -4682,6 +4690,10 @@ msgstr "" msgid "Network Utilities" msgstr "" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:56 +msgid "Network address" +msgstr "" + #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:491 msgid "Network boot image" msgstr "" @@ -5623,7 +5635,7 @@ msgstr "" msgid "Prefix Delegated" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:186 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:191 msgid "Prefix suppressor" msgstr "" @@ -5884,6 +5896,12 @@ msgstr "References" msgid "Refreshing" msgstr "" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:191 +msgid "" +"Reject routing decisions that have a prefix length less than or equal to the " +"specified value" +msgstr "" + #: modules/luci-compat/luasrc/model/network/proto_relay.lua:153 #: protocols/luci-proto-relay/htdocs/luci-static/resources/protocol/relay.js:39 msgid "Relay" @@ -6593,6 +6611,13 @@ msgid "" "unless the <em>Local IPv6 DNS server</em> option is disabled." msgstr "" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:186 +msgid "" +"Specifies an individual UID or range of UIDs to match, e.g. 1000 to match " +"corresponding UID or 1000-1005 to inclusively match all UIDs within the " +"corresponding range" +msgstr "" + #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:343 msgid "" "Specifies that duplicate frames (received on inactive ports) should be " @@ -6611,10 +6636,18 @@ msgstr "" msgid "Specifies the MII link monitoring frequency in milliseconds" msgstr "" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:181 +msgid "Specifies the TOS value to match in IP headers" +msgstr "" + #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:261 msgid "Specifies the aggregation selection logic to use" msgstr "" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:159 +msgid "Specifies the destination subnet to match (CIDR notation)" +msgstr "" + #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:292 msgid "Specifies the directory the device is attached to" msgstr "" @@ -6626,6 +6659,22 @@ msgid "" "stateful DHCPv6." msgstr "" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:176 +msgid "" +"Specifies the fwmark and optionally its mask to match, e.g. 0xFF to match " +"mark 255 or 0x0/0x1 to match any even mark value" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:144 +msgid "Specifies the incoming logical interface name" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:41 +msgid "" +"Specifies the logical interface name of the parent (or master) interface " +"this route belongs to" +msgstr "" + #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:254 msgid "" "Specifies the mac-address for the actor in protocol packet exchanges " @@ -6661,6 +6710,13 @@ msgstr "" msgid "Specifies the mode to be used for this bonding interface" msgstr "" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:75 +msgid "" +"Specifies the network gateway. If omitted, the gateway from the parent " +"interface is taken if any, otherwise creates a link scope route. If set to " +"0.0.0.0 no gateway will be specified for the route" +msgstr "" + #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:334 msgid "" "Specifies the number of IGMP membership reports to be issued after a " @@ -6685,6 +6741,20 @@ msgid "" "sends learning packets to each slaves peer switch" msgstr "" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:129 +msgid "Specifies the ordering of the IP rules" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:155 +msgid "Specifies the outgoing logical interface name" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:99 +msgid "" +"Specifies the preferred source address when sending to destinations covered " +"by the target" +msgstr "" + #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:375 msgid "Specifies the quantity of ARP IP targets that must be reachable" msgstr "" @@ -6701,6 +6771,22 @@ msgid "" "active slave or recovery of the primary slave occurs" msgstr "" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:79 +msgid "Specifies the route metric to use" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:45 +msgid "Specifies the route type to be created" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:136 +msgid "Specifies the rule target routing action" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:148 +msgid "Specifies the source subnet to match (CIDR notation)" +msgstr "" + #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:246 msgid "Specifies the system priority" msgstr "" @@ -7385,6 +7471,19 @@ msgid "" "increased. IGMP is robust to (Robustness-1) packet losses" msgstr "" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:171 +msgid "" +"The rule target is a jump to another rule specified by its priority value" +msgstr "" + +#: 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 +msgid "" +"The rule target is a table lookup ID: a numeric table index ranging from 0 " +"to 65535 or symbol alias declared in /etc/iproute2/rt_tables. Special " +"aliases local (255), main (254) and default (253) are also valid" +msgstr "" + #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1371 msgid "The selected %s mode is incompatible with %s encryption" msgstr "" @@ -8061,6 +8160,10 @@ msgstr "" msgid "User certificate (PEM encoded)" msgstr "" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:186 +msgid "User identifier" +msgstr "" + #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:132 msgid "User key (PEM encoded)" msgstr "" @@ -8272,6 +8375,12 @@ msgid "" "preference value are considered first when allocating subnets." msgstr "" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:109 +msgid "" +"When enabled, gateway is on link even if the gateway does not match any " +"interface prefix" +msgstr "" + #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1537 msgid "" "When using a PSK, the PMK can be automatically generated. When enabled, the " diff --git a/modules/luci-base/po/es/base.po b/modules/luci-base/po/es/base.po index c005b3e498..ce52004893 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: 2022-01-29 08:19+0000\n" +"PO-Revision-Date: 2022-02-24 06:56+0000\n" "Last-Translator: Franco Castillo <castillofrancodamian@gmail.com>\n" "Language-Team: Spanish <https://hosted.weblate.org/projects/openwrt/luci/es/>" "\n" @@ -1768,6 +1768,11 @@ msgstr "" "Define una asignación de la prioridad del encabezado de la VLAN a la " "prioridad del paquete interno de Linux en las tramas entrantes" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:86 +#, fuzzy +msgid "Defines a specific MTU for this route" +msgstr "Defina una MTU específica para esta ruta" + #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:970 msgid "Delegate IPv6 prefixes" msgstr "Delegar prefijos de IPv6" @@ -1905,7 +1910,7 @@ msgid "Directory" msgstr "Directorio" #: 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/routes.js:200 #: 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" @@ -3594,6 +3599,10 @@ msgstr "" "Si se establece, las subredes descendentes solo se asignan a partir de las " "clases de prefijo IPv6 dadas." +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:196 +msgid "If set, the meaning of the match options is inverted" +msgstr "" + #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:254 #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:360 msgid "" @@ -3947,7 +3956,7 @@ 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:191 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:196 #, fuzzy msgid "Invert match" msgstr "Invertir partido" @@ -4910,6 +4919,10 @@ msgstr "SSID de la red" msgid "Network Utilities" msgstr "Utilidades de red" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:56 +msgid "Network address" +msgstr "Dirección de red" + #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:491 msgid "Network boot image" msgstr "Imagen de arranque en red" @@ -5898,7 +5911,7 @@ msgstr "Preferir UMTS" msgid "Prefix Delegated" msgstr "Prefijo delegado" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:186 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:191 msgid "Prefix suppressor" msgstr "Supresor de prefijo" @@ -6178,6 +6191,12 @@ msgstr "Referencias" msgid "Refreshing" msgstr "Refrescar" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:191 +msgid "" +"Reject routing decisions that have a prefix length less than or equal to the " +"specified value" +msgstr "" + #: modules/luci-compat/luasrc/model/network/proto_relay.lua:153 #: protocols/luci-proto-relay/htdocs/luci-static/resources/protocol/relay.js:39 msgid "Relay" @@ -6930,6 +6949,13 @@ msgstr "" "servidor DNS IPv6 a menos que la opción <em>Servidor DNS IPv6 local</em> " "esté desactivada." +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:186 +msgid "" +"Specifies an individual UID or range of UIDs to match, e.g. 1000 to match " +"corresponding UID or 1000-1005 to inclusively match all UIDs within the " +"corresponding range" +msgstr "" + #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:343 msgid "" "Specifies that duplicate frames (received on inactive ports) should be " @@ -6951,10 +6977,18 @@ msgstr "" msgid "Specifies the MII link monitoring frequency in milliseconds" msgstr "Especifica la frecuencia de monitoreo del enlace MII en milisegundos" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:181 +msgid "Specifies the TOS value to match in IP headers" +msgstr "" + #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:261 msgid "Specifies the aggregation selection logic to use" msgstr "Especifica la lógica de selección de agregación a usar" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:159 +msgid "Specifies the destination subnet to match (CIDR notation)" +msgstr "" + #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:292 msgid "Specifies the directory the device is attached to" msgstr "Especifica el directorio al que está enlazado el dispositivo" @@ -6970,6 +7004,22 @@ msgstr "" "Advertisement\">RA</abbr>, por ejemplo, para indicar a los clientes que " "soliciten más información mediante DHCPv6 con estado." +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:176 +msgid "" +"Specifies the fwmark and optionally its mask to match, e.g. 0xFF to match " +"mark 255 or 0x0/0x1 to match any even mark value" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:144 +msgid "Specifies the incoming logical interface name" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:41 +msgid "" +"Specifies the logical interface name of the parent (or master) interface " +"this route belongs to" +msgstr "" + #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:254 msgid "" "Specifies the mac-address for the actor in protocol packet exchanges " @@ -7017,6 +7067,13 @@ msgstr "" msgid "Specifies the mode to be used for this bonding interface" msgstr "Especifica el modo que se utilizará para esta interfaz de enlace" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:75 +msgid "" +"Specifies the network gateway. If omitted, the gateway from the parent " +"interface is taken if any, otherwise creates a link scope route. If set to " +"0.0.0.0 no gateway will be specified for the route" +msgstr "" + #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:334 msgid "" "Specifies the number of IGMP membership reports to be issued after a " @@ -7050,6 +7107,20 @@ msgstr "" "Especifica el número de segundos entre instancias en las que el controlador " "de enlace envía paquetes de aprendizaje a cada conmutador de pares esclavos" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:129 +msgid "Specifies the ordering of the IP rules" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:155 +msgid "Specifies the outgoing logical interface name" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:99 +msgid "" +"Specifies the preferred source address when sending to destinations covered " +"by the target" +msgstr "" + #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:375 msgid "Specifies the quantity of ARP IP targets that must be reachable" msgstr "" @@ -7071,6 +7142,22 @@ msgstr "" "Especifica la política de reselección para el esclavo primario cuando ocurre " "una falla del esclavo activo o la recuperación del esclavo primario" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:79 +msgid "Specifies the route metric to use" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:45 +msgid "Specifies the route type to be created" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:136 +msgid "Specifies the rule target routing action" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:148 +msgid "Specifies the source subnet to match (CIDR notation)" +msgstr "" + #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:246 msgid "Specifies the system priority" msgstr "Especifica la prioridad del sistema" @@ -7876,6 +7963,19 @@ msgstr "" "red. Si se espera que una red tenga pérdidas, se puede aumentar el valor de " "robustez. IGMP es resistente a (Robustez-1) pérdidas de paquetes" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:171 +msgid "" +"The rule target is a jump to another rule specified by its priority value" +msgstr "" + +#: 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 +msgid "" +"The rule target is a table lookup ID: a numeric table index ranging from 0 " +"to 65535 or symbol alias declared in /etc/iproute2/rt_tables. Special " +"aliases local (255), main (254) and default (253) are also valid" +msgstr "" + #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1371 msgid "The selected %s mode is incompatible with %s encryption" msgstr "El modo %s seleccionado es incompatible con la encriptación %s" @@ -8607,6 +8707,10 @@ msgstr "Grupo de usuario" msgid "User certificate (PEM encoded)" msgstr "Certificado de usuario (Codificado PEM)" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:186 +msgid "User identifier" +msgstr "" + #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:132 msgid "User key (PEM encoded)" msgstr "Clave de usuario (codificada PEM)" @@ -8827,6 +8931,12 @@ msgstr "" "interfaces con un valor de preferencia más alto se consideran primero al " "asignar subredes." +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:109 +msgid "" +"When enabled, gateway is on link even if the gateway does not match any " +"interface prefix" +msgstr "" + #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1537 msgid "" "When using a PSK, the PMK can be automatically generated. When enabled, the " diff --git a/modules/luci-base/po/fi/base.po b/modules/luci-base/po/fi/base.po index fa45955f14..e3797fe164 100644 --- a/modules/luci-base/po/fi/base.po +++ b/modules/luci-base/po/fi/base.po @@ -1712,6 +1712,10 @@ msgid "" "priority on incoming frames" msgstr "" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:86 +msgid "Defines a specific MTU for this route" +msgstr "" + #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:970 msgid "Delegate IPv6 prefixes" msgstr "" @@ -1849,7 +1853,7 @@ msgid "Directory" msgstr "Hakemisto" #: 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/routes.js:200 #: 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" @@ -3495,6 +3499,10 @@ msgid "" "classes." msgstr "" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:196 +msgid "If set, the meaning of the match options is inverted" +msgstr "" + #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:254 #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:360 msgid "" @@ -3835,7 +3843,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:191 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:196 msgid "Invert match" msgstr "" @@ -4787,6 +4795,10 @@ msgstr "Verkon SSID" msgid "Network Utilities" msgstr "Verkon apuohjelmat" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:56 +msgid "Network address" +msgstr "" + #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:491 msgid "Network boot image" msgstr "Verkon käynnistyskuva" @@ -5750,7 +5762,7 @@ msgstr "Mieluummin UMTS" msgid "Prefix Delegated" msgstr "Delegoitu etuliite" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:186 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:191 msgid "Prefix suppressor" msgstr "" @@ -6024,6 +6036,12 @@ msgstr "Viite" msgid "Refreshing" msgstr "Päivittää" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:191 +msgid "" +"Reject routing decisions that have a prefix length less than or equal to the " +"specified value" +msgstr "" + #: modules/luci-compat/luasrc/model/network/proto_relay.lua:153 #: protocols/luci-proto-relay/htdocs/luci-static/resources/protocol/relay.js:39 msgid "Relay" @@ -6743,6 +6761,13 @@ msgid "" "unless the <em>Local IPv6 DNS server</em> option is disabled." msgstr "" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:186 +msgid "" +"Specifies an individual UID or range of UIDs to match, e.g. 1000 to match " +"corresponding UID or 1000-1005 to inclusively match all UIDs within the " +"corresponding range" +msgstr "" + #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:343 msgid "" "Specifies that duplicate frames (received on inactive ports) should be " @@ -6763,10 +6788,18 @@ msgstr "Määrittää IP-osoitteet, joita käytetään ARP-seurantaan" msgid "Specifies the MII link monitoring frequency in milliseconds" msgstr "Määrittää ARP-linkin valvontatiheyden millisekunnina" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:181 +msgid "Specifies the TOS value to match in IP headers" +msgstr "" + #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:261 msgid "Specifies the aggregation selection logic to use" msgstr "Määrittää käytettävän yhdistelmän valintalogiikan" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:159 +msgid "Specifies the destination subnet to match (CIDR notation)" +msgstr "" + #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:292 msgid "Specifies the directory the device is attached to" msgstr "Määrittää hakemiston, johon laite on liitetty" @@ -6778,6 +6811,22 @@ msgid "" "stateful DHCPv6." msgstr "" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:176 +msgid "" +"Specifies the fwmark and optionally its mask to match, e.g. 0xFF to match " +"mark 255 or 0x0/0x1 to match any even mark value" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:144 +msgid "Specifies the incoming logical interface name" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:41 +msgid "" +"Specifies the logical interface name of the parent (or master) interface " +"this route belongs to" +msgstr "" + #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:254 msgid "" "Specifies the mac-address for the actor in protocol packet exchanges " @@ -6823,6 +6872,13 @@ msgstr "" msgid "Specifies the mode to be used for this bonding interface" msgstr "Määrittää tilan, jota käytetään tähän sidontasovittimeen" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:75 +msgid "" +"Specifies the network gateway. If omitted, the gateway from the parent " +"interface is taken if any, otherwise creates a link scope route. If set to " +"0.0.0.0 no gateway will be specified for the route" +msgstr "" + #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:334 msgid "" "Specifies the number of IGMP membership reports to be issued after a " @@ -6856,6 +6912,20 @@ msgstr "" "Määrittää sekunteina aikavälin, jolloin yhdistävä ohjain lähettää " "oppimispaketit jokaiselle slave-vertaiskytkimelle" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:129 +msgid "Specifies the ordering of the IP rules" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:155 +msgid "Specifies the outgoing logical interface name" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:99 +msgid "" +"Specifies the preferred source address when sending to destinations covered " +"by the target" +msgstr "" + #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:375 msgid "Specifies the quantity of ARP IP targets that must be reachable" msgstr "Määrittää ARP IP -kohteiden määrän, jonka on oltava saavutettavissa" @@ -6876,6 +6946,22 @@ msgstr "" "Määrittää ensisijaisen orjan uudelleenvalintakäytännön, kun aktiivinen orja " "epäonnistuu tai ensisijainen orja palautetaan" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:79 +msgid "Specifies the route metric to use" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:45 +msgid "Specifies the route type to be created" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:136 +msgid "Specifies the rule target routing action" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:148 +msgid "Specifies the source subnet to match (CIDR notation)" +msgstr "" + #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:246 msgid "Specifies the system priority" msgstr "Määrittää järjestelmän prioriteetin" @@ -7613,6 +7699,19 @@ msgid "" "increased. IGMP is robust to (Robustness-1) packet losses" msgstr "" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:171 +msgid "" +"The rule target is a jump to another rule specified by its priority value" +msgstr "" + +#: 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 +msgid "" +"The rule target is a table lookup ID: a numeric table index ranging from 0 " +"to 65535 or symbol alias declared in /etc/iproute2/rt_tables. Special " +"aliases local (255), main (254) and default (253) are also valid" +msgstr "" + #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1371 msgid "The selected %s mode is incompatible with %s encryption" msgstr "Valittu %s tila ei ole yhteensopiva salauksen %s kanssa" @@ -8327,6 +8426,10 @@ msgstr "Käyttäjäryhmä" msgid "User certificate (PEM encoded)" msgstr "Käyttäjäsertifikaatti (PEM-koodattu)" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:186 +msgid "User identifier" +msgstr "" + #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:132 msgid "User key (PEM encoded)" msgstr "Käyttäjäavain (PEM-koodattu)" @@ -8543,6 +8646,12 @@ msgid "" "preference value are considered first when allocating subnets." msgstr "" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:109 +msgid "" +"When enabled, gateway is on link even if the gateway does not match any " +"interface prefix" +msgstr "" + #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1537 msgid "" "When using a PSK, the PMK can be automatically generated. When enabled, the " diff --git a/modules/luci-base/po/fr/base.po b/modules/luci-base/po/fr/base.po index bdb889af14..aa6fdbe17e 100644 --- a/modules/luci-base/po/fr/base.po +++ b/modules/luci-base/po/fr/base.po @@ -3,8 +3,8 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2009-06-10 03:40+0200\n" -"PO-Revision-Date: 2021-12-13 23:52+0000\n" -"Last-Translator: Josef Schlehofer <pepe@bloodkings.eu>\n" +"PO-Revision-Date: 2022-02-02 16:56+0000\n" +"Last-Translator: ButterflyOfFire <ButterflyOfFire@protonmail.com>\n" "Language-Team: French <https://hosted.weblate.org/projects/openwrt/luci/fr/>" "\n" "Language: fr\n" @@ -12,7 +12,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.10-dev\n" +"X-Generator: Weblate 4.11-dev\n" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1516 msgid "%.1f dB" @@ -1748,9 +1748,13 @@ msgid "" "priority on incoming frames" msgstr "" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:86 +msgid "Defines a specific MTU for this route" +msgstr "" + #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:970 msgid "Delegate IPv6 prefixes" -msgstr "" +msgstr "Déléguer les préfixes IPv6" #: modules/luci-base/htdocs/luci-static/resources/form.js:2309 #: modules/luci-base/htdocs/luci-static/resources/form.js:2738 @@ -1853,11 +1857,11 @@ msgstr "Périphérique non géré par ModemManager." #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1391 msgid "Device not present" -msgstr "" +msgstr "Périphérique non présent" #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:341 msgid "Device type" -msgstr "" +msgstr "Type de périphérique" #: modules/luci-base/htdocs/luci-static/resources/ui.js:4209 msgid "Device unreachable!" @@ -1869,7 +1873,7 @@ msgstr "Appareil inaccessible ! Toujours en attente de l’appareil …" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1242 msgid "Devices" -msgstr "" +msgstr "Appareils" #: modules/luci-mod-network/root/usr/share/luci/menu.d/luci-mod-network.json:76 msgid "Diagnostics" @@ -1885,7 +1889,7 @@ msgid "Directory" msgstr "Répertoire" #: 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/routes.js:200 #: 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" @@ -1937,7 +1941,9 @@ msgstr "Désassossier sur la reconnaissance basse (Low Acknowledgement)" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:302 msgid "" "Discard upstream responses containing <a href=\"%s\">RFC1918</a> addresses." -msgstr "Rejeter les réponses RFC1918 en amont." +msgstr "" +"Rejeter les réponses en amont contenant des adresses <a href=\"%s\"" +">RFC1918</a>." #: 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 @@ -1957,7 +1963,7 @@ msgstr "La tentative de déconnexion a échoué." #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/25_storage.js:35 msgid "Disk space" -msgstr "" +msgstr "Espace disque" #: modules/luci-base/htdocs/luci-static/resources/form.js:607 #: modules/luci-base/htdocs/luci-static/resources/form.js:3010 @@ -1998,7 +2004,7 @@ msgstr "" msgid "Do not cache negative replies, e.g. for non-existent domains." msgstr "" "Ne pas mettre en cache les réponses négatives, par ex. pour des domaines " -"inexistants" +"inexistants." #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:86 #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:91 @@ -2037,7 +2043,7 @@ msgstr "Ne pas offrir de service DHCPv6 sur cet interface." #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:158 msgctxt "VLAN port state" msgid "Do not participate" -msgstr "" +msgstr "Ne pas participer" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:910 msgid "" @@ -2075,7 +2081,7 @@ msgstr "Voulez-vous vraiment supprimer récursivement le répertoire « %s » #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:592 msgid "Domain" -msgstr "" +msgstr "Domaine" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:261 msgid "Domain required" @@ -2262,7 +2268,7 @@ msgstr "Activer la mise à jour dynamique de l'extrémité du tunnel chez HE.net #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:665 msgid "Enable IPv6" -msgstr "" +msgstr "Activer IPv6" #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:101 msgid "Enable IPv6 negotiation" @@ -2283,7 +2289,7 @@ msgstr "Activer la circulation de très grandes trames (Jumbo)" #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:696 msgid "Enable MAC address learning" -msgstr "" +msgstr "Activer l’apprentissage des adresses MAC" #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:255 msgid "Enable NTP client" @@ -2299,7 +2305,7 @@ msgstr "Activer le serveur TFTP" #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:720 msgid "Enable VLAN filtering" -msgstr "" +msgstr "Activer le filtrage VLAN" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:184 msgid "Enable VLAN functionality" @@ -2347,7 +2353,7 @@ msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:679 msgid "Enable multicast support" -msgstr "" +msgstr "Activer le support multicast" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1469 msgid "" @@ -2393,7 +2399,7 @@ msgstr "Activer le checksum tx" #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:699 msgid "Enable unicast flooding" -msgstr "" +msgstr "Activer l’inondation unicast" #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:243 #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:352 @@ -2487,7 +2493,7 @@ msgstr "Erreur" #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:112 msgid "Error getting PublicKey" -msgstr "" +msgstr "Erreur lors de l’obtention de la clé publique" #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:29 msgid "Errored seconds (ES)" @@ -2525,7 +2531,7 @@ msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:356 msgid "Existing device" -msgstr "" +msgstr "Périphérique existant" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:408 msgid "Expand hosts" @@ -2800,11 +2806,11 @@ msgstr "Force le DHCP sur ce réseau même si un autre serveur est détecté." #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:682 msgid "Force IGMP version" -msgstr "" +msgstr "Forcer la version IGMP" #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:689 msgid "Force MLD version" -msgstr "" +msgstr "Forcer la version MLD" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1233 msgid "Force TKIP" @@ -2963,7 +2969,7 @@ msgstr "Générer une clé" #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:240 msgid "Generate New QR-Code" -msgstr "" +msgstr "Générer un nouveau code QR" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1537 msgid "Generate PMK locally" @@ -2975,7 +2981,7 @@ msgstr "Construire l'archive" #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:255 msgid "Generate new QR-Code" -msgstr "" +msgstr "Générer un nouveau code QR" #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:79 msgid "Given password confirmation did not match, password not changed!" @@ -2995,7 +3001,7 @@ msgstr "Options globales de réseau" #: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:72 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:92 msgid "Go to firmware upgrade..." -msgstr "" +msgstr "Aller à la mise à niveau du firmware …" #: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:72 #: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:62 @@ -3129,7 +3135,7 @@ msgstr "Nom d'utilisateur HE.net" #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/uhttpd.js:9 #: modules/luci-mod-system/root/usr/share/luci/menu.d/luci-mod-system.json:64 msgid "HTTP(S) Access" -msgstr "" +msgstr "Accès HTTP(S)" #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/processes.js:46 msgid "Hang Up" @@ -3161,7 +3167,7 @@ msgstr "Cacher le <abbr title=\"Extended Service Set Identifier\">ESSID</abbr>" #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:250 msgid "Hide QR-Code" -msgstr "" +msgstr "Masquer le code QR" #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:293 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:332 @@ -3313,11 +3319,11 @@ msgstr "" #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:251 msgid "IPv4 Routing" -msgstr "" +msgstr "Routage IPv4" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:120 msgid "IPv4 Rules" -msgstr "" +msgstr "Règles IPv4" #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:29 msgid "IPv4 Upstream" @@ -3400,7 +3406,7 @@ msgstr "Pare-feu IPv6" #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:669 msgid "IPv6 MTU" -msgstr "" +msgstr "MTU IPv6" #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:262 msgid "IPv6 Neighbours" @@ -3416,7 +3422,7 @@ msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:120 msgid "IPv6 Rules" -msgstr "" +msgstr "Règles IPv6" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:634 msgid "IPv6 Settings" @@ -3543,6 +3549,10 @@ msgid "" "classes." msgstr "" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:196 +msgid "If set, the meaning of the match options is inverted" +msgstr "" + #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:254 #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:360 msgid "" @@ -3825,7 +3835,7 @@ msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:522 msgid "Interval in seconds for STP hello packets" -msgstr "" +msgstr "Intervalle en secondes pour les paquets STP hello" #: modules/luci-compat/luasrc/view/cbi/tblsection.htm:192 #: modules/luci-compat/luasrc/view/cbi/tsection.htm:42 @@ -3888,7 +3898,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:191 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:196 msgid "Invert match" msgstr "" @@ -4829,12 +4839,16 @@ msgstr "Réseau" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2004 msgid "Network SSID" -msgstr "" +msgstr "SSID du réseau" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/diagnostics.js:79 msgid "Network Utilities" msgstr "Utilitaires réseau" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:56 +msgid "Network address" +msgstr "" + #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:491 msgid "Network boot image" msgstr "Image de démarrage réseau" @@ -4846,7 +4860,7 @@ msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:343 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1412 msgid "Network device" -msgstr "" +msgstr "Périphérique réseau" #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/led-trigger/netdev.js:7 msgid "Network device activity (kernel: netdev)" @@ -5095,7 +5109,7 @@ msgstr "" #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:141 msgid "Notes" -msgstr "" +msgstr "Remarques" #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:187 msgid "Notice" @@ -5349,7 +5363,7 @@ msgstr "" #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:119 msgid "Options:" -msgstr "" +msgstr "Options :" #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:348 msgid "Other:" @@ -5573,7 +5587,7 @@ msgstr "PTM/EFM (Mode de transfert de paquets)" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:254 msgid "PXE/TFTP Settings" -msgstr "" +msgstr "Paramètres PXE/TFTP" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1469 msgid "Packet Steering" @@ -5799,7 +5813,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:186 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:191 msgid "Prefix suppressor" msgstr "" @@ -5850,7 +5864,7 @@ msgstr "Le primaire devient un esclave actif dès qu'il revient (toujours, 0)" #: 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" -msgstr "" +msgstr "Priorité" #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:436 msgctxt "MACVLAN mode" @@ -5929,7 +5943,7 @@ msgstr "QMI Cellulaire" #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:192 #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:223 msgid "QR-Code" -msgstr "" +msgstr "Code QR" #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:146 msgid "Quality" @@ -6072,6 +6086,12 @@ msgstr "Références" msgid "Refreshing" msgstr "Rafraîchissement" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:191 +msgid "" +"Reject routing decisions that have a prefix length less than or equal to the " +"specified value" +msgstr "" + #: modules/luci-compat/luasrc/model/network/proto_relay.lua:153 #: protocols/luci-proto-relay/htdocs/luci-static/resources/protocol/relay.js:39 msgid "Relay" @@ -6798,6 +6818,13 @@ msgid "" "unless the <em>Local IPv6 DNS server</em> option is disabled." msgstr "" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:186 +msgid "" +"Specifies an individual UID or range of UIDs to match, e.g. 1000 to match " +"corresponding UID or 1000-1005 to inclusively match all UIDs within the " +"corresponding range" +msgstr "" + #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:343 msgid "" "Specifies that duplicate frames (received on inactive ports) should be " @@ -6818,10 +6845,18 @@ msgstr "Spécifie les adresses IP à utiliser pour la surveillance de l'ARP" msgid "Specifies the MII link monitoring frequency in milliseconds" msgstr "Spécifie la fréquence de surveillance des liens MII en millisecondes" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:181 +msgid "Specifies the TOS value to match in IP headers" +msgstr "" + #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:261 msgid "Specifies the aggregation selection logic to use" msgstr "Spécifie la logique de sélection d’agrégation à utiliser" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:159 +msgid "Specifies the destination subnet to match (CIDR notation)" +msgstr "" + #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:292 msgid "Specifies the directory the device is attached to" msgstr "Indique le répertoire auquel le périphérique est rattaché" @@ -6833,6 +6868,22 @@ msgid "" "stateful DHCPv6." msgstr "" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:176 +msgid "" +"Specifies the fwmark and optionally its mask to match, e.g. 0xFF to match " +"mark 255 or 0x0/0x1 to match any even mark value" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:144 +msgid "Specifies the incoming logical interface name" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:41 +msgid "" +"Specifies the logical interface name of the parent (or master) interface " +"this route belongs to" +msgstr "" + #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:254 msgid "" "Specifies the mac-address for the actor in protocol packet exchanges " @@ -6878,6 +6929,13 @@ msgstr "" msgid "Specifies the mode to be used for this bonding interface" msgstr "Précise le mode à utiliser pour cette interface de liaison" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:75 +msgid "" +"Specifies the network gateway. If omitted, the gateway from the parent " +"interface is taken if any, otherwise creates a link scope route. If set to " +"0.0.0.0 no gateway will be specified for the route" +msgstr "" + #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:334 msgid "" "Specifies the number of IGMP membership reports to be issued after a " @@ -6910,6 +6968,20 @@ msgstr "" "Spécifie le nombre de secondes entre les instances où le pilote de liaison " "envoie des paquets d’apprentissage à chaque commutateur homologue esclaves" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:129 +msgid "Specifies the ordering of the IP rules" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:155 +msgid "Specifies the outgoing logical interface name" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:99 +msgid "" +"Specifies the preferred source address when sending to destinations covered " +"by the target" +msgstr "" + #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:375 msgid "Specifies the quantity of ARP IP targets that must be reachable" msgstr "Spécifie la quantité de cibles IP ARP qui doivent être accessibles" @@ -6930,6 +7002,22 @@ msgstr "" "Spécifie la stratégie de resélection pour l'esclave princ. si défaillance de " "l'esclave actif ou de récupération de l'esclave principal" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:79 +msgid "Specifies the route metric to use" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:45 +msgid "Specifies the route type to be created" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:136 +msgid "Specifies the rule target routing action" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:148 +msgid "Specifies the source subnet to match (CIDR notation)" +msgstr "" + #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:246 msgid "Specifies the system priority" msgstr "Spécifie la priorité du système" @@ -7508,7 +7596,7 @@ msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:450 msgid "The device name \"%s\" is already taken" -msgstr "" +msgstr "Le nom du périphérique « %s » est déjà pris" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:393 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:427 @@ -7677,6 +7765,19 @@ msgid "" "increased. IGMP is robust to (Robustness-1) packet losses" msgstr "" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:171 +msgid "" +"The rule target is a jump to another rule specified by its priority value" +msgstr "" + +#: 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 +msgid "" +"The rule target is a table lookup ID: a numeric table index ranging from 0 " +"to 65535 or symbol alias declared in /etc/iproute2/rt_tables. Special " +"aliases local (255), main (254) and default (253) are also valid" +msgstr "" + #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1371 msgid "The selected %s mode is incompatible with %s encryption" msgstr "Le mode %s sélectionné n'est pas compatible avec le chiffrement %s" @@ -7883,7 +7984,7 @@ msgstr "Synchronisation de l'heure" #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:653 msgid "Time in milliseconds" -msgstr "" +msgstr "Temps en millisecondes" #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:527 msgid "Time in seconds to spend in listening and learning states" @@ -8005,7 +8106,7 @@ msgstr "Type" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:181 msgid "Type of service" -msgstr "" +msgstr "Type de service" #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:328 msgid "UDP:" @@ -8402,6 +8503,10 @@ msgstr "Groupe d’utilisateurs" msgid "User certificate (PEM encoded)" msgstr "Certificat utilisateur (codé PEM)" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:186 +msgid "User identifier" +msgstr "" + #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:132 msgid "User key (PEM encoded)" msgstr "Clé utilisateur (codée PEM)" @@ -8460,7 +8565,7 @@ msgstr "Port local VPN" #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:96 msgid "VPN Protocol" -msgstr "" +msgstr "Protocole VPN" #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:102 #: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:42 @@ -8619,6 +8724,12 @@ msgid "" "preference value are considered first when allocating subnets." msgstr "" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:109 +msgid "" +"When enabled, gateway is on link even if the gateway does not match any " +"interface prefix" +msgstr "" + #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1537 msgid "" "When using a PSK, the PMK can be automatically generated. When enabled, the " diff --git a/modules/luci-base/po/he/base.po b/modules/luci-base/po/he/base.po index 2a1e764f6c..8e9a6e7b0a 100644 --- a/modules/luci-base/po/he/base.po +++ b/modules/luci-base/po/he/base.po @@ -1667,6 +1667,10 @@ msgid "" "priority on incoming frames" msgstr "" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:86 +msgid "Defines a specific MTU for this route" +msgstr "" + #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:970 msgid "Delegate IPv6 prefixes" msgstr "" @@ -1804,7 +1808,7 @@ msgid "Directory" msgstr "" #: 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/routes.js:200 #: 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" @@ -3408,6 +3412,10 @@ msgid "" "classes." msgstr "" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:196 +msgid "If set, the meaning of the match options is inverted" +msgstr "" + #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:254 #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:360 msgid "" @@ -3735,7 +3743,7 @@ msgstr "" msgid "Invalid username and/or password! Please try again." msgstr "שם משתמש ו/או סיסמה שגויים! אנא נסה שנית." -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:191 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:196 msgid "Invert match" msgstr "" @@ -4654,6 +4662,10 @@ msgstr "" msgid "Network Utilities" msgstr "" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:56 +msgid "Network address" +msgstr "" + #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:491 msgid "Network boot image" msgstr "" @@ -5595,7 +5607,7 @@ msgstr "" msgid "Prefix Delegated" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:186 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:191 msgid "Prefix suppressor" msgstr "" @@ -5854,6 +5866,12 @@ msgstr "" msgid "Refreshing" msgstr "" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:191 +msgid "" +"Reject routing decisions that have a prefix length less than or equal to the " +"specified value" +msgstr "" + #: modules/luci-compat/luasrc/model/network/proto_relay.lua:153 #: protocols/luci-proto-relay/htdocs/luci-static/resources/protocol/relay.js:39 msgid "Relay" @@ -6563,6 +6581,13 @@ msgid "" "unless the <em>Local IPv6 DNS server</em> option is disabled." msgstr "" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:186 +msgid "" +"Specifies an individual UID or range of UIDs to match, e.g. 1000 to match " +"corresponding UID or 1000-1005 to inclusively match all UIDs within the " +"corresponding range" +msgstr "" + #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:343 msgid "" "Specifies that duplicate frames (received on inactive ports) should be " @@ -6581,10 +6606,18 @@ msgstr "" msgid "Specifies the MII link monitoring frequency in milliseconds" msgstr "" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:181 +msgid "Specifies the TOS value to match in IP headers" +msgstr "" + #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:261 msgid "Specifies the aggregation selection logic to use" msgstr "" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:159 +msgid "Specifies the destination subnet to match (CIDR notation)" +msgstr "" + #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:292 msgid "Specifies the directory the device is attached to" msgstr "" @@ -6596,6 +6629,22 @@ msgid "" "stateful DHCPv6." msgstr "" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:176 +msgid "" +"Specifies the fwmark and optionally its mask to match, e.g. 0xFF to match " +"mark 255 or 0x0/0x1 to match any even mark value" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:144 +msgid "Specifies the incoming logical interface name" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:41 +msgid "" +"Specifies the logical interface name of the parent (or master) interface " +"this route belongs to" +msgstr "" + #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:254 msgid "" "Specifies the mac-address for the actor in protocol packet exchanges " @@ -6631,6 +6680,13 @@ msgstr "" msgid "Specifies the mode to be used for this bonding interface" msgstr "" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:75 +msgid "" +"Specifies the network gateway. If omitted, the gateway from the parent " +"interface is taken if any, otherwise creates a link scope route. If set to " +"0.0.0.0 no gateway will be specified for the route" +msgstr "" + #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:334 msgid "" "Specifies the number of IGMP membership reports to be issued after a " @@ -6655,6 +6711,20 @@ msgid "" "sends learning packets to each slaves peer switch" msgstr "" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:129 +msgid "Specifies the ordering of the IP rules" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:155 +msgid "Specifies the outgoing logical interface name" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:99 +msgid "" +"Specifies the preferred source address when sending to destinations covered " +"by the target" +msgstr "" + #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:375 msgid "Specifies the quantity of ARP IP targets that must be reachable" msgstr "" @@ -6671,6 +6741,22 @@ msgid "" "active slave or recovery of the primary slave occurs" msgstr "" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:79 +msgid "Specifies the route metric to use" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:45 +msgid "Specifies the route type to be created" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:136 +msgid "Specifies the rule target routing action" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:148 +msgid "Specifies the source subnet to match (CIDR notation)" +msgstr "" + #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:246 msgid "Specifies the system priority" msgstr "" @@ -7356,6 +7442,19 @@ msgid "" "increased. IGMP is robust to (Robustness-1) packet losses" msgstr "" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:171 +msgid "" +"The rule target is a jump to another rule specified by its priority value" +msgstr "" + +#: 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 +msgid "" +"The rule target is a table lookup ID: a numeric table index ranging from 0 " +"to 65535 or symbol alias declared in /etc/iproute2/rt_tables. Special " +"aliases local (255), main (254) and default (253) are also valid" +msgstr "" + #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1371 msgid "The selected %s mode is incompatible with %s encryption" msgstr "" @@ -8017,6 +8116,10 @@ msgstr "" msgid "User certificate (PEM encoded)" msgstr "" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:186 +msgid "User identifier" +msgstr "" + #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:132 msgid "User key (PEM encoded)" msgstr "" @@ -8226,6 +8329,12 @@ msgid "" "preference value are considered first when allocating subnets." msgstr "" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:109 +msgid "" +"When enabled, gateway is on link even if the gateway does not match any " +"interface prefix" +msgstr "" + #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1537 msgid "" "When using a PSK, the PMK can be automatically generated. When enabled, the " diff --git a/modules/luci-base/po/hi/base.po b/modules/luci-base/po/hi/base.po index dd4545b20c..12d99ac6ec 100644 --- a/modules/luci-base/po/hi/base.po +++ b/modules/luci-base/po/hi/base.po @@ -1648,6 +1648,10 @@ msgid "" "priority on incoming frames" msgstr "" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:86 +msgid "Defines a specific MTU for this route" +msgstr "" + #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:970 msgid "Delegate IPv6 prefixes" msgstr "" @@ -1785,7 +1789,7 @@ msgid "Directory" msgstr "" #: 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/routes.js:200 #: 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" @@ -3387,6 +3391,10 @@ msgid "" "classes." msgstr "" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:196 +msgid "If set, the meaning of the match options is inverted" +msgstr "" + #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:254 #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:360 msgid "" @@ -3714,7 +3722,7 @@ msgstr "" msgid "Invalid username and/or password! Please try again." msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:191 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:196 msgid "Invert match" msgstr "" @@ -4633,6 +4641,10 @@ msgstr "" msgid "Network Utilities" msgstr "" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:56 +msgid "Network address" +msgstr "" + #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:491 msgid "Network boot image" msgstr "" @@ -5574,7 +5586,7 @@ msgstr "" msgid "Prefix Delegated" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:186 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:191 msgid "Prefix suppressor" msgstr "" @@ -5833,6 +5845,12 @@ msgstr "" msgid "Refreshing" msgstr "" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:191 +msgid "" +"Reject routing decisions that have a prefix length less than or equal to the " +"specified value" +msgstr "" + #: modules/luci-compat/luasrc/model/network/proto_relay.lua:153 #: protocols/luci-proto-relay/htdocs/luci-static/resources/protocol/relay.js:39 msgid "Relay" @@ -6540,6 +6558,13 @@ msgid "" "unless the <em>Local IPv6 DNS server</em> option is disabled." msgstr "" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:186 +msgid "" +"Specifies an individual UID or range of UIDs to match, e.g. 1000 to match " +"corresponding UID or 1000-1005 to inclusively match all UIDs within the " +"corresponding range" +msgstr "" + #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:343 msgid "" "Specifies that duplicate frames (received on inactive ports) should be " @@ -6558,10 +6583,18 @@ msgstr "" msgid "Specifies the MII link monitoring frequency in milliseconds" msgstr "" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:181 +msgid "Specifies the TOS value to match in IP headers" +msgstr "" + #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:261 msgid "Specifies the aggregation selection logic to use" msgstr "" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:159 +msgid "Specifies the destination subnet to match (CIDR notation)" +msgstr "" + #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:292 msgid "Specifies the directory the device is attached to" msgstr "" @@ -6573,6 +6606,22 @@ msgid "" "stateful DHCPv6." msgstr "" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:176 +msgid "" +"Specifies the fwmark and optionally its mask to match, e.g. 0xFF to match " +"mark 255 or 0x0/0x1 to match any even mark value" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:144 +msgid "Specifies the incoming logical interface name" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:41 +msgid "" +"Specifies the logical interface name of the parent (or master) interface " +"this route belongs to" +msgstr "" + #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:254 msgid "" "Specifies the mac-address for the actor in protocol packet exchanges " @@ -6608,6 +6657,13 @@ msgstr "" msgid "Specifies the mode to be used for this bonding interface" msgstr "" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:75 +msgid "" +"Specifies the network gateway. If omitted, the gateway from the parent " +"interface is taken if any, otherwise creates a link scope route. If set to " +"0.0.0.0 no gateway will be specified for the route" +msgstr "" + #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:334 msgid "" "Specifies the number of IGMP membership reports to be issued after a " @@ -6632,6 +6688,20 @@ msgid "" "sends learning packets to each slaves peer switch" msgstr "" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:129 +msgid "Specifies the ordering of the IP rules" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:155 +msgid "Specifies the outgoing logical interface name" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:99 +msgid "" +"Specifies the preferred source address when sending to destinations covered " +"by the target" +msgstr "" + #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:375 msgid "Specifies the quantity of ARP IP targets that must be reachable" msgstr "" @@ -6648,6 +6718,22 @@ msgid "" "active slave or recovery of the primary slave occurs" msgstr "" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:79 +msgid "Specifies the route metric to use" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:45 +msgid "Specifies the route type to be created" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:136 +msgid "Specifies the rule target routing action" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:148 +msgid "Specifies the source subnet to match (CIDR notation)" +msgstr "" + #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:246 msgid "Specifies the system priority" msgstr "" @@ -7330,6 +7416,19 @@ msgid "" "increased. IGMP is robust to (Robustness-1) packet losses" msgstr "" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:171 +msgid "" +"The rule target is a jump to another rule specified by its priority value" +msgstr "" + +#: 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 +msgid "" +"The rule target is a table lookup ID: a numeric table index ranging from 0 " +"to 65535 or symbol alias declared in /etc/iproute2/rt_tables. Special " +"aliases local (255), main (254) and default (253) are also valid" +msgstr "" + #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1371 msgid "The selected %s mode is incompatible with %s encryption" msgstr "" @@ -7990,6 +8089,10 @@ msgstr "" msgid "User certificate (PEM encoded)" msgstr "" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:186 +msgid "User identifier" +msgstr "" + #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:132 msgid "User key (PEM encoded)" msgstr "" @@ -8199,6 +8302,12 @@ msgid "" "preference value are considered first when allocating subnets." msgstr "" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:109 +msgid "" +"When enabled, gateway is on link even if the gateway does not match any " +"interface prefix" +msgstr "" + #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1537 msgid "" "When using a PSK, the PMK can be automatically generated. When enabled, the " diff --git a/modules/luci-base/po/hu/base.po b/modules/luci-base/po/hu/base.po index cc3fa71634..9f66fbcc73 100644 --- a/modules/luci-base/po/hu/base.po +++ b/modules/luci-base/po/hu/base.po @@ -1718,6 +1718,10 @@ msgid "" "priority on incoming frames" msgstr "" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:86 +msgid "Defines a specific MTU for this route" +msgstr "" + #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:970 msgid "Delegate IPv6 prefixes" msgstr "" @@ -1855,7 +1859,7 @@ msgid "Directory" msgstr "Könyvtár" #: 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/routes.js:200 #: 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" @@ -3498,6 +3502,10 @@ msgid "" "classes." msgstr "" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:196 +msgid "If set, the meaning of the match options is inverted" +msgstr "" + #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:254 #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:360 msgid "" @@ -3847,7 +3855,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:191 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:196 msgid "Invert match" msgstr "" @@ -4795,6 +4803,10 @@ msgstr "Hálózati SSID" msgid "Network Utilities" msgstr "Hálózati segédprogramok" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:56 +msgid "Network address" +msgstr "" + #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:491 msgid "Network boot image" msgstr "Hálózati rendszerindító lemezkép" @@ -5763,7 +5775,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:186 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:191 msgid "Prefix suppressor" msgstr "" @@ -6037,6 +6049,12 @@ msgstr "Hivatkozások" msgid "Refreshing" msgstr "Frissítés" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:191 +msgid "" +"Reject routing decisions that have a prefix length less than or equal to the " +"specified value" +msgstr "" + #: modules/luci-compat/luasrc/model/network/proto_relay.lua:153 #: protocols/luci-proto-relay/htdocs/luci-static/resources/protocol/relay.js:39 msgid "Relay" @@ -6763,6 +6781,13 @@ msgid "" "unless the <em>Local IPv6 DNS server</em> option is disabled." msgstr "" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:186 +msgid "" +"Specifies an individual UID or range of UIDs to match, e.g. 1000 to match " +"corresponding UID or 1000-1005 to inclusively match all UIDs within the " +"corresponding range" +msgstr "" + #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:343 msgid "" "Specifies that duplicate frames (received on inactive ports) should be " @@ -6781,10 +6806,18 @@ msgstr "" msgid "Specifies the MII link monitoring frequency in milliseconds" msgstr "" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:181 +msgid "Specifies the TOS value to match in IP headers" +msgstr "" + #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:261 msgid "Specifies the aggregation selection logic to use" msgstr "" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:159 +msgid "Specifies the destination subnet to match (CIDR notation)" +msgstr "" + #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:292 msgid "Specifies the directory the device is attached to" msgstr "Megadja azt a könyvtárat, amelyhez az eszköz csatlakoztatva van" @@ -6796,6 +6829,22 @@ msgid "" "stateful DHCPv6." msgstr "" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:176 +msgid "" +"Specifies the fwmark and optionally its mask to match, e.g. 0xFF to match " +"mark 255 or 0x0/0x1 to match any even mark value" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:144 +msgid "Specifies the incoming logical interface name" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:41 +msgid "" +"Specifies the logical interface name of the parent (or master) interface " +"this route belongs to" +msgstr "" + #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:254 msgid "" "Specifies the mac-address for the actor in protocol packet exchanges " @@ -6839,6 +6888,13 @@ msgstr "" msgid "Specifies the mode to be used for this bonding interface" msgstr "" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:75 +msgid "" +"Specifies the network gateway. If omitted, the gateway from the parent " +"interface is taken if any, otherwise creates a link scope route. If set to " +"0.0.0.0 no gateway will be specified for the route" +msgstr "" + #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:334 msgid "" "Specifies the number of IGMP membership reports to be issued after a " @@ -6863,6 +6919,20 @@ msgid "" "sends learning packets to each slaves peer switch" msgstr "" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:129 +msgid "Specifies the ordering of the IP rules" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:155 +msgid "Specifies the outgoing logical interface name" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:99 +msgid "" +"Specifies the preferred source address when sending to destinations covered " +"by the target" +msgstr "" + #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:375 msgid "Specifies the quantity of ARP IP targets that must be reachable" msgstr "" @@ -6879,6 +6949,22 @@ msgid "" "active slave or recovery of the primary slave occurs" msgstr "" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:79 +msgid "Specifies the route metric to use" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:45 +msgid "Specifies the route type to be created" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:136 +msgid "Specifies the rule target routing action" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:148 +msgid "Specifies the source subnet to match (CIDR notation)" +msgstr "" + #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:246 msgid "Specifies the system priority" msgstr "" @@ -7604,6 +7690,19 @@ msgid "" "increased. IGMP is robust to (Robustness-1) packet losses" msgstr "" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:171 +msgid "" +"The rule target is a jump to another rule specified by its priority value" +msgstr "" + +#: 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 +msgid "" +"The rule target is a table lookup ID: a numeric table index ranging from 0 " +"to 65535 or symbol alias declared in /etc/iproute2/rt_tables. Special " +"aliases local (255), main (254) and default (253) are also valid" +msgstr "" + #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1371 msgid "The selected %s mode is incompatible with %s encryption" msgstr "A kiválasztott %s mód nem használható együtt %s titkosítással" @@ -8322,6 +8421,10 @@ msgstr "Felhasználói csoport" msgid "User certificate (PEM encoded)" msgstr "Felhasználói tanúsítvány (PEM kódolású)" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:186 +msgid "User identifier" +msgstr "" + #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:132 msgid "User key (PEM encoded)" msgstr "Felhasználói kulcs (PEM kódolású)" @@ -8540,6 +8643,12 @@ msgid "" "preference value are considered first when allocating subnets." msgstr "" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:109 +msgid "" +"When enabled, gateway is on link even if the gateway does not match any " +"interface prefix" +msgstr "" + #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1537 msgid "" "When using a PSK, the PMK can be automatically generated. When enabled, the " diff --git a/modules/luci-base/po/it/base.po b/modules/luci-base/po/it/base.po index a76b08583a..9b71712df5 100644 --- a/modules/luci-base/po/it/base.po +++ b/modules/luci-base/po/it/base.po @@ -3,8 +3,8 @@ msgstr "" "Project-Id-Version: LuCI\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2009-06-10 03:40+0200\n" -"PO-Revision-Date: 2021-12-23 16:09+0000\n" -"Last-Translator: davidevertuani <davide.vertuani@gmail.com>\n" +"PO-Revision-Date: 2022-02-18 23:01+0000\n" +"Last-Translator: pisquan8 <cimurro@outlook.de>\n" "Language-Team: Italian <https://hosted.weblate.org/projects/openwrt/luci/it/>" "\n" "Language: it\n" @@ -12,7 +12,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.10.1\n" +"X-Generator: Weblate 4.11-dev\n" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1516 msgid "%.1f dB" @@ -1722,6 +1722,10 @@ msgid "" "priority on incoming frames" msgstr "" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:86 +msgid "Defines a specific MTU for this route" +msgstr "" + #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:970 msgid "Delegate IPv6 prefixes" msgstr "" @@ -1860,7 +1864,7 @@ msgid "Directory" msgstr "Directory" #: 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/routes.js:200 #: 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" @@ -2085,7 +2089,7 @@ msgstr "" #: modules/luci-base/htdocs/luci-static/resources/form.js:2696 msgid "Drag to reorder" -msgstr "" +msgstr "Trascina per ordinare" #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:342 msgid "Drop Duplicate Frames" @@ -3498,6 +3502,10 @@ msgid "" "classes." msgstr "" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:196 +msgid "If set, the meaning of the match options is inverted" +msgstr "" + #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:254 #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:360 msgid "" @@ -3652,7 +3660,7 @@ msgstr "Script di avvio" #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/startup.js:111 msgid "Initscripts" -msgstr "Scripts di avvio" +msgstr "Script di avvio" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1654 msgid "Inner certificate constraint (Domain)" @@ -3838,7 +3846,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:191 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:196 msgid "Invert match" msgstr "" @@ -4208,7 +4216,7 @@ msgstr "Avvio Locale" #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/10_system.js:60 #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:130 msgid "Local Time" -msgstr "Ora locale" +msgstr "Data/ora locale" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:996 msgid "Local ULA" @@ -4776,6 +4784,10 @@ msgstr "" msgid "Network Utilities" msgstr "Utilità di Rete" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:56 +msgid "Network address" +msgstr "" + #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:491 msgid "Network boot image" msgstr "Immagine di avvio di rete" @@ -5037,7 +5049,7 @@ msgstr "" #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:141 msgid "Notes" -msgstr "" +msgstr "Note" #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:187 msgid "Notice" @@ -5559,7 +5571,7 @@ msgstr "" #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:260 msgid "Paste or drag SSH key file…" -msgstr "" +msgstr "Incolla o trascina il file della chiave SSH…" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1587 msgid "Path to CA-Certificate" @@ -5692,7 +5704,7 @@ msgstr "" #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/dropbear.js:21 msgid "Port" -msgstr "Port" +msgstr "Porta" #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:702 msgid "Port isolation" @@ -5726,7 +5738,7 @@ msgstr "" msgid "Prefix Delegated" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:186 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:191 msgid "Prefix suppressor" msgstr "" @@ -5989,6 +6001,12 @@ msgstr "Riferimenti" msgid "Refreshing" msgstr "Auto-aggiornamento" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:191 +msgid "" +"Reject routing decisions that have a prefix length less than or equal to the " +"specified value" +msgstr "" + #: modules/luci-compat/luasrc/model/network/proto_relay.lua:153 #: protocols/luci-proto-relay/htdocs/luci-static/resources/protocol/relay.js:39 msgid "Relay" @@ -6723,6 +6741,13 @@ msgstr "" "server DNS IPv6 a meno che l'opzione <em>Server DNS IPv6 locale</em> sia " "disabilitata." +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:186 +msgid "" +"Specifies an individual UID or range of UIDs to match, e.g. 1000 to match " +"corresponding UID or 1000-1005 to inclusively match all UIDs within the " +"corresponding range" +msgstr "" + #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:343 msgid "" "Specifies that duplicate frames (received on inactive ports) should be " @@ -6741,10 +6766,18 @@ msgstr "" msgid "Specifies the MII link monitoring frequency in milliseconds" msgstr "" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:181 +msgid "Specifies the TOS value to match in IP headers" +msgstr "" + #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:261 msgid "Specifies the aggregation selection logic to use" msgstr "" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:159 +msgid "Specifies the destination subnet to match (CIDR notation)" +msgstr "" + #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:292 msgid "Specifies the directory the device is attached to" msgstr "Specifica la cartella a cui è collegato il dispositivo in" @@ -6759,6 +6792,22 @@ msgstr "" "\">RA</abbr>, ad esempio per indicare ai client di richiedere ulteriori " "informazioni tramite DHCPv6 con stato (stateful)." +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:176 +msgid "" +"Specifies the fwmark and optionally its mask to match, e.g. 0xFF to match " +"mark 255 or 0x0/0x1 to match any even mark value" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:144 +msgid "Specifies the incoming logical interface name" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:41 +msgid "" +"Specifies the logical interface name of the parent (or master) interface " +"this route belongs to" +msgstr "" + #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:254 msgid "" "Specifies the mac-address for the actor in protocol packet exchanges " @@ -6802,6 +6851,13 @@ msgstr "" msgid "Specifies the mode to be used for this bonding interface" msgstr "" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:75 +msgid "" +"Specifies the network gateway. If omitted, the gateway from the parent " +"interface is taken if any, otherwise creates a link scope route. If set to " +"0.0.0.0 no gateway will be specified for the route" +msgstr "" + #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:334 msgid "" "Specifies the number of IGMP membership reports to be issued after a " @@ -6826,6 +6882,20 @@ msgid "" "sends learning packets to each slaves peer switch" msgstr "" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:129 +msgid "Specifies the ordering of the IP rules" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:155 +msgid "Specifies the outgoing logical interface name" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:99 +msgid "" +"Specifies the preferred source address when sending to destinations covered " +"by the target" +msgstr "" + #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:375 msgid "Specifies the quantity of ARP IP targets that must be reachable" msgstr "" @@ -6842,6 +6912,22 @@ msgid "" "active slave or recovery of the primary slave occurs" msgstr "" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:79 +msgid "Specifies the route metric to use" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:45 +msgid "Specifies the route type to be created" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:136 +msgid "Specifies the rule target routing action" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:148 +msgid "Specifies the source subnet to match (CIDR notation)" +msgstr "" + #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:246 msgid "Specifies the system priority" msgstr "" @@ -7161,11 +7247,11 @@ msgstr "Dimensione buffer log di sistema" #: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:69 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:89 msgid "System running in recovery (initramfs) mode." -msgstr "" +msgstr "Sistema in esecuzione in modalità di ripristino (initramfs)." #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:86 msgid "Sytem running in recovery (initramfs) mode." -msgstr "" +msgstr "Sistema in esecuzione in modalità di ripristino (initramfs)." #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:338 msgid "TCP:" @@ -7205,7 +7291,7 @@ msgstr "Destinazione" #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/10_system.js:57 msgid "Target Platform" -msgstr "" +msgstr "Target/Piattaforma" #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:103 msgid "Target network" @@ -7579,6 +7665,19 @@ msgid "" "increased. IGMP is robust to (Robustness-1) packet losses" msgstr "" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:171 +msgid "" +"The rule target is a jump to another rule specified by its priority value" +msgstr "" + +#: 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 +msgid "" +"The rule target is a table lookup ID: a numeric table index ranging from 0 " +"to 65535 or symbol alias declared in /etc/iproute2/rt_tables. Special " +"aliases local (255), main (254) and default (253) are also valid" +msgstr "" + #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1371 msgid "The selected %s mode is incompatible with %s encryption" msgstr "La modalità %s selezionata non è compatibile con la crittografia %s" @@ -7625,10 +7724,13 @@ msgid "" "listed below. Press \"Continue\" to restore the backup and reboot, or " "\"Cancel\" to abort the operation." msgstr "" +"L'archivio di backup caricato sembra essere valido e contiene i file " +"elencati di seguito. Premere \"Continua\" per ripristinare il backup e " +"riavviare o \"Annulla\" per interrompere l'operazione." #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:115 msgid "The uploaded backup archive is not readable" -msgstr "" +msgstr "L'archivio di backup caricato non è leggibile" #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:249 msgid "The uploaded firmware does not allow keeping current configuration." @@ -7640,7 +7742,7 @@ msgid "" "you choose the generic image format for your platform." msgstr "" "Il file immagine caricato non contiene un formato supportato. Assicurati di " -"scegliere il formato immagine generico per la tua piattaforma." +"aver scelto il formato immagine generico per la tua piattaforma." #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1446 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1458 @@ -7700,6 +7802,8 @@ msgid "" "This is the content of /etc/rc.local. Insert your own commands here (in " "front of 'exit 0') to execute them at the end of the boot process." msgstr "" +"Questo è il contenuto di /etc/rc.local. Inserisci qui i tuoi comandi (sopra " +"a 'exit 0') per eseguirli alla fine del processo di avvio." #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6in4.js:54 msgid "" @@ -8060,6 +8164,8 @@ msgstr "Carica" msgid "" "Upload a sysupgrade-compatible image here to replace the running firmware." msgstr "" +"Carica qui un'immagine compatibile con sysupgrade per sostituire il firmware " +"in esecuzione." #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:138 #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:169 @@ -8078,7 +8184,7 @@ msgstr "" #: modules/luci-base/htdocs/luci-static/resources/ui.js:2773 #: modules/luci-base/htdocs/luci-static/resources/ui.js:3894 msgid "Upload request failed: %s" -msgstr "" +msgstr "Caricamento non riuscito: %s" #: modules/luci-base/htdocs/luci-static/resources/ui.js:3813 #: modules/luci-base/htdocs/luci-static/resources/ui.js:3867 @@ -8275,6 +8381,10 @@ msgstr "" msgid "User certificate (PEM encoded)" msgstr "" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:186 +msgid "User identifier" +msgstr "" + #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:132 msgid "User key (PEM encoded)" msgstr "" @@ -8409,7 +8519,7 @@ msgstr "" #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:196 msgid "Verifying the uploaded image file." -msgstr "" +msgstr "Verifica del file immagine caricato." #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:957 msgid "Very High" @@ -8488,6 +8598,12 @@ msgid "" "preference value are considered first when allocating subnets." msgstr "" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:109 +msgid "" +"When enabled, gateway is on link even if the gateway does not match any " +"interface prefix" +msgstr "" + #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1537 msgid "" "When using a PSK, the PMK can be automatically generated. When enabled, the " @@ -8605,11 +8721,11 @@ msgid "" "after a device reboot.<br /><strong>Warning: If you disable essential init " "scripts like \"network\", your device might become inaccessible!</strong>" msgstr "" -"È possibile abilitare o disabilitare gli script di inizializzazione " -"installati qui. Le modifiche saranno applicate dopo il riavvio del " -"dispositivo <br/><strong>Attenzione: Se si disattiva gli script di " -"inizializzazione essenziali come ad esempio la \"rete\", il dispositivo " -"potrebbe diventare inaccessibile!</strong>" +"Qui è possibile abilitare o disabilitare gli script di inizializzazione " +"installati. Le modifiche verranno applicate dopo il riavvio del dispositivo. " +"<br /> <strong> Attenzione: se disabiliti script di inizializzazione " +"essenziali come \"network\", il tuo dispositivo potrebbe diventare " +"inaccessibile! </strong>" #: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:80 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:97 diff --git a/modules/luci-base/po/ja/base.po b/modules/luci-base/po/ja/base.po index 28acf1e13d..c5c201467f 100644 --- a/modules/luci-base/po/ja/base.po +++ b/modules/luci-base/po/ja/base.po @@ -1725,6 +1725,10 @@ msgstr "" "VLAN ヘッダー優先度フィールドから Linux 内部パケット優先度へのマッピングを定" "義します(受信フレーム用)" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:86 +msgid "Defines a specific MTU for this route" +msgstr "" + #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:970 msgid "Delegate IPv6 prefixes" msgstr "IPv6 プレフィックスの委任" @@ -1862,7 +1866,7 @@ msgid "Directory" msgstr "ディレクトリ" #: 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/routes.js:200 #: 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" @@ -3520,6 +3524,10 @@ msgid "" "classes." msgstr "" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:196 +msgid "If set, the meaning of the match options is inverted" +msgstr "" + #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:254 #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:360 msgid "" @@ -3860,7 +3868,7 @@ msgstr "" "ユーザー名とパスワードのどちらかもしくは両方が間違っています!もう一度入力し" "てください。" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:191 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:196 msgid "Invert match" msgstr "" @@ -4811,6 +4819,10 @@ msgstr "ネットワークSSID" msgid "Network Utilities" msgstr "ネットワークユーティリティ" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:56 +msgid "Network address" +msgstr "" + #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:491 msgid "Network boot image" msgstr "ネットワークブートイメージ" @@ -5777,7 +5789,7 @@ msgstr "UMTSを優先" msgid "Prefix Delegated" msgstr "委任されたプレフィックス(PD)" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:186 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:191 msgid "Prefix suppressor" msgstr "" @@ -6055,6 +6067,12 @@ msgstr "参照" msgid "Refreshing" msgstr "更新中" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:191 +msgid "" +"Reject routing decisions that have a prefix length less than or equal to the " +"specified value" +msgstr "" + #: modules/luci-compat/luasrc/model/network/proto_relay.lua:153 #: protocols/luci-proto-relay/htdocs/luci-static/resources/protocol/relay.js:39 msgid "Relay" @@ -6784,6 +6802,13 @@ msgstr "" "す。未指定である場合、<em>ローカル IPv6 DNS サーバー</em>オプションが無効でな" "い限り、デバイスは自身を IPv6 DNS サーバーとしてアナウンスします。" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:186 +msgid "" +"Specifies an individual UID or range of UIDs to match, e.g. 1000 to match " +"corresponding UID or 1000-1005 to inclusively match all UIDs within the " +"corresponding range" +msgstr "" + #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:343 msgid "" "Specifies that duplicate frames (received on inactive ports) should be " @@ -6803,10 +6828,18 @@ msgstr "ARPモニタリングに使用するIPアドレスを指定" msgid "Specifies the MII link monitoring frequency in milliseconds" msgstr "MIIリンクのモニタリング頻度をミリ秒単位で指定" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:181 +msgid "Specifies the TOS value to match in IP headers" +msgstr "" + #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:261 msgid "Specifies the aggregation selection logic to use" msgstr "使用するアグリゲーション選択ロジックを指定" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:159 +msgid "Specifies the destination subnet to match (CIDR notation)" +msgstr "" + #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:292 msgid "Specifies the directory the device is attached to" msgstr "デバイスが接続するディレクトリを指定" @@ -6818,6 +6851,22 @@ msgid "" "stateful DHCPv6." msgstr "" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:176 +msgid "" +"Specifies the fwmark and optionally its mask to match, e.g. 0xFF to match " +"mark 255 or 0x0/0x1 to match any even mark value" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:144 +msgid "Specifies the incoming logical interface name" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:41 +msgid "" +"Specifies the logical interface name of the parent (or master) interface " +"this route belongs to" +msgstr "" + #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:254 #, fuzzy msgid "" @@ -6859,6 +6908,13 @@ msgstr "" msgid "Specifies the mode to be used for this bonding interface" msgstr "このボンディングインターフェースに使用するモードを指定" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:75 +msgid "" +"Specifies the network gateway. If omitted, the gateway from the parent " +"interface is taken if any, otherwise creates a link scope route. If set to " +"0.0.0.0 no gateway will be specified for the route" +msgstr "" + #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:334 #, fuzzy msgid "" @@ -6891,6 +6947,20 @@ msgstr "" "ボンディングドライバが各スレーブピアスイッチにラーニングパケットを送信するイ" "ンスタンス間の秒数を指定" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:129 +msgid "Specifies the ordering of the IP rules" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:155 +msgid "Specifies the outgoing logical interface name" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:99 +msgid "" +"Specifies the preferred source address when sending to destinations covered " +"by the target" +msgstr "" + #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:375 msgid "Specifies the quantity of ARP IP targets that must be reachable" msgstr "到達可能にする必要があるARP IPターゲットの数を指定" @@ -6911,6 +6981,22 @@ msgstr "" "アクティブなスレーブの障害またはプライマリスレーブのリカバリが発生した際の、" "プライマリスレーブの再選択ポリシーを指定" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:79 +msgid "Specifies the route metric to use" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:45 +msgid "Specifies the route type to be created" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:136 +msgid "Specifies the rule target routing action" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:148 +msgid "Specifies the source subnet to match (CIDR notation)" +msgstr "" + #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:246 msgid "Specifies the system priority" msgstr "システムの優先順位を指定" @@ -7651,6 +7737,19 @@ msgid "" "increased. IGMP is robust to (Robustness-1) packet losses" msgstr "" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:171 +msgid "" +"The rule target is a jump to another rule specified by its priority value" +msgstr "" + +#: 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 +msgid "" +"The rule target is a table lookup ID: a numeric table index ranging from 0 " +"to 65535 or symbol alias declared in /etc/iproute2/rt_tables. Special " +"aliases local (255), main (254) and default (253) are also valid" +msgstr "" + #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1371 msgid "The selected %s mode is incompatible with %s encryption" msgstr "選択された%sモードは、%s暗号化と互換性がありません" @@ -8363,6 +8462,10 @@ msgstr "ユーザーグループ" msgid "User certificate (PEM encoded)" msgstr "ユーザー証明書(PEMエンコード)" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:186 +msgid "User identifier" +msgstr "" + #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:132 msgid "User key (PEM encoded)" msgstr "ユーザー鍵(PEMエンコード)" @@ -8579,6 +8682,12 @@ msgid "" "preference value are considered first when allocating subnets." msgstr "" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:109 +msgid "" +"When enabled, gateway is on link even if the gateway does not match any " +"interface prefix" +msgstr "" + #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1537 msgid "" "When using a PSK, the PMK can be automatically generated. When enabled, the " diff --git a/modules/luci-base/po/ko/base.po b/modules/luci-base/po/ko/base.po index cda74ce080..8cb46af793 100644 --- a/modules/luci-base/po/ko/base.po +++ b/modules/luci-base/po/ko/base.po @@ -1679,6 +1679,10 @@ msgid "" "priority on incoming frames" msgstr "" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:86 +msgid "Defines a specific MTU for this route" +msgstr "" + #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:970 msgid "Delegate IPv6 prefixes" msgstr "" @@ -1816,7 +1820,7 @@ msgid "Directory" msgstr "" #: 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/routes.js:200 #: 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" @@ -3432,6 +3436,10 @@ msgid "" "classes." msgstr "" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:196 +msgid "If set, the meaning of the match options is inverted" +msgstr "" + #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:254 #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:360 msgid "" @@ -3759,7 +3767,7 @@ msgstr "" msgid "Invalid username and/or password! Please try again." msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:191 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:196 msgid "Invert match" msgstr "" @@ -4684,6 +4692,10 @@ msgstr "" msgid "Network Utilities" msgstr "네트워크 유틸리티" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:56 +msgid "Network address" +msgstr "" + #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:491 msgid "Network boot image" msgstr "네트워크 boot 이미지" @@ -5627,7 +5639,7 @@ msgstr "" msgid "Prefix Delegated" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:186 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:191 msgid "Prefix suppressor" msgstr "" @@ -5893,6 +5905,12 @@ msgstr "" msgid "Refreshing" msgstr "" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:191 +msgid "" +"Reject routing decisions that have a prefix length less than or equal to the " +"specified value" +msgstr "" + #: modules/luci-compat/luasrc/model/network/proto_relay.lua:153 #: protocols/luci-proto-relay/htdocs/luci-static/resources/protocol/relay.js:39 msgid "Relay" @@ -6609,6 +6627,13 @@ msgid "" "unless the <em>Local IPv6 DNS server</em> option is disabled." msgstr "" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:186 +msgid "" +"Specifies an individual UID or range of UIDs to match, e.g. 1000 to match " +"corresponding UID or 1000-1005 to inclusively match all UIDs within the " +"corresponding range" +msgstr "" + #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:343 msgid "" "Specifies that duplicate frames (received on inactive ports) should be " @@ -6627,10 +6652,18 @@ msgstr "ARP 모니터링에 사용할 IP주소 지정" msgid "Specifies the MII link monitoring frequency in milliseconds" msgstr "" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:181 +msgid "Specifies the TOS value to match in IP headers" +msgstr "" + #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:261 msgid "Specifies the aggregation selection logic to use" msgstr "" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:159 +msgid "Specifies the destination subnet to match (CIDR notation)" +msgstr "" + #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:292 msgid "Specifies the directory the device is attached to" msgstr "디바이스가 연결된 디렉터리 지정" @@ -6642,6 +6675,22 @@ msgid "" "stateful DHCPv6." msgstr "" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:176 +msgid "" +"Specifies the fwmark and optionally its mask to match, e.g. 0xFF to match " +"mark 255 or 0x0/0x1 to match any even mark value" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:144 +msgid "Specifies the incoming logical interface name" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:41 +msgid "" +"Specifies the logical interface name of the parent (or master) interface " +"this route belongs to" +msgstr "" + #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:254 msgid "" "Specifies the mac-address for the actor in protocol packet exchanges " @@ -6677,6 +6726,13 @@ msgstr "" msgid "Specifies the mode to be used for this bonding interface" msgstr "" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:75 +msgid "" +"Specifies the network gateway. If omitted, the gateway from the parent " +"interface is taken if any, otherwise creates a link scope route. If set to " +"0.0.0.0 no gateway will be specified for the route" +msgstr "" + #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:334 msgid "" "Specifies the number of IGMP membership reports to be issued after a " @@ -6701,6 +6757,20 @@ msgid "" "sends learning packets to each slaves peer switch" msgstr "" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:129 +msgid "Specifies the ordering of the IP rules" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:155 +msgid "Specifies the outgoing logical interface name" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:99 +msgid "" +"Specifies the preferred source address when sending to destinations covered " +"by the target" +msgstr "" + #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:375 msgid "Specifies the quantity of ARP IP targets that must be reachable" msgstr "" @@ -6717,6 +6787,22 @@ msgid "" "active slave or recovery of the primary slave occurs" msgstr "" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:79 +msgid "Specifies the route metric to use" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:45 +msgid "Specifies the route type to be created" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:136 +msgid "Specifies the rule target routing action" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:148 +msgid "Specifies the source subnet to match (CIDR notation)" +msgstr "" + #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:246 msgid "Specifies the system priority" msgstr "" @@ -7420,6 +7506,19 @@ msgid "" "increased. IGMP is robust to (Robustness-1) packet losses" msgstr "" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:171 +msgid "" +"The rule target is a jump to another rule specified by its priority value" +msgstr "" + +#: 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 +msgid "" +"The rule target is a table lookup ID: a numeric table index ranging from 0 " +"to 65535 or symbol alias declared in /etc/iproute2/rt_tables. Special " +"aliases local (255), main (254) and default (253) are also valid" +msgstr "" + #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1371 msgid "The selected %s mode is incompatible with %s encryption" msgstr "선택된 %s 모드는 %s 암호화 방식과 호환되지 않습니다" @@ -8113,6 +8212,10 @@ msgstr "" msgid "User certificate (PEM encoded)" msgstr "" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:186 +msgid "User identifier" +msgstr "" + #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:132 msgid "User key (PEM encoded)" msgstr "" @@ -8322,6 +8425,12 @@ msgid "" "preference value are considered first when allocating subnets." msgstr "" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:109 +msgid "" +"When enabled, gateway is on link even if the gateway does not match any " +"interface prefix" +msgstr "" + #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1537 msgid "" "When using a PSK, the PMK can be automatically generated. When enabled, the " diff --git a/modules/luci-base/po/mr/base.po b/modules/luci-base/po/mr/base.po index d884cd3518..90326d4d67 100644 --- a/modules/luci-base/po/mr/base.po +++ b/modules/luci-base/po/mr/base.po @@ -1646,6 +1646,10 @@ msgid "" "priority on incoming frames" msgstr "" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:86 +msgid "Defines a specific MTU for this route" +msgstr "" + #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:970 msgid "Delegate IPv6 prefixes" msgstr "" @@ -1783,7 +1787,7 @@ msgid "Directory" msgstr "" #: 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/routes.js:200 #: 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" @@ -3385,6 +3389,10 @@ msgid "" "classes." msgstr "" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:196 +msgid "If set, the meaning of the match options is inverted" +msgstr "" + #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:254 #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:360 msgid "" @@ -3712,7 +3720,7 @@ msgstr "" msgid "Invalid username and/or password! Please try again." msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:191 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:196 msgid "Invert match" msgstr "" @@ -4631,6 +4639,10 @@ msgstr "" msgid "Network Utilities" msgstr "" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:56 +msgid "Network address" +msgstr "" + #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:491 msgid "Network boot image" msgstr "" @@ -5572,7 +5584,7 @@ msgstr "" msgid "Prefix Delegated" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:186 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:191 msgid "Prefix suppressor" msgstr "" @@ -5831,6 +5843,12 @@ msgstr "" msgid "Refreshing" msgstr "" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:191 +msgid "" +"Reject routing decisions that have a prefix length less than or equal to the " +"specified value" +msgstr "" + #: modules/luci-compat/luasrc/model/network/proto_relay.lua:153 #: protocols/luci-proto-relay/htdocs/luci-static/resources/protocol/relay.js:39 msgid "Relay" @@ -6538,6 +6556,13 @@ msgid "" "unless the <em>Local IPv6 DNS server</em> option is disabled." msgstr "" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:186 +msgid "" +"Specifies an individual UID or range of UIDs to match, e.g. 1000 to match " +"corresponding UID or 1000-1005 to inclusively match all UIDs within the " +"corresponding range" +msgstr "" + #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:343 msgid "" "Specifies that duplicate frames (received on inactive ports) should be " @@ -6556,10 +6581,18 @@ msgstr "" msgid "Specifies the MII link monitoring frequency in milliseconds" msgstr "" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:181 +msgid "Specifies the TOS value to match in IP headers" +msgstr "" + #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:261 msgid "Specifies the aggregation selection logic to use" msgstr "" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:159 +msgid "Specifies the destination subnet to match (CIDR notation)" +msgstr "" + #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:292 msgid "Specifies the directory the device is attached to" msgstr "" @@ -6571,6 +6604,22 @@ msgid "" "stateful DHCPv6." msgstr "" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:176 +msgid "" +"Specifies the fwmark and optionally its mask to match, e.g. 0xFF to match " +"mark 255 or 0x0/0x1 to match any even mark value" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:144 +msgid "Specifies the incoming logical interface name" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:41 +msgid "" +"Specifies the logical interface name of the parent (or master) interface " +"this route belongs to" +msgstr "" + #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:254 msgid "" "Specifies the mac-address for the actor in protocol packet exchanges " @@ -6606,6 +6655,13 @@ msgstr "" msgid "Specifies the mode to be used for this bonding interface" msgstr "" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:75 +msgid "" +"Specifies the network gateway. If omitted, the gateway from the parent " +"interface is taken if any, otherwise creates a link scope route. If set to " +"0.0.0.0 no gateway will be specified for the route" +msgstr "" + #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:334 msgid "" "Specifies the number of IGMP membership reports to be issued after a " @@ -6630,6 +6686,20 @@ msgid "" "sends learning packets to each slaves peer switch" msgstr "" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:129 +msgid "Specifies the ordering of the IP rules" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:155 +msgid "Specifies the outgoing logical interface name" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:99 +msgid "" +"Specifies the preferred source address when sending to destinations covered " +"by the target" +msgstr "" + #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:375 msgid "Specifies the quantity of ARP IP targets that must be reachable" msgstr "" @@ -6646,6 +6716,22 @@ msgid "" "active slave or recovery of the primary slave occurs" msgstr "" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:79 +msgid "Specifies the route metric to use" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:45 +msgid "Specifies the route type to be created" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:136 +msgid "Specifies the rule target routing action" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:148 +msgid "Specifies the source subnet to match (CIDR notation)" +msgstr "" + #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:246 msgid "Specifies the system priority" msgstr "" @@ -7328,6 +7414,19 @@ msgid "" "increased. IGMP is robust to (Robustness-1) packet losses" msgstr "" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:171 +msgid "" +"The rule target is a jump to another rule specified by its priority value" +msgstr "" + +#: 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 +msgid "" +"The rule target is a table lookup ID: a numeric table index ranging from 0 " +"to 65535 or symbol alias declared in /etc/iproute2/rt_tables. Special " +"aliases local (255), main (254) and default (253) are also valid" +msgstr "" + #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1371 msgid "The selected %s mode is incompatible with %s encryption" msgstr "" @@ -7988,6 +8087,10 @@ msgstr "" msgid "User certificate (PEM encoded)" msgstr "" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:186 +msgid "User identifier" +msgstr "" + #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:132 msgid "User key (PEM encoded)" msgstr "" @@ -8197,6 +8300,12 @@ msgid "" "preference value are considered first when allocating subnets." msgstr "" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:109 +msgid "" +"When enabled, gateway is on link even if the gateway does not match any " +"interface prefix" +msgstr "" + #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1537 msgid "" "When using a PSK, the PMK can be automatically generated. When enabled, the " diff --git a/modules/luci-base/po/ms/base.po b/modules/luci-base/po/ms/base.po index dd7b906ccf..0db4e531e7 100644 --- a/modules/luci-base/po/ms/base.po +++ b/modules/luci-base/po/ms/base.po @@ -1650,6 +1650,10 @@ msgid "" "priority on incoming frames" msgstr "" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:86 +msgid "Defines a specific MTU for this route" +msgstr "" + #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:970 msgid "Delegate IPv6 prefixes" msgstr "" @@ -1787,7 +1791,7 @@ msgid "Directory" msgstr "" #: 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/routes.js:200 #: 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" @@ -3397,6 +3401,10 @@ msgid "" "classes." msgstr "" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:196 +msgid "If set, the meaning of the match options is inverted" +msgstr "" + #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:254 #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:360 msgid "" @@ -3729,7 +3737,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:191 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:196 msgid "Invert match" msgstr "" @@ -4654,6 +4662,10 @@ msgstr "" msgid "Network Utilities" msgstr "" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:56 +msgid "Network address" +msgstr "" + #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:491 msgid "Network boot image" msgstr "" @@ -5595,7 +5607,7 @@ msgstr "" msgid "Prefix Delegated" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:186 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:191 msgid "Prefix suppressor" msgstr "" @@ -5855,6 +5867,12 @@ msgstr "Rujukan" msgid "Refreshing" msgstr "" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:191 +msgid "" +"Reject routing decisions that have a prefix length less than or equal to the " +"specified value" +msgstr "" + #: modules/luci-compat/luasrc/model/network/proto_relay.lua:153 #: protocols/luci-proto-relay/htdocs/luci-static/resources/protocol/relay.js:39 msgid "Relay" @@ -6564,6 +6582,13 @@ msgid "" "unless the <em>Local IPv6 DNS server</em> option is disabled." msgstr "" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:186 +msgid "" +"Specifies an individual UID or range of UIDs to match, e.g. 1000 to match " +"corresponding UID or 1000-1005 to inclusively match all UIDs within the " +"corresponding range" +msgstr "" + #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:343 msgid "" "Specifies that duplicate frames (received on inactive ports) should be " @@ -6582,10 +6607,18 @@ msgstr "" msgid "Specifies the MII link monitoring frequency in milliseconds" msgstr "" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:181 +msgid "Specifies the TOS value to match in IP headers" +msgstr "" + #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:261 msgid "Specifies the aggregation selection logic to use" msgstr "" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:159 +msgid "Specifies the destination subnet to match (CIDR notation)" +msgstr "" + #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:292 msgid "Specifies the directory the device is attached to" msgstr "" @@ -6597,6 +6630,22 @@ msgid "" "stateful DHCPv6." msgstr "" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:176 +msgid "" +"Specifies the fwmark and optionally its mask to match, e.g. 0xFF to match " +"mark 255 or 0x0/0x1 to match any even mark value" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:144 +msgid "Specifies the incoming logical interface name" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:41 +msgid "" +"Specifies the logical interface name of the parent (or master) interface " +"this route belongs to" +msgstr "" + #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:254 msgid "" "Specifies the mac-address for the actor in protocol packet exchanges " @@ -6632,6 +6681,13 @@ msgstr "" msgid "Specifies the mode to be used for this bonding interface" msgstr "" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:75 +msgid "" +"Specifies the network gateway. If omitted, the gateway from the parent " +"interface is taken if any, otherwise creates a link scope route. If set to " +"0.0.0.0 no gateway will be specified for the route" +msgstr "" + #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:334 msgid "" "Specifies the number of IGMP membership reports to be issued after a " @@ -6656,6 +6712,20 @@ msgid "" "sends learning packets to each slaves peer switch" msgstr "" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:129 +msgid "Specifies the ordering of the IP rules" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:155 +msgid "Specifies the outgoing logical interface name" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:99 +msgid "" +"Specifies the preferred source address when sending to destinations covered " +"by the target" +msgstr "" + #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:375 msgid "Specifies the quantity of ARP IP targets that must be reachable" msgstr "" @@ -6672,6 +6742,22 @@ msgid "" "active slave or recovery of the primary slave occurs" msgstr "" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:79 +msgid "Specifies the route metric to use" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:45 +msgid "Specifies the route type to be created" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:136 +msgid "Specifies the rule target routing action" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:148 +msgid "Specifies the source subnet to match (CIDR notation)" +msgstr "" + #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:246 msgid "Specifies the system priority" msgstr "" @@ -7357,6 +7443,19 @@ msgid "" "increased. IGMP is robust to (Robustness-1) packet losses" msgstr "" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:171 +msgid "" +"The rule target is a jump to another rule specified by its priority value" +msgstr "" + +#: 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 +msgid "" +"The rule target is a table lookup ID: a numeric table index ranging from 0 " +"to 65535 or symbol alias declared in /etc/iproute2/rt_tables. Special " +"aliases local (255), main (254) and default (253) are also valid" +msgstr "" + #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1371 msgid "The selected %s mode is incompatible with %s encryption" msgstr "" @@ -8028,6 +8127,10 @@ msgstr "" msgid "User certificate (PEM encoded)" msgstr "" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:186 +msgid "User identifier" +msgstr "" + #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:132 msgid "User key (PEM encoded)" msgstr "" @@ -8239,6 +8342,12 @@ msgid "" "preference value are considered first when allocating subnets." msgstr "" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:109 +msgid "" +"When enabled, gateway is on link even if the gateway does not match any " +"interface prefix" +msgstr "" + #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1537 msgid "" "When using a PSK, the PMK can be automatically generated. When enabled, the " diff --git a/modules/luci-base/po/nb_NO/base.po b/modules/luci-base/po/nb_NO/base.po index eed7e16c45..2984c76501 100644 --- a/modules/luci-base/po/nb_NO/base.po +++ b/modules/luci-base/po/nb_NO/base.po @@ -1684,6 +1684,10 @@ msgid "" "priority on incoming frames" msgstr "" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:86 +msgid "Defines a specific MTU for this route" +msgstr "" + #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:970 msgid "Delegate IPv6 prefixes" msgstr "" @@ -1821,7 +1825,7 @@ msgid "Directory" msgstr "Katalog" #: 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/routes.js:200 #: 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" @@ -3452,6 +3456,10 @@ msgid "" "classes." msgstr "" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:196 +msgid "If set, the meaning of the match options is inverted" +msgstr "" + #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:254 #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:360 msgid "" @@ -3783,7 +3791,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:191 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:196 msgid "Invert match" msgstr "" @@ -4714,6 +4722,10 @@ msgstr "" msgid "Network Utilities" msgstr "Nettverks Verktøy" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:56 +msgid "Network address" +msgstr "" + #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:491 msgid "Network boot image" msgstr "Nettverks boot image" @@ -5660,7 +5672,7 @@ msgstr "" msgid "Prefix Delegated" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:186 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:191 msgid "Prefix suppressor" msgstr "" @@ -5921,6 +5933,12 @@ msgstr "Referanser" msgid "Refreshing" msgstr "" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:191 +msgid "" +"Reject routing decisions that have a prefix length less than or equal to the " +"specified value" +msgstr "" + #: modules/luci-compat/luasrc/model/network/proto_relay.lua:153 #: protocols/luci-proto-relay/htdocs/luci-static/resources/protocol/relay.js:39 msgid "Relay" @@ -6637,6 +6655,13 @@ msgid "" "unless the <em>Local IPv6 DNS server</em> option is disabled." msgstr "" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:186 +msgid "" +"Specifies an individual UID or range of UIDs to match, e.g. 1000 to match " +"corresponding UID or 1000-1005 to inclusively match all UIDs within the " +"corresponding range" +msgstr "" + #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:343 msgid "" "Specifies that duplicate frames (received on inactive ports) should be " @@ -6655,10 +6680,18 @@ msgstr "" msgid "Specifies the MII link monitoring frequency in milliseconds" msgstr "" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:181 +msgid "Specifies the TOS value to match in IP headers" +msgstr "" + #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:261 msgid "Specifies the aggregation selection logic to use" msgstr "" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:159 +msgid "Specifies the destination subnet to match (CIDR notation)" +msgstr "" + #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:292 msgid "Specifies the directory the device is attached to" msgstr "Hvor lagrings enheten blir tilsluttet filsystemet (f.eks. /mnt/sda1)" @@ -6670,6 +6703,22 @@ msgid "" "stateful DHCPv6." msgstr "" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:176 +msgid "" +"Specifies the fwmark and optionally its mask to match, e.g. 0xFF to match " +"mark 255 or 0x0/0x1 to match any even mark value" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:144 +msgid "Specifies the incoming logical interface name" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:41 +msgid "" +"Specifies the logical interface name of the parent (or master) interface " +"this route belongs to" +msgstr "" + #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:254 msgid "" "Specifies the mac-address for the actor in protocol packet exchanges " @@ -6706,6 +6755,13 @@ msgstr "" msgid "Specifies the mode to be used for this bonding interface" msgstr "" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:75 +msgid "" +"Specifies the network gateway. If omitted, the gateway from the parent " +"interface is taken if any, otherwise creates a link scope route. If set to " +"0.0.0.0 no gateway will be specified for the route" +msgstr "" + #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:334 msgid "" "Specifies the number of IGMP membership reports to be issued after a " @@ -6730,6 +6786,20 @@ msgid "" "sends learning packets to each slaves peer switch" msgstr "" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:129 +msgid "Specifies the ordering of the IP rules" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:155 +msgid "Specifies the outgoing logical interface name" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:99 +msgid "" +"Specifies the preferred source address when sending to destinations covered " +"by the target" +msgstr "" + #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:375 msgid "Specifies the quantity of ARP IP targets that must be reachable" msgstr "" @@ -6746,6 +6816,22 @@ msgid "" "active slave or recovery of the primary slave occurs" msgstr "" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:79 +msgid "Specifies the route metric to use" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:45 +msgid "Specifies the route type to be created" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:136 +msgid "Specifies the rule target routing action" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:148 +msgid "Specifies the source subnet to match (CIDR notation)" +msgstr "" + #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:246 msgid "Specifies the system priority" msgstr "" @@ -7442,6 +7528,19 @@ msgid "" "increased. IGMP is robust to (Robustness-1) packet losses" msgstr "" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:171 +msgid "" +"The rule target is a jump to another rule specified by its priority value" +msgstr "" + +#: 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 +msgid "" +"The rule target is a table lookup ID: a numeric table index ranging from 0 " +"to 65535 or symbol alias declared in /etc/iproute2/rt_tables. Special " +"aliases local (255), main (254) and default (253) are also valid" +msgstr "" + #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1371 msgid "The selected %s mode is incompatible with %s encryption" msgstr "" @@ -8136,6 +8235,10 @@ msgstr "" msgid "User certificate (PEM encoded)" msgstr "" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:186 +msgid "User identifier" +msgstr "" + #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:132 msgid "User key (PEM encoded)" msgstr "" @@ -8347,6 +8450,12 @@ msgid "" "preference value are considered first when allocating subnets." msgstr "" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:109 +msgid "" +"When enabled, gateway is on link even if the gateway does not match any " +"interface prefix" +msgstr "" + #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1537 msgid "" "When using a PSK, the PMK can be automatically generated. When enabled, the " diff --git a/modules/luci-base/po/nl/base.po b/modules/luci-base/po/nl/base.po index 8b33261a8f..c844f06abc 100644 --- a/modules/luci-base/po/nl/base.po +++ b/modules/luci-base/po/nl/base.po @@ -1656,6 +1656,10 @@ msgid "" "priority on incoming frames" msgstr "" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:86 +msgid "Defines a specific MTU for this route" +msgstr "" + #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:970 msgid "Delegate IPv6 prefixes" msgstr "" @@ -1793,7 +1797,7 @@ msgid "Directory" msgstr "" #: 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/routes.js:200 #: 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" @@ -3398,6 +3402,10 @@ msgid "" "classes." msgstr "" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:196 +msgid "If set, the meaning of the match options is inverted" +msgstr "" + #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:254 #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:360 msgid "" @@ -3725,7 +3733,7 @@ msgstr "" msgid "Invalid username and/or password! Please try again." msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:191 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:196 msgid "Invert match" msgstr "" @@ -4648,6 +4656,10 @@ msgstr "" msgid "Network Utilities" msgstr "" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:56 +msgid "Network address" +msgstr "" + #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:491 msgid "Network boot image" msgstr "" @@ -5589,7 +5601,7 @@ msgstr "" msgid "Prefix Delegated" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:186 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:191 msgid "Prefix suppressor" msgstr "" @@ -5848,6 +5860,12 @@ msgstr "" msgid "Refreshing" msgstr "" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:191 +msgid "" +"Reject routing decisions that have a prefix length less than or equal to the " +"specified value" +msgstr "" + #: modules/luci-compat/luasrc/model/network/proto_relay.lua:153 #: protocols/luci-proto-relay/htdocs/luci-static/resources/protocol/relay.js:39 msgid "Relay" @@ -6555,6 +6573,13 @@ msgid "" "unless the <em>Local IPv6 DNS server</em> option is disabled." msgstr "" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:186 +msgid "" +"Specifies an individual UID or range of UIDs to match, e.g. 1000 to match " +"corresponding UID or 1000-1005 to inclusively match all UIDs within the " +"corresponding range" +msgstr "" + #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:343 msgid "" "Specifies that duplicate frames (received on inactive ports) should be " @@ -6573,10 +6598,18 @@ msgstr "" msgid "Specifies the MII link monitoring frequency in milliseconds" msgstr "" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:181 +msgid "Specifies the TOS value to match in IP headers" +msgstr "" + #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:261 msgid "Specifies the aggregation selection logic to use" msgstr "" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:159 +msgid "Specifies the destination subnet to match (CIDR notation)" +msgstr "" + #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:292 msgid "Specifies the directory the device is attached to" msgstr "" @@ -6588,6 +6621,22 @@ msgid "" "stateful DHCPv6." msgstr "" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:176 +msgid "" +"Specifies the fwmark and optionally its mask to match, e.g. 0xFF to match " +"mark 255 or 0x0/0x1 to match any even mark value" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:144 +msgid "Specifies the incoming logical interface name" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:41 +msgid "" +"Specifies the logical interface name of the parent (or master) interface " +"this route belongs to" +msgstr "" + #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:254 msgid "" "Specifies the mac-address for the actor in protocol packet exchanges " @@ -6623,6 +6672,13 @@ msgstr "" msgid "Specifies the mode to be used for this bonding interface" msgstr "" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:75 +msgid "" +"Specifies the network gateway. If omitted, the gateway from the parent " +"interface is taken if any, otherwise creates a link scope route. If set to " +"0.0.0.0 no gateway will be specified for the route" +msgstr "" + #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:334 msgid "" "Specifies the number of IGMP membership reports to be issued after a " @@ -6647,6 +6703,20 @@ msgid "" "sends learning packets to each slaves peer switch" msgstr "" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:129 +msgid "Specifies the ordering of the IP rules" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:155 +msgid "Specifies the outgoing logical interface name" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:99 +msgid "" +"Specifies the preferred source address when sending to destinations covered " +"by the target" +msgstr "" + #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:375 msgid "Specifies the quantity of ARP IP targets that must be reachable" msgstr "" @@ -6663,6 +6733,22 @@ msgid "" "active slave or recovery of the primary slave occurs" msgstr "" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:79 +msgid "Specifies the route metric to use" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:45 +msgid "Specifies the route type to be created" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:136 +msgid "Specifies the rule target routing action" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:148 +msgid "Specifies the source subnet to match (CIDR notation)" +msgstr "" + #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:246 msgid "Specifies the system priority" msgstr "" @@ -7345,6 +7431,19 @@ msgid "" "increased. IGMP is robust to (Robustness-1) packet losses" msgstr "" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:171 +msgid "" +"The rule target is a jump to another rule specified by its priority value" +msgstr "" + +#: 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 +msgid "" +"The rule target is a table lookup ID: a numeric table index ranging from 0 " +"to 65535 or symbol alias declared in /etc/iproute2/rt_tables. Special " +"aliases local (255), main (254) and default (253) are also valid" +msgstr "" + #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1371 msgid "The selected %s mode is incompatible with %s encryption" msgstr "" @@ -8007,6 +8106,10 @@ msgstr "" msgid "User certificate (PEM encoded)" msgstr "" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:186 +msgid "User identifier" +msgstr "" + #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:132 msgid "User key (PEM encoded)" msgstr "" @@ -8216,6 +8319,12 @@ msgid "" "preference value are considered first when allocating subnets." msgstr "" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:109 +msgid "" +"When enabled, gateway is on link even if the gateway does not match any " +"interface prefix" +msgstr "" + #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1537 msgid "" "When using a PSK, the PMK can be automatically generated. When enabled, the " diff --git a/modules/luci-base/po/pl/base.po b/modules/luci-base/po/pl/base.po index 18633fea4b..3b2457f859 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: 2022-01-25 09:41+0000\n" +"PO-Revision-Date: 2022-02-18 23:01+0000\n" "Last-Translator: Matthaiks <kitynska@gmail.com>\n" "Language-Team: Polish <https://hosted.weblate.org/projects/openwrt/luci/pl/>" "\n" @@ -1742,6 +1742,10 @@ msgstr "" "Definiuje mapowanie priorytetu nagłówka VLAN na wewnętrzny priorytet " "pakietów Linuksa w ramkach przychodzących" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:86 +msgid "Defines a specific MTU for this route" +msgstr "Definiuje określoną jednostkę MTU dla tej trasy" + #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:970 msgid "Delegate IPv6 prefixes" msgstr "Delegowanie prefiksów IPv6" @@ -1879,7 +1883,7 @@ msgid "Directory" msgstr "Katalog" #: 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/routes.js:200 #: 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" @@ -3553,6 +3557,10 @@ msgstr "" "Jeżeli jest ustawione, to podsieci niższego rzędu są przydzielane tylko z " "podanych klas prefiksów IPv6." +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:196 +msgid "If set, the meaning of the match options is inverted" +msgstr "Jeżeli jest ustawione, znaczenie opcji dopasowania jest odwrócone" + #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:254 #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:360 msgid "" @@ -3904,7 +3912,7 @@ 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:191 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:196 msgid "Invert match" msgstr "Odwróć dopasowanie" @@ -4863,6 +4871,10 @@ msgstr "Sieć SSID" msgid "Network Utilities" msgstr "Narzędzia sieciowe" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:56 +msgid "Network address" +msgstr "Adres sieci" + #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:491 msgid "Network boot image" msgstr "Sieciowy obraz startowy" @@ -5848,7 +5860,7 @@ msgstr "Preferuj UMTS" msgid "Prefix Delegated" msgstr "Prefiks przekazany" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:186 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:191 msgid "Prefix suppressor" msgstr "Tłumik prefiksu" @@ -6123,6 +6135,14 @@ msgstr "Referencje" msgid "Refreshing" msgstr "Odświeżanie" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:191 +msgid "" +"Reject routing decisions that have a prefix length less than or equal to the " +"specified value" +msgstr "" +"Odrzucaj decyzje dotyczące trasowania, których długość prefiksu jest " +"mniejsza lub równa określonej wartości" + #: modules/luci-compat/luasrc/model/network/proto_relay.lua:153 #: protocols/luci-proto-relay/htdocs/luci-static/resources/protocol/relay.js:39 msgid "Relay" @@ -6872,6 +6892,16 @@ msgstr "" "jako serwer DNS IPv6, chyba że opcja <em>Lokalny serwer DNS IPv6</em> jest " "wyłączona." +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:186 +msgid "" +"Specifies an individual UID or range of UIDs to match, e.g. 1000 to match " +"corresponding UID or 1000-1005 to inclusively match all UIDs within the " +"corresponding range" +msgstr "" +"Określa indywidualny UID lub zakres UID do dopasowania, np. 1000, aby " +"dopasować odpowiedni UID lub 1000-1005, aby łącznie dopasować wszystkie UID " +"w odpowiednim zakresie" + #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:343 msgid "" "Specifies that duplicate frames (received on inactive ports) should be " @@ -6892,10 +6922,18 @@ msgstr "Określa adresy IP używane do monitorowania ARP" msgid "Specifies the MII link monitoring frequency in milliseconds" msgstr "Określa częstotliwość monitorowania łącza MII w milisekundach" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:181 +msgid "Specifies the TOS value to match in IP headers" +msgstr "Określa wartość TOS do dopasowania w nagłówkach IP" + #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:261 msgid "Specifies the aggregation selection logic to use" msgstr "Określa logikę wyboru agregacji, która ma być używana" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:159 +msgid "Specifies the destination subnet to match (CIDR notation)" +msgstr "Określa docelową podsieć do dopasowania (notacja CIDR)" + #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:292 msgid "Specifies the directory the device is attached to" msgstr "Podaje katalog do którego jest podłączone urządzenie" @@ -6910,6 +6948,27 @@ msgstr "" "\">RA</abbr>, na przykład w celu poinstruowania klientów, aby zażądali " "dalszych informacji za pośrednictwem stanowego DHCPv6." +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:176 +msgid "" +"Specifies the fwmark and optionally its mask to match, e.g. 0xFF to match " +"mark 255 or 0x0/0x1 to match any even mark value" +msgstr "" +"Określa fwmark i opcjonalnie jego maskę do dopasowania, np. 0xFF, aby " +"dopasować znacznik 255 lub 0x0/0x1, aby dopasować dowolną parzystą wartość " +"znacznika" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:144 +msgid "Specifies the incoming logical interface name" +msgstr "Określa nazwę przychodzącego interfejsu logicznego" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:41 +msgid "" +"Specifies the logical interface name of the parent (or master) interface " +"this route belongs to" +msgstr "" +"Określa nazwę logicznego interfejsu nadrzędnego (lub głównego) interfejsu, " +"do którego należy ta trasa" + #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:254 msgid "" "Specifies the mac-address for the actor in protocol packet exchanges " @@ -6955,6 +7014,17 @@ msgstr "" msgid "Specifies the mode to be used for this bonding interface" msgstr "Określa tryb, który ma być używany dla tego interfejsu wiązania" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:75 +msgid "" +"Specifies the network gateway. If omitted, the gateway from the parent " +"interface is taken if any, otherwise creates a link scope route. If set to " +"0.0.0.0 no gateway will be specified for the route" +msgstr "" +"Określa bramę sieciową. W przypadku pominięcia brama z interfejsu " +"nadrzędnego jest pobierana, jeśli istnieje, w przeciwnym razie tworzy trasę " +"zasięgu łącza. Jeśli jest ustawione na 0.0.0.0, dla trasy nie zostanie " +"określona żadna brama" + #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:334 msgid "" "Specifies the number of IGMP membership reports to be issued after a " @@ -6988,6 +7058,22 @@ msgstr "" "Określa liczbę sekund między instancjami, w których sterownik łączenia " "wysyła pakiety uczenia się do każdego przełącznika równorzędnego niewolnika" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:129 +msgid "Specifies the ordering of the IP rules" +msgstr "Określa kolejność reguł IP" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:155 +msgid "Specifies the outgoing logical interface name" +msgstr "Określa nazwę wychodzącego interfejsu logicznego" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:99 +msgid "" +"Specifies the preferred source address when sending to destinations covered " +"by the target" +msgstr "" +"Określa preferowany adres źródłowy podczas wysyłania do miejsc docelowych " +"objętych celem" + #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:375 msgid "Specifies the quantity of ARP IP targets that must be reachable" msgstr "Określa liczbę docelowych adresów IP ARP, które muszą być osiągalne" @@ -7009,6 +7095,22 @@ msgstr "" "wystąpi awaria aktywnego urządzenia podrzędnego lub odtwarzanie podstawowego " "urządzenia podrzędnego" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:79 +msgid "Specifies the route metric to use" +msgstr "Określa metrykę trasy do użycia" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:45 +msgid "Specifies the route type to be created" +msgstr "Określa typ trasy do utworzenia" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:136 +msgid "Specifies the rule target routing action" +msgstr "Określa akcję trasowania celu reguły" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:148 +msgid "Specifies the source subnet to match (CIDR notation)" +msgstr "Określa podsieć źródłową do dopasowania (notacja CIDR)" + #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:246 msgid "Specifies the system priority" msgstr "Określa priorytet systemu" @@ -7802,6 +7904,24 @@ msgstr "" "sieci. Jeśli oczekuje się, że sieć będzie stratna, wartość niezawodności " "może zostać zwiększona. IGMP jest odporny na straty pakietów (Robustness-1)" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:171 +msgid "" +"The rule target is a jump to another rule specified by its priority value" +msgstr "" +"Cel reguły to skok do innej reguły określonej przez jej wartość priorytetu" + +#: 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 +msgid "" +"The rule target is a table lookup ID: a numeric table index ranging from 0 " +"to 65535 or symbol alias declared in /etc/iproute2/rt_tables. Special " +"aliases local (255), main (254) and default (253) are also valid" +msgstr "" +"Cele reguły to identyfikator wyszukiwania tabeli: numeryczny indeks tabeli z " +"zakresu od 0 do 65535 lub alias symbolu zadeklarowany w /etc/iproute2/" +"rt_tables. Ważne są również specjalne aliasy: lokalny (255), główny (254) i " +"domyślny (253)" + #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1371 msgid "The selected %s mode is incompatible with %s encryption" msgstr "Wybrany tryb %s jest niekompatybilny z szyfrowaniem %s" @@ -8526,6 +8646,10 @@ msgstr "Grupa użytkownika" msgid "User certificate (PEM encoded)" msgstr "Certyfikat użytkownika (zakodowany PEM)" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:186 +msgid "User identifier" +msgstr "Identyfikator użytkownika" + #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:132 msgid "User key (PEM encoded)" msgstr "Klucz użytkownika (zakodowany PEM)" @@ -8748,6 +8872,14 @@ msgstr "" "wyższą wartością preferencji są brane pod uwagę w pierwszej kolejności " "podczas alokacji podsieci." +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:109 +msgid "" +"When enabled, gateway is on link even if the gateway does not match any " +"interface prefix" +msgstr "" +"Po włączeniu brama jest podłączona, nawet jeśli brama nie pasuje do żadnego " +"prefiksu interfejsu" + #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1537 msgid "" "When using a PSK, the PMK can be automatically generated. When enabled, the " diff --git a/modules/luci-base/po/pt/base.po b/modules/luci-base/po/pt/base.po index fcc366188f..f6c5318034 100644 --- a/modules/luci-base/po/pt/base.po +++ b/modules/luci-base/po/pt/base.po @@ -1762,6 +1762,10 @@ msgstr "" "Define um mapeamento da prioridade do pacote interno do Linux para a " "prioridade do cabeçalho VLAN, apenas para os frames de entrada" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:86 +msgid "Defines a specific MTU for this route" +msgstr "" + #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:970 msgid "Delegate IPv6 prefixes" msgstr "Delegue prefixos IPv6" @@ -1899,7 +1903,7 @@ msgid "Directory" msgstr "Diretório" #: 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/routes.js:200 #: 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" @@ -3578,6 +3582,10 @@ msgstr "" "Se definido, as sub-redes só são alocadas a partir das classes informadas do " "prefixo IPv6 ." +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:196 +msgid "If set, the meaning of the match options is inverted" +msgstr "" + #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:254 #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:360 msgid "" @@ -3930,7 +3938,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:191 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:196 msgid "Invert match" msgstr "Inverta a correspondência" @@ -4894,6 +4902,10 @@ msgstr "SSID de rede" msgid "Network Utilities" msgstr "Ferramentas de Rede" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:56 +msgid "Network address" +msgstr "" + #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:491 msgid "Network boot image" msgstr "Imagem de arranque via rede" @@ -5884,7 +5896,7 @@ msgstr "Preferir UMTS" msgid "Prefix Delegated" msgstr "Prefixo Delegado" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:186 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:191 msgid "Prefix suppressor" msgstr "Supressor de prefixos" @@ -6156,6 +6168,12 @@ msgstr "Referências" msgid "Refreshing" msgstr "Atualizando" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:191 +msgid "" +"Reject routing decisions that have a prefix length less than or equal to the " +"specified value" +msgstr "" + #: modules/luci-compat/luasrc/model/network/proto_relay.lua:153 #: protocols/luci-proto-relay/htdocs/luci-static/resources/protocol/relay.js:39 msgid "Relay" @@ -6910,6 +6928,13 @@ msgstr "" "servidor DNS IPv6, a menos que a opção <em>Servidor de DNS IPv6 local</em> " "esteja desativada." +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:186 +msgid "" +"Specifies an individual UID or range of UIDs to match, e.g. 1000 to match " +"corresponding UID or 1000-1005 to inclusively match all UIDs within the " +"corresponding range" +msgstr "" + #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:343 msgid "" "Specifies that duplicate frames (received on inactive ports) should be " @@ -6933,10 +6958,18 @@ msgid "Specifies the MII link monitoring frequency in milliseconds" msgstr "" "Especifica a frequência de monitoramento do enlace MII em milissegundos" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:181 +msgid "Specifies the TOS value to match in IP headers" +msgstr "" + #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:261 msgid "Specifies the aggregation selection logic to use" msgstr "Especifica a lógica de seleção da agregação que será utilizada" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:159 +msgid "Specifies the destination subnet to match (CIDR notation)" +msgstr "" + #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:292 msgid "Specifies the directory the device is attached to" msgstr "Especifica o diretório que o aparelho está conectado" @@ -6951,6 +6984,22 @@ msgstr "" "do roteador\">RA</abbr>, por exemplo, para instruir os clientes que " "solicitem mais informações através do estado do DHCPv6." +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:176 +msgid "" +"Specifies the fwmark and optionally its mask to match, e.g. 0xFF to match " +"mark 255 or 0x0/0x1 to match any even mark value" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:144 +msgid "Specifies the incoming logical interface name" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:41 +msgid "" +"Specifies the logical interface name of the parent (or master) interface " +"this route belongs to" +msgstr "" + #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:254 msgid "" "Specifies the mac-address for the actor in protocol packet exchanges " @@ -6998,6 +7047,13 @@ msgstr "" msgid "Specifies the mode to be used for this bonding interface" msgstr "Especifica o modo de ligação que será utilizado por esta interface" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:75 +msgid "" +"Specifies the network gateway. If omitted, the gateway from the parent " +"interface is taken if any, otherwise creates a link scope route. If set to " +"0.0.0.0 no gateway will be specified for the route" +msgstr "" + #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:334 msgid "" "Specifies the number of IGMP membership reports to be issued after a " @@ -7032,6 +7088,20 @@ msgstr "" "ligação envia os pacotes de aprendizado para cada comutador dos pares " "escravos" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:129 +msgid "Specifies the ordering of the IP rules" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:155 +msgid "Specifies the outgoing logical interface name" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:99 +msgid "" +"Specifies the preferred source address when sending to destinations covered " +"by the target" +msgstr "" + #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:375 msgid "Specifies the quantity of ARP IP targets that must be reachable" msgstr "" @@ -7053,6 +7123,22 @@ msgstr "" "Determina a política da nova seleção para o escravo primário quando ocorre " "uma falha do escravo ativo ou durante a recuperação do escravo primário" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:79 +msgid "Specifies the route metric to use" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:45 +msgid "Specifies the route type to be created" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:136 +msgid "Specifies the rule target routing action" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:148 +msgid "Specifies the source subnet to match (CIDR notation)" +msgstr "" + #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:246 msgid "Specifies the system priority" msgstr "Determina a prioridade do sistema" @@ -7849,6 +7935,19 @@ msgstr "" "Caso seja previsto que uma rede tenha perdas, o valor de robustez pode ser " "aumentado. O IGMP é robusto para perdas de pacotes (Robustness-1)" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:171 +msgid "" +"The rule target is a jump to another rule specified by its priority value" +msgstr "" + +#: 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 +msgid "" +"The rule target is a table lookup ID: a numeric table index ranging from 0 " +"to 65535 or symbol alias declared in /etc/iproute2/rt_tables. Special " +"aliases local (255), main (254) and default (253) are also valid" +msgstr "" + #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1371 msgid "The selected %s mode is incompatible with %s encryption" msgstr "O modo %s selecionado é incompatível com a criptografia %s" @@ -8581,6 +8680,10 @@ msgstr "Grupo do Utilizador" msgid "User certificate (PEM encoded)" msgstr "Certificado do utilizador (codificado em formato PEM)" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:186 +msgid "User identifier" +msgstr "" + #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:132 msgid "User key (PEM encoded)" msgstr "Chave do utilizador (codificada em formato PEM)" @@ -8801,6 +8904,12 @@ msgstr "" "Ao delegar diversos prefixos, as interfaces com um valor de preferência mais " "alta são as primeiras que são consideradas durante a alocação das sub-redes." +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:109 +msgid "" +"When enabled, gateway is on link even if the gateway does not match any " +"interface prefix" +msgstr "" + #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1537 msgid "" "When using a PSK, the PMK can be automatically generated. When enabled, the " diff --git a/modules/luci-base/po/pt_BR/base.po b/modules/luci-base/po/pt_BR/base.po index 6b797f3cfc..6d81ca9a4b 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: 2022-01-25 09:41+0000\n" +"PO-Revision-Date: 2022-02-20 15:55+0000\n" "Last-Translator: Wellington Terumi Uemura <wellingtonuemura@gmail.com>\n" "Language-Team: Portuguese (Brazil) <https://hosted.weblate.org/projects/" "openwrt/luci/pt_BR/>\n" @@ -1779,6 +1779,10 @@ msgstr "" "Define um mapeamento da prioridade do pacote interno do Linux para a " "prioridade do cabeçalho VLAN, apenas para os frames de entrada" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:86 +msgid "Defines a specific MTU for this route" +msgstr "Define um MTU específico para esta rota" + #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:970 msgid "Delegate IPv6 prefixes" msgstr "Delegue prefixos IPv6" @@ -1917,7 +1921,7 @@ msgid "Directory" msgstr "Diretório" #: 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/routes.js:200 #: 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" @@ -3606,6 +3610,10 @@ msgstr "" "Se definido, as sub-redes só são alocadas a partir das classes informadas do " "prefixo IPv6 ." +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:196 +msgid "If set, the meaning of the match options is inverted" +msgstr "Se definido, o sentido das opções de correspondência é invertido" + #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:254 #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:360 msgid "" @@ -3963,7 +3971,7 @@ 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:191 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:196 msgid "Invert match" msgstr "Inverta a correspondência" @@ -4927,6 +4935,10 @@ msgstr "Rede SSID" msgid "Network Utilities" msgstr "Utilitários de Rede" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:56 +msgid "Network address" +msgstr "Endereço de rede" + #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:491 msgid "Network boot image" msgstr "Imagem de boot pela rede" @@ -5918,7 +5930,7 @@ msgstr "Preferir UMTS" msgid "Prefix Delegated" msgstr "Prefixo Delegado" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:186 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:191 msgid "Prefix suppressor" msgstr "Supressor de prefixos" @@ -6193,6 +6205,14 @@ msgstr "Referências" msgid "Refreshing" msgstr "Atualizando" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:191 +msgid "" +"Reject routing decisions that have a prefix length less than or equal to the " +"specified value" +msgstr "" +"Rejeita as decisões de roteamento que tenham um comprimento de prefixo menor " +"ou igual ao valor especificado" + #: modules/luci-compat/luasrc/model/network/proto_relay.lua:153 #: protocols/luci-proto-relay/htdocs/luci-static/resources/protocol/relay.js:39 msgid "Relay" @@ -6949,6 +6969,17 @@ msgstr "" "servidor DNS IPv6, a menos que a opção <em>Local IPv6 DNS</em> seja " "desativada." +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:186 +msgid "" +"Specifies an individual UID or range of UIDs to match, e.g. 1000 to match " +"corresponding UID or 1000-1005 to inclusively match all UIDs within the " +"corresponding range" +msgstr "" +"Especifica um UID individual ou uma gama de UIDs para que haja " +"correspondência, por exemplo, 1000 para casar com a UID correspondente ou " +"1000-1005 para coincidir inclusive com todas as UDs dentro de um determinado " +"intervalo" + #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:343 msgid "" "Specifies that duplicate frames (received on inactive ports) should be " @@ -6972,10 +7003,18 @@ msgid "Specifies the MII link monitoring frequency in milliseconds" msgstr "" "Especifica a frequência de monitoramento do enlace MII em milissegundos" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:181 +msgid "Specifies the TOS value to match in IP headers" +msgstr "Especifica o valor TOS para corresponder nos cabeçalhos IP" + #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:261 msgid "Specifies the aggregation selection logic to use" msgstr "Especifica a lógica de seleção da agregação que será utilizada" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:159 +msgid "Specifies the destination subnet to match (CIDR notation)" +msgstr "Especifica a sub-rede de destino que será correspondida (notação CIDR)" + #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:292 msgid "Specifies the directory the device is attached to" msgstr "Especifica o diretório que o dispositivo está conectado" @@ -6990,6 +7029,27 @@ msgstr "" "do roteador\">RA</abbr>, por exemplo, para instruir os clientes que " "solicitem mais informações através do estado do DHCPv6." +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:176 +msgid "" +"Specifies the fwmark and optionally its mask to match, e.g. 0xFF to match " +"mark 255 or 0x0/0x1 to match any even mark value" +msgstr "" +"Especifica o fwmark e, opcionalmente, a máscara coincidente, por exemplo, " +"0xFF que corresponda a marca 255 ou 0x0/0x1 para coincidir com qualquer " +"valor marcado como par" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:144 +msgid "Specifies the incoming logical interface name" +msgstr "Especifica o nome da interface lógica de entrada" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:41 +msgid "" +"Specifies the logical interface name of the parent (or master) interface " +"this route belongs to" +msgstr "" +"Especifica o nome da interface lógica da interface principal (ou mestre) à " +"qual esta rota pertence" + #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:254 msgid "" "Specifies the mac-address for the actor in protocol packet exchanges " @@ -7037,6 +7097,16 @@ msgstr "" msgid "Specifies the mode to be used for this bonding interface" msgstr "Especifica o modo de ligação que será utilizado por esta interface" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:75 +msgid "" +"Specifies the network gateway. If omitted, the gateway from the parent " +"interface is taken if any, otherwise creates a link scope route. If set to " +"0.0.0.0 no gateway will be specified for the route" +msgstr "" +"Especifica o gateway da rede. Se for omitido, o gateway da interface " +"principal é usado, caso contrário, cria uma rota de escopo do enlace. Se " +"definido como 0.0.0.0, nenhum gateway será especificado para a rota" + #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:334 msgid "" "Specifies the number of IGMP membership reports to be issued after a " @@ -7071,6 +7141,22 @@ msgstr "" "ligação envia os pacotes de aprendizado para cada comutador dos pares " "escravos" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:129 +msgid "Specifies the ordering of the IP rules" +msgstr "Especifica a ordem das regras de IP" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:155 +msgid "Specifies the outgoing logical interface name" +msgstr "Especifica o nome da interface lógica de saída" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:99 +msgid "" +"Specifies the preferred source address when sending to destinations covered " +"by the target" +msgstr "" +"Especifica o endereço preferencial de origem ao enviar para os destinos " +"cobertos pelo alvo" + #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:375 msgid "Specifies the quantity of ARP IP targets that must be reachable" msgstr "" @@ -7092,6 +7178,22 @@ msgstr "" "Determina a política da nova seleção para o escravo primário quando ocorre " "uma falha do escravo ativo ou durante a recuperação do escravo primário" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:79 +msgid "Specifies the route metric to use" +msgstr "Especifica a métrica da rota que será usada" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:45 +msgid "Specifies the route type to be created" +msgstr "Especifica o tipo de rota que será criado" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:136 +msgid "Specifies the rule target routing action" +msgstr "Especifica a ação de roteamento de destino de regra" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:148 +msgid "Specifies the source subnet to match (CIDR notation)" +msgstr "Especifica a sub-rede de origem para ser correspondida (notação CIDR)" + #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:246 msgid "Specifies the system priority" msgstr "Determina a prioridade do sistema" @@ -7886,6 +7988,25 @@ msgstr "" "Caso seja previsto que uma rede tenha perdas, o valor de robustez pode ser " "aumentado. O IGMP é robusto para perdas de pacotes (Robustness-1)" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:171 +msgid "" +"The rule target is a jump to another rule specified by its priority value" +msgstr "" +"O destino da regra é um salto para outra regra especificada pelo seu valor " +"prioritário" + +#: 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 +msgid "" +"The rule target is a table lookup ID: a numeric table index ranging from 0 " +"to 65535 or symbol alias declared in /etc/iproute2/rt_tables. Special " +"aliases local (255), main (254) and default (253) are also valid" +msgstr "" +"O alvo da regra é um ID de pesquisa da tabela: um índice da tabela numérica " +"que varia entre 0 até 65535 ou um símbolo alias declarados em /etc/iproute2/" +"rt_tables. Pseudônimos locais especiais (255), principal (254) e padrão (253)" +" também são válidos" + #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1371 msgid "The selected %s mode is incompatible with %s encryption" msgstr "O modo %s selecionado é incompatível com a criptografia %s" @@ -8622,6 +8743,10 @@ msgstr "Grupo do Usuário" msgid "User certificate (PEM encoded)" msgstr "Certificado do usuário (codificado em formato PEM)" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:186 +msgid "User identifier" +msgstr "Identificador do usuário" + #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:132 msgid "User key (PEM encoded)" msgstr "Chave do usuário (codificada em formato PEM)" @@ -8843,6 +8968,14 @@ msgstr "" "Ao delegar diversos prefixos, as interfaces com um valor de preferência mais " "alta são as primeiras que são consideradas durante a alocação das sub-redes." +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:109 +msgid "" +"When enabled, gateway is on link even if the gateway does not match any " +"interface prefix" +msgstr "" +"Quando ativado, o gateway está no enlace mesmo que o gateway não corresponda " +"com qualquer prefixo de interface" + #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1537 msgid "" "When using a PSK, the PMK can be automatically generated. When enabled, the " diff --git a/modules/luci-base/po/ro/base.po b/modules/luci-base/po/ro/base.po index b5aba264b8..675870e6ba 100644 --- a/modules/luci-base/po/ro/base.po +++ b/modules/luci-base/po/ro/base.po @@ -1,7 +1,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"PO-Revision-Date: 2022-01-26 08:55+0000\n" +"PO-Revision-Date: 2022-02-24 06:56+0000\n" "Last-Translator: CRISTIAN ANDREI <cristianvdr@gmail.com>\n" "Language-Team: Romanian <https://hosted.weblate.org/projects/openwrt/luci/ro/" ">\n" @@ -214,7 +214,7 @@ msgstr "<abbr title=\"Router Advertisement\">RA</abbr> MTU" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:763 msgid "<abbr title=\"Router Advertisement\">RA</abbr>-Service" -msgstr "<abbr title=\"Router Advertisement\">RA</abbr>-Serviciu" +msgstr "Serviciu-<abbr title=\"Router Advertisement\">RA</abbr>" #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:370 msgid "A configuration for the device \"%s\" already exists" @@ -557,8 +557,8 @@ msgid "" "Aggregator: Chosen by the largest number of ports + slave added/removed or " "state changes (count, 2)" msgstr "" -"Agregator: Ales în funcție de cel mai mare număr de porturi + secundar adă" -"ugat/eliminat sau modificări de stare (număr, 2)" +"Agregator: Ales în funcție de cel mai mare număr de porturi + secundar " +"adăugat/eliminat sau modificări de stare (număr, 2)" #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:264 msgid "Aggregator: Slave added/removed or state changes (bandwidth, 1)" @@ -589,7 +589,8 @@ msgid "" "Allocate IP addresses sequentially, starting from the lowest available " "address." msgstr "" -"Alocați adrese IP secvențial, pornind de la cea mai mică adresă disponibilă." +"Alocați adresele IP în mod secvențial, începând cu cea mai mică adresă " +"disponibilă." #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:377 msgid "Allocate IPs sequentially" @@ -824,7 +825,7 @@ msgstr "Aplicați nebifate" #: modules/luci-base/htdocs/luci-static/resources/ui.js:4261 msgid "Applying configuration changes… %ds" -msgstr "Aplicarea modificărilor de configurare... %ds" +msgstr "Se aplică schimbările configurării… %ds" #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/10_system.js:56 msgid "Architecture" @@ -880,12 +881,12 @@ msgstr "Tipul Autentificării" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:265 msgid "Authoritative" -msgstr "Autoritare" +msgstr "Autoritar" #: modules/luci-base/luasrc/view/sysauth.htm:17 #: themes/luci-theme-bootstrap/htdocs/luci-static/resources/view/bootstrap/sysauth.js:11 msgid "Authorization Required" -msgstr "Este necesară autorizarea" +msgstr "Autorizație Necesară" #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:120 #: protocols/luci-proto-hnet/htdocs/luci-static/resources/protocol/hnet.js:18 @@ -1425,11 +1426,11 @@ msgid "" msgstr "" "Configurează ratele de date pe baza densității celulelor de acoperire. " "Normal configurează ratele de bază la 6, 12, 24 Mbps dacă nu se utilizează " -"ratele 802.11b învechite, în caz contrar la 5,5, 11 Mbps. High configurează " +"ratele 802.11b învechite, în caz contrar la 5,5, 11 Mbps. Mare configurează " "ratele de bază la 12, 24 Mbps dacă nu sunt utilizate ratele 802.11b " -"învechite, în caz contrar la rata de 11 Mbps. Very High configurează 24 Mbps " -"ca rată de bază. Nu sunt oferite rate suportate mai mici decât rata de bază " -"minimă." +"învechite, în caz contrar la rata de 11 Mbps. Foarte mare configurează 24 " +"Mbps ca rată de bază. Nu sunt oferite rate suportate mai mici decât rata de " +"bază minimă." #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:775 msgid "" @@ -1550,7 +1551,7 @@ msgstr "Creați / Atribuiți o zonă de firewall" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1167 msgid "Create interface" -msgstr "Creați o interfață" +msgstr "Creați interfața" #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:190 msgid "Critical" @@ -1755,6 +1756,10 @@ msgstr "" "Definește o corespondență între prioritatea antetului VLAN și prioritatea " "pachetului intern Linux pe cadrele primite" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:86 +msgid "Defines a specific MTU for this route" +msgstr "Definește un MTU specific pentru această rută" + #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:970 msgid "Delegate IPv6 prefixes" msgstr "Delegați prefixele IPv6" @@ -1892,9 +1897,10 @@ msgid "Directory" msgstr "Director" #: 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/routes.js:200 #: 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 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:195 msgid "Disable" msgstr "Dezactivați" @@ -3184,7 +3190,7 @@ msgstr "Ascundeți legăturile goale" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:956 msgid "High" -msgstr "Înaltă" +msgstr "Mare" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:57 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2164 @@ -3561,6 +3567,10 @@ msgstr "" "Dacă este setat, subrețelele din aval sunt alocate numai din clasele de " "prefixe IPv6 date." +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:196 +msgid "If set, the meaning of the match options is inverted" +msgstr "" + #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:254 #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:360 msgid "" @@ -3913,6 +3923,7 @@ msgid "Invalid username and/or password! Please try again." msgstr "" "Numele de utilizator și/sau parola nevalide! Vă rugăm să încercați din nou." +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:196 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:191 msgid "Invert match" msgstr "Potrivire inversă" @@ -4875,6 +4886,10 @@ msgstr "SSID-ul de rețea" msgid "Network Utilities" msgstr "Utilitare de rețea" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:56 +msgid "Network address" +msgstr "Adresa de rețea" + #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:491 msgid "Network boot image" msgstr "Imagine de pornire în rețea" @@ -5258,17 +5273,17 @@ msgid "" "configured and active, otherwise disable <abbr title=\"Neighbour Discovery " "Protocol\">NDP</abbr> proxying." msgstr "" -"Funcționează în <em>modul releu</em> dacă o interfață master desemnată este " -"configurată și activă, în caz contrar dezactivează proxierea <abbr title=" -"\"Neighbour Discovery Protocol\">NDP</abbr>." +"Funcționează în <em>modul releu</em> dacă o interfață principală desemnată " +"este configurată și activă, în caz contrar dezactivează proxierea <abbr " +"title=\"Neighbour Discovery Protocol\">NDP</abbr>." #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:723 msgid "" "Operate in <em>relay mode</em> if a designated master interface is " "configured and active, otherwise fall back to <em>server mode</em>." msgstr "" -"Funcționează în <em>modul releu</em> dacă o interfață master desemnată este " -"configurată și activă, în caz contrar revine la <em>modul server</em>." +"Funcționează în <em>modul releu</em> dacă o interfață principală desemnată " +"este configurată și activă, în caz contrar revine la <em>modul server</em>." #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:725 msgid "" @@ -5859,6 +5874,7 @@ msgstr "Preferați UMTS" msgid "Prefix Delegated" msgstr "Prefix Delegat" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:191 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:186 msgid "Prefix suppressor" msgstr "Prefix supresor" @@ -5904,8 +5920,8 @@ msgstr "" #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:229 msgid "Primary becomes active slave whenever it comes back up (always, 0)" msgstr "" -"Principala devine secundară activă ori de câte ori revine în funcțiune (" -"întotdeauna, 0)" +"Principala devine secundară activă ori de câte ori revine în funcțiune " +"(întotdeauna, 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:129 @@ -6134,6 +6150,12 @@ msgstr "Referințe" msgid "Refreshing" msgstr "Împrospătare" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:191 +msgid "" +"Reject routing decisions that have a prefix length less than or equal to the " +"specified value" +msgstr "" + #: modules/luci-compat/luasrc/model/network/proto_relay.lua:153 #: protocols/luci-proto-relay/htdocs/luci-static/resources/protocol/relay.js:39 msgid "Relay" @@ -6735,7 +6757,7 @@ msgstr "IG scurt" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1159 msgid "Short Preamble" -msgstr "Preambul scurt" +msgstr "Expunere Scurtă" #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:470 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:18 @@ -6888,6 +6910,13 @@ msgstr "" "server DNS IPv6, cu excepția cazului în care opțiunea <em>Server DNS IPv6 " "local</em> este dezactivată." +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:186 +msgid "" +"Specifies an individual UID or range of UIDs to match, e.g. 1000 to match " +"corresponding UID or 1000-1005 to inclusively match all UIDs within the " +"corresponding range" +msgstr "" + #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:343 msgid "" "Specifies that duplicate frames (received on inactive ports) should be " @@ -6909,10 +6938,18 @@ msgstr "" msgid "Specifies the MII link monitoring frequency in milliseconds" msgstr "Specifică frecvența de monitorizare a legăturii MII în milisecunde" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:181 +msgid "Specifies the TOS value to match in IP headers" +msgstr "" + #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:261 msgid "Specifies the aggregation selection logic to use" msgstr "Specifică logica de selecție a agregării care trebuie utilizată" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:159 +msgid "Specifies the destination subnet to match (CIDR notation)" +msgstr "" + #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:292 msgid "Specifies the directory the device is attached to" msgstr "Specifică directorul la care este atașat dispozitivul" @@ -6927,6 +6964,22 @@ msgstr "" "\">RA</abbr>, de exemplu pentru a instrui clienții să solicite informații " "suplimentare prin DHCPv6 cu stare." +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:176 +msgid "" +"Specifies the fwmark and optionally its mask to match, e.g. 0xFF to match " +"mark 255 or 0x0/0x1 to match any even mark value" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:144 +msgid "Specifies the incoming logical interface name" +msgstr "Specifică numele interfeței logice de intrare" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:41 +msgid "" +"Specifies the logical interface name of the parent (or master) interface " +"this route belongs to" +msgstr "" + #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:254 msgid "" "Specifies the mac-address for the actor in protocol packet exchanges " @@ -6976,6 +7029,13 @@ msgstr "" "Specifică modul care urmează să fie utilizat pentru această interfață de " "bonding" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:75 +msgid "" +"Specifies the network gateway. If omitted, the gateway from the parent " +"interface is taken if any, otherwise creates a link scope route. If set to " +"0.0.0.0 no gateway will be specified for the route" +msgstr "" + #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:334 msgid "" "Specifies the number of IGMP membership reports to be issued after a " @@ -7009,6 +7069,20 @@ msgstr "" "Specifică numărul de secunde dintre instanțele în care driverul de bonding " "trimite pachete de învățare către fiecare comutator pereche de secundare" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:129 +msgid "Specifies the ordering of the IP rules" +msgstr "Specifică ordonarea regulilor IP" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:155 +msgid "Specifies the outgoing logical interface name" +msgstr "Specifică numele interfeței logice de ieșire" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:99 +msgid "" +"Specifies the preferred source address when sending to destinations covered " +"by the target" +msgstr "" + #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:375 msgid "Specifies the quantity of ARP IP targets that must be reachable" msgstr "Specifică numărul de ținte IP ARP care trebuie să fie accesibile" @@ -7029,6 +7103,22 @@ msgstr "" "Specifică politica de reselecție pentru secundara principală atunci când are " "loc o defecțiune a secundarei active sau o recuperare a secundarei principale" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:79 +msgid "Specifies the route metric to use" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:45 +msgid "Specifies the route type to be created" +msgstr "Specifică tipul de rută care trebuie creat" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:136 +msgid "Specifies the rule target routing action" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:148 +msgid "Specifies the source subnet to match (CIDR notation)" +msgstr "" + #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:246 msgid "Specifies the system priority" msgstr "Specifică prioritatea sistemului" @@ -7836,6 +7926,19 @@ msgstr "" "pierderi, valoarea robusteții poate fi mărită. IGMP este robust la " "(Robustness-1) pierderi de pachete" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:171 +msgid "" +"The rule target is a jump to another rule specified by its priority value" +msgstr "" + +#: 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 +msgid "" +"The rule target is a table lookup ID: a numeric table index ranging from 0 " +"to 65535 or symbol alias declared in /etc/iproute2/rt_tables. Special " +"aliases local (255), main (254) and default (253) are also valid" +msgstr "" + #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1371 msgid "The selected %s mode is incompatible with %s encryption" msgstr "Modul %s selectat este incompatibil cu criptarea %s" @@ -8567,6 +8670,10 @@ msgstr "Grup de utilizatori" msgid "User certificate (PEM encoded)" msgstr "Certificat de utilizator (codificat PEM)" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:186 +msgid "User identifier" +msgstr "Identificatorul utilizatorului" + #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:132 msgid "User key (PEM encoded)" msgstr "Cheie utilizator (codare PEM)" @@ -8788,6 +8895,14 @@ msgstr "" "cu o valoare de preferință mai mare sunt luate în considerare mai întâi la " "alocarea subrețelelor." +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:109 +msgid "" +"When enabled, gateway is on link even if the gateway does not match any " +"interface prefix" +msgstr "" +"Când este activat, gateway-ul este conectat chiar dacă gateway-ul nu se " +"potrivește cu niciun prefix de interfață" + #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1537 msgid "" "When using a PSK, the PMK can be automatically generated. When enabled, the " @@ -9032,7 +9147,7 @@ msgstr "dBm" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1087 msgid "disable" -msgstr "dezactivați" +msgstr "Dezactivat" #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:627 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:765 diff --git a/modules/luci-base/po/ru/base.po b/modules/luci-base/po/ru/base.po index 82f04b8d52..b50f926817 100644 --- a/modules/luci-base/po/ru/base.po +++ b/modules/luci-base/po/ru/base.po @@ -2,17 +2,17 @@ msgid "" msgstr "" "Project-Id-Version: LuCI: base\n" "POT-Creation-Date: 2010-05-09 01:01+0300\n" -"PO-Revision-Date: 2022-01-14 15:42+0000\n" -"Last-Translator: Alexey <agarkov.alexey.viktorovich@gmail.com>\n" -"Language-Team: Russian <https://hosted.weblate.org/projects/openwrt/luci/ru/" -">\n" +"PO-Revision-Date: 2022-02-24 06:56+0000\n" +"Last-Translator: Anton Kikin <a.a.kikin@gmail.com>\n" +"Language-Team: Russian <https://hosted.weblate.org/projects/openwrt/luci/ru/>" +"\n" "Language: ru\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" "%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" -"X-Generator: Weblate 4.10.1\n" +"X-Generator: Weblate 4.11-dev\n" "Project-Info: Это технический перевод, не дословный. Главное-удобный русский " "интерфейс, все проверялось в графическом режиме, совместим с другими apps\n" @@ -1762,6 +1762,10 @@ msgstr "" "Определяет соответствие приоритета заголовка VLAN внутреннему приоритету " "пакета Linux для входящих кадров" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:86 +msgid "Defines a specific MTU for this route" +msgstr "Определяет специальный MTU для этого маршрута" + #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:970 msgid "Delegate IPv6 prefixes" msgstr "Делегировать IPv6 префиксы" @@ -1899,7 +1903,7 @@ msgid "Directory" msgstr "Папка" #: 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/routes.js:200 #: 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" @@ -2157,15 +2161,15 @@ msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1429 msgid "Dynamic Authorization Extension client." -msgstr "" +msgstr "Клиент расширения динамической авторизации (DAE)." #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1434 msgid "Dynamic Authorization Extension port." -msgstr "" +msgstr "Порт расширения динамической авторизации (DAE)." #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1440 msgid "Dynamic Authorization Extension secret." -msgstr "" +msgstr "Секрет расширения динамической авторизации (DAE)." #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6in4.js:60 msgid "Dynamic tunnel" @@ -3310,7 +3314,7 @@ msgstr "Переопределение поддельного NX-домена" #: protocols/luci-proto-xfrm/htdocs/luci-static/resources/protocol/xfrm.js:9 msgid "IPsec XFRM" -msgstr "" +msgstr "IPsec XFRM" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/diagnostics.js:90 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/diagnostics.js:113 @@ -3563,6 +3567,10 @@ msgstr "" "Если установлено, нисходящие подсети выделяются только из заданных классов " "префиксов IPv6." +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:196 +msgid "If set, the meaning of the match options is inverted" +msgstr "Если установлено, значение параметров соответствия инвертируется" + #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:254 #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:360 msgid "" @@ -3780,7 +3788,7 @@ msgstr "Настройка сети" #: protocols/luci-proto-xfrm/htdocs/luci-static/resources/protocol/xfrm.js:39 msgid "Interface ID" -msgstr "" +msgstr "ID интерфейса" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:111 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:151 @@ -3919,7 +3927,7 @@ msgstr "Неверное шестнадцатеричное значение" msgid "Invalid username and/or password! Please try again." msgstr "Неверный логин и/или пароль! Попробуйте снова." -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:191 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:196 msgid "Invert match" msgstr "Инвертировать совпадение" @@ -4242,7 +4250,7 @@ msgstr "Загрузка QR-кода..." #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1163 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1971 msgid "Loading data…" -msgstr "" +msgstr "Загрузка данных…" #: modules/luci-base/htdocs/luci-static/resources/ui.js:2973 msgid "Loading directory contents…" @@ -4882,6 +4890,10 @@ msgstr "SSID сети" msgid "Network Utilities" msgstr "Сетевые утилиты" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:56 +msgid "Network address" +msgstr "Сетевой адрес" + #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:491 msgid "Network boot image" msgstr "Образ системы для сетевой загрузки" @@ -5374,7 +5386,7 @@ msgstr "" #: protocols/luci-proto-xfrm/htdocs/luci-static/resources/protocol/xfrm.js:46 msgid "Optional. Maximum Transmission Unit of the XFRM interface." -msgstr "" +msgstr "Необязательно. MTU XFRM интерфейса." #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:144 msgid "Optional. Maximum Transmission Unit of tunnel interface." @@ -5866,7 +5878,7 @@ msgstr "Предпочитать UMTS" msgid "Prefix Delegated" msgstr "Делегированный префикс" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:186 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:191 msgid "Prefix suppressor" msgstr "Подавитель префикса" @@ -6144,6 +6156,14 @@ msgstr "Ссылки" msgid "Refreshing" msgstr "Обновляется" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:191 +msgid "" +"Reject routing decisions that have a prefix length less than or equal to the " +"specified value" +msgstr "" +"Отклонять решения о маршрутизации, длина префикса которых меньше или равна " +"указанному значению" + #: modules/luci-compat/luasrc/model/network/proto_relay.lua:153 #: protocols/luci-proto-relay/htdocs/luci-static/resources/protocol/relay.js:39 msgid "Relay" @@ -6241,11 +6261,13 @@ msgstr "Обязательно. Публичный ключ узла в коди #: protocols/luci-proto-xfrm/htdocs/luci-static/resources/protocol/xfrm.js:42 msgid "Required. Underlying interface." -msgstr "" +msgstr "Обязательно. Основной интерфейс." #: protocols/luci-proto-xfrm/htdocs/luci-static/resources/protocol/xfrm.js:39 msgid "Required. XFRM interface ID to be used for SA." msgstr "" +"Обязательно. Идентификатор интерфейса XFRM, который будет использоваться для " +"SA." #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1313 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1314 @@ -6891,6 +6913,16 @@ msgstr "" "через DHCPv6. Если не указано, устройство будет объявлять себя в качестве " "IPv6 DNS-сервера, если не отключена опция <em>Локальный IPv6 DNS-сервер</em>." +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:186 +msgid "" +"Specifies an individual UID or range of UIDs to match, e.g. 1000 to match " +"corresponding UID or 1000-1005 to inclusively match all UIDs within the " +"corresponding range" +msgstr "" +"Определяет индивидуальный UID или диапазон UID для соответствия. Например, " +"1000 для соответствия определенному UID или 1000-1005 для соответствия всем " +"UID в указанном диапазоне" + #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:343 msgid "" "Specifies that duplicate frames (received on inactive ports) should be " @@ -6911,10 +6943,18 @@ msgstr "Определяет IP-адреса, которые будут испо msgid "Specifies the MII link monitoring frequency in milliseconds" msgstr "Определяет частоту MII мониторинга соединения в миллисекундах" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:181 +msgid "Specifies the TOS value to match in IP headers" +msgstr "Определяет значение TOS для сопоставления в IP-заголовках" + #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:261 msgid "Specifies the aggregation selection logic to use" msgstr "Определяет используемую логику выбора для агрегации" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:159 +msgid "Specifies the destination subnet to match (CIDR notation)" +msgstr "Определяет подсеть назначения для соответствия (CIDR-нотация)" + #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:292 msgid "Specifies the directory the device is attached to" msgstr "Папка, к которой монтируется раздел устройства" @@ -6929,6 +6969,27 @@ msgstr "" "Advertisement\">RA</abbr>, например, для указания клиентам запрашивать " "дополнительную информацию через stateful DHCPv6." +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:176 +msgid "" +"Specifies the fwmark and optionally its mask to match, e.g. 0xFF to match " +"mark 255 or 0x0/0x1 to match any even mark value" +msgstr "" +"Определяет fwmark и, опционально, его маску для соответствия. Например, 0xFF " +"для соответствия метке 255 или 0x0/0x1 для соответствия любому четному " +"значению метки" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:144 +msgid "Specifies the incoming logical interface name" +msgstr "Определяет имя входящего логического интерфейса" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:41 +msgid "" +"Specifies the logical interface name of the parent (or master) interface " +"this route belongs to" +msgstr "" +"Определяет имя логического интерфейса родительского (или главного) " +"интерфейса, которому принадлежит этот маршрут" + #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:254 msgid "" "Specifies the mac-address for the actor in protocol packet exchanges " @@ -6978,6 +7039,17 @@ msgstr "" "Определяет режим, который будет использоваться для этого интерфейса " "объединения" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:75 +msgid "" +"Specifies the network gateway. If omitted, the gateway from the parent " +"interface is taken if any, otherwise creates a link scope route. If set to " +"0.0.0.0 no gateway will be specified for the route" +msgstr "" +"Определяет сетевой шлюз. Если опущено, берется шлюз из родительского " +"интерфейса, если таковой имеется, в противном случае создается маршрут с " +"охватом соединения (link scope). Если установлено значение 0.0.0.0, шлюз не " +"будет определён для маршрута" + #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:334 msgid "" "Specifies the number of IGMP membership reports to be issued after a " @@ -7010,6 +7082,22 @@ msgstr "" "Определяет количество секунд между моментами, когда драйвер объединения " "посылает обучающие пакеты на каждый пир ведомого устройства" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:129 +msgid "Specifies the ordering of the IP rules" +msgstr "Определяет порядок следования IP-правил" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:155 +msgid "Specifies the outgoing logical interface name" +msgstr "Определяет имя исходящего логического интерфейса" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:99 +msgid "" +"Specifies the preferred source address when sending to destinations covered " +"by the target" +msgstr "" +"Определяет предпочтительный адрес источника при отправке в места назначения, " +"охватываемые целью" + #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:375 msgid "Specifies the quantity of ARP IP targets that must be reachable" msgstr "" @@ -7032,6 +7120,22 @@ msgstr "" "Определяет политику повторного выбора для первичного ведомого, когда " "происходит сбой активного ведомого или восстановление первичного ведомого" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:79 +msgid "Specifies the route metric to use" +msgstr "Определяет метрику маршрута для использования" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:45 +msgid "Specifies the route type to be created" +msgstr "Определяет тип маршрута, который необходимо создать" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:136 +msgid "Specifies the rule target routing action" +msgstr "Определяет целевое действие маршрутизации для правила" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:148 +msgid "Specifies the source subnet to match (CIDR notation)" +msgstr "Определяет подсеть источника для сопоставления (CIDR-нотация)" + #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:246 msgid "Specifies the system priority" msgstr "Определяет системный приоритет" @@ -7818,6 +7922,25 @@ msgstr "" "Если в сети ожидаются потери, значение надежности может быть увеличено. IGMP " "устойчив к (надежность – 1) потерям пакетов" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:171 +msgid "" +"The rule target is a jump to another rule specified by its priority value" +msgstr "" +"Целью правила является переход к другому правилу, определенному значением " +"его приоритета" + +#: 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 +msgid "" +"The rule target is a table lookup ID: a numeric table index ranging from 0 " +"to 65535 or symbol alias declared in /etc/iproute2/rt_tables. Special " +"aliases local (255), main (254) and default (253) are also valid" +msgstr "" +"Целью правила является идентификатор таблицы поиска: числовой индекс таблицы " +"в диапазоне от 0 до 65535 или символьный псевдоним, объявленный в /etc/" +"iproute2/rt_tables. Специальные псевдонимы local (255), main (254) и default " +"(253) также допустимы" + #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1371 msgid "The selected %s mode is incompatible with %s encryption" msgstr "Выбранный режим %s несовместим с шифрованием %s" @@ -8542,6 +8665,10 @@ msgstr "Группа пользователя" msgid "User certificate (PEM encoded)" msgstr "Сертификат пользователя (PEM encoded)" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:186 +msgid "User identifier" +msgstr "Идентификатор пользователя" + #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:132 msgid "User key (PEM encoded)" msgstr "Ключ пользователя (PEM encoded)" @@ -8765,6 +8892,14 @@ msgstr "" "более высоким значением привилегий учитываются в первую очередь при " "распределении подсетей." +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:109 +msgid "" +"When enabled, gateway is on link even if the gateway does not match any " +"interface prefix" +msgstr "" +"Если включено, шлюз будет находиться на связи, даже если шлюз не " +"соответствует какому-либо префиксу интерфейса" + #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1537 msgid "" "When using a PSK, the PMK can be automatically generated. When enabled, the " diff --git a/modules/luci-base/po/sk/base.po b/modules/luci-base/po/sk/base.po index 5746c07d04..ccc5ae17e8 100644 --- a/modules/luci-base/po/sk/base.po +++ b/modules/luci-base/po/sk/base.po @@ -1,7 +1,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"PO-Revision-Date: 2021-11-12 18:40+0000\n" +"PO-Revision-Date: 2022-02-15 13:57+0000\n" "Last-Translator: Dušan Kazik <prescott66@gmail.com>\n" "Language-Team: Slovak <https://hosted.weblate.org/projects/openwrt/luci/sk/>" "\n" @@ -10,7 +10,7 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" -"X-Generator: Weblate 4.9.1-dev\n" +"X-Generator: Weblate 4.11-dev\n" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1516 msgid "%.1f dB" @@ -1666,6 +1666,10 @@ msgid "" "priority on incoming frames" msgstr "" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:86 +msgid "Defines a specific MTU for this route" +msgstr "" + #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:970 msgid "Delegate IPv6 prefixes" msgstr "" @@ -1803,7 +1807,7 @@ msgid "Directory" msgstr "Adresár" #: 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/routes.js:200 #: 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" @@ -3414,6 +3418,10 @@ msgid "" "classes." msgstr "" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:196 +msgid "If set, the meaning of the match options is inverted" +msgstr "" + #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:254 #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:360 msgid "" @@ -3741,7 +3749,7 @@ msgstr "" msgid "Invalid username and/or password! Please try again." msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:191 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:196 msgid "Invert match" msgstr "" @@ -4669,6 +4677,10 @@ msgstr "" msgid "Network Utilities" msgstr "Sieťové nástroje" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:56 +msgid "Network address" +msgstr "" + #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:491 msgid "Network boot image" msgstr "Obraz sieťového zavedenia" @@ -5610,7 +5622,7 @@ msgstr "" msgid "Prefix Delegated" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:186 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:191 msgid "Prefix suppressor" msgstr "" @@ -5869,7 +5881,13 @@ msgstr "Referencie" #: modules/luci-base/htdocs/luci-static/resources/luci.js:2717 msgid "Refreshing" -msgstr "Obnovuje sa" +msgstr "Obnovovanie" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:191 +msgid "" +"Reject routing decisions that have a prefix length less than or equal to the " +"specified value" +msgstr "" #: modules/luci-compat/luasrc/model/network/proto_relay.lua:153 #: protocols/luci-proto-relay/htdocs/luci-static/resources/protocol/relay.js:39 @@ -6580,6 +6598,13 @@ msgid "" "unless the <em>Local IPv6 DNS server</em> option is disabled." msgstr "" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:186 +msgid "" +"Specifies an individual UID or range of UIDs to match, e.g. 1000 to match " +"corresponding UID or 1000-1005 to inclusively match all UIDs within the " +"corresponding range" +msgstr "" + #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:343 msgid "" "Specifies that duplicate frames (received on inactive ports) should be " @@ -6598,10 +6623,18 @@ msgstr "" msgid "Specifies the MII link monitoring frequency in milliseconds" msgstr "" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:181 +msgid "Specifies the TOS value to match in IP headers" +msgstr "" + #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:261 msgid "Specifies the aggregation selection logic to use" msgstr "" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:159 +msgid "Specifies the destination subnet to match (CIDR notation)" +msgstr "" + #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:292 msgid "Specifies the directory the device is attached to" msgstr "Určuje adresár, ku ktorému bude pričlenené zariadenie" @@ -6613,6 +6646,22 @@ msgid "" "stateful DHCPv6." msgstr "" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:176 +msgid "" +"Specifies the fwmark and optionally its mask to match, e.g. 0xFF to match " +"mark 255 or 0x0/0x1 to match any even mark value" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:144 +msgid "Specifies the incoming logical interface name" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:41 +msgid "" +"Specifies the logical interface name of the parent (or master) interface " +"this route belongs to" +msgstr "" + #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:254 msgid "" "Specifies the mac-address for the actor in protocol packet exchanges " @@ -6651,6 +6700,13 @@ msgstr "" msgid "Specifies the mode to be used for this bonding interface" msgstr "" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:75 +msgid "" +"Specifies the network gateway. If omitted, the gateway from the parent " +"interface is taken if any, otherwise creates a link scope route. If set to " +"0.0.0.0 no gateway will be specified for the route" +msgstr "" + #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:334 msgid "" "Specifies the number of IGMP membership reports to be issued after a " @@ -6675,6 +6731,20 @@ msgid "" "sends learning packets to each slaves peer switch" msgstr "" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:129 +msgid "Specifies the ordering of the IP rules" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:155 +msgid "Specifies the outgoing logical interface name" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:99 +msgid "" +"Specifies the preferred source address when sending to destinations covered " +"by the target" +msgstr "" + #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:375 msgid "Specifies the quantity of ARP IP targets that must be reachable" msgstr "" @@ -6691,6 +6761,22 @@ msgid "" "active slave or recovery of the primary slave occurs" msgstr "" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:79 +msgid "Specifies the route metric to use" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:45 +msgid "Specifies the route type to be created" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:136 +msgid "Specifies the rule target routing action" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:148 +msgid "Specifies the source subnet to match (CIDR notation)" +msgstr "" + #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:246 msgid "Specifies the system priority" msgstr "" @@ -7381,6 +7467,19 @@ msgid "" "increased. IGMP is robust to (Robustness-1) packet losses" msgstr "" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:171 +msgid "" +"The rule target is a jump to another rule specified by its priority value" +msgstr "" + +#: 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 +msgid "" +"The rule target is a table lookup ID: a numeric table index ranging from 0 " +"to 65535 or symbol alias declared in /etc/iproute2/rt_tables. Special " +"aliases local (255), main (254) and default (253) are also valid" +msgstr "" + #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1371 msgid "The selected %s mode is incompatible with %s encryption" msgstr "Vybraný režim %s nie je kompatibilný so šifrovaním %s" @@ -8062,6 +8161,10 @@ msgstr "" msgid "User certificate (PEM encoded)" msgstr "" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:186 +msgid "User identifier" +msgstr "" + #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:132 msgid "User key (PEM encoded)" msgstr "" @@ -8271,6 +8374,12 @@ msgid "" "preference value are considered first when allocating subnets." msgstr "" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:109 +msgid "" +"When enabled, gateway is on link even if the gateway does not match any " +"interface prefix" +msgstr "" + #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1537 msgid "" "When using a PSK, the PMK can be automatically generated. When enabled, the " diff --git a/modules/luci-base/po/sv/base.po b/modules/luci-base/po/sv/base.po index 9519ee8761..cb52efe6f2 100644 --- a/modules/luci-base/po/sv/base.po +++ b/modules/luci-base/po/sv/base.po @@ -1658,6 +1658,10 @@ msgid "" "priority on incoming frames" msgstr "" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:86 +msgid "Defines a specific MTU for this route" +msgstr "" + #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:970 msgid "Delegate IPv6 prefixes" msgstr "" @@ -1795,7 +1799,7 @@ msgid "Directory" msgstr "Mapp" #: 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/routes.js:200 #: 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" @@ -3406,6 +3410,10 @@ msgid "" "classes." msgstr "" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:196 +msgid "If set, the meaning of the match options is inverted" +msgstr "" + #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:254 #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:360 msgid "" @@ -3733,7 +3741,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:191 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:196 msgid "Invert match" msgstr "" @@ -4655,6 +4663,10 @@ msgstr "" msgid "Network Utilities" msgstr "Nätverksverktyg" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:56 +msgid "Network address" +msgstr "" + #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:491 msgid "Network boot image" msgstr "Uppstartsbild för nätverket" @@ -5596,7 +5608,7 @@ msgstr "Föredra UMTS" msgid "Prefix Delegated" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:186 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:191 msgid "Prefix suppressor" msgstr "" @@ -5855,6 +5867,12 @@ msgstr "Referens" msgid "Refreshing" msgstr "" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:191 +msgid "" +"Reject routing decisions that have a prefix length less than or equal to the " +"specified value" +msgstr "" + #: modules/luci-compat/luasrc/model/network/proto_relay.lua:153 #: protocols/luci-proto-relay/htdocs/luci-static/resources/protocol/relay.js:39 msgid "Relay" @@ -6562,6 +6580,13 @@ msgid "" "unless the <em>Local IPv6 DNS server</em> option is disabled." msgstr "" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:186 +msgid "" +"Specifies an individual UID or range of UIDs to match, e.g. 1000 to match " +"corresponding UID or 1000-1005 to inclusively match all UIDs within the " +"corresponding range" +msgstr "" + #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:343 msgid "" "Specifies that duplicate frames (received on inactive ports) should be " @@ -6580,10 +6605,18 @@ msgstr "" msgid "Specifies the MII link monitoring frequency in milliseconds" msgstr "" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:181 +msgid "Specifies the TOS value to match in IP headers" +msgstr "" + #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:261 msgid "Specifies the aggregation selection logic to use" msgstr "" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:159 +msgid "Specifies the destination subnet to match (CIDR notation)" +msgstr "" + #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:292 msgid "Specifies the directory the device is attached to" msgstr "" @@ -6595,6 +6628,22 @@ msgid "" "stateful DHCPv6." msgstr "" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:176 +msgid "" +"Specifies the fwmark and optionally its mask to match, e.g. 0xFF to match " +"mark 255 or 0x0/0x1 to match any even mark value" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:144 +msgid "Specifies the incoming logical interface name" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:41 +msgid "" +"Specifies the logical interface name of the parent (or master) interface " +"this route belongs to" +msgstr "" + #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:254 msgid "" "Specifies the mac-address for the actor in protocol packet exchanges " @@ -6630,6 +6679,13 @@ msgstr "" msgid "Specifies the mode to be used for this bonding interface" msgstr "" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:75 +msgid "" +"Specifies the network gateway. If omitted, the gateway from the parent " +"interface is taken if any, otherwise creates a link scope route. If set to " +"0.0.0.0 no gateway will be specified for the route" +msgstr "" + #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:334 msgid "" "Specifies the number of IGMP membership reports to be issued after a " @@ -6654,6 +6710,20 @@ msgid "" "sends learning packets to each slaves peer switch" msgstr "" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:129 +msgid "Specifies the ordering of the IP rules" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:155 +msgid "Specifies the outgoing logical interface name" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:99 +msgid "" +"Specifies the preferred source address when sending to destinations covered " +"by the target" +msgstr "" + #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:375 msgid "Specifies the quantity of ARP IP targets that must be reachable" msgstr "" @@ -6670,6 +6740,22 @@ msgid "" "active slave or recovery of the primary slave occurs" msgstr "" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:79 +msgid "Specifies the route metric to use" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:45 +msgid "Specifies the route type to be created" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:136 +msgid "Specifies the rule target routing action" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:148 +msgid "Specifies the source subnet to match (CIDR notation)" +msgstr "" + #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:246 msgid "Specifies the system priority" msgstr "" @@ -7352,6 +7438,19 @@ msgid "" "increased. IGMP is robust to (Robustness-1) packet losses" msgstr "" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:171 +msgid "" +"The rule target is a jump to another rule specified by its priority value" +msgstr "" + +#: 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 +msgid "" +"The rule target is a table lookup ID: a numeric table index ranging from 0 " +"to 65535 or symbol alias declared in /etc/iproute2/rt_tables. Special " +"aliases local (255), main (254) and default (253) are also valid" +msgstr "" + #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1371 msgid "The selected %s mode is incompatible with %s encryption" msgstr "" @@ -8016,6 +8115,10 @@ msgstr "" msgid "User certificate (PEM encoded)" msgstr "Användarcertifikat (PEM-krypterad)" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:186 +msgid "User identifier" +msgstr "" + #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:132 msgid "User key (PEM encoded)" msgstr "Användarnyckel (PEM-krypterad)" @@ -8226,6 +8329,12 @@ msgid "" "preference value are considered first when allocating subnets." msgstr "" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:109 +msgid "" +"When enabled, gateway is on link even if the gateway does not match any " +"interface prefix" +msgstr "" + #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1537 msgid "" "When using a PSK, the PMK can be automatically generated. When enabled, the " diff --git a/modules/luci-base/po/templates/base.pot b/modules/luci-base/po/templates/base.pot index ba1b2a3f4c..7196d21ff5 100644 --- a/modules/luci-base/po/templates/base.pot +++ b/modules/luci-base/po/templates/base.pot @@ -1637,6 +1637,10 @@ msgid "" "priority on incoming frames" msgstr "" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:86 +msgid "Defines a specific MTU for this route" +msgstr "" + #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:970 msgid "Delegate IPv6 prefixes" msgstr "" @@ -1774,7 +1778,7 @@ msgid "Directory" msgstr "" #: 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/routes.js:200 #: 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" @@ -3376,6 +3380,10 @@ msgid "" "classes." msgstr "" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:196 +msgid "If set, the meaning of the match options is inverted" +msgstr "" + #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:254 #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:360 msgid "" @@ -3703,7 +3711,7 @@ msgstr "" msgid "Invalid username and/or password! Please try again." msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:191 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:196 msgid "Invert match" msgstr "" @@ -4622,6 +4630,10 @@ msgstr "" msgid "Network Utilities" msgstr "" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:56 +msgid "Network address" +msgstr "" + #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:491 msgid "Network boot image" msgstr "" @@ -5563,7 +5575,7 @@ msgstr "" msgid "Prefix Delegated" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:186 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:191 msgid "Prefix suppressor" msgstr "" @@ -5822,6 +5834,12 @@ msgstr "" msgid "Refreshing" msgstr "" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:191 +msgid "" +"Reject routing decisions that have a prefix length less than or equal to the " +"specified value" +msgstr "" + #: modules/luci-compat/luasrc/model/network/proto_relay.lua:153 #: protocols/luci-proto-relay/htdocs/luci-static/resources/protocol/relay.js:39 msgid "Relay" @@ -6529,6 +6547,13 @@ msgid "" "unless the <em>Local IPv6 DNS server</em> option is disabled." msgstr "" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:186 +msgid "" +"Specifies an individual UID or range of UIDs to match, e.g. 1000 to match " +"corresponding UID or 1000-1005 to inclusively match all UIDs within the " +"corresponding range" +msgstr "" + #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:343 msgid "" "Specifies that duplicate frames (received on inactive ports) should be " @@ -6547,10 +6572,18 @@ msgstr "" msgid "Specifies the MII link monitoring frequency in milliseconds" msgstr "" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:181 +msgid "Specifies the TOS value to match in IP headers" +msgstr "" + #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:261 msgid "Specifies the aggregation selection logic to use" msgstr "" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:159 +msgid "Specifies the destination subnet to match (CIDR notation)" +msgstr "" + #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:292 msgid "Specifies the directory the device is attached to" msgstr "" @@ -6562,6 +6595,22 @@ msgid "" "stateful DHCPv6." msgstr "" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:176 +msgid "" +"Specifies the fwmark and optionally its mask to match, e.g. 0xFF to match " +"mark 255 or 0x0/0x1 to match any even mark value" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:144 +msgid "Specifies the incoming logical interface name" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:41 +msgid "" +"Specifies the logical interface name of the parent (or master) interface " +"this route belongs to" +msgstr "" + #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:254 msgid "" "Specifies the mac-address for the actor in protocol packet exchanges " @@ -6597,6 +6646,13 @@ msgstr "" msgid "Specifies the mode to be used for this bonding interface" msgstr "" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:75 +msgid "" +"Specifies the network gateway. If omitted, the gateway from the parent " +"interface is taken if any, otherwise creates a link scope route. If set to " +"0.0.0.0 no gateway will be specified for the route" +msgstr "" + #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:334 msgid "" "Specifies the number of IGMP membership reports to be issued after a " @@ -6621,6 +6677,20 @@ msgid "" "sends learning packets to each slaves peer switch" msgstr "" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:129 +msgid "Specifies the ordering of the IP rules" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:155 +msgid "Specifies the outgoing logical interface name" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:99 +msgid "" +"Specifies the preferred source address when sending to destinations covered " +"by the target" +msgstr "" + #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:375 msgid "Specifies the quantity of ARP IP targets that must be reachable" msgstr "" @@ -6637,6 +6707,22 @@ msgid "" "active slave or recovery of the primary slave occurs" msgstr "" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:79 +msgid "Specifies the route metric to use" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:45 +msgid "Specifies the route type to be created" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:136 +msgid "Specifies the rule target routing action" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:148 +msgid "Specifies the source subnet to match (CIDR notation)" +msgstr "" + #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:246 msgid "Specifies the system priority" msgstr "" @@ -7319,6 +7405,19 @@ msgid "" "increased. IGMP is robust to (Robustness-1) packet losses" msgstr "" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:171 +msgid "" +"The rule target is a jump to another rule specified by its priority value" +msgstr "" + +#: 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 +msgid "" +"The rule target is a table lookup ID: a numeric table index ranging from 0 " +"to 65535 or symbol alias declared in /etc/iproute2/rt_tables. Special " +"aliases local (255), main (254) and default (253) are also valid" +msgstr "" + #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1371 msgid "The selected %s mode is incompatible with %s encryption" msgstr "" @@ -7979,6 +8078,10 @@ msgstr "" msgid "User certificate (PEM encoded)" msgstr "" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:186 +msgid "User identifier" +msgstr "" + #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:132 msgid "User key (PEM encoded)" msgstr "" @@ -8188,6 +8291,12 @@ msgid "" "preference value are considered first when allocating subnets." msgstr "" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:109 +msgid "" +"When enabled, gateway is on link even if the gateway does not match any " +"interface prefix" +msgstr "" + #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1537 msgid "" "When using a PSK, the PMK can be automatically generated. When enabled, the " diff --git a/modules/luci-base/po/tr/base.po b/modules/luci-base/po/tr/base.po index ab79efca49..80187fe3ab 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: 2022-01-14 15:42+0000\n" +"PO-Revision-Date: 2022-02-20 15:55+0000\n" "Last-Translator: ToldYouThat <itoldyouthat@protonmail.com>\n" "Language-Team: Turkish <https://hosted.weblate.org/projects/openwrt/luci/tr/>" "\n" @@ -11,7 +11,7 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" -"X-Generator: Weblate 4.10.1\n" +"X-Generator: Weblate 4.11-dev\n" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1516 msgid "%.1f dB" @@ -1738,6 +1738,10 @@ msgstr "" "Gelen çerçevelerde VLAN başlık önceliğinin Linux dahili paket önceliğine " "eşlenmesini tanımlar" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:86 +msgid "Defines a specific MTU for this route" +msgstr "Bu rota için belirli bir MTU tanımlar" + #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:970 msgid "Delegate IPv6 prefixes" msgstr "IPv6 öneklerini temsil et" @@ -1875,7 +1879,7 @@ msgid "Directory" msgstr "Dizin" #: 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/routes.js:200 #: 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" @@ -2130,15 +2134,15 @@ msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1429 msgid "Dynamic Authorization Extension client." -msgstr "" +msgstr "Dinamik Yetkilendirme Uzantısı istemcisi." #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1434 msgid "Dynamic Authorization Extension port." -msgstr "" +msgstr "Dinamik Yetkilendirme Uzantısı bağlantı noktası." #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1440 msgid "Dynamic Authorization Extension secret." -msgstr "" +msgstr "Dinamik Yetkilendirme Uzantısı gizli anahtarı." #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6in4.js:60 msgid "Dynamic tunnel" @@ -3286,7 +3290,7 @@ msgstr "Sahte NX Etki Alanını Geçersiz Kılma" #: protocols/luci-proto-xfrm/htdocs/luci-static/resources/protocol/xfrm.js:9 msgid "IPsec XFRM" -msgstr "" +msgstr "IPsec XFRM" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/diagnostics.js:90 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/diagnostics.js:113 @@ -3540,6 +3544,10 @@ msgstr "" "Ayarlanırsa, aşağı akış alt ağları yalnızca belirli IPv6 önek sınıflarından " "ayrılır." +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:196 +msgid "If set, the meaning of the match options is inverted" +msgstr "" + #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:254 #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:360 msgid "" @@ -3894,7 +3902,7 @@ 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:191 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:196 msgid "Invert match" msgstr "Eşleşmeyi ters çevir" @@ -4848,6 +4856,10 @@ msgstr "Ağ SSID'si" msgid "Network Utilities" msgstr "Ağ Yardımcı Programları" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:56 +msgid "Network address" +msgstr "" + #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:491 msgid "Network boot image" msgstr "Ağ önyükleme görüntüsü" @@ -5829,7 +5841,7 @@ msgstr "UMTS'yi tercih et" msgid "Prefix Delegated" msgstr "Önek Delege Edildi" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:186 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:191 msgid "Prefix suppressor" msgstr "Ön ek bastırıcı" @@ -6097,6 +6109,12 @@ msgstr "Referanslar" msgid "Refreshing" msgstr "Yenileniyor" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:191 +msgid "" +"Reject routing decisions that have a prefix length less than or equal to the " +"specified value" +msgstr "" + #: modules/luci-compat/luasrc/model/network/proto_relay.lua:153 #: protocols/luci-proto-relay/htdocs/luci-static/resources/protocol/relay.js:39 msgid "Relay" @@ -6842,6 +6860,13 @@ msgstr "" "devre dışı bırakılmadığı sürece cihaz kendisini IPv6 DNS sunucusu olarak " "duyurur." +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:186 +msgid "" +"Specifies an individual UID or range of UIDs to match, e.g. 1000 to match " +"corresponding UID or 1000-1005 to inclusively match all UIDs within the " +"corresponding range" +msgstr "" + #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:343 msgid "" "Specifies that duplicate frames (received on inactive ports) should be " @@ -6862,10 +6887,18 @@ msgstr "ARP izleme için kullanılacak IP adreslerini belirtir" msgid "Specifies the MII link monitoring frequency in milliseconds" msgstr "Milisaniye cinsinden MII bağlantı izleme frekansını belirtir" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:181 +msgid "Specifies the TOS value to match in IP headers" +msgstr "" + #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:261 msgid "Specifies the aggregation selection logic to use" msgstr "Kullanılacak toplama seçim mantığını belirtir" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:159 +msgid "Specifies the destination subnet to match (CIDR notation)" +msgstr "" + #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:292 msgid "Specifies the directory the device is attached to" msgstr "Aygıtın eklendiği dizini belirtir" @@ -6880,6 +6913,22 @@ msgstr "" "işaretleri belirtir, örneğin istemcilere durum bilgisi olan DHCPv6 " "aracılığıyla daha fazla bilgi isteme talimatı vermek için." +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:176 +msgid "" +"Specifies the fwmark and optionally its mask to match, e.g. 0xFF to match " +"mark 255 or 0x0/0x1 to match any even mark value" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:144 +msgid "Specifies the incoming logical interface name" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:41 +msgid "" +"Specifies the logical interface name of the parent (or master) interface " +"this route belongs to" +msgstr "" + #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:254 msgid "" "Specifies the mac-address for the actor in protocol packet exchanges " @@ -6927,6 +6976,13 @@ msgstr "" msgid "Specifies the mode to be used for this bonding interface" msgstr "Bu bağlama arayüzü için kullanılacak modu belirtir" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:75 +msgid "" +"Specifies the network gateway. If omitted, the gateway from the parent " +"interface is taken if any, otherwise creates a link scope route. If set to " +"0.0.0.0 no gateway will be specified for the route" +msgstr "" + #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:334 msgid "" "Specifies the number of IGMP membership reports to be issued after a " @@ -6959,6 +7015,20 @@ msgstr "" "Bağlama sürücüsünün her bir bağımlı eş anahtarına öğrenme paketleri " "gönderdiği örnekler arasındaki saniye sayısını belirtir" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:129 +msgid "Specifies the ordering of the IP rules" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:155 +msgid "Specifies the outgoing logical interface name" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:99 +msgid "" +"Specifies the preferred source address when sending to destinations covered " +"by the target" +msgstr "" + #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:375 msgid "Specifies the quantity of ARP IP targets that must be reachable" msgstr "Ulaşılması gereken ARP IP hedeflerinin miktarını belirtir" @@ -6978,6 +7048,22 @@ msgstr "" "Etkin ikincil öğenin arızalanması veya birincil ikincil öğenin kurtarılması " "meydana geldiğinde birincil bağımlı için yeniden seçim politikasını belirtir" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:79 +msgid "Specifies the route metric to use" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:45 +msgid "Specifies the route type to be created" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:136 +msgid "Specifies the rule target routing action" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:148 +msgid "Specifies the source subnet to match (CIDR notation)" +msgstr "" + #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:246 msgid "Specifies the system priority" msgstr "Sistem önceliğini belirtir" @@ -7761,6 +7847,19 @@ msgstr "" "verir. Bir ağın kayıplı olması bekleniyorsa, sağlamlık değeri artırılabilir. " "IGMP, (Sağlamlık-1) paket kayıplarına karşı dayanıklıdır" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:171 +msgid "" +"The rule target is a jump to another rule specified by its priority value" +msgstr "" + +#: 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 +msgid "" +"The rule target is a table lookup ID: a numeric table index ranging from 0 " +"to 65535 or symbol alias declared in /etc/iproute2/rt_tables. Special " +"aliases local (255), main (254) and default (253) are also valid" +msgstr "" + #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1371 msgid "The selected %s mode is incompatible with %s encryption" msgstr "Seçilen %s modu, %s şifrelemesiyle uyumlu değil" @@ -8489,6 +8588,10 @@ msgstr "Kullanıcı grubu" msgid "User certificate (PEM encoded)" msgstr "Kullanıcı sertifikası (PEM kodlu)" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:186 +msgid "User identifier" +msgstr "" + #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:132 msgid "User key (PEM encoded)" msgstr "Kullanıcı anahtarı (PEM kodlu)" @@ -8709,6 +8812,12 @@ msgstr "" "Ön ekleri birden çok aşağı akışa devrederken, alt ağları tahsis ederken ilk " "olarak daha yüksek tercih değerine sahip arabirimler dikkate alınır." +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:109 +msgid "" +"When enabled, gateway is on link even if the gateway does not match any " +"interface prefix" +msgstr "" + #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1537 msgid "" "When using a PSK, the PMK can be automatically generated. When enabled, the " diff --git a/modules/luci-base/po/uk/base.po b/modules/luci-base/po/uk/base.po index 68650db693..8faa25caac 100644 --- a/modules/luci-base/po/uk/base.po +++ b/modules/luci-base/po/uk/base.po @@ -1,8 +1,8 @@ msgid "" msgstr "" "Project-Id-Version: \n" -"PO-Revision-Date: 2021-12-13 23:52+0000\n" -"Last-Translator: Josef Schlehofer <pepe@bloodkings.eu>\n" +"PO-Revision-Date: 2022-02-17 13:04+0000\n" +"Last-Translator: Taras Rosa <taras1rosa@gmail.com>\n" "Language-Team: Ukrainian <https://hosted.weblate.org/projects/openwrt/luci/" "uk/>\n" "Language: uk\n" @@ -11,7 +11,7 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" "%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" -"X-Generator: Weblate 4.10-dev\n" +"X-Generator: Weblate 4.11-dev\n" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1516 msgid "%.1f dB" @@ -397,7 +397,7 @@ msgstr "IPv6 маршрути" #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:268 msgid "Active IPv6 Rules" -msgstr "" +msgstr "Активні IPv6 правила" #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:205 msgid "Active-Backup policy (active-backup, 1)" @@ -1747,6 +1747,10 @@ msgstr "" "Визначає відображення пріоритету заголовка VLAN на внутрішній пріоритет " "пакета Linux у вхідних кадрах" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:86 +msgid "Defines a specific MTU for this route" +msgstr "" + #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:970 msgid "Delegate IPv6 prefixes" msgstr "Делегувати префікси IPv6" @@ -1884,7 +1888,7 @@ msgid "Directory" msgstr "Каталог" #: 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/routes.js:200 #: 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" @@ -3536,6 +3540,10 @@ msgid "" "classes." msgstr "" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:196 +msgid "If set, the meaning of the match options is inverted" +msgstr "" + #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:254 #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:360 msgid "" @@ -3883,7 +3891,7 @@ msgstr "Неприпустиме шістнадцяткове значення" msgid "Invalid username and/or password! Please try again." msgstr "Неприпустиме ім'я користувача та/або пароль! Спробуйте ще раз." -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:191 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:196 msgid "Invert match" msgstr "" @@ -4842,6 +4850,10 @@ msgstr "Мережевий SSID" msgid "Network Utilities" msgstr "Мережеві утиліти" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:56 +msgid "Network address" +msgstr "" + #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:491 msgid "Network boot image" msgstr "Образ для мережевого завантаження" @@ -5812,7 +5824,7 @@ msgstr "Переважно UMTS" msgid "Prefix Delegated" msgstr "Делеговано префікс" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:186 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:191 msgid "Prefix suppressor" msgstr "" @@ -6088,6 +6100,12 @@ msgstr "Посилання" msgid "Refreshing" msgstr "Поновлюється" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:191 +msgid "" +"Reject routing decisions that have a prefix length less than or equal to the " +"specified value" +msgstr "" + #: modules/luci-compat/luasrc/model/network/proto_relay.lua:153 #: protocols/luci-proto-relay/htdocs/luci-static/resources/protocol/relay.js:39 msgid "Relay" @@ -6663,7 +6681,7 @@ msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:210 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/60_wifi.js:39 msgid "Short GI" -msgstr "Short GI" +msgstr "Короткий GI" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1159 msgid "Short Preamble" @@ -6811,6 +6829,13 @@ msgid "" "unless the <em>Local IPv6 DNS server</em> option is disabled." msgstr "" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:186 +msgid "" +"Specifies an individual UID or range of UIDs to match, e.g. 1000 to match " +"corresponding UID or 1000-1005 to inclusively match all UIDs within the " +"corresponding range" +msgstr "" + #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:343 msgid "" "Specifies that duplicate frames (received on inactive ports) should be " @@ -6831,10 +6856,18 @@ msgstr "Визначає IP-адреси, які використовуютьс msgid "Specifies the MII link monitoring frequency in milliseconds" msgstr "Визначає частоту моніторингу з'єднань MII у мілісекундах" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:181 +msgid "Specifies the TOS value to match in IP headers" +msgstr "" + #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:261 msgid "Specifies the aggregation selection logic to use" msgstr "Визначає логіку вибору агрегації для використання" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:159 +msgid "Specifies the destination subnet to match (CIDR notation)" +msgstr "" + #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:292 msgid "Specifies the directory the device is attached to" msgstr "Визначає каталог, до якого приєднано пристрій" @@ -6846,6 +6879,22 @@ msgid "" "stateful DHCPv6." msgstr "" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:176 +msgid "" +"Specifies the fwmark and optionally its mask to match, e.g. 0xFF to match " +"mark 255 or 0x0/0x1 to match any even mark value" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:144 +msgid "Specifies the incoming logical interface name" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:41 +msgid "" +"Specifies the logical interface name of the parent (or master) interface " +"this route belongs to" +msgstr "" + #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:254 msgid "" "Specifies the mac-address for the actor in protocol packet exchanges " @@ -6893,6 +6942,13 @@ msgid "Specifies the mode to be used for this bonding interface" msgstr "" "Визначає режим, який буде використовуватися для цього інтерфейсу зв'язування" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:75 +msgid "" +"Specifies the network gateway. If omitted, the gateway from the parent " +"interface is taken if any, otherwise creates a link scope route. If set to " +"0.0.0.0 no gateway will be specified for the route" +msgstr "" + #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:334 msgid "" "Specifies the number of IGMP membership reports to be issued after a " @@ -6919,6 +6975,20 @@ msgid "" "sends learning packets to each slaves peer switch" msgstr "" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:129 +msgid "Specifies the ordering of the IP rules" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:155 +msgid "Specifies the outgoing logical interface name" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:99 +msgid "" +"Specifies the preferred source address when sending to destinations covered " +"by the target" +msgstr "" + #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:375 msgid "Specifies the quantity of ARP IP targets that must be reachable" msgstr "" @@ -6935,6 +7005,22 @@ msgid "" "active slave or recovery of the primary slave occurs" msgstr "" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:79 +msgid "Specifies the route metric to use" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:45 +msgid "Specifies the route type to be created" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:136 +msgid "Specifies the rule target routing action" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:148 +msgid "Specifies the source subnet to match (CIDR notation)" +msgstr "" + #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:246 msgid "Specifies the system priority" msgstr "Вказує пріоритет системи" @@ -7658,6 +7744,19 @@ msgid "" "increased. IGMP is robust to (Robustness-1) packet losses" msgstr "" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:171 +msgid "" +"The rule target is a jump to another rule specified by its priority value" +msgstr "" + +#: 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 +msgid "" +"The rule target is a table lookup ID: a numeric table index ranging from 0 " +"to 65535 or symbol alias declared in /etc/iproute2/rt_tables. Special " +"aliases local (255), main (254) and default (253) are also valid" +msgstr "" + #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1371 msgid "The selected %s mode is incompatible with %s encryption" msgstr "Обраний режим %s несумісний із шифруванням %s" @@ -8070,7 +8169,7 @@ msgstr "Недоступні секунди (<abbr title=\"Unavailable Seconds\" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1294 msgid "Unconfigure" -msgstr "" +msgstr "Скасувати налаштування" #: modules/luci-base/htdocs/luci-static/resources/fs.js:102 msgid "Unexpected reply data format" @@ -8373,6 +8472,10 @@ msgstr "Користувацька група" msgid "User certificate (PEM encoded)" msgstr "Сертифікат користувача (PEM-кодований)" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:186 +msgid "User identifier" +msgstr "" + #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:132 msgid "User key (PEM encoded)" msgstr "Ключ користувача (PEM-кодований)" @@ -8589,6 +8692,12 @@ msgid "" "preference value are considered first when allocating subnets." msgstr "" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:109 +msgid "" +"When enabled, gateway is on link even if the gateway does not match any " +"interface prefix" +msgstr "" + #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1537 msgid "" "When using a PSK, the PMK can be automatically generated. When enabled, the " @@ -8730,6 +8839,8 @@ msgid "" "You must select a primary interface which is included in selected slave " "interfaces!" msgstr "" +"Ви повинні обрати основний інтерфейс, який входить у вибрані підпорядковані " +"інтерфейси!" #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:98 msgid "" diff --git a/modules/luci-base/po/vi/base.po b/modules/luci-base/po/vi/base.po index 894b042c21..7a066d2873 100644 --- a/modules/luci-base/po/vi/base.po +++ b/modules/luci-base/po/vi/base.po @@ -1690,6 +1690,10 @@ msgid "" "priority on incoming frames" msgstr "" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:86 +msgid "Defines a specific MTU for this route" +msgstr "" + #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:970 msgid "Delegate IPv6 prefixes" msgstr "" @@ -1827,7 +1831,7 @@ msgid "Directory" msgstr "Danh mục" #: 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/routes.js:200 #: 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" @@ -3461,6 +3465,10 @@ msgid "" "classes." msgstr "" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:196 +msgid "If set, the meaning of the match options is inverted" +msgstr "" + #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:254 #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:360 msgid "" @@ -3801,7 +3809,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:191 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:196 msgid "Invert match" msgstr "" @@ -4741,6 +4749,10 @@ msgstr "" msgid "Network Utilities" msgstr "Tiện ích mạng" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:56 +msgid "Network address" +msgstr "" + #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:491 msgid "Network boot image" msgstr "Tập tin ảnh khởi động mạng" @@ -5701,7 +5713,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:186 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:191 msgid "Prefix suppressor" msgstr "" @@ -5973,6 +5985,12 @@ msgstr "Tham khảo" msgid "Refreshing" msgstr "" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:191 +msgid "" +"Reject routing decisions that have a prefix length less than or equal to the " +"specified value" +msgstr "" + #: modules/luci-compat/luasrc/model/network/proto_relay.lua:153 #: protocols/luci-proto-relay/htdocs/luci-static/resources/protocol/relay.js:39 msgid "Relay" @@ -6693,6 +6711,13 @@ msgid "" "unless the <em>Local IPv6 DNS server</em> option is disabled." msgstr "" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:186 +msgid "" +"Specifies an individual UID or range of UIDs to match, e.g. 1000 to match " +"corresponding UID or 1000-1005 to inclusively match all UIDs within the " +"corresponding range" +msgstr "" + #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:343 msgid "" "Specifies that duplicate frames (received on inactive ports) should be " @@ -6711,10 +6736,18 @@ msgstr "" msgid "Specifies the MII link monitoring frequency in milliseconds" msgstr "" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:181 +msgid "Specifies the TOS value to match in IP headers" +msgstr "" + #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:261 msgid "Specifies the aggregation selection logic to use" msgstr "" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:159 +msgid "Specifies the destination subnet to match (CIDR notation)" +msgstr "" + #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:292 msgid "Specifies the directory the device is attached to" msgstr "Chỉ định thư mục mà thiết bị được đính kèm" @@ -6726,6 +6759,22 @@ msgid "" "stateful DHCPv6." msgstr "" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:176 +msgid "" +"Specifies the fwmark and optionally its mask to match, e.g. 0xFF to match " +"mark 255 or 0x0/0x1 to match any even mark value" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:144 +msgid "Specifies the incoming logical interface name" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:41 +msgid "" +"Specifies the logical interface name of the parent (or master) interface " +"this route belongs to" +msgstr "" + #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:254 msgid "" "Specifies the mac-address for the actor in protocol packet exchanges " @@ -6768,6 +6817,13 @@ msgstr "" msgid "Specifies the mode to be used for this bonding interface" msgstr "" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:75 +msgid "" +"Specifies the network gateway. If omitted, the gateway from the parent " +"interface is taken if any, otherwise creates a link scope route. If set to " +"0.0.0.0 no gateway will be specified for the route" +msgstr "" + #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:334 msgid "" "Specifies the number of IGMP membership reports to be issued after a " @@ -6792,6 +6848,20 @@ msgid "" "sends learning packets to each slaves peer switch" msgstr "" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:129 +msgid "Specifies the ordering of the IP rules" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:155 +msgid "Specifies the outgoing logical interface name" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:99 +msgid "" +"Specifies the preferred source address when sending to destinations covered " +"by the target" +msgstr "" + #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:375 msgid "Specifies the quantity of ARP IP targets that must be reachable" msgstr "" @@ -6808,6 +6878,22 @@ msgid "" "active slave or recovery of the primary slave occurs" msgstr "" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:79 +msgid "Specifies the route metric to use" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:45 +msgid "Specifies the route type to be created" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:136 +msgid "Specifies the rule target routing action" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:148 +msgid "Specifies the source subnet to match (CIDR notation)" +msgstr "" + #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:246 msgid "Specifies the system priority" msgstr "" @@ -7515,6 +7601,19 @@ msgid "" "increased. IGMP is robust to (Robustness-1) packet losses" msgstr "" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:171 +msgid "" +"The rule target is a jump to another rule specified by its priority value" +msgstr "" + +#: 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 +msgid "" +"The rule target is a table lookup ID: a numeric table index ranging from 0 " +"to 65535 or symbol alias declared in /etc/iproute2/rt_tables. Special " +"aliases local (255), main (254) and default (253) are also valid" +msgstr "" + #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1371 msgid "The selected %s mode is incompatible with %s encryption" msgstr "Chế độ %s được chọn không tương thích với mã hóa %s" @@ -8220,6 +8319,10 @@ msgstr "" msgid "User certificate (PEM encoded)" msgstr "Chứng chỉ người dùng (mã hóa PEM)" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:186 +msgid "User identifier" +msgstr "" + #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:132 msgid "User key (PEM encoded)" msgstr "Khóa người dùng (mã hóa PEM)" @@ -8433,6 +8536,12 @@ msgid "" "preference value are considered first when allocating subnets." msgstr "" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:109 +msgid "" +"When enabled, gateway is on link even if the gateway does not match any " +"interface prefix" +msgstr "" + #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1537 msgid "" "When using a PSK, the PMK can be automatically generated. When enabled, the " diff --git a/modules/luci-base/po/zh_Hans/base.po b/modules/luci-base/po/zh_Hans/base.po index 106ef8184c..e37dba3157 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: 2022-01-25 09:41+0000\n" +"PO-Revision-Date: 2022-02-20 15:55+0000\n" "Last-Translator: Eric <alchemillatruth@purelymail.com>\n" "Language-Team: Chinese (Simplified) <https://hosted.weblate.org/projects/" "openwrt/luci/zh_Hans/>\n" @@ -1684,6 +1684,10 @@ msgid "" "priority on incoming frames" msgstr "定义在传入帧上 VLAN 标头优先级到 Linux 内部数据包优先级的映射" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:86 +msgid "Defines a specific MTU for this route" +msgstr "为此路由定义一个特定的 MTU" + #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:970 msgid "Delegate IPv6 prefixes" msgstr "委托 IPv6 前缀" @@ -1821,7 +1825,7 @@ msgid "Directory" msgstr "目录" #: 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/routes.js:200 #: 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" @@ -3448,6 +3452,10 @@ msgid "" "classes." msgstr "如果设置,则仅从给定的 IPv6 前缀类别中分配下游子网。" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:196 +msgid "If set, the meaning of the match options is inverted" +msgstr "设置后,匹配选项的含义将颠倒" + #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:254 #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:360 msgid "" @@ -3782,7 +3790,7 @@ msgstr "无效 16 进制值" msgid "Invalid username and/or password! Please try again." msgstr "无效的用户名和/或密码!请重试。" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:191 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:196 msgid "Invert match" msgstr "反向匹配" @@ -4720,6 +4728,10 @@ msgstr "网络 SSID" msgid "Network Utilities" msgstr "网络工具" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:56 +msgid "Network address" +msgstr "网络地址" + #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:491 msgid "Network boot image" msgstr "网络启动镜像" @@ -5680,7 +5692,7 @@ msgstr "首选 UMTS" msgid "Prefix Delegated" msgstr "分发前缀" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:186 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:191 msgid "Prefix suppressor" msgstr "前缀抑制器" @@ -5944,6 +5956,12 @@ msgstr "引用" msgid "Refreshing" msgstr "刷新" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:191 +msgid "" +"Reject routing decisions that have a prefix length less than or equal to the " +"specified value" +msgstr "拒绝前缀长度小于或等于指定值的路由决策" + #: modules/luci-compat/luasrc/model/network/proto_relay.lua:153 #: protocols/luci-proto-relay/htdocs/luci-static/resources/protocol/relay.js:39 msgid "Relay" @@ -6672,6 +6690,13 @@ msgstr "" "指定一个通过 DHCPv6 宣布的 IPv6 DNS 服务器地址的固定列表。如未指定,设备会宣" "布自己是 IPv6 DNS 服务器,除非<em>本地 IPv6 DNS 服务器</em>选项被禁用。" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:186 +msgid "" +"Specifies an individual UID or range of UIDs to match, e.g. 1000 to match " +"corresponding UID or 1000-1005 to inclusively match all UIDs within the " +"corresponding range" +msgstr "指定要匹配的单个 UID 或 UID 范围,例如,1000 用于匹配对应的 UID,1000-1005 用于匹配对应范围内的所有 UID" + #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:343 msgid "" "Specifies that duplicate frames (received on inactive ports) should be " @@ -6690,10 +6715,18 @@ msgstr "指定用于 ARP 监控的 IP 地址" msgid "Specifies the MII link monitoring frequency in milliseconds" msgstr "以毫秒为单位指定 MII 链接监控频率" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:181 +msgid "Specifies the TOS value to match in IP headers" +msgstr "指定要在 IP 头中匹配的 TOS 值" + #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:261 msgid "Specifies the aggregation selection logic to use" msgstr "指定要使用的聚合选择逻辑" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:159 +msgid "Specifies the destination subnet to match (CIDR notation)" +msgstr "指定要匹配的目标子网(CIDR 符号)" + #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:292 msgid "Specifies the directory the device is attached to" msgstr "指定设备的挂载目录" @@ -6707,6 +6740,22 @@ msgstr "" "指定<abbr title=\"路由器通告\">RA</abbr>消息中发送的标记,比如指示客户端通过" "有状态 DHCPv6 请求进一步的信息。" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:176 +msgid "" +"Specifies the fwmark and optionally its mask to match, e.g. 0xFF to match " +"mark 255 or 0x0/0x1 to match any even mark value" +msgstr "指定要匹配的 fwmark 及其 mask(可选),例如 0xFF 匹配 mark 255,0x0/0x1 匹配任意 mark 值" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:144 +msgid "Specifies the incoming logical interface name" +msgstr "输入传入逻辑接口名称" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:41 +msgid "" +"Specifies the logical interface name of the parent (or master) interface " +"this route belongs to" +msgstr "指定该路由所属的父(或主)接口的逻辑接口名" + #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:254 msgid "" "Specifies the mac-address for the actor in protocol packet exchanges " @@ -6746,6 +6795,13 @@ msgstr "指定 asserting 运营商前必须处于活跃状态的链接的最小 msgid "Specifies the mode to be used for this bonding interface" msgstr "指定用于此 bonding 接口的模式" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:75 +msgid "" +"Specifies the network gateway. If omitted, the gateway from the parent " +"interface is taken if any, otherwise creates a link scope route. If set to " +"0.0.0.0 no gateway will be specified for the route" +msgstr "指定网络网关。如省略,则采用父接口的网关(如果有的话),否则创建一个链接范围路由。如设置为 0.0.0.0,则不为该路由指定网关" + #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:334 msgid "" "Specifies the number of IGMP membership reports to be issued after a " @@ -6772,6 +6828,20 @@ msgid "" msgstr "" "指定 bonding 驱动程序向每个从属设备连接的交换机发送学习数据包的间隔秒数" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:129 +msgid "Specifies the ordering of the IP rules" +msgstr "指定 IP 规则的顺序" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:155 +msgid "Specifies the outgoing logical interface name" +msgstr "指定传出逻辑接口名" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:99 +msgid "" +"Specifies the preferred source address when sending to destinations covered " +"by the target" +msgstr "指定发送到目标覆盖的目的地时的首选源地址" + #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:375 msgid "Specifies the quantity of ARP IP targets that must be reachable" msgstr "指定必须可达的 ARP IP 目标数" @@ -6788,6 +6858,22 @@ msgid "" "active slave or recovery of the primary slave occurs" msgstr "指定当活动从属设备发生故障或主从属设备恢复时,主从属设备的重选策略" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:79 +msgid "Specifies the route metric to use" +msgstr "指定要使用的路由度量" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:45 +msgid "Specifies the route type to be created" +msgstr "指定要创建的路由类型" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:136 +msgid "Specifies the rule target routing action" +msgstr "指定规则目标路由动作" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:148 +msgid "Specifies the source subnet to match (CIDR notation)" +msgstr "指定要匹配的源子网(CIDR符号)" + #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:246 msgid "Specifies the system priority" msgstr "指定系统优先级" @@ -7507,6 +7593,21 @@ msgstr "" "健壮性值允许调整网络上预期的数据包丢失。 如果预期网络丢包率较高,可以增加健壮" "值。IGMP对于(Robustness-1)数据包丢失具有鲁棒性" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:171 +msgid "" +"The rule target is a jump to another rule specified by its priority value" +msgstr "规则目标是跳转到由其优先级值指定的另一条规则" + +#: 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 +msgid "" +"The rule target is a table lookup ID: a numeric table index ranging from 0 " +"to 65535 or symbol alias declared in /etc/iproute2/rt_tables. Special " +"aliases local (255), main (254) and default (253) are also valid" +msgstr "" +"规则目标是一个表查找 ID:从 0 到 65535 的数字表索引或在 /etc/iproute2/rt 表中声明的符号别名。特殊别名 " +"local(255)、main(254) 和 default(253) 也有效" + #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1371 msgid "The selected %s mode is incompatible with %s encryption" msgstr "模式 %s 与 %s 加密方法不兼容" @@ -8191,6 +8292,10 @@ msgstr "用户组" msgid "User certificate (PEM encoded)" msgstr "用户证书(PEM)" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:186 +msgid "User identifier" +msgstr "用户标识符" + #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:132 msgid "User key (PEM encoded)" msgstr "用户密钥(PEM)" @@ -8403,6 +8508,12 @@ msgid "" msgstr "" "将前缀委派给多个下游时,在分配子网时,将首先考虑具有较高优先级值的接口。" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:109 +msgid "" +"When enabled, gateway is on link even if the gateway does not match any " +"interface prefix" +msgstr "启用后,即使网关没有匹配任何接口前缀,网关也处于链路状态" + #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1537 msgid "" "When using a PSK, the PMK can be automatically generated. When enabled, the " diff --git a/modules/luci-base/po/zh_Hant/base.po b/modules/luci-base/po/zh_Hant/base.po index 85bbb1f55b..7246dc3d78 100644 --- a/modules/luci-base/po/zh_Hant/base.po +++ b/modules/luci-base/po/zh_Hant/base.po @@ -1,8 +1,8 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"PO-Revision-Date: 2021-10-26 12:53+0000\n" -"Last-Translator: zhanhb <zhanhb88@gmail.com>\n" +"PO-Revision-Date: 2022-02-05 09:21+0000\n" +"Last-Translator: Hulen <shift0106@gmail.com>\n" "Language-Team: Chinese (Traditional) <https://hosted.weblate.org/projects/" "openwrt/luci/zh_Hant/>\n" "Language: zh_Hant\n" @@ -10,7 +10,7 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" -"X-Generator: Weblate 4.9-dev\n" +"X-Generator: Weblate 4.11-dev\n" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1516 msgid "%.1f dB" @@ -647,7 +647,7 @@ msgstr "永遠開啟 (內核:預設開啟)" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:537 msgid "Always send DHCP Options. Sometimes needed, with e.g. PXELinux." -msgstr "" +msgstr "始終傳送 DHCP 選項。 有時需要,例如 PXELinux。" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:971 msgid "" @@ -783,7 +783,7 @@ msgstr "任意區域" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:531 msgid "Apply DHCP Options to this net. (Empty = all clients)." -msgstr "" +msgstr "始終傳送 DHCP 選項。 有時需要,例如 PXELinux。" #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:119 msgid "Apply backup?" @@ -1686,6 +1686,10 @@ msgid "" "priority on incoming frames" msgstr "在傳入框架上定義 VLAN 標頭優先順序到 Linux 內部封包優先順序的對應" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:86 +msgid "Defines a specific MTU for this route" +msgstr "" + #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:970 msgid "Delegate IPv6 prefixes" msgstr "委派 IPv6 首碼" @@ -1823,7 +1827,7 @@ msgid "Directory" msgstr "目錄" #: 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/routes.js:200 #: 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" @@ -3456,6 +3460,10 @@ msgid "" "classes." msgstr "如果設定,則僅從給定的 IPv6 前綴類別中分配下游子網路。" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:196 +msgid "If set, the meaning of the match options is inverted" +msgstr "" + #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:254 #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:360 msgid "" @@ -3790,7 +3798,7 @@ msgstr "錯誤的十六進制數值" msgid "Invalid username and/or password! Please try again." msgstr "不正確的使用者名稱和/或者密碼!請再試一次。" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:191 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:196 msgid "Invert match" msgstr "" @@ -4728,6 +4736,10 @@ msgstr "網路SSID" msgid "Network Utilities" msgstr "網路工具" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:56 +msgid "Network address" +msgstr "" + #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:491 msgid "Network boot image" msgstr "網路開機映像檔" @@ -5580,7 +5592,7 @@ msgstr "" #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:162 msgid "Peers" -msgstr "對等節點群" +msgstr "對等" #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:80 msgid "Perfect Forward Secrecy" @@ -5646,7 +5658,7 @@ msgstr "政策" #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/dropbear.js:21 msgid "Port" -msgstr "通訊埠" +msgstr "連接埠" #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:702 msgid "Port isolation" @@ -5680,7 +5692,7 @@ msgstr "偏好 UMTS" msgid "Prefix Delegated" msgstr "前綴委派" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:186 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:191 msgid "Prefix suppressor" msgstr "" @@ -5947,6 +5959,12 @@ msgstr "引用" msgid "Refreshing" msgstr "重新整理" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:191 +msgid "" +"Reject routing decisions that have a prefix length less than or equal to the " +"specified value" +msgstr "" + #: modules/luci-compat/luasrc/model/network/proto_relay.lua:153 #: protocols/luci-proto-relay/htdocs/luci-static/resources/protocol/relay.js:39 msgid "Relay" @@ -6506,7 +6524,7 @@ msgstr "設定操作模式失敗" #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/uhttpd.js:11 msgid "Settings" -msgstr "" +msgstr "設定" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:916 msgid "Setup routes for proxied IPv6 neighbours." @@ -6670,6 +6688,13 @@ msgstr "" "指定一個透過 DHCPv6 宣布的 IPv6 DNS 伺服器位址的固定列表。如未指定,裝置會宣" "布自己是 IPv6 DNS 伺服器,除非<em>本地 IPv6 DNS 伺服器</em>選項被停用。" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:186 +msgid "" +"Specifies an individual UID or range of UIDs to match, e.g. 1000 to match " +"corresponding UID or 1000-1005 to inclusively match all UIDs within the " +"corresponding range" +msgstr "" + #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:343 msgid "" "Specifies that duplicate frames (received on inactive ports) should be " @@ -6688,10 +6713,18 @@ msgstr "指定用於ARP監視的IP地址" msgid "Specifies the MII link monitoring frequency in milliseconds" msgstr "指定MII連接監視頻率(以毫秒為單位)" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:181 +msgid "Specifies the TOS value to match in IP headers" +msgstr "" + #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:261 msgid "Specifies the aggregation selection logic to use" msgstr "指定要使用的聚合選擇邏輯" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:159 +msgid "Specifies the destination subnet to match (CIDR notation)" +msgstr "" + #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:292 msgid "Specifies the directory the device is attached to" msgstr "指定這個設備將被附掛到的目錄" @@ -6705,6 +6738,22 @@ msgstr "" "指定<abbr title=\"路由器通告\">RA</abbr>訊息中傳送的標記,比如指示客戶端透過" "有狀態 DHCPv6 請求進一步的資訊。" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:176 +msgid "" +"Specifies the fwmark and optionally its mask to match, e.g. 0xFF to match " +"mark 255 or 0x0/0x1 to match any even mark value" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:144 +msgid "Specifies the incoming logical interface name" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:41 +msgid "" +"Specifies the logical interface name of the parent (or master) interface " +"this route belongs to" +msgstr "" + #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:254 msgid "" "Specifies the mac-address for the actor in protocol packet exchanges " @@ -6742,6 +6791,13 @@ msgstr "指定宣告載波之前必須處於活動狀態的最小連接數" msgid "Specifies the mode to be used for this bonding interface" msgstr "指定用於此綁定界面的模式" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:75 +msgid "" +"Specifies the network gateway. If omitted, the gateway from the parent " +"interface is taken if any, otherwise creates a link scope route. If set to " +"0.0.0.0 no gateway will be specified for the route" +msgstr "" + #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:334 msgid "" "Specifies the number of IGMP membership reports to be issued after a " @@ -6768,6 +6824,20 @@ msgid "" msgstr "" "指定綁定驅動程式, 將學習封包發送到每個實體界面節點交換機的實例之間的秒數" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:129 +msgid "Specifies the ordering of the IP rules" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:155 +msgid "Specifies the outgoing logical interface name" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:99 +msgid "" +"Specifies the preferred source address when sending to destinations covered " +"by the target" +msgstr "" + #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:375 msgid "Specifies the quantity of ARP IP targets that must be reachable" msgstr "指定必須達到的ARP IP目標數量" @@ -6786,6 +6856,22 @@ msgstr "" "當活躍的實體界面發生故障 或 主要實體界面復原發生故障時, 為主要實體界面指定重" "新選擇策略" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:79 +msgid "Specifies the route metric to use" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:45 +msgid "Specifies the route type to be created" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:136 +msgid "Specifies the rule target routing action" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:148 +msgid "Specifies the source subnet to match (CIDR notation)" +msgstr "" + #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:246 msgid "Specifies the system priority" msgstr "指定系統優先權" @@ -7508,6 +7594,19 @@ msgstr "" "加強性值允許調整網路上預期的資料封包遺失。 如果預期網路丟包率較高,可以增加加" "強性值。IGMP對於 (Robustness-1) 資料封包遺失具有健全性" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:171 +msgid "" +"The rule target is a jump to another rule specified by its priority value" +msgstr "" + +#: 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 +msgid "" +"The rule target is a table lookup ID: a numeric table index ranging from 0 " +"to 65535 or symbol alias declared in /etc/iproute2/rt_tables. Special " +"aliases local (255), main (254) and default (253) are also valid" +msgstr "" + #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1371 msgid "The selected %s mode is incompatible with %s encryption" msgstr "選擇的模式 %s 與 %s 加密不相容" @@ -8195,6 +8294,10 @@ msgstr "使用者群組" msgid "User certificate (PEM encoded)" msgstr "使用者數位簽證(PEM編碼格式)" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:186 +msgid "User identifier" +msgstr "使用者識別碼" + #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:132 msgid "User key (PEM encoded)" msgstr "使用者金鑰(PEM編碼格式)" @@ -8407,6 +8510,12 @@ msgid "" msgstr "" "將前綴委派給多個下游時,在分配子網路時,將首先考慮具有較高優先順序值的介面。" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:109 +msgid "" +"When enabled, gateway is on link even if the gateway does not match any " +"interface prefix" +msgstr "" + #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1537 msgid "" "When using a PSK, the PMK can be automatically generated. When enabled, the " |