diff options
Diffstat (limited to 'modules/luci-base')
100 files changed, 16376 insertions, 16743 deletions
diff --git a/modules/luci-base/Makefile b/modules/luci-base/Makefile index 6cb2b64092..f85f753320 100644 --- a/modules/luci-base/Makefile +++ b/modules/luci-base/Makefile @@ -1,5 +1,5 @@ # -# Copyright (C) 2008-2015 The LuCI Team <luci@lists.subsignal.org> +# Copyright (C) 2022 Jo-Philipp Wich <jo@mein.io> # # This is free software, licensed under the Apache License, Version 2.0 . # @@ -11,8 +11,20 @@ PKG_NAME:=luci-base LUCI_TYPE:=mod LUCI_BASENAME:=base -LUCI_TITLE:=LuCI core libraries -LUCI_DEPENDS:=+lua +luci-lib-nixio +luci-lib-ip +rpcd +libubus-lua +luci-lib-jsonc +liblucihttp-lua +luci-lib-base +rpcd-mod-file +rpcd-mod-luci +cgi-io +LUCI_TITLE:=LuCI core runtime +LUCI_DEPENDS:=\ + +rpcd \ + +rpcd-mod-file \ + +rpcd-mod-luci \ + +rpcd-mod-ucode \ + +cgi-io \ + +ucode \ + +ucode-mod-fs \ + +ucode-mod-uci \ + +ucode-mod-ubus \ + +ucode-mod-math \ + +ucode-mod-html \ + +liblucihttp-ucode PKG_LICENSE:=MIT @@ -26,6 +38,20 @@ define Package/luci-base/conffiles /etc/config/ucitrack endef +define Package/luci-base/postinst +#!/bin/sh + +if [ -z "$${PKG_INSTROOT}" ] && [ -f /etc/config/uhttpd ]; then + if ! uci -q get uhttpd.main.ucode_prefix | grep -sq /cgi-bin/luci; then + uci add_list uhttpd.main.ucode_prefix='/cgi-bin/luci=/usr/share/ucode/luci/uhttpd.uc' + uci commit uhttpd + service uhttpd reload + fi +fi + +exit 0 +endef + include ../../luci.mk define Host/Configure diff --git a/modules/luci-base/htdocs/cgi-bin/luci b/modules/luci-base/htdocs/cgi-bin/luci index c5c9847346..442e427d41 100755 --- a/modules/luci-base/htdocs/cgi-bin/luci +++ b/modules/luci-base/htdocs/cgi-bin/luci @@ -1,5 +1,41 @@ -#!/usr/bin/lua -require "luci.cacheloader" -require "luci.sgi.cgi" -luci.dispatcher.indexcache = "/tmp/luci-indexcache" -luci.sgi.cgi.run() +#!/usr/bin/env ucode + +'use strict'; + +import { stdin, stdout } from 'fs'; + +import dispatch from 'luci.dispatcher'; +import request from 'luci.http'; + +const input_bufsize = 4096; +let input_available = +getenv('CONTENT_LENGTH') || 0; + +function read(len) { + if (input_available == 0) { + stdin.close(); + + return null; + } + + let chunk = stdin.read(min(input_available, len ?? input_bufsize, input_bufsize)); + + if (chunk == null) { + input_available = 0; + stdin.close(); + } + else { + input_available -= length(chunk); + } + + return chunk; +} + +function write(data) { + return stdout.write(data); +} + +let req = request(getenv(), read, write); + +dispatch(req); + +req.close(); diff --git a/modules/luci-base/luasrc/cacheloader.lua b/modules/luci-base/luasrc/cacheloader.lua deleted file mode 100644 index 7ef971df8d..0000000000 --- a/modules/luci-base/luasrc/cacheloader.lua +++ /dev/null @@ -1,12 +0,0 @@ --- Copyright 2008 Steven Barth <steven@midlink.org> --- Copyright 2008 Jo-Philipp Wich <jow@openwrt.org> --- Licensed to the public under the Apache License 2.0. - -local config = require "luci.config" -local ccache = require "luci.ccache" - -module "luci.cacheloader" - -if config.ccache and config.ccache.enable == "1" then - ccache.cache_ondemand() -end diff --git a/modules/luci-base/luasrc/ccache.lua b/modules/luci-base/luasrc/ccache.lua deleted file mode 100644 index d3be7cba6c..0000000000 --- a/modules/luci-base/luasrc/ccache.lua +++ /dev/null @@ -1,76 +0,0 @@ --- Copyright 2008 Steven Barth <steven@midlink.org> --- Copyright 2008 Jo-Philipp Wich <jow@openwrt.org> --- Licensed to the public under the Apache License 2.0. - -local io = require "io" -local fs = require "nixio.fs" -local util = require "luci.util" -local nixio = require "nixio" -local debug = require "debug" -local string = require "string" -local package = require "package" - -local type, loadfile = type, loadfile - - -module "luci.ccache" - -function cache_ondemand(...) - if debug.getinfo(1, 'S').source ~= "=?" then - cache_enable(...) - end -end - -function cache_enable(cachepath, mode) - cachepath = cachepath or "/tmp/luci-modulecache" - mode = mode or "r--r--r--" - - local loader = package.loaders[2] - local uid = nixio.getuid() - - if not fs.stat(cachepath) then - fs.mkdir(cachepath) - end - - local function _encode_filename(name) - local encoded = "" - for i=1, #name do - encoded = encoded .. ("%2X" % string.byte(name, i)) - end - return encoded - end - - local function _load_sane(file) - local stat = fs.stat(file) - if stat and stat.uid == uid and stat.modestr == mode then - return loadfile(file) - end - end - - local function _write_sane(file, func) - if nixio.getuid() == uid then - local fp = io.open(file, "w") - if fp then - fp:write(util.get_bytecode(func)) - fp:close() - fs.chmod(file, mode) - end - end - end - - package.loaders[2] = function(mod) - local encoded = cachepath .. "/" .. _encode_filename(mod) - local modcons = _load_sane(encoded) - - if modcons then - return modcons - end - - -- No cachefile - modcons = loader(mod) - if type(modcons) == "function" then - _write_sane(encoded, modcons) - end - return modcons - end -end diff --git a/modules/luci-base/luasrc/config.lua b/modules/luci-base/luasrc/config.lua deleted file mode 100644 index d01153f4f5..0000000000 --- a/modules/luci-base/luasrc/config.lua +++ /dev/null @@ -1,18 +0,0 @@ --- Copyright 2008 Steven Barth <steven@midlink.org> --- Licensed to the public under the Apache License 2.0. - -local util = require "luci.util" -module("luci.config", - function(m) - if pcall(require, "luci.model.uci") then - local config = util.threadlocal() - setmetatable(m, { - __index = function(tbl, key) - if not config[key] then - config[key] = luci.model.uci.cursor():get_all("luci", key) - end - return config[key] - end - }) - end - end) diff --git a/modules/luci-base/luasrc/controller/admin/index.lua b/modules/luci-base/luasrc/controller/admin/index.lua deleted file mode 100644 index 8f9b481cce..0000000000 --- a/modules/luci-base/luasrc/controller/admin/index.lua +++ /dev/null @@ -1,199 +0,0 @@ --- Copyright 2008 Steven Barth <steven@midlink.org> --- Licensed to the public under the Apache License 2.0. - -module("luci.controller.admin.index", package.seeall) - -function action_logout() - local dsp = require "luci.dispatcher" - local utl = require "luci.util" - local sid = dsp.context.authsession - - if sid then - utl.ubus("session", "destroy", { ubus_rpc_session = sid }) - - local url = dsp.build_url() - - if luci.http.getenv('HTTPS') == 'on' then - luci.http.header("Set-Cookie", "sysauth_https=; expires=Thu, 01 Jan 1970 01:00:00 GMT; path=%s" % url) - end - - luci.http.header("Set-Cookie", "sysauth_http=; expires=Thu, 01 Jan 1970 01:00:00 GMT; path=%s" % url) - end - - luci.http.redirect(dsp.build_url()) -end - -function action_translations(lang) - local i18n = require "luci.i18n" - local http = require "luci.http" - local fs = require "nixio".fs - - if lang and #lang > 0 then - lang = i18n.setlanguage(lang) - if lang then - local s = fs.stat("%s/base.%s.lmo" %{ i18n.i18ndir, lang }) - if s then - http.header("Cache-Control", "public, max-age=31536000") - http.header("ETag", "%x-%x-%x" %{ s["ino"], s["size"], s["mtime"] }) - end - end - end - - http.prepare_content("application/javascript; charset=utf-8") - http.write("window.TR=") - http.write_json(i18n.dump()) -end - -local function ubus_reply(id, data, code, errmsg) - local reply = { jsonrpc = "2.0", id = id } - if errmsg then - reply.error = { - code = code, - message = errmsg - } - elseif type(code) == "table" then - reply.result = code - else - reply.result = { code, data } - end - - return reply -end - -local ubus_types = { - nil, - "array", - "object", - "string", - nil, -- INT64 - "number", - nil, -- INT16, - "boolean", - "double" -} - -local function ubus_access(sid, obj, fun) - local res, code = luci.util.ubus("session", "access", { - ubus_rpc_session = sid, - scope = "ubus", - object = obj, - ["function"] = fun - }) - - return (type(res) == "table" and res.access == true) -end - -local function ubus_request(req) - if type(req) ~= "table" or type(req.method) ~= "string" or req.jsonrpc ~= "2.0" or req.id == nil then - return ubus_reply(nil, nil, -32600, "Invalid request") - - elseif req.method == "call" then - if type(req.params) ~= "table" or #req.params < 3 then - return ubus_reply(nil, nil, -32600, "Invalid parameters") - end - - local sid, obj, fun, arg = - req.params[1], req.params[2], req.params[3], req.params[4] or {} - if type(arg) ~= "table" or arg.ubus_rpc_session ~= nil then - return ubus_reply(req.id, nil, -32602, "Invalid parameters") - end - - if sid == "00000000000000000000000000000000" and luci.dispatcher.context.authsession then - sid = luci.dispatcher.context.authsession - end - - if not ubus_access(sid, obj, fun) then - return ubus_reply(req.id, nil, -32002, "Access denied") - end - - arg.ubus_rpc_session = sid - - local res, code = luci.util.ubus(obj, fun, arg) - return ubus_reply(req.id, res, code or 0) - - elseif req.method == "list" then - if req.params == nil or (type(req.params) == "table" and #req.params == 0) then - local objs = luci.util.ubus() - return ubus_reply(req.id, nil, objs) - - elseif type(req.params) == "table" then - local n, rv = nil, {} - for n = 1, #req.params do - if type(req.params[n]) ~= "string" then - return ubus_reply(req.id, nil, -32602, "Invalid parameters") - end - - local sig = luci.util.ubus(req.params[n]) - if sig and type(sig) == "table" then - rv[req.params[n]] = {} - - local m, p - for m, p in pairs(sig) do - if type(p) == "table" then - rv[req.params[n]][m] = {} - - local pn, pt - for pn, pt in pairs(p) do - rv[req.params[n]][m][pn] = ubus_types[pt] or "unknown" - end - end - end - end - end - return ubus_reply(req.id, nil, rv) - - else - return ubus_reply(req.id, nil, -32602, "Invalid parameters") - end - end - - return ubus_reply(req.id, nil, -32601, "Method not found") -end - -function action_ubus() - local parser = require "luci.jsonc".new() - - luci.http.context.request:setfilehandler(function(_, s) - if not s then - return nil - end - - local ok, err = parser:parse(s) - return (not err or nil) - end) - - luci.http.context.request:content() - - local json = parser:get() - if json == nil or type(json) ~= "table" then - luci.http.prepare_content("application/json") - luci.http.write_json(ubus_reply(nil, nil, -32700, "Parse error")) - return - end - - local response - if #json == 0 then - response = ubus_request(json) - else - response = {} - - local _, request - for _, request in ipairs(json) do - response[_] = ubus_request(request) - end - end - - luci.http.prepare_content("application/json") - luci.http.write_json(response) -end - -function action_menu() - local dsp = require "luci.dispatcher" - local http = require "luci.http" - - local _, _, acls = dsp.is_authenticated({ methods = { "cookie:sysauth_https", "cookie:sysauth_http" } }) - local menu = dsp.menu_json(acls or {}) or {} - - http.prepare_content("application/json") - http.write_json(menu) -end diff --git a/modules/luci-base/luasrc/controller/admin/uci.lua b/modules/luci-base/luasrc/controller/admin/uci.lua deleted file mode 100644 index 7aad10d58a..0000000000 --- a/modules/luci-base/luasrc/controller/admin/uci.lua +++ /dev/null @@ -1,70 +0,0 @@ --- Copyright 2008 Steven Barth <steven@midlink.org> --- Copyright 2010-2019 Jo-Philipp Wich <jo@mein.io> --- Licensed to the public under the Apache License 2.0. - -module("luci.controller.admin.uci", package.seeall) - -local function ubus_state_to_http(errstr) - local map = { - ["Invalid command"] = 400, - ["Invalid argument"] = 400, - ["Method not found"] = 404, - ["Entry not found"] = 404, - ["No data"] = 204, - ["Permission denied"] = 403, - ["Timeout"] = 504, - ["Not supported"] = 500, - ["Unknown error"] = 500, - ["Connection failed"] = 503 - } - - local code = map[errstr] or 200 - local msg = errstr or "OK" - - luci.http.status(code, msg) - - if code ~= 204 then - luci.http.prepare_content("text/plain") - luci.http.write(msg) - end -end - -function action_apply_rollback() - local uci = require "luci.model.uci" - local token, errstr = uci:apply(true) - if token then - luci.http.prepare_content("application/json") - luci.http.write_json({ token = token }) - else - ubus_state_to_http(errstr) - end -end - -function action_apply_unchecked() - local uci = require "luci.model.uci" - local _, errstr = uci:apply(false) - ubus_state_to_http(errstr) -end - -function action_confirm() - local uci = require "luci.model.uci" - local token = luci.http.formvalue("token") - local _, errstr = uci:confirm(token) - ubus_state_to_http(errstr) -end - -function action_revert() - local uci = require "luci.model.uci" - local changes = uci:changes() - - -- Collect files to be reverted - local _, errstr, r, tbl - for r, tbl in pairs(changes) do - _, errstr = uci:revert(r) - if errstr then - break - end - end - - ubus_state_to_http(errstr or "OK") -end diff --git a/modules/luci-base/luasrc/dispatcher.lua b/modules/luci-base/luasrc/dispatcher.lua deleted file mode 100644 index a3726fb1c1..0000000000 --- a/modules/luci-base/luasrc/dispatcher.lua +++ /dev/null @@ -1,1564 +0,0 @@ --- Copyright 2008 Steven Barth <steven@midlink.org> --- Copyright 2008-2015 Jo-Philipp Wich <jow@openwrt.org> --- Licensed to the public under the Apache License 2.0. - -local fs = require "nixio.fs" -local sys = require "luci.sys" -local util = require "luci.util" -local xml = require "luci.xml" -local http = require "luci.http" -local nixio = require "nixio", require "nixio.util" - -module("luci.dispatcher", package.seeall) -context = util.threadlocal() -uci = require "luci.model.uci" -i18n = require "luci.i18n" -_M.fs = fs - --- Index table -local index = nil - -local function check_fs_depends(spec) - local fs = require "nixio.fs" - - for path, kind in pairs(spec) do - if kind == "directory" then - local empty = true - for entry in (fs.dir(path) or function() end) do - empty = false - break - end - if empty then - return false - end - elseif kind == "executable" then - if fs.stat(path, "type") ~= "reg" or not fs.access(path, "x") then - return false - end - elseif kind == "file" then - if fs.stat(path, "type") ~= "reg" then - return false - end - elseif kind == "absent" then - if fs.stat(path, "type") then - return false - end - end - end - - return true -end - -local function check_uci_depends_options(conf, s, opts) - local uci = require "luci.model.uci" - - if type(opts) == "string" then - return (s[".type"] == opts) - elseif opts == true then - for option, value in pairs(s) do - if option:byte(1) ~= 46 then - return true - end - end - elseif type(opts) == "table" then - for option, value in pairs(opts) do - local sval = s[option] - if type(sval) == "table" then - local found = false - for _, v in ipairs(sval) do - if v == value then - found = true - break - end - end - if not found then - return false - end - elseif value == true then - if sval == nil then - return false - end - else - if sval ~= value then - return false - end - end - end - end - - return true -end - -local function check_uci_depends_section(conf, sect) - local uci = require "luci.model.uci" - - for section, options in pairs(sect) do - local stype = section:match("^@([A-Za-z0-9_%-]+)$") - if stype then - local found = false - uci:foreach(conf, stype, function(s) - if check_uci_depends_options(conf, s, options) then - found = true - return false - end - end) - if not found then - return false - end - else - local s = uci:get_all(conf, section) - if not s or not check_uci_depends_options(conf, s, options) then - return false - end - end - end - - return true -end - -local function check_uci_depends(conf) - local uci = require "luci.model.uci" - - for config, values in pairs(conf) do - if values == true then - local found = false - uci:foreach(config, nil, function(s) - found = true - return false - end) - if not found then - return false - end - elseif type(values) == "table" then - if not check_uci_depends_section(config, values) then - return false - end - end - end - - return true -end - -local function check_acl_depends(require_groups, groups) - if type(require_groups) == "table" and #require_groups > 0 then - local writable = false - - for _, group in ipairs(require_groups) do - local read = false - local write = false - if type(groups) == "table" and type(groups[group]) == "table" then - for _, perm in ipairs(groups[group]) do - if perm == "read" then - read = true - elseif perm == "write" then - write = true - end - end - end - if not read and not write then - return nil - elseif write then - writable = true - end - end - - return writable - end - - return true -end - -local function check_depends(spec) - if type(spec.depends) ~= "table" then - return true - end - - if type(spec.depends.fs) == "table" then - local satisfied = false - local alternatives = (#spec.depends.fs > 0) and spec.depends.fs or { spec.depends.fs } - for _, alternative in ipairs(alternatives) do - if check_fs_depends(alternative) then - satisfied = true - break - end - end - if not satisfied then - return false - end - end - - if type(spec.depends.uci) == "table" then - local satisfied = false - local alternatives = (#spec.depends.uci > 0) and spec.depends.uci or { spec.depends.uci } - for _, alternative in ipairs(alternatives) do - if check_uci_depends(alternative) then - satisfied = true - break - end - end - if not satisfied then - return false - end - end - - return true -end - -local function target_to_json(target, module) - local action - - if target.type == "call" then - action = { - ["type"] = "call", - ["module"] = module, - ["function"] = target.name, - ["parameters"] = target.argv - } - elseif target.type == "view" then - action = { - ["type"] = "view", - ["path"] = target.view - } - elseif target.type == "template" then - action = { - ["type"] = "template", - ["path"] = target.view - } - elseif target.type == "cbi" then - action = { - ["type"] = "cbi", - ["path"] = target.model, - ["config"] = target.config - } - elseif target.type == "form" then - action = { - ["type"] = "form", - ["path"] = target.model - } - elseif target.type == "firstchild" then - action = { - ["type"] = "firstchild" - } - elseif target.type == "firstnode" then - action = { - ["type"] = "firstchild", - ["recurse"] = true - } - elseif target.type == "arcombine" then - if type(target.targets) == "table" then - action = { - ["type"] = "arcombine", - ["targets"] = { - target_to_json(target.targets[1], module), - target_to_json(target.targets[2], module) - } - } - end - elseif target.type == "alias" then - action = { - ["type"] = "alias", - ["path"] = table.concat(target.req, "/") - } - elseif target.type == "rewrite" then - action = { - ["type"] = "rewrite", - ["path"] = table.concat(target.req, "/"), - ["remove"] = target.n - } - end - - if target.post and action then - action.post = target.post - end - - return action -end - -local function tree_to_json(node, json) - local fs = require "nixio.fs" - local util = require "luci.util" - - if type(node.nodes) == "table" then - for subname, subnode in pairs(node.nodes) do - local spec = { - title = xml.striptags(subnode.title), - order = subnode.order - } - - if subnode.leaf then - spec.wildcard = true - end - - if subnode.cors then - spec.cors = true - end - - if subnode.setuser then - spec.setuser = subnode.setuser - end - - if subnode.setgroup then - spec.setgroup = subnode.setgroup - end - - if type(subnode.target) == "table" then - spec.action = target_to_json(subnode.target, subnode.module) - end - - if type(subnode.file_depends) == "table" then - for _, v in ipairs(subnode.file_depends) do - spec.depends = spec.depends or {} - spec.depends.fs = spec.depends.fs or {} - - local ft = fs.stat(v, "type") - if ft == "dir" then - spec.depends.fs[v] = "directory" - elseif v:match("/s?bin/") then - spec.depends.fs[v] = "executable" - else - spec.depends.fs[v] = "file" - end - end - end - - if type(subnode.uci_depends) == "table" then - for k, v in pairs(subnode.uci_depends) do - spec.depends = spec.depends or {} - spec.depends.uci = spec.depends.uci or {} - spec.depends.uci[k] = v - end - end - - if type(subnode.acl_depends) == "table" then - for _, acl in ipairs(subnode.acl_depends) do - spec.depends = spec.depends or {} - spec.depends.acl = spec.depends.acl or {} - spec.depends.acl[#spec.depends.acl + 1] = acl - end - end - - if (subnode.sysauth_authenticator ~= nil) or - (subnode.sysauth ~= nil and subnode.sysauth ~= false) - then - if subnode.sysauth_authenticator == "htmlauth" then - spec.auth = { - login = true, - methods = { "cookie:sysauth_https", "cookie:sysauth_http" } - } - elseif subname == "rpc" and subnode.module == "luci.controller.rpc" then - spec.auth = { - login = false, - methods = { "query:auth", "cookie:sysauth_https", "cookie:sysauth_http" } - } - elseif subnode.module == "luci.controller.admin.uci" then - spec.auth = { - login = false, - methods = { "param:sid" } - } - end - elseif subnode.sysauth == false then - spec.auth = {} - end - - if not spec.action then - spec.title = nil - end - - spec.satisfied = check_depends(spec) - json.children = json.children or {} - json.children[subname] = tree_to_json(subnode, spec) - end - end - - return json -end - -function build_url(...) - local path = {...} - local url = { http.getenv("SCRIPT_NAME") or "" } - - local p - for _, p in ipairs(path) do - if p:match("^[a-zA-Z0-9_%-%.%%/,;]+$") then - url[#url+1] = "/" - url[#url+1] = p - end - end - - if #path == 0 then - url[#url+1] = "/" - end - - return table.concat(url, "") -end - - -function error404(message) - http.status(404, "Not Found") - message = message or "Not Found" - - local function render() - local template = require "luci.template" - template.render("error404", {message=message}) - end - - if not util.copcall(render) then - http.prepare_content("text/plain") - http.write(message) - end - - return false -end - -function error500(message) - util.perror(message) - if not context.template_header_sent then - http.status(500, "Internal Server Error") - http.prepare_content("text/plain") - http.write(message) - else - require("luci.template") - if not util.copcall(luci.template.render, "error500", {message=message}) then - http.prepare_content("text/plain") - http.write(message) - end - end - return false -end - -local function determine_request_language() - local conf = require "luci.config" - assert(conf.main, "/etc/config/luci seems to be corrupt, unable to find section 'main'") - - local lang = conf.main.lang or "auto" - if lang == "auto" then - local aclang = http.getenv("HTTP_ACCEPT_LANGUAGE") or "" - for aclang in aclang:gmatch("[%w_-]+") do - local country, culture = aclang:match("^([a-z][a-z])[_-]([a-zA-Z][a-zA-Z])$") - if country and culture then - local cc = "%s_%s" %{ country, culture:lower() } - if conf.languages[cc] then - lang = cc - break - elseif conf.languages[country] then - lang = country - break - end - elseif conf.languages[aclang] then - lang = aclang - break - end - end - end - - if lang == "auto" then - lang = i18n.default - end - - i18n.setlanguage(lang) -end - -function httpdispatch(request, prefix) - http.context.request = request - - local r = {} - context.request = r - - local pathinfo = http.urldecode(request:getenv("PATH_INFO") or "", true) - - if prefix then - for _, node in ipairs(prefix) do - r[#r+1] = node - end - end - - local node - for node in pathinfo:gmatch("[^/%z]+") do - r[#r+1] = node - end - - determine_request_language() - - local stat, err = util.coxpcall(function() - dispatch(context.request) - end, error500) - - http.close() - - --context._disable_memtrace() -end - -local function require_post_security(target, args) - if type(target) == "table" and target.type == "arcombine" and type(target.targets) == "table" then - return require_post_security((type(args) == "table" and #args > 0) and target.targets[2] or target.targets[1], args) - end - - if type(target) == "table" then - if type(target.post) == "table" then - local param_name, required_val, request_val - - for param_name, required_val in pairs(target.post) do - request_val = http.formvalue(param_name) - - if (type(required_val) == "string" and - request_val ~= required_val) or - (required_val == true and request_val == nil) - then - return false - end - end - - return true - end - - return (target.post == true) - end - - return false -end - -function test_post_security() - if http.getenv("REQUEST_METHOD") ~= "POST" then - http.status(405, "Method Not Allowed") - http.header("Allow", "POST") - return false - end - - if http.formvalue("token") ~= context.authtoken then - http.status(403, "Forbidden") - luci.template.render("csrftoken") - return false - end - - return true -end - -local function session_retrieve(sid, allowed_users) - local sdat = util.ubus("session", "get", { ubus_rpc_session = sid }) - local sacl = util.ubus("session", "access", { ubus_rpc_session = sid }) - - if type(sdat) == "table" and - type(sdat.values) == "table" and - type(sdat.values.token) == "string" and - (not allowed_users or - util.contains(allowed_users, sdat.values.username)) - then - uci:set_session_id(sid) - return sid, sdat.values, type(sacl) == "table" and sacl or {} - end - - return nil, nil, nil -end - -local function session_setup(user, pass) - local login = util.ubus("session", "login", { - username = user, - password = pass, - timeout = tonumber(luci.config.sauth.sessiontime) - }) - - local rp = context.requestpath - and table.concat(context.requestpath, "/") or "" - - if type(login) == "table" and - type(login.ubus_rpc_session) == "string" - then - util.ubus("session", "set", { - ubus_rpc_session = login.ubus_rpc_session, - values = { token = sys.uniqueid(16) } - }) - nixio.syslog("info", tostring("luci: accepted login on /%s for %s from %s\n" - %{ rp, user or "?", http.getenv("REMOTE_ADDR") or "?" })) - - return session_retrieve(login.ubus_rpc_session) - end - nixio.syslog("info", tostring("luci: failed login on /%s for %s from %s\n" - %{ rp, user or "?", http.getenv("REMOTE_ADDR") or "?" })) -end - -local function check_authentication(method) - local auth_type, auth_param = method:match("^(%w+):(.+)$") - local sid, sdat - - if auth_type == "cookie" then - sid = http.getcookie(auth_param) - elseif auth_type == "param" then - sid = http.formvalue(auth_param) - elseif auth_type == "query" then - sid = http.formvalue(auth_param, true) - end - - return session_retrieve(sid) -end - -local function merge_trees(node_a, node_b) - for k, v in pairs(node_b) do - if k == "children" then - node_a.children = node_a.children or {} - - for name, spec in pairs(v) do - node_a.children[name] = merge_trees(node_a.children[name] or {}, spec) - end - else - node_a[k] = v - end - end - - if type(node_a.action) == "table" and - node_a.action.type == "firstchild" and - node_a.children == nil - then - node_a.satisfied = false - end - - return node_a -end - -local function apply_tree_acls(node, acl) - if type(node.children) == "table" then - for _, child in pairs(node.children) do - apply_tree_acls(child, acl) - end - end - - local perm - if type(node.depends) == "table" then - perm = check_acl_depends(node.depends.acl, acl["access-group"]) - else - perm = true - end - - if perm == nil then - node.satisfied = false - elseif perm == false then - node.readonly = true - end -end - -function menu_json(acl) - local tree = context.tree or createtree() - local lua_tree = tree_to_json(tree, { - action = { - ["type"] = "firstchild", - ["recurse"] = true - } - }) - - local json_tree = createtree_json() - local menu_tree = merge_trees(lua_tree, json_tree) - - if acl then - apply_tree_acls(menu_tree, acl) - end - - return menu_tree -end - -local function init_template_engine(ctx) - local tpl = require "luci.template" - local media = luci.config.main.mediaurlbase - - if not pcall(tpl.Template, "themes/%s/header" % fs.basename(media)) then - media = nil - for name, theme in pairs(luci.config.themes) do - if name:sub(1,1) ~= "." and pcall(tpl.Template, - "themes/%s/header" % fs.basename(theme)) then - media = theme - end - end - assert(media, "No valid theme found") - end - - local function _ifattr(cond, key, val, noescape) - if cond then - local env = getfenv(3) - local scope = (type(env.self) == "table") and env.self - if type(val) == "table" then - if not next(val) then - return '' - else - val = util.serialize_json(val) - end - end - - val = tostring(val or - (type(env[key]) ~= "function" and env[key]) or - (scope and type(scope[key]) ~= "function" and scope[key]) or "") - - if noescape ~= true then - val = xml.pcdata(val) - end - - return string.format(' %s="%s"', tostring(key), val) - else - return '' - end - end - - tpl.context.viewns = setmetatable({ - write = http.write; - include = function(name) tpl.Template(name):render(getfenv(2)) end; - translate = i18n.translate; - translatef = i18n.translatef; - export = function(k, v) if tpl.context.viewns[k] == nil then tpl.context.viewns[k] = v end end; - striptags = xml.striptags; - pcdata = xml.pcdata; - media = media; - theme = fs.basename(media); - resource = luci.config.main.resourcebase; - ifattr = function(...) return _ifattr(...) end; - attr = function(...) return _ifattr(true, ...) end; - url = build_url; - }, {__index=function(tbl, key) - if key == "controller" then - return build_url() - elseif key == "REQUEST_URI" then - return build_url(unpack(ctx.requestpath)) - elseif key == "FULL_REQUEST_URI" then - local url = { http.getenv("SCRIPT_NAME") or "", http.getenv("PATH_INFO") } - local query = http.getenv("QUERY_STRING") - if query and #query > 0 then - url[#url+1] = "?" - url[#url+1] = query - end - return table.concat(url, "") - elseif key == "token" then - return ctx.authtoken - else - return rawget(tbl, key) or _G[key] - end - end}) - - return tpl -end - -function is_authenticated(auth) - if type(auth) == "table" and type(auth.methods) == "table" and #auth.methods > 0 then - local sid, sdat, sacl - for _, method in ipairs(auth.methods) do - sid, sdat, sacl = check_authentication(method) - - if sid and sdat and sacl then - return sid, sdat, sacl - end - end - end -end - -local function ctx_append(ctx, name, node) - ctx.path = ctx.path or {} - ctx.path[#ctx.path + 1] = name - - ctx.acls = ctx.acls or {} - - local acls = (type(node.depends) == "table" and type(node.depends.acl) == "table") and node.depends.acl or {} - for _, acl in ipairs(acls) do - ctx.acls[_] = acl - end - - ctx.auth = node.auth or ctx.auth - ctx.cors = node.cors or ctx.cors - ctx.suid = node.setuser or ctx.suid - ctx.sgid = node.setgroup or ctx.sgid - - return ctx -end - -local function node_weight(node) - local weight = node.order or 9999 - - if weight > 9999 then - weight = 9999 - end - - if type(node.auth) == "table" and node.auth.login then - weight = weight + 10000 - end - - return weight -end - -local function resolve_firstchild(node, sacl, login_allowed, ctx) - local candidate = nil - local candidate_ctx = nil - - for name, child in pairs(node.children) do - if child.satisfied then - if not sacl then - local _ - _, _, sacl = is_authenticated(node.auth) - end - - local cacl = (type(child.depends) == "table") and child.depends.acl or nil - local login = login_allowed or (type(child.auth) == "table" and child.auth.login) - if login or check_acl_depends(cacl, sacl and sacl["access-group"]) ~= nil then - if child.title and type(child.action) == "table" then - local child_ctx = ctx_append(util.clone(ctx, true), name, child) - if child.action.type == "firstchild" then - if not candidate or node_weight(candidate) > node_weight(child) then - local have_grandchild = resolve_firstchild(child, sacl, login, child_ctx) - if have_grandchild then - candidate = child - candidate_ctx = child_ctx - end - end - elseif not child.firstchild_ineligible then - if not candidate or node_weight(candidate) > node_weight(child) then - candidate = child - candidate_ctx = child_ctx - end - end - end - end - end - end - - if candidate then - for k, v in pairs(candidate_ctx) do - ctx[k] = v - end - - return true - end - - return false -end - -local function resolve_page(tree, request_path) - local node = tree - local sacl = nil - local login = false - local ctx = {} - - for i, s in ipairs(request_path) do - node = node.children and node.children[s] - - if not node or not node.satisfied then - break - end - - ctx_append(ctx, s, node) - - if not sacl then - local _ - _, _, sacl = is_authenticated(node.auth) - end - - if not login and type(node.auth) == "table" and node.auth.login then - login = true - end - - if node.wildcard then - ctx.request_args = {} - ctx.request_path = util.clone(ctx.path, true) - - for j = i + 1, #request_path do - ctx.request_path[j] = request_path[j] - ctx.request_args[j - i] = request_path[j] - end - - break - end - end - - if node and type(node.action) == "table" and node.action.type == "firstchild" then - resolve_firstchild(node, sacl, login, ctx) - end - - ctx.acls = ctx.acls or {} - ctx.path = ctx.path or {} - ctx.request_args = ctx.request_args or {} - ctx.request_path = ctx.request_path or util.clone(request_path, true) - - node = tree - - for _, s in ipairs(ctx.path or {}) do - node = node.children[s] - assert(node, "Internal node resolve error") - end - - return node, ctx -end - -function dispatch(request) - --context._disable_memtrace = require "luci.debug".trap_memtrace("l") - local ctx = context - - local auth, cors, suid, sgid - local menu = menu_json() - local page, lookup_ctx = resolve_page(menu, request) - local action = (page and type(page.action) == "table") and page.action or {} - - local tpl = init_template_engine(ctx) - - ctx.args = lookup_ctx.request_args - ctx.path = lookup_ctx.path - ctx.dispatched = page - - ctx.requestpath = ctx.requestpath or lookup_ctx.request_path - ctx.requestargs = ctx.requestargs or lookup_ctx.request_args - ctx.requested = ctx.requested or page - - if type(lookup_ctx.auth) == "table" and next(lookup_ctx.auth) then - local sid, sdat, sacl = is_authenticated(lookup_ctx.auth) - - if not (sid and sdat and sacl) and lookup_ctx.auth.login then - local user = http.getenv("HTTP_AUTH_USER") - local pass = http.getenv("HTTP_AUTH_PASS") - - if user == nil and pass == nil then - user = http.formvalue("luci_username") - pass = http.formvalue("luci_password") - end - - if user and pass then - sid, sdat, sacl = session_setup(user, pass) - end - - if not sid then - context.path = {} - - http.status(403, "Forbidden") - http.header("X-LuCI-Login-Required", "yes") - - local scope = { duser = "root", fuser = user } - local ok, res = util.copcall(tpl.render_string, [[<% include("themes/" .. theme .. "/sysauth") %>]], scope) - if ok then - return res - end - return tpl.render("sysauth", scope) - end - - http.header("Set-Cookie", 'sysauth_%s=%s; path=%s; SameSite=Strict; HttpOnly%s' %{ - http.getenv("HTTPS") == "on" and "https" or "http", - sid, build_url(), http.getenv("HTTPS") == "on" and "; secure" or "" - }) - - http.redirect(build_url(unpack(ctx.requestpath))) - return - end - - if not sid or not sdat or not sacl then - http.status(403, "Forbidden") - http.header("X-LuCI-Login-Required", "yes") - return - end - - ctx.authsession = sid - ctx.authtoken = sdat.token - ctx.authuser = sdat.username - ctx.authacl = sacl - end - - if #lookup_ctx.acls > 0 then - local perm = check_acl_depends(lookup_ctx.acls, ctx.authacl and ctx.authacl["access-group"]) - if perm == nil then - http.status(403, "Forbidden") - return - end - - if page then - page.readonly = not perm - end - end - - if action.type == "arcombine" then - action = (#lookup_ctx.request_args > 0) and action.targets[2] or action.targets[1] - end - - if lookup_ctx.cors and http.getenv("REQUEST_METHOD") == "OPTIONS" then - luci.http.status(200, "OK") - luci.http.header("Access-Control-Allow-Origin", http.getenv("HTTP_ORIGIN") or "*") - luci.http.header("Access-Control-Allow-Methods", "GET, POST, OPTIONS") - return - end - - if require_post_security(action) then - if not test_post_security() then - return - end - end - - if lookup_ctx.sgid then - sys.process.setgroup(lookup_ctx.sgid) - end - - if lookup_ctx.suid then - sys.process.setuser(lookup_ctx.suid) - end - - if action.type == "view" then - tpl.render("view", { view = action.path }) - - elseif action.type == "call" then - local ok, mod = util.copcall(require, action.module) - if not ok then - error500(mod) - return - end - - local func = mod[action["function"]] - - assert(func ~= nil, - 'Cannot resolve function "' .. action["function"] .. '". Is it misspelled or local?') - - assert(type(func) == "function", - 'The symbol "' .. action["function"] .. '" does not refer to a function but data ' .. - 'of type "' .. type(func) .. '".') - - local argv = (type(action.parameters) == "table" and #action.parameters > 0) and { unpack(action.parameters) } or {} - for _, s in ipairs(lookup_ctx.request_args) do - argv[#argv + 1] = s - end - - local ok, err = util.copcall(func, unpack(argv)) - if not ok then - error500(err) - end - - --elseif action.type == "firstchild" then - -- tpl.render("empty_node_placeholder", getfenv(1)) - - elseif action.type == "alias" then - local sub_request = {} - for name in action.path:gmatch("[^/]+") do - sub_request[#sub_request + 1] = name - end - - for _, s in ipairs(lookup_ctx.request_args) do - sub_request[#sub_request + 1] = s - end - - dispatch(sub_request) - - elseif action.type == "rewrite" then - local sub_request = { unpack(request) } - for i = 1, action.remove do - table.remove(sub_request, 1) - end - - local n = 1 - for s in action.path:gmatch("[^/]+") do - table.insert(sub_request, n, s) - n = n + 1 - end - - for _, s in ipairs(lookup_ctx.request_args) do - sub_request[#sub_request + 1] = s - end - - dispatch(sub_request) - - elseif action.type == "template" then - tpl.render(action.path, getfenv(1)) - - elseif action.type == "cbi" then - _cbi({ config = action.config, model = action.path }, unpack(lookup_ctx.request_args)) - - elseif action.type == "form" then - _form({ model = action.path }, unpack(lookup_ctx.request_args)) - - else - if not menu.children then - error404("No root node was registered, this usually happens if no module was installed.\n" .. - "Install luci-mod-admin-full and retry. " .. - "If the module is already installed, try removing the /tmp/luci-indexcache file.") - else - error404("No page is registered at '/" .. table.concat(lookup_ctx.request_path, "/") .. "'.\n" .. - "If this url belongs to an extension, make sure it is properly installed.\n" .. - "If the extension was recently installed, try removing the /tmp/luci-indexcache file.") - end - end -end - -local function hash_filelist(files) - local fprint = {} - local n = 0 - - for i, file in ipairs(files) do - local st = fs.stat(file) - if st then - fprint[n + 1] = '%x' % st.ino - fprint[n + 2] = '%x' % st.mtime - fprint[n + 3] = '%x' % st.size - n = n + 3 - end - end - - return nixio.crypt(table.concat(fprint, "|"), "$1$"):sub(5):gsub("/", ".") -end - -local function read_cachefile(file, reader) - local euid = sys.process.info("uid") - local fuid = fs.stat(file, "uid") - local mode = fs.stat(file, "modestr") - - if euid ~= fuid or mode ~= "rw-------" then - return nil - end - - return reader(file) -end - -function createindex() - local controllers = { } - local base = "%s/controller/" % util.libpath() - local _, path - - for path in (fs.glob("%s*.lua" % base) or function() end) do - controllers[#controllers+1] = path - end - - for path in (fs.glob("%s*/*.lua" % base) or function() end) do - controllers[#controllers+1] = path - end - - local cachefile - - if indexcache then - cachefile = "%s.%s.lua" %{ indexcache, hash_filelist(controllers) } - - local res = read_cachefile(cachefile, function(path) return loadfile(path)() end) - if res then - index = res - return res - end - - for file in (fs.glob("%s.*.lua" % indexcache) or function() end) do - fs.unlink(file) - end - end - - index = {} - - for _, path in ipairs(controllers) do - local modname = "luci.controller." .. path:sub(#base+1, #path-4):gsub("/", ".") - local mod = require(modname) - assert(mod ~= true, - "Invalid controller file found\n" .. - "The file '" .. path .. "' contains an invalid module line.\n" .. - "Please verify whether the module name is set to '" .. modname .. - "' - It must correspond to the file path!") - - local idx = mod.index - if type(idx) == "function" then - index[modname] = idx - end - end - - if cachefile then - local f = nixio.open(cachefile, "w", 600) - f:writeall(util.get_bytecode(index)) - f:close() - end -end - -function createtree_json() - local json = require "luci.jsonc" - local tree = {} - - local schema = { - action = "table", - auth = "table", - cors = "boolean", - depends = "table", - order = "number", - setgroup = "string", - setuser = "string", - title = "string", - wildcard = "boolean", - firstchild_ineligible = "boolean" - } - - local files = {} - local cachefile - - for file in (fs.glob("/usr/share/luci/menu.d/*.json") or function() end) do - files[#files+1] = file - end - - if indexcache then - cachefile = "%s.%s.json" %{ indexcache, hash_filelist(files) } - - local res = read_cachefile(cachefile, function(path) return json.parse(fs.readfile(path) or "") end) - if res then - return res - end - - for file in (fs.glob("%s.*.json" % indexcache) or function() end) do - fs.unlink(file) - end - end - - for _, file in ipairs(files) do - local data = json.parse(fs.readfile(file) or "") - if type(data) == "table" then - for path, spec in pairs(data) do - if type(spec) == "table" then - local node = tree - - for s in path:gmatch("[^/]+") do - if s == "*" then - node.wildcard = true - break - end - - node.children = node.children or {} - node.children[s] = node.children[s] or {} - node = node.children[s] - end - - if node ~= tree then - for k, t in pairs(schema) do - if type(spec[k]) == t then - node[k] = spec[k] - end - end - - node.satisfied = check_depends(spec) - end - end - end - end - end - - if cachefile then - local f = nixio.open(cachefile, "w", 600) - f:writeall(json.stringify(tree)) - f:close() - end - - return tree -end - --- Build the index before if it does not exist yet. -function createtree() - if not index then - createindex() - end - - local ctx = context - local tree = {nodes={}, inreq=true} - - ctx.treecache = setmetatable({}, {__mode="v"}) - ctx.tree = tree - - local scope = setmetatable({}, {__index = luci.dispatcher}) - - for k, v in pairs(index) do - scope._NAME = k - setfenv(v, scope) - v() - end - - return tree -end - -function assign(path, clone, title, order) - local obj = node(unpack(path)) - obj.nodes = nil - obj.module = nil - - obj.title = title - obj.order = order - - setmetatable(obj, {__index = _create_node(clone)}) - - return obj -end - -function entry(path, target, title, order) - local c = node(unpack(path)) - - c.target = target - c.title = title - c.order = order - c.module = getfenv(2)._NAME - - return c -end - --- enabling the node. -function get(...) - return _create_node({...}) -end - -function node(...) - local c = _create_node({...}) - - c.module = getfenv(2)._NAME - c.auto = nil - - return c -end - -function lookup(...) - local i, path = nil, {} - for i = 1, select('#', ...) do - local name, arg = nil, tostring(select(i, ...)) - for name in arg:gmatch("[^/]+") do - path[#path+1] = name - end - end - - for i = #path, 1, -1 do - local node = context.treecache[table.concat(path, ".", 1, i)] - if node and (i == #path or node.leaf) then - return node, build_url(unpack(path)) - end - end -end - -function _create_node(path) - if #path == 0 then - return context.tree - end - - local name = table.concat(path, ".") - local c = context.treecache[name] - - if not c then - local last = table.remove(path) - local parent = _create_node(path) - - c = {nodes={}, auto=true, inreq=true} - - parent.nodes[last] = c - context.treecache[name] = c - end - - return c -end - --- Subdispatchers -- - -function firstchild() - return { type = "firstchild" } -end - -function firstnode() - return { type = "firstnode" } -end - -function alias(...) - return { type = "alias", req = { ... } } -end - -function rewrite(n, ...) - return { type = "rewrite", n = n, req = { ... } } -end - -function call(name, ...) - return { type = "call", argv = {...}, name = name } -end - -function post_on(params, name, ...) - return { - type = "call", - post = params, - argv = { ... }, - name = name - } -end - -function post(...) - return post_on(true, ...) -end - - -function template(name) - return { type = "template", view = name } -end - -function view(name) - return { type = "view", view = name } -end - - -function _cbi(self, ...) - local cbi = require "luci.cbi" - local tpl = require "luci.template" - local http = require "luci.http" - local util = require "luci.util" - - local config = self.config or {} - local maps = cbi.load(self.model, ...) - - local state = nil - - local function has_uci_access(config, level) - local rv = util.ubus("session", "access", { - ubus_rpc_session = context.authsession, - scope = "uci", object = config, - ["function"] = level - }) - - return (type(rv) == "table" and rv.access == true) or false - end - - local i, res - for i, res in ipairs(maps) do - if util.instanceof(res, cbi.SimpleForm) then - io.stderr:write("Model %s returns SimpleForm but is dispatched via cbi(),\n" - % self.model) - - io.stderr:write("please change %s to use the form() action instead.\n" - % table.concat(context.request, "/")) - end - - res.flow = config - local cstate = res:parse() - if cstate and (not state or cstate < state) then - state = cstate - end - end - - local function _resolve_path(path) - return type(path) == "table" and build_url(unpack(path)) or path - end - - if config.on_valid_to and state and state > 0 and state < 2 then - http.redirect(_resolve_path(config.on_valid_to)) - return - end - - if config.on_changed_to and state and state > 1 then - http.redirect(_resolve_path(config.on_changed_to)) - return - end - - if config.on_success_to and state and state > 0 then - http.redirect(_resolve_path(config.on_success_to)) - return - end - - if config.state_handler then - if not config.state_handler(state, maps) then - return - end - end - - http.header("X-CBI-State", state or 0) - - if not config.noheader then - tpl.render("cbi/header", {state = state}) - end - - local redirect - local messages - local applymap = false - local pageaction = true - local parsechain = { } - local writable = false - - for i, res in ipairs(maps) do - if res.apply_needed and res.parsechain then - local c - for _, c in ipairs(res.parsechain) do - parsechain[#parsechain+1] = c - end - applymap = true - end - - if res.redirect then - redirect = redirect or res.redirect - end - - if res.pageaction == false then - pageaction = false - end - - if res.message then - messages = messages or { } - messages[#messages+1] = res.message - end - end - - for i, res in ipairs(maps) do - local is_readable_map = has_uci_access(res.config, "read") - local is_writable_map = has_uci_access(res.config, "write") - - writable = writable or is_writable_map - - res:render({ - firstmap = (i == 1), - redirect = redirect, - messages = messages, - pageaction = pageaction, - parsechain = parsechain, - readable = is_readable_map, - writable = is_writable_map - }) - end - - if not config.nofooter then - tpl.render("cbi/footer", { - flow = config, - pageaction = pageaction, - redirect = redirect, - state = state, - autoapply = config.autoapply, - trigger_apply = applymap, - writable = writable - }) - end -end - -function cbi(model, config) - return { - type = "cbi", - post = { ["cbi.submit"] = true }, - config = config, - model = model - } -end - - -function arcombine(trg1, trg2) - return { - type = "arcombine", - env = getfenv(), - targets = {trg1, trg2} - } -end - - -function _form(self, ...) - local cbi = require "luci.cbi" - local tpl = require "luci.template" - local http = require "luci.http" - - local maps = luci.cbi.load(self.model, ...) - local state = nil - - local i, res - for i, res in ipairs(maps) do - local cstate = res:parse() - if cstate and (not state or cstate < state) then - state = cstate - end - end - - http.header("X-CBI-State", state or 0) - tpl.render("header") - for i, res in ipairs(maps) do - res:render() - end - tpl.render("footer") -end - -function form(model) - return { - type = "form", - post = { ["cbi.submit"] = true }, - model = model - } -end - -translate = i18n.translate - --- This function does not actually translate the given argument but --- is used by build/i18n-scan.pl to find translatable entries. -function _(text) - return text -end diff --git a/modules/luci-base/luasrc/dispatcher.luadoc b/modules/luci-base/luasrc/dispatcher.luadoc deleted file mode 100644 index a77f8d8b07..0000000000 --- a/modules/luci-base/luasrc/dispatcher.luadoc +++ /dev/null @@ -1,220 +0,0 @@ ----[[ -LuCI web dispatcher. -]] -module "luci.dispatcher" - ----[[ -Build the URL relative to the server webroot from given virtual path. - -@class function -@name build_url -@param ... Virtual path -@return Relative URL -]] - ----[[ -Check whether a dispatch node shall be visible - -@class function -@name node_visible -@param node Dispatch node -@return Boolean indicating whether the node should be visible -]] - ----[[ -Return a sorted table of visible children within a given node - -@class function -@name node_childs -@param node Dispatch node -@return Ordered table of child node names -]] - ----[[ -Send a 404 error code and render the "error404" template if available. - -@class function -@name error404 -@param message Custom error message (optional) -@return false -]] - ----[[ -Send a 500 error code and render the "error500" template if available. - -@class function -@name error500 -@param message Custom error message (optional)# -@return false -]] - ----[[ -Dispatch an HTTP request. - -@class function -@name httpdispatch -@param request LuCI HTTP Request object -]] - ----[[ -Dispatches a LuCI virtual path. - -@class function -@name dispatch -@param request Virtual path -]] - ----[[ -Generate the dispatching index using the native file-cache based strategy. - - -@class function -@name createindex -]] - ----[[ -Create the dispatching tree from the index. - -Build the index before if it does not exist yet. - -@class function -@name createtree -]] - ----[[ -Clone a node of the dispatching tree to another position. - -@class function -@name assign -@param path Virtual path destination -@param clone Virtual path source -@param title Destination node title (optional) -@param order Destination node order value (optional) -@return Dispatching tree node -]] - ----[[ -Create a new dispatching node and define common parameters. - -@class function -@name entry -@param path Virtual path -@param target Target function to call when dispatched. -@param title Destination node title -@param order Destination node order value (optional) -@return Dispatching tree node -]] - ----[[ -Fetch or create a dispatching node without setting the target module or -enabling the node. - -@class function -@name get -@param ... Virtual path -@return Dispatching tree node -]] - ----[[ -Fetch or create a new dispatching node. - -@class function -@name node -@param ... Virtual path -@return Dispatching tree node -]] - ----[[ -Lookup node in dispatching tree. - -@class function -@name lookup -@param ... Virtual path -@return Node object, canonical url or nil if the path was not found. -]] - ----[[ -Alias the first (lowest order) page automatically - - -@class function -@name firstchild -]] - ----[[ -Create a redirect to another dispatching node. - -@class function -@name alias -@param ... Virtual path destination -]] - ----[[ -Rewrite the first x path values of the request. - -@class function -@name rewrite -@param n Number of path values to replace -@param ... Virtual path to replace removed path values with -]] - ----[[ -Create a function-call dispatching target. - -@class function -@name call -@param name Target function of local controller -@param ... Additional parameters passed to the function -]] - ----[[ -Create a template render dispatching target. - -@class function -@name template -@param name Template to be rendered -]] - ----[[ -Create a CBI model dispatching target. - -@class function -@name cbi -@param model CBI model to be rendered -]] - ----[[ -Create a combined dispatching target for non argv and argv requests. - -@class function -@name arcombine -@param trg1 Overview Target -@param trg2 Detail Target -]] - ----[[ -Create a CBI form model dispatching target. - -@class function -@name form -@param model CBI form model tpo be rendered -]] - ----[[ -Access the luci.i18n translate() api. - -@class function -@name translate -@param text Text to translate -]] - ----[[ -No-op function used to mark translation entries for menu labels. - -This function does not actually translate the given argument but -is used by build/i18n-scan.pl to find translatable entries. - -@class function -@name _ -]] - diff --git a/modules/luci-base/luasrc/i18n.lua b/modules/luci-base/luasrc/i18n.lua deleted file mode 100644 index 323912b650..0000000000 --- a/modules/luci-base/luasrc/i18n.lua +++ /dev/null @@ -1,55 +0,0 @@ --- Copyright 2008 Steven Barth <steven@midlink.org> --- Licensed to the public under the Apache License 2.0. - -local tparser = require "luci.template.parser" -local util = require "luci.util" -local tostring = tostring - -module "luci.i18n" - -i18ndir = util.libpath() .. "/i18n/" -context = util.threadlocal() -default = "en" - - -function setlanguage(lang) - local code, subcode = lang:match("^([A-Za-z][A-Za-z])[%-_]([A-Za-z][A-Za-z])$") - if not (code and subcode) then - subcode = lang:match("^([A-Za-z][A-Za-z])$") - if not subcode then - return nil - end - end - - context.parent = code and code:lower() - context.lang = context.parent and context.parent.."-"..subcode:lower() or subcode:lower() - - if tparser.load_catalog(context.lang, i18ndir) and - tparser.change_catalog(context.lang) - then - return context.lang - - elseif context.parent then - if tparser.load_catalog(context.parent, i18ndir) and - tparser.change_catalog(context.parent) - then - return context.parent - end - end - - return nil -end - -function translate(key) - return tparser.translate(key) or key -end - -function translatef(key, ...) - return tostring(translate(key)):format(...) -end - -function dump() - local rv = {} - tparser.get_translations(function(k, v) rv[k] = v end) - return rv -end diff --git a/modules/luci-base/luasrc/i18n.luadoc b/modules/luci-base/luasrc/i18n.luadoc deleted file mode 100644 index b76c298565..0000000000 --- a/modules/luci-base/luasrc/i18n.luadoc +++ /dev/null @@ -1,42 +0,0 @@ ----[[ -LuCI translation library. -]] -module "luci.i18n" - ----[[ -Set the context default translation language. - -@class function -@name setlanguage -@param lang An IETF/BCP 47 language tag or ISO3166 country code, e.g. "en-US" or "de" -@return The effective loaded language, e.g. "en" for "en-US" - or nil on failure -]] - ----[[ -Return the translated value for a specific translation key. - -@class function -@name translate -@param key Default translation text -@return Translated string -]] - ----[[ -Return the translated value for a specific translation key and use it as sprintf pattern. - -@class function -@name translatef -@param key Default translation text -@param ... Format parameters -@return Translated and formatted string -]] - ----[[ -Return all currently loaded translation strings as a key-value table. The key is the -hexadecimal representation of the translation key while the value is the translated -text content. - -@class function -@name dump -@return Key-value translation string table. -]] diff --git a/modules/luci-base/luasrc/model/uci.lua b/modules/luci-base/luasrc/model/uci.lua deleted file mode 100644 index 816f6f2053..0000000000 --- a/modules/luci-base/luasrc/model/uci.lua +++ /dev/null @@ -1,508 +0,0 @@ --- Copyright 2008 Steven Barth <steven@midlink.org> --- Licensed to the public under the Apache License 2.0. - -local os = require "os" -local util = require "luci.util" -local table = require "table" - - -local setmetatable, rawget, rawset = setmetatable, rawget, rawset -local require, getmetatable, assert = require, getmetatable, assert -local error, pairs, ipairs, select = error, pairs, ipairs, select -local type, tostring, tonumber, unpack = type, tostring, tonumber, unpack - --- The typical workflow for UCI is: Get a cursor instance from the --- cursor factory, modify data (via Cursor.add, Cursor.delete, etc.), --- save the changes to the staging area via Cursor.save and finally --- Cursor.commit the data to the actual config files. --- LuCI then needs to Cursor.apply the changes so daemons etc. are --- reloaded. -module "luci.model.uci" - -local ERRSTR = { - "Invalid command", - "Invalid argument", - "Method not found", - "Entry not found", - "No data", - "Permission denied", - "Timeout", - "Not supported", - "Unknown error", - "Connection failed" -} - -local session_id = nil - -local function call(cmd, args) - if type(args) == "table" and session_id then - args.ubus_rpc_session = session_id - end - return util.ubus("uci", cmd, args) -end - - -function cursor() - return _M -end - -function cursor_state() - return _M -end - -function substate(self) - return self -end - - -function get_confdir(self) - return "/etc/config" -end - -function get_savedir(self) - return "/tmp/.uci" -end - -function get_session_id(self) - return session_id -end - -function set_confdir(self, directory) - return false -end - -function set_savedir(self, directory) - return false -end - -function set_session_id(self, id) - session_id = id - return true -end - - -function load(self, config) - return true -end - -function save(self, config) - return true -end - -function unload(self, config) - return true -end - - -function changes(self, config) - local rv, err = call("changes", { config = config }) - - if type(rv) == "table" and type(rv.changes) == "table" then - return rv.changes - elseif err then - return nil, ERRSTR[err] - else - return { } - end -end - - -function revert(self, config) - local _, err = call("revert", { config = config }) - return (err == nil), ERRSTR[err] -end - -function commit(self, config) - local _, err = call("commit", { config = config }) - return (err == nil), ERRSTR[err] -end - -function apply(self, rollback) - local _, err - - if rollback then - local sys = require "luci.sys" - local conf = require "luci.config" - local timeout = tonumber(conf and conf.apply and conf.apply.rollback or 90) or 0 - - _, err = call("apply", { - timeout = (timeout > 90) and timeout or 90, - rollback = true - }) - - if not err then - local now = os.time() - local token = sys.uniqueid(16) - - util.ubus("session", "set", { - ubus_rpc_session = "00000000000000000000000000000000", - values = { - rollback = { - token = token, - session = session_id, - timeout = now + timeout - } - } - }) - - return token - end - else - _, err = call("changes", {}) - - if not err then - if type(_) == "table" and type(_.changes) == "table" then - local k, v - for k, v in pairs(_.changes) do - _, err = call("commit", { config = k }) - if err then - break - end - end - end - end - - if not err then - _, err = call("apply", { rollback = false }) - end - end - - return (err == nil), ERRSTR[err] -end - -function confirm(self, token) - local is_pending, time_remaining, rollback_sid, rollback_token = self:rollback_pending() - - if is_pending then - if token ~= rollback_token then - return false, "Permission denied" - end - - local _, err = util.ubus("uci", "confirm", { - ubus_rpc_session = rollback_sid - }) - - if not err then - util.ubus("session", "set", { - ubus_rpc_session = "00000000000000000000000000000000", - values = { rollback = {} } - }) - end - - return (err == nil), ERRSTR[err] - end - - return false, "No data" -end - -function rollback(self) - local is_pending, time_remaining, rollback_sid = self:rollback_pending() - - if is_pending then - local _, err = util.ubus("uci", "rollback", { - ubus_rpc_session = rollback_sid - }) - - if not err then - util.ubus("session", "set", { - ubus_rpc_session = "00000000000000000000000000000000", - values = { rollback = {} } - }) - end - - return (err == nil), ERRSTR[err] - end - - return false, "No data" -end - -function rollback_pending(self) - local rv, err = util.ubus("session", "get", { - ubus_rpc_session = "00000000000000000000000000000000", - keys = { "rollback" } - }) - - local now = os.time() - - if type(rv) == "table" and - type(rv.values) == "table" and - type(rv.values.rollback) == "table" and - type(rv.values.rollback.token) == "string" and - type(rv.values.rollback.session) == "string" and - type(rv.values.rollback.timeout) == "number" and - rv.values.rollback.timeout > now - then - return true, - rv.values.rollback.timeout - now, - rv.values.rollback.session, - rv.values.rollback.token - end - - return false, ERRSTR[err] -end - - -function foreach(self, config, stype, callback) - if type(callback) == "function" then - local rv, err = call("get", { - config = config, - type = stype - }) - - if type(rv) == "table" and type(rv.values) == "table" then - local sections = { } - local res = false - local index = 1 - - local _, section - for _, section in pairs(rv.values) do - section[".index"] = section[".index"] or index - sections[index] = section - index = index + 1 - end - - table.sort(sections, function(a, b) - return a[".index"] < b[".index"] - end) - - for _, section in ipairs(sections) do - local continue = callback(section) - res = true - if continue == false then - break - end - end - return res - else - return false, ERRSTR[err] or "No data" - end - else - return false, "Invalid argument" - end -end - -local function _get(self, operation, config, section, option) - if section == nil then - return nil - elseif type(option) == "string" and option:byte(1) ~= 46 then - local rv, err = call(operation, { - config = config, - section = section, - option = option - }) - - if type(rv) == "table" then - return rv.value or nil - elseif err then - return false, ERRSTR[err] - else - return nil - end - elseif option == nil then - local values = self:get_all(config, section) - if values then - return values[".type"], values[".name"] - else - return nil - end - else - return false, "Invalid argument" - end -end - -function get(self, ...) - return _get(self, "get", ...) -end - -function get_state(self, ...) - return _get(self, "state", ...) -end - -function get_all(self, config, section) - local rv, err = call("get", { - config = config, - section = section - }) - - if type(rv) == "table" and type(rv.values) == "table" then - return rv.values - elseif err then - return false, ERRSTR[err] - else - return nil - end -end - -function get_bool(self, ...) - local val = self:get(...) - return (val == "1" or val == "true" or val == "yes" or val == "on") -end - -function get_first(self, config, stype, option, default) - local rv = default - - self:foreach(config, stype, function(s) - local val = not option and s[".name"] or s[option] - - if type(default) == "number" then - val = tonumber(val) - elseif type(default) == "boolean" then - val = (val == "1" or val == "true" or - val == "yes" or val == "on") - end - - if val ~= nil then - rv = val - return false - end - end) - - return rv -end - -function get_list(self, config, section, option) - if config and section and option then - local val = self:get(config, section, option) - return (type(val) == "table" and val or { val }) - end - return { } -end - - -function section(self, config, stype, name, values) - local rv, err = call("add", { - config = config, - type = stype, - name = name, - values = values - }) - - if type(rv) == "table" then - return rv.section - elseif err then - return false, ERRSTR[err] - else - return nil - end -end - - -function add(self, config, stype) - return self:section(config, stype) -end - -function set(self, config, section, option, ...) - if select('#', ...) == 0 then - local sname, err = self:section(config, option, section) - return (not not sname), err - else - local _, err = call("set", { - config = config, - section = section, - values = { [option] = select(1, ...) } - }) - return (err == nil), ERRSTR[err] - end -end - -function set_list(self, config, section, option, value) - if section == nil or option == nil then - return false - elseif value == nil or (type(value) == "table" and #value == 0) then - return self:delete(config, section, option) - elseif type(value) == "table" then - return self:set(config, section, option, value) - else - return self:set(config, section, option, { value }) - end -end - -function tset(self, config, section, values) - local _, err = call("set", { - config = config, - section = section, - values = values - }) - return (err == nil), ERRSTR[err] -end - -function reorder(self, config, section, index) - local sections - - if type(section) == "string" and type(index) == "number" then - local pos = 0 - - sections = { } - - self:foreach(config, nil, function(s) - if pos == index then - pos = pos + 1 - end - - if s[".name"] ~= section then - pos = pos + 1 - sections[pos] = s[".name"] - else - sections[index + 1] = section - end - end) - elseif type(section) == "table" then - sections = section - else - return false, "Invalid argument" - end - - local _, err = call("order", { - config = config, - sections = sections - }) - - return (err == nil), ERRSTR[err] -end - - -function delete(self, config, section, option) - local _, err = call("delete", { - config = config, - section = section, - option = option - }) - return (err == nil), ERRSTR[err] -end - -function delete_all(self, config, stype, comparator) - local _, err - if type(comparator) == "table" then - _, err = call("delete", { - config = config, - type = stype, - match = comparator - }) - elseif type(comparator) == "function" then - local rv = call("get", { - config = config, - type = stype - }) - - if type(rv) == "table" and type(rv.values) == "table" then - local sname, section - for sname, section in pairs(rv.values) do - if comparator(section) then - _, err = call("delete", { - config = config, - section = sname - }) - end - end - end - elseif comparator == nil then - _, err = call("delete", { - config = config, - type = stype - }) - else - return false, "Invalid argument" - end - - return (err == nil), ERRSTR[err] -end diff --git a/modules/luci-base/luasrc/model/uci.luadoc b/modules/luci-base/luasrc/model/uci.luadoc deleted file mode 100644 index 0189d49aa1..0000000000 --- a/modules/luci-base/luasrc/model/uci.luadoc +++ /dev/null @@ -1,369 +0,0 @@ ----[[ -LuCI UCI model library. - -The typical workflow for UCI is: Get a cursor instance from the -cursor factory, modify data (via Cursor.add, Cursor.delete, etc.), -save the changes to the staging area via Cursor.save and finally -Cursor.commit the data to the actual config files. -LuCI then needs to Cursor.apply the changes so daemons etc. are -reloaded. -@cstyle instance -]] -module "luci.model.uci" - ----[[ -Create a new UCI-Cursor. - -@class function -@name cursor -@return UCI-Cursor -]] - ----[[ -Create a new Cursor initialized to the state directory. - -@class function -@name cursor_state -@return UCI cursor -]] - ----[[ -Applies UCI configuration changes. - -If the rollback parameter is set to true, the apply function will invoke the -rollback mechanism which causes the configuration to be automatically reverted -if no confirm() call occurs within a certain timeout. - -The current default timeout is 30s and can be increased using the -"luci.apply.timeout" uci configuration key. - -@class function -@name Cursor.apply -@param rollback Enable rollback mechanism -@return Boolean whether operation succeeded -]] - ----[[ -Confirms UCI apply process. - -If a previous UCI apply with rollback has been invoked using apply(true), -this function confirms the process and cancels the pending rollback timer. - -If no apply with rollback session is active, the function has no effect and -returns with a "No data" error. - -@class function -@name Cursor.confirm -@return Boolean whether operation succeeded -]] - ----[[ -Cancels UCI apply process. - -If a previous UCI apply with rollback has been invoked using apply(true), -this function cancels the process and rolls back the configuration to the -pre-apply state. - -If no apply with rollback session is active, the function has no effect and -returns with a "No data" error. - -@class function -@name Cursor.rollback -@return Boolean whether operation succeeded -]] - ----[[ -Checks whether a pending rollback is scheduled. - -If a previous UCI apply with rollback has been invoked using apply(true), -and has not been confirmed or rolled back yet, this function returns true -and the remaining time until rollback in seconds. If no rollback is pending, -the function returns false. On error, the function returns false and an -additional string describing the error. - -@class function -@name Cursor.rollback_pending -@return Boolean whether rollback is pending -@return Remaining time in seconds -]] - ----[[ -Delete all sections of a given type that match certain criteria. - -@class function -@name Cursor.delete_all -@param config UCI config -@param type UCI section type -@param comparator Function that will be called for each section and returns - a boolean whether to delete the current section (optional) -]] - ----[[ -Create a new section and initialize it with data. - -@class function -@name Cursor.section -@param config UCI config -@param type UCI section type -@param name UCI section name (optional) -@param values Table of key - value pairs to initialize the section with -@return Name of created section -]] - ----[[ -Updated the data of a section using data from a table. - -@class function -@name Cursor.tset -@param config UCI config -@param section UCI section name (optional) -@param values Table of key - value pairs to update the section with -]] - ----[[ -Get a boolean option and return it's value as true or false. - -@class function -@name Cursor.get_bool -@param config UCI config -@param section UCI section name -@param option UCI option -@return Boolean -]] - ----[[ -Get an option or list and return values as table. - -@class function -@name Cursor.get_list -@param config UCI config -@param section UCI section name -@param option UCI option -@return table. If the option was not found, you will simply get an empty - table. -]] - ----[[ -Get the given option from the first section with the given type. - -@class function -@name Cursor.get_first -@param config UCI config -@param type UCI section type -@param option UCI option (optional) -@param default Default value (optional) -@return UCI value -]] - ----[[ -Set given values as list. Setting a list option to an empty list -has the same effect as deleting the option. - -@class function -@name Cursor.set_list -@param config UCI config -@param section UCI section name -@param option UCI option -@param value Value or table. Non-table values will be set as single - item UCI list. -@return Boolean whether operation succeeded -]] - ----[[ -Create a sub-state of this cursor. - -The sub-state is tied to the parent cursor, means it the parent unloads or -loads configs, the sub state will do so as well. - -@class function -@name Cursor.substate -@return UCI state cursor tied to the parent cursor -]] - ----[[ -Add an anonymous section. - -@class function -@name Cursor.add -@param config UCI config -@param type UCI section type -@return Name of created section -]] - ----[[ -Get a table of saved but uncommitted changes. - -@class function -@name Cursor.changes -@param config UCI config -@return Table of changes -@see Cursor.save -]] - ----[[ -Commit saved changes. - -@class function -@name Cursor.commit -@param config UCI config -@return Boolean whether operation succeeded -@see Cursor.revert -@see Cursor.save -]] - ----[[ -Deletes a section or an option. - -@class function -@name Cursor.delete -@param config UCI config -@param section UCI section name -@param option UCI option (optional) -@return Boolean whether operation succeeded -]] - ----[[ -Call a function for every section of a certain type. - -@class function -@name Cursor.foreach -@param config UCI config -@param type UCI section type -@param callback Function to be called -@return Boolean whether operation succeeded -]] - ----[[ -Get a section type or an option - -@class function -@name Cursor.get -@param config UCI config -@param section UCI section name -@param option UCI option (optional) -@return UCI value -]] - ----[[ -Get all sections of a config or all values of a section. - -@class function -@name Cursor.get_all -@param config UCI config -@param section UCI section name (optional) -@return Table of UCI sections or table of UCI values -]] - ----[[ -Manually load a config. - -@class function -@name Cursor.load -@param config UCI config -@return Boolean whether operation succeeded -@see Cursor.save -@see Cursor.unload -]] - ----[[ -Revert saved but uncommitted changes. - -@class function -@name Cursor.revert -@param config UCI config -@return Boolean whether operation succeeded -@see Cursor.commit -@see Cursor.save -]] - ----[[ -Saves changes made to a config to make them committable. - -@class function -@name Cursor.save -@param config UCI config -@return Boolean whether operation succeeded -@see Cursor.load -@see Cursor.unload -]] - ----[[ -Set a value or create a named section. - -When invoked with three arguments `config`, `sectionname`, `sectiontype`, -then a named section of the given type is created. - -When invoked with four arguments `config`, `sectionname`, `optionname` and -`optionvalue` then the value of the specified option is set to the given value. - -@class function -@name Cursor.set -@param config UCI config -@param section UCI section name -@param option UCI option or UCI section type -@param value UCI value or nothing if you want to create a section -@return Boolean whether operation succeeded -]] - ----[[ -Get the configuration directory. - -@class function -@name Cursor.get_confdir -@return Configuration directory -]] - ----[[ -Get the directory for uncomitted changes. - -@class function -@name Cursor.get_savedir -@return Save directory -]] - ----[[ -Get the effective session ID. - -@class function -@name Cursor.get_session_id -@return String containing the session ID -]] - ----[[ -Set the configuration directory. - -@class function -@name Cursor.set_confdir -@param directory UCI configuration directory -@return Boolean whether operation succeeded -]] - ----[[ -Set the directory for uncommitted changes. - -@class function -@name Cursor.set_savedir -@param directory UCI changes directory -@return Boolean whether operation succeeded -]] - ----[[ -Set the effective session ID. - -@class function -@name Cursor.set_session_id -@param id String containing the session ID to set -@return Boolean whether operation succeeded -]] - ----[[ -Discard changes made to a config. - -@class function -@name Cursor.unload -@param config UCI config -@return Boolean whether operation succeeded -@see Cursor.load -@see Cursor.save -]] - diff --git a/modules/luci-base/luasrc/sgi/cgi.lua b/modules/luci-base/luasrc/sgi/cgi.lua deleted file mode 100644 index 400db4710d..0000000000 --- a/modules/luci-base/luasrc/sgi/cgi.lua +++ /dev/null @@ -1,73 +0,0 @@ --- Copyright 2008 Steven Barth <steven@midlink.org> --- Licensed to the public under the Apache License 2.0. - -exectime = os.clock() -module("luci.sgi.cgi", package.seeall) -local ltn12 = require("luci.ltn12") -require("nixio.util") -require("luci.http") -require("luci.sys") -require("luci.dispatcher") - --- Limited source to avoid endless blocking -local function limitsource(handle, limit) - limit = limit or 0 - local BLOCKSIZE = ltn12.BLOCKSIZE - - return function() - if limit < 1 then - handle:close() - return nil - else - local read = (limit > BLOCKSIZE) and BLOCKSIZE or limit - limit = limit - read - - local chunk = handle:read(read) - if not chunk then handle:close() end - return chunk - end - end -end - -function run() - local r = luci.http.Request( - luci.sys.getenv(), - limitsource(io.stdin, tonumber(luci.sys.getenv("CONTENT_LENGTH"))), - ltn12.sink.file(io.stderr) - ) - - local x = coroutine.create(luci.dispatcher.httpdispatch) - local hcache = "" - local active = true - - while coroutine.status(x) ~= "dead" do - local res, id, data1, data2 = coroutine.resume(x, r) - - if not res then - print("Status: 500 Internal Server Error") - print("Content-Type: text/plain\n") - print(id) - break; - end - - if active then - if id == 1 then - io.write("Status: " .. tostring(data1) .. " " .. data2 .. "\r\n") - elseif id == 2 then - hcache = hcache .. data1 .. ": " .. data2 .. "\r\n" - elseif id == 3 then - io.write(hcache) - io.write("\r\n") - elseif id == 4 then - io.write(tostring(data1 or "")) - elseif id == 5 then - io.flush() - io.close() - active = false - elseif id == 6 then - data1:copyz(nixio.stdout, data2) - data1:close() - end - end - end -end diff --git a/modules/luci-base/luasrc/sgi/uhttpd.lua b/modules/luci-base/luasrc/sgi/uhttpd.lua deleted file mode 100644 index 4cd3649c62..0000000000 --- a/modules/luci-base/luasrc/sgi/uhttpd.lua +++ /dev/null @@ -1,99 +0,0 @@ --- Copyright 2010 Jo-Philipp Wich <jow@openwrt.org> --- Licensed to the public under the Apache License 2.0. - -require "nixio.util" -require "luci.http" -require "luci.sys" -require "luci.dispatcher" -require "luci.ltn12" - -function handle_request(env) - exectime = os.clock() - local renv = { - CONTENT_LENGTH = env.CONTENT_LENGTH, - CONTENT_TYPE = env.CONTENT_TYPE, - REQUEST_METHOD = env.REQUEST_METHOD, - REQUEST_URI = env.REQUEST_URI, - PATH_INFO = env.PATH_INFO, - SCRIPT_NAME = env.SCRIPT_NAME:gsub("/+$", ""), - SCRIPT_FILENAME = env.SCRIPT_NAME, - SERVER_PROTOCOL = env.SERVER_PROTOCOL, - QUERY_STRING = env.QUERY_STRING, - DOCUMENT_ROOT = env.DOCUMENT_ROOT, - HTTPS = env.HTTPS, - REDIRECT_STATUS = env.REDIRECT_STATUS, - REMOTE_ADDR = env.REMOTE_ADDR, - REMOTE_NAME = env.REMOTE_NAME, - REMOTE_PORT = env.REMOTE_PORT, - REMOTE_USER = env.REMOTE_USER, - SERVER_ADDR = env.SERVER_ADDR, - SERVER_NAME = env.SERVER_NAME, - SERVER_PORT = env.SERVER_PORT - } - - local k, v - for k, v in pairs(env.headers) do - k = k:upper():gsub("%-", "_") - renv["HTTP_" .. k] = v - end - - local len = tonumber(env.CONTENT_LENGTH) or 0 - local function recv() - if len > 0 then - local rlen, rbuf = uhttpd.recv(4096) - if rlen >= 0 then - len = len - rlen - return rbuf - end - end - return nil - end - - local send = uhttpd.send - - local req = luci.http.Request( - renv, recv, luci.ltn12.sink.file(io.stderr) - ) - - - local x = coroutine.create(luci.dispatcher.httpdispatch) - local hcache = { } - local active = true - - while coroutine.status(x) ~= "dead" do - local res, id, data1, data2 = coroutine.resume(x, req) - - if not res then - send("Status: 500 Internal Server Error\r\n") - send("Content-Type: text/plain\r\n\r\n") - send(tostring(id)) - break - end - - if active then - if id == 1 then - send("Status: ") - send(tostring(data1)) - send(" ") - send(tostring(data2)) - send("\r\n") - elseif id == 2 then - hcache[data1] = data2 - elseif id == 3 then - for k, v in pairs(hcache) do - send(tostring(k)) - send(": ") - send(tostring(v)) - send("\r\n") - end - send("\r\n") - elseif id == 4 then - send(tostring(data1 or "")) - elseif id == 5 then - active = false - elseif id == 6 then - data1:copyz(nixio.stdout, data2) - end - end - end -end diff --git a/modules/luci-base/luasrc/store.lua b/modules/luci-base/luasrc/store.lua deleted file mode 100644 index a735981137..0000000000 --- a/modules/luci-base/luasrc/store.lua +++ /dev/null @@ -1,6 +0,0 @@ --- Copyright 2009 Steven Barth <steven@midlink.org> --- Copyright 2009 Jo-Philipp Wich <jow@openwrt.org> --- Licensed to the public under the Apache License 2.0. - -local util = require "luci.util" -module("luci.store", util.threadlocal) diff --git a/modules/luci-base/luasrc/sys.lua b/modules/luci-base/luasrc/sys.lua deleted file mode 100644 index e6eb762e48..0000000000 --- a/modules/luci-base/luasrc/sys.lua +++ /dev/null @@ -1,615 +0,0 @@ --- Copyright 2008 Steven Barth <steven@midlink.org> --- Licensed to the public under the Apache License 2.0. - -local io = require "io" -local os = require "os" -local table = require "table" -local nixio = require "nixio" -local fs = require "nixio.fs" -local uci = require "luci.model.uci" - -local luci = {} -luci.util = require "luci.util" -luci.ip = require "luci.ip" - -local tonumber, ipairs, pairs, pcall, type, next, setmetatable, require, select, unpack = - tonumber, ipairs, pairs, pcall, type, next, setmetatable, require, select, unpack - - -module "luci.sys" - -function call(...) - return os.execute(...) / 256 -end - -exec = luci.util.exec - --- containing the whole environment is returned otherwise this function returns --- the corresponding string value for the given name or nil if no such variable --- exists. -getenv = nixio.getenv - -function hostname(newname) - if type(newname) == "string" and #newname > 0 then - fs.writefile( "/proc/sys/kernel/hostname", newname ) - return newname - else - return nixio.uname().nodename - end -end - -function httpget(url, stream, target) - if not target then - local source = stream and io.popen or luci.util.exec - return source("wget -qO- %s" % luci.util.shellquote(url)) - else - return os.execute("wget -qO %s %s" % - {luci.util.shellquote(target), luci.util.shellquote(url)}) - end -end - -function reboot() - return os.execute("reboot >/dev/null 2>&1") -end - -function syslog() - return luci.util.exec("logread") -end - -function dmesg() - return luci.util.exec("dmesg") -end - -function uniqueid(bytes) - local rand = fs.readfile("/dev/urandom", bytes) - return rand and nixio.bin.hexlify(rand) -end - -function uptime() - return nixio.sysinfo().uptime -end - - -net = {} - -local function _nethints(what, callback) - local _, k, e, mac, ip, name, duid, iaid - local cur = uci.cursor() - local ifn = { } - local hosts = { } - local lookup = { } - - local function _add(i, ...) - local k = select(i, ...) - if k then - if not hosts[k] then hosts[k] = { } end - hosts[k][1] = select(1, ...) or hosts[k][1] - hosts[k][2] = select(2, ...) or hosts[k][2] - hosts[k][3] = select(3, ...) or hosts[k][3] - hosts[k][4] = select(4, ...) or hosts[k][4] - end - end - - luci.ip.neighbors(nil, function(neigh) - if neigh.mac and neigh.family == 4 then - _add(what, neigh.mac:string(), neigh.dest:string(), nil, nil) - elseif neigh.mac and neigh.family == 6 then - _add(what, neigh.mac:string(), nil, neigh.dest:string(), nil) - end - end) - - if fs.access("/etc/ethers") then - for e in io.lines("/etc/ethers") do - mac, name = e:match("^([a-fA-F0-9:-]+)%s+(%S+)") - mac = luci.ip.checkmac(mac) - if mac and name then - if luci.ip.checkip4(name) then - _add(what, mac, name, nil, nil) - else - _add(what, mac, nil, nil, name) - end - end - end - end - - cur:foreach("dhcp", "dnsmasq", - function(s) - if s.leasefile and fs.access(s.leasefile) then - for e in io.lines(s.leasefile) do - mac, ip, name = e:match("^%d+ (%S+) (%S+) (%S+)") - mac = luci.ip.checkmac(mac) - if mac and ip then - _add(what, mac, ip, nil, name ~= "*" and name) - end - end - end - end - ) - - cur:foreach("dhcp", "odhcpd", - function(s) - if type(s.leasefile) == "string" and fs.access(s.leasefile) then - for e in io.lines(s.leasefile) do - duid, iaid, name, _, ip = e:match("^# %S+ (%S+) (%S+) (%S+) (-?%d+) %S+ %S+ ([0-9a-f:.]+)/[0-9]+") - mac = net.duid_to_mac(duid) - if mac then - if ip and iaid == "ipv4" then - _add(what, mac, ip, nil, name ~= "*" and name) - elseif ip then - _add(what, mac, nil, ip, name ~= "*" and name) - end - end - end - end - end - ) - - cur:foreach("dhcp", "host", - function(s) - for mac in luci.util.imatch(s.mac) do - mac = luci.ip.checkmac(mac) - if mac then - _add(what, mac, s.ip, nil, s.name) - end - end - end) - - for _, e in ipairs(nixio.getifaddrs()) do - if e.name ~= "lo" then - ifn[e.name] = ifn[e.name] or { } - if e.family == "packet" and e.addr and #e.addr == 17 then - ifn[e.name][1] = e.addr:upper() - elseif e.family == "inet" then - ifn[e.name][2] = e.addr - elseif e.family == "inet6" then - ifn[e.name][3] = e.addr - end - end - end - - for _, e in pairs(ifn) do - if e[what] and (e[2] or e[3]) then - _add(what, e[1], e[2], e[3], e[4]) - end - end - - for _, e in pairs(hosts) do - lookup[#lookup+1] = (what > 1) and e[what] or (e[2] or e[3]) - end - - if #lookup > 0 then - lookup = luci.util.ubus("network.rrdns", "lookup", { - addrs = lookup, - timeout = 250, - limit = 1000 - }) or { } - end - - for _, e in luci.util.kspairs(hosts) do - callback(e[1], e[2], e[3], lookup[e[2]] or lookup[e[3]] or e[4]) - end -end - --- Each entry contains the values in the following order: --- [ "mac", "name" ] -function net.mac_hints(callback) - if callback then - _nethints(1, function(mac, v4, v6, name) - name = name or v4 - if name and name ~= mac then - callback(mac, name or v4) - end - end) - else - local rv = { } - _nethints(1, function(mac, v4, v6, name) - name = name or v4 - if name and name ~= mac then - rv[#rv+1] = { mac, name or v4 } - end - end) - return rv - end -end - --- Each entry contains the values in the following order: --- [ "ip", "name" ] -function net.ipv4_hints(callback) - if callback then - _nethints(2, function(mac, v4, v6, name) - name = name or mac - if name and name ~= v4 then - callback(v4, name) - end - end) - else - local rv = { } - _nethints(2, function(mac, v4, v6, name) - name = name or mac - if name and name ~= v4 then - rv[#rv+1] = { v4, name } - end - end) - return rv - end -end - --- Each entry contains the values in the following order: --- [ "ip", "name" ] -function net.ipv6_hints(callback) - if callback then - _nethints(3, function(mac, v4, v6, name) - name = name or mac - if name and name ~= v6 then - callback(v6, name) - end - end) - else - local rv = { } - _nethints(3, function(mac, v4, v6, name) - name = name or mac - if name and name ~= v6 then - rv[#rv+1] = { v6, name } - end - end) - return rv - end -end - -function net.host_hints(callback) - if callback then - _nethints(1, function(mac, v4, v6, name) - if mac and mac ~= "00:00:00:00:00:00" and (v4 or v6 or name) then - callback(mac, v4, v6, name) - end - end) - else - local rv = { } - _nethints(1, function(mac, v4, v6, name) - if mac and mac ~= "00:00:00:00:00:00" and (v4 or v6 or name) then - local e = { } - if v4 then e.ipv4 = v4 end - if v6 then e.ipv6 = v6 end - if name then e.name = name end - rv[mac] = e - end - end) - return rv - end -end - -function net.conntrack(callback) - local ok, nfct = pcall(io.lines, "/proc/net/nf_conntrack") - if not ok or not nfct then - return nil - end - - local line, connt = nil, (not callback) and { } - for line in nfct do - local fam, l3, l4, rest = - line:match("^(ipv[46]) +(%d+) +%S+ +(%d+) +(.+)$") - - local timeout, tuples = rest:match("^(%d+) +(.+)$") - - if not tuples then - tuples = rest - end - - if fam and l3 and l4 and not tuples:match("^TIME_WAIT ") then - l4 = nixio.getprotobynumber(l4) - - local entry = { - bytes = 0, - packets = 0, - layer3 = fam, - layer4 = l4 and l4.name or "unknown", - timeout = tonumber(timeout, 10) - } - - local key, val - for key, val in tuples:gmatch("(%w+)=(%S+)") do - if key == "bytes" or key == "packets" then - entry[key] = entry[key] + tonumber(val, 10) - elseif key == "src" or key == "dst" then - if entry[key] == nil then - entry[key] = luci.ip.new(val):string() - end - elseif key == "sport" or key == "dport" then - if entry[key] == nil then - entry[key] = val - end - elseif val then - entry[key] = val - end - end - - if callback then - callback(entry) - else - connt[#connt+1] = entry - end - end - end - - return callback and true or connt -end - -function net.devices() - local devs = {} - local seen = {} - for k, v in ipairs(nixio.getifaddrs()) do - if v.name and not seen[v.name] then - seen[v.name] = true - devs[#devs+1] = v.name - end - end - return devs -end - -function net.duid_to_mac(duid) - local b1, b2, b3, b4, b5, b6 - - if type(duid) == "string" then - -- DUID-LLT / Ethernet - if #duid == 28 then - b1, b2, b3, b4, b5, b6 = duid:match("^00010001(%x%x)(%x%x)(%x%x)(%x%x)(%x%x)(%x%x)%x%x%x%x%x%x%x%x$") - - -- DUID-LL / Ethernet - elseif #duid == 20 then - b1, b2, b3, b4, b5, b6 = duid:match("^00030001(%x%x)(%x%x)(%x%x)(%x%x)(%x%x)(%x%x)$") - - -- DUID-LL / Ethernet (Without Header) - elseif #duid == 12 then - b1, b2, b3, b4, b5, b6 = duid:match("^(%x%x)(%x%x)(%x%x)(%x%x)(%x%x)(%x%x)$") - end - end - - return b1 and luci.ip.checkmac(table.concat({ b1, b2, b3, b4, b5, b6 }, ":")) -end - -process = {} - -function process.info(key) - local s = {uid = nixio.getuid(), gid = nixio.getgid()} - return not key and s or s[key] -end - -function process.list() - local data = {} - local k - local ps = luci.util.execi("/bin/busybox top -bn1") - - if not ps then - return - end - - for line in ps do - local pid, ppid, user, stat, vsz, mem, cpu, cmd = line:match( - "^ *(%d+) +(%d+) +(%S.-%S) +([RSDZTW][<NW ][<N ]) +(%d+m?) +(%d+%%) +(%d+%%) +(.+)" - ) - - local idx = tonumber(pid) - if idx and not cmd:match("top %-bn1") then - data[idx] = { - ['PID'] = pid, - ['PPID'] = ppid, - ['USER'] = user, - ['STAT'] = stat, - ['VSZ'] = vsz, - ['%MEM'] = mem, - ['%CPU'] = cpu, - ['COMMAND'] = cmd - } - end - end - - return data -end - -function process.setgroup(gid) - return nixio.setgid(gid) -end - -function process.setuser(uid) - return nixio.setuid(uid) -end - -process.signal = nixio.kill - -local function xclose(fd) - if fd and fd:fileno() > 2 then - fd:close() - end -end - -function process.exec(command, stdout, stderr, nowait) - local out_r, out_w, err_r, err_w - if stdout then out_r, out_w = nixio.pipe() end - if stderr then err_r, err_w = nixio.pipe() end - - local pid = nixio.fork() - if pid == 0 then - nixio.chdir("/") - - local null = nixio.open("/dev/null", "w+") - if null then - nixio.dup(out_w or null, nixio.stdout) - nixio.dup(err_w or null, nixio.stderr) - nixio.dup(null, nixio.stdin) - xclose(out_w) - xclose(out_r) - xclose(err_w) - xclose(err_r) - xclose(null) - end - - nixio.exec(unpack(command)) - os.exit(-1) - end - - local _, pfds, rv = nil, {}, { code = -1, pid = pid } - - xclose(out_w) - xclose(err_w) - - if out_r then - pfds[#pfds+1] = { - fd = out_r, - cb = type(stdout) == "function" and stdout, - name = "stdout", - events = nixio.poll_flags("in", "err", "hup") - } - end - - if err_r then - pfds[#pfds+1] = { - fd = err_r, - cb = type(stderr) == "function" and stderr, - name = "stderr", - events = nixio.poll_flags("in", "err", "hup") - } - end - - while #pfds > 0 do - local nfds, err = nixio.poll(pfds, -1) - if not nfds and err ~= nixio.const.EINTR then - break - end - - local i - for i = #pfds, 1, -1 do - local rfd = pfds[i] - if rfd.revents > 0 then - local chunk, err = rfd.fd:read(4096) - if chunk and #chunk > 0 then - if rfd.cb then - rfd.cb(chunk) - else - rfd.buf = rfd.buf or {} - rfd.buf[#rfd.buf + 1] = chunk - end - else - table.remove(pfds, i) - if rfd.buf then - rv[rfd.name] = table.concat(rfd.buf, "") - end - rfd.fd:close() - end - end - end - end - - if not nowait then - _, _, rv.code = nixio.waitpid(pid) - end - - return rv -end - - -user = {} - --- { "uid", "gid", "name", "passwd", "dir", "shell", "gecos" } -user.getuser = nixio.getpw - -function user.getpasswd(username) - local pwe = nixio.getsp and nixio.getsp(username) or nixio.getpw(username) - local pwh = pwe and (pwe.pwdp or pwe.passwd) - if not pwh or #pwh < 1 then - return nil, pwe - else - return pwh, pwe - end -end - -function user.checkpasswd(username, pass) - local pwh, pwe = user.getpasswd(username) - if pwe then - return (pwh == nil or nixio.crypt(pass, pwh) == pwh) - end - return false -end - -function user.setpasswd(username, password) - return os.execute("(echo %s; sleep 1; echo %s) | passwd %s >/dev/null 2>&1" %{ - luci.util.shellquote(password), - luci.util.shellquote(password), - luci.util.shellquote(username) - }) -end - - -wifi = {} - -function wifi.getiwinfo(ifname) - local ntm = require "luci.model.network" - - ntm.init() - - local wnet = ntm:get_wifinet(ifname) - if wnet and wnet.iwinfo then - return wnet.iwinfo - end - - local wdev = ntm:get_wifidev(ifname) - if wdev and wdev.iwinfo then - return wdev.iwinfo - end - - return { ifname = ifname } -end - - -init = {} -init.dir = "/etc/init.d/" - -function init.names() - local names = { } - for name in fs.glob(init.dir.."*") do - names[#names+1] = fs.basename(name) - end - return names -end - -function init.index(name) - name = fs.basename(name) - if fs.access(init.dir..name) then - return call("env -i sh -c 'source %s%s enabled; exit ${START:-255}' >/dev/null" - %{ init.dir, name }) - end -end - -local function init_action(action, name) - name = fs.basename(name) - if fs.access(init.dir..name) then - return call("env -i %s%s %s >/dev/null" %{ init.dir, name, action }) - end -end - -function init.enabled(name) - return (init_action("enabled", name) == 0) -end - -function init.enable(name) - return (init_action("enable", name) == 0) -end - -function init.disable(name) - return (init_action("disable", name) == 0) -end - -function init.start(name) - return (init_action("start", name) == 0) -end - -function init.stop(name) - return (init_action("stop", name) == 0) -end - -function init.restart(name) - return (init_action("restart", name) == 0) -end - -function init.reload(name) - return (init_action("reload", name) == 0) -end diff --git a/modules/luci-base/luasrc/sys.luadoc b/modules/luci-base/luasrc/sys.luadoc deleted file mode 100644 index c1e088eb23..0000000000 --- a/modules/luci-base/luasrc/sys.luadoc +++ /dev/null @@ -1,392 +0,0 @@ ----[[ -LuCI Linux and POSIX system utilities. -]] -module "luci.sys" - ----[[ -Execute a given shell command and return the error code - -@class function -@name call -@param ... Command to call -@return Error code of the command -]] - ----[[ -Execute a given shell command and capture its standard output - -@class function -@name exec -@param command Command to call -@return String containing the return the output of the command -]] - ----[[ -Retrieve information about currently mounted file systems. - -@class function -@name mounts -@return Table containing mount information -]] - ----[[ -Retrieve environment variables. If no variable is given then a table - -containing the whole environment is returned otherwise this function returns -the corresponding string value for the given name or nil if no such variable -exists. -@class function -@name getenv -@param var Name of the environment variable to retrieve (optional) -@return String containing the value of the specified variable -@return Table containing all variables if no variable name is given -]] - ----[[ -Get or set the current hostname. - -@class function -@name hostname -@param String containing a new hostname to set (optional) -@return String containing the system hostname -]] - ----[[ -Returns the contents of a documented referred by an URL. - -@class function -@name httpget -@param url The URL to retrieve -@param stream Return a stream instead of a buffer -@param target Directly write to target file name -@return String containing the contents of given the URL -]] - ----[[ -Initiate a system reboot. - -@class function -@name reboot -@return Return value of os.execute() -]] - ----[[ -Retrieves the output of the "logread" command. - -@class function -@name syslog -@return String containing the current log buffer -]] - ----[[ -Retrieves the output of the "dmesg" command. - -@class function -@name dmesg -@return String containing the current log buffer -]] - ----[[ -Generates a random id with specified length. - -@class function -@name uniqueid -@param bytes Number of bytes for the unique id -@return String containing hex encoded id -]] - ----[[ -Returns the current system uptime stats. - -@class function -@name uptime -@return String containing total uptime in seconds -]] - ----[[ -LuCI system utilities / network related functions. - -@class module -@name luci.sys.net -]] - ----[[ -Returns a two-dimensional table of mac address hints. - -@class function -@name net.mac_hints -@return Table of table containing known hosts from various sources. - Each entry contains the values in the following order: - [ "mac", "name" ] -]] - ----[[ -Returns a two-dimensional table of IPv4 address hints. - -@class function -@name net.ipv4_hints -@return Table of table containing known hosts from various sources. - Each entry contains the values in the following order: - [ "ip", "name" ] -]] - ----[[ -Returns a two-dimensional table of IPv6 address hints. - -@class function -@name net.ipv6_hints -@return Table of table containing known hosts from various sources. - Each entry contains the values in the following order: - [ "ip", "name" ] -]] - ----[[ -Returns a two-dimensional table of host hints. - -@class function -@name net.host_hints -@return Table of table containing known hosts from various sources, - indexed by mac address. Each subtable contains at least one - of the fields "name", "ipv4" or "ipv6". -]] - ----[[ -Returns conntrack information - -@class function -@name net.conntrack -@return Table with the currently tracked IP connections -]] - ----[[ -Determine the names of available network interfaces. - -@class function -@name net.devices -@return Table containing all current interface names -]] - ----[[ -LuCI system utilities / process related functions. - -@class module -@name luci.sys.process -]] - ----[[ -Get the current process id. - -@class function -@name process.info -@return Number containing the current pid -]] - ----[[ -Retrieve information about currently running processes. - -@class function -@name process.list -@return Table containing process information -]] - ----[[ -Set the gid of a process identified by given pid. - -@class function -@name process.setgroup -@param gid Number containing the Unix group id -@return Boolean indicating successful operation -@return String containing the error message if failed -@return Number containing the error code if failed -]] - ----[[ -Set the uid of a process identified by given pid. - -@class function -@name process.setuser -@param uid Number containing the Unix user id -@return Boolean indicating successful operation -@return String containing the error message if failed -@return Number containing the error code if failed -]] - ----[[ -Send a signal to a process identified by given pid. - -@class function -@name process.signal -@param pid Number containing the process id -@param sig Signal to send (default: 15 [SIGTERM]) -@return Boolean indicating successful operation -@return Number containing the error code if failed -]] - ----[[ -Execute a process, optionally capturing stdio. - -Executes the process specified by the given argv vector, e.g. -`{ "/bin/sh", "-c", "echo 1" }` and waits for it to terminate unless a true -value has been passed for the "nowait" parameter. - -When a function value is passed for the stdout or stderr arguments, the passed -function is repeatedly called for each chunk read from the corresponding stdio -stream. The read data is passed as string containing at most 4096 bytes at a -time. - -When a true, non-function value is passed for the stdout or stderr arguments, -the data of the corresponding stdio stream is read into an internal string -buffer and returned as "stdout" or "stderr" field respectively in the result -table. - -When a true value is passed to the nowait parameter, the function does not -await process termination but returns as soon as all captured stdio streams -have been closed or - if no streams are captured - immediately after launching -the process. - -@class function -@name process.exec -@param commend Table containing the argv vector to execute -@param stdout Callback function or boolean to indicate capturing (optional) -@param stderr Callback function or boolean to indicate capturing (optional) -@param nowait Don't wait for process termination when true (optional) -@return Table containing at least the fields "code" which holds the exit - status of the invoked process or "-1" on error and "pid", which - contains the process id assigned to the spawned process. When - stdout and/or stderr capturing has been requested, it additionally - contains "stdout" and "stderr" fields respectively, holding the - captured stdio data as string. -]] - ----[[ -LuCI system utilities / user related functions. - -@class module -@name luci.sys.user -]] - ----[[ -Retrieve user information for given uid. - -@class function -@name getuser -@param uid Number containing the Unix user id -@return Table containing the following fields: --- { "uid", "gid", "name", "passwd", "dir", "shell", "gecos" } -]] - ----[[ -Retrieve the current user password hash. - -@class function -@name user.getpasswd -@param username String containing the username to retrieve the password for -@return String containing the hash or nil if no password is set. -@return Password database entry -]] - ----[[ -Test whether given string matches the password of a given system user. - -@class function -@name user.checkpasswd -@param username String containing the Unix user name -@param pass String containing the password to compare -@return Boolean indicating whether the passwords are equal -]] - ----[[ -Change the password of given user. - -@class function -@name user.setpasswd -@param username String containing the Unix user name -@param password String containing the password to compare -@return Number containing 0 on success and >= 1 on error -]] - ----[[ -LuCI system utilities / wifi related functions. - -@class module -@name luci.sys.wifi -]] - ----[[ -Get wireless information for given interface. - -@class function -@name wifi.getiwinfo -@param ifname String containing the interface name -@return A wrapped iwinfo object instance -]] - ----[[ -LuCI system utilities / init related functions. - -@class module -@name luci.sys.init -]] - ----[[ -Get the names of all installed init scripts - -@class function -@name init.names -@return Table containing the names of all inistalled init scripts -]] - ----[[ -Get the index of he given init script - -@class function -@name init.index -@param name Name of the init script -@return Numeric index value -]] - ----[[ -Test whether the given init script is enabled - -@class function -@name init.enabled -@param name Name of the init script -@return Boolean indicating whether init is enabled -]] - ----[[ -Enable the given init script - -@class function -@name init.enable -@param name Name of the init script -@return Boolean indicating success -]] - ----[[ -Disable the given init script - -@class function -@name init.disable -@param name Name of the init script -@return Boolean indicating success -]] - ----[[ -Start the given init script - -@class function -@name init.start -@param name Name of the init script -@return Boolean indicating success -]] - ----[[ -Stop the given init script - -@class function -@name init.stop -@param name Name of the init script -@return Boolean indicating success -]] - diff --git a/modules/luci-base/luasrc/sys/zoneinfo.lua b/modules/luci-base/luasrc/sys/zoneinfo.lua deleted file mode 100644 index aa054a246f..0000000000 --- a/modules/luci-base/luasrc/sys/zoneinfo.lua +++ /dev/null @@ -1,19 +0,0 @@ --- Licensed to the public under the Apache License 2.0. - -local setmetatable, require, rawget, rawset = setmetatable, require, rawget, rawset - -module "luci.sys.zoneinfo" - -setmetatable(_M, { - __index = function(t, k) - if k == "TZ" and not rawget(t, k) then - local m = require "luci.sys.zoneinfo.tzdata" - rawset(t, k, rawget(m, k)) - elseif k == "OFFSET" and not rawget(t, k) then - local m = require "luci.sys.zoneinfo.tzoffset" - rawset(t, k, rawget(m, k)) - end - - return rawget(t, k) - end -}) diff --git a/modules/luci-base/luasrc/sys/zoneinfo/tzdata.lua b/modules/luci-base/luasrc/sys/zoneinfo/tzdata.lua deleted file mode 100644 index a3edbf5cb4..0000000000 --- a/modules/luci-base/luasrc/sys/zoneinfo/tzdata.lua +++ /dev/null @@ -1,457 +0,0 @@ --- Licensed to the public under the Apache License 2.0. - -module "luci.sys.zoneinfo.tzdata" - -TZ = { - { 'Africa/Abidjan', 'GMT0' }, - { 'Africa/Accra', 'GMT0' }, - { 'Africa/Addis Ababa', 'EAT-3' }, - { 'Africa/Algiers', 'CET-1' }, - { 'Africa/Asmara', 'EAT-3' }, - { 'Africa/Bamako', 'GMT0' }, - { 'Africa/Bangui', 'WAT-1' }, - { 'Africa/Banjul', 'GMT0' }, - { 'Africa/Bissau', 'GMT0' }, - { 'Africa/Blantyre', 'CAT-2' }, - { 'Africa/Brazzaville', 'WAT-1' }, - { 'Africa/Bujumbura', 'CAT-2' }, - { 'Africa/Cairo', 'EET-2' }, - { 'Africa/Casablanca', '<+01>-1' }, - { 'Africa/Ceuta', 'CET-1CEST,M3.5.0,M10.5.0/3' }, - { 'Africa/Conakry', 'GMT0' }, - { 'Africa/Dakar', 'GMT0' }, - { 'Africa/Dar es Salaam', 'EAT-3' }, - { 'Africa/Djibouti', 'EAT-3' }, - { 'Africa/Douala', 'WAT-1' }, - { 'Africa/El Aaiun', '<+01>-1' }, - { 'Africa/Freetown', 'GMT0' }, - { 'Africa/Gaborone', 'CAT-2' }, - { 'Africa/Harare', 'CAT-2' }, - { 'Africa/Johannesburg', 'SAST-2' }, - { 'Africa/Juba', 'CAT-2' }, - { 'Africa/Kampala', 'EAT-3' }, - { 'Africa/Khartoum', 'CAT-2' }, - { 'Africa/Kigali', 'CAT-2' }, - { 'Africa/Kinshasa', 'WAT-1' }, - { 'Africa/Lagos', 'WAT-1' }, - { 'Africa/Libreville', 'WAT-1' }, - { 'Africa/Lome', 'GMT0' }, - { 'Africa/Luanda', 'WAT-1' }, - { 'Africa/Lubumbashi', 'CAT-2' }, - { 'Africa/Lusaka', 'CAT-2' }, - { 'Africa/Malabo', 'WAT-1' }, - { 'Africa/Maputo', 'CAT-2' }, - { 'Africa/Maseru', 'SAST-2' }, - { 'Africa/Mbabane', 'SAST-2' }, - { 'Africa/Mogadishu', 'EAT-3' }, - { 'Africa/Monrovia', 'GMT0' }, - { 'Africa/Nairobi', 'EAT-3' }, - { 'Africa/Ndjamena', 'WAT-1' }, - { 'Africa/Niamey', 'WAT-1' }, - { 'Africa/Nouakchott', 'GMT0' }, - { 'Africa/Ouagadougou', 'GMT0' }, - { 'Africa/Porto-Novo', 'WAT-1' }, - { 'Africa/Sao Tome', 'GMT0' }, - { 'Africa/Tripoli', 'EET-2' }, - { 'Africa/Tunis', 'CET-1' }, - { 'Africa/Windhoek', 'CAT-2' }, - { 'America/Adak', 'HST10HDT,M3.2.0,M11.1.0' }, - { 'America/Anchorage', 'AKST9AKDT,M3.2.0,M11.1.0' }, - { 'America/Anguilla', 'AST4' }, - { 'America/Antigua', 'AST4' }, - { 'America/Araguaina', '<-03>3' }, - { 'America/Argentina/Buenos Aires', '<-03>3' }, - { 'America/Argentina/Catamarca', '<-03>3' }, - { 'America/Argentina/Cordoba', '<-03>3' }, - { 'America/Argentina/Jujuy', '<-03>3' }, - { 'America/Argentina/La Rioja', '<-03>3' }, - { 'America/Argentina/Mendoza', '<-03>3' }, - { 'America/Argentina/Rio Gallegos', '<-03>3' }, - { 'America/Argentina/Salta', '<-03>3' }, - { 'America/Argentina/San Juan', '<-03>3' }, - { 'America/Argentina/San Luis', '<-03>3' }, - { 'America/Argentina/Tucuman', '<-03>3' }, - { 'America/Argentina/Ushuaia', '<-03>3' }, - { 'America/Aruba', 'AST4' }, - { 'America/Asuncion', '<-04>4<-03>,M10.1.0/0,M3.4.0/0' }, - { 'America/Atikokan', 'EST5' }, - { 'America/Bahia', '<-03>3' }, - { 'America/Bahia Banderas', 'CST6CDT,M4.1.0,M10.5.0' }, - { 'America/Barbados', 'AST4' }, - { 'America/Belem', '<-03>3' }, - { 'America/Belize', 'CST6' }, - { 'America/Blanc-Sablon', 'AST4' }, - { 'America/Boa Vista', '<-04>4' }, - { 'America/Bogota', '<-05>5' }, - { 'America/Boise', 'MST7MDT,M3.2.0,M11.1.0' }, - { 'America/Cambridge Bay', 'MST7MDT,M3.2.0,M11.1.0' }, - { 'America/Campo Grande', '<-04>4' }, - { 'America/Cancun', 'EST5' }, - { 'America/Caracas', '<-04>4' }, - { 'America/Cayenne', '<-03>3' }, - { 'America/Cayman', 'EST5' }, - { 'America/Chicago', 'CST6CDT,M3.2.0,M11.1.0' }, - { 'America/Chihuahua', 'MST7MDT,M4.1.0,M10.5.0' }, - { 'America/Costa Rica', 'CST6' }, - { 'America/Creston', 'MST7' }, - { 'America/Cuiaba', '<-04>4' }, - { 'America/Curacao', 'AST4' }, - { 'America/Danmarkshavn', 'GMT0' }, - { 'America/Dawson', 'MST7' }, - { 'America/Dawson Creek', 'MST7' }, - { 'America/Denver', 'MST7MDT,M3.2.0,M11.1.0' }, - { 'America/Detroit', 'EST5EDT,M3.2.0,M11.1.0' }, - { 'America/Dominica', 'AST4' }, - { 'America/Edmonton', 'MST7MDT,M3.2.0,M11.1.0' }, - { 'America/Eirunepe', '<-05>5' }, - { 'America/El Salvador', 'CST6' }, - { 'America/Fort Nelson', 'MST7' }, - { 'America/Fortaleza', '<-03>3' }, - { 'America/Glace Bay', 'AST4ADT,M3.2.0,M11.1.0' }, - { 'America/Goose Bay', 'AST4ADT,M3.2.0,M11.1.0' }, - { 'America/Grand Turk', 'EST5EDT,M3.2.0,M11.1.0' }, - { 'America/Grenada', 'AST4' }, - { 'America/Guadeloupe', 'AST4' }, - { 'America/Guatemala', 'CST6' }, - { 'America/Guayaquil', '<-05>5' }, - { 'America/Guyana', '<-04>4' }, - { 'America/Halifax', 'AST4ADT,M3.2.0,M11.1.0' }, - { 'America/Havana', 'CST5CDT,M3.2.0/0,M11.1.0/1' }, - { 'America/Hermosillo', 'MST7' }, - { 'America/Indiana/Indianapolis', 'EST5EDT,M3.2.0,M11.1.0' }, - { 'America/Indiana/Knox', 'CST6CDT,M3.2.0,M11.1.0' }, - { 'America/Indiana/Marengo', 'EST5EDT,M3.2.0,M11.1.0' }, - { 'America/Indiana/Petersburg', 'EST5EDT,M3.2.0,M11.1.0' }, - { 'America/Indiana/Tell City', 'CST6CDT,M3.2.0,M11.1.0' }, - { 'America/Indiana/Vevay', 'EST5EDT,M3.2.0,M11.1.0' }, - { 'America/Indiana/Vincennes', 'EST5EDT,M3.2.0,M11.1.0' }, - { 'America/Indiana/Winamac', 'EST5EDT,M3.2.0,M11.1.0' }, - { 'America/Inuvik', 'MST7MDT,M3.2.0,M11.1.0' }, - { 'America/Iqaluit', 'EST5EDT,M3.2.0,M11.1.0' }, - { 'America/Jamaica', 'EST5' }, - { 'America/Juneau', 'AKST9AKDT,M3.2.0,M11.1.0' }, - { 'America/Kentucky/Louisville', 'EST5EDT,M3.2.0,M11.1.0' }, - { 'America/Kentucky/Monticello', 'EST5EDT,M3.2.0,M11.1.0' }, - { 'America/Kralendijk', 'AST4' }, - { 'America/La Paz', '<-04>4' }, - { 'America/Lima', '<-05>5' }, - { 'America/Los Angeles', 'PST8PDT,M3.2.0,M11.1.0' }, - { 'America/Lower Princes', 'AST4' }, - { 'America/Maceio', '<-03>3' }, - { 'America/Managua', 'CST6' }, - { 'America/Manaus', '<-04>4' }, - { 'America/Marigot', 'AST4' }, - { 'America/Martinique', 'AST4' }, - { 'America/Matamoros', 'CST6CDT,M3.2.0,M11.1.0' }, - { 'America/Mazatlan', 'MST7MDT,M4.1.0,M10.5.0' }, - { 'America/Menominee', 'CST6CDT,M3.2.0,M11.1.0' }, - { 'America/Merida', 'CST6CDT,M4.1.0,M10.5.0' }, - { 'America/Metlakatla', 'AKST9AKDT,M3.2.0,M11.1.0' }, - { 'America/Mexico City', 'CST6CDT,M4.1.0,M10.5.0' }, - { 'America/Miquelon', '<-03>3<-02>,M3.2.0,M11.1.0' }, - { 'America/Moncton', 'AST4ADT,M3.2.0,M11.1.0' }, - { 'America/Monterrey', 'CST6CDT,M4.1.0,M10.5.0' }, - { 'America/Montevideo', '<-03>3' }, - { 'America/Montserrat', 'AST4' }, - { 'America/Nassau', 'EST5EDT,M3.2.0,M11.1.0' }, - { 'America/New York', 'EST5EDT,M3.2.0,M11.1.0' }, - { 'America/Nipigon', 'EST5EDT,M3.2.0,M11.1.0' }, - { 'America/Nome', 'AKST9AKDT,M3.2.0,M11.1.0' }, - { 'America/Noronha', '<-02>2' }, - { 'America/North Dakota/Beulah', 'CST6CDT,M3.2.0,M11.1.0' }, - { 'America/North Dakota/Center', 'CST6CDT,M3.2.0,M11.1.0' }, - { 'America/North Dakota/New Salem', 'CST6CDT,M3.2.0,M11.1.0' }, - { 'America/Nuuk', '<-03>3<-02>,M3.5.0/-2,M10.5.0/-1' }, - { 'America/Ojinaga', 'MST7MDT,M3.2.0,M11.1.0' }, - { 'America/Panama', 'EST5' }, - { 'America/Pangnirtung', 'EST5EDT,M3.2.0,M11.1.0' }, - { 'America/Paramaribo', '<-03>3' }, - { 'America/Phoenix', 'MST7' }, - { 'America/Port of Spain', 'AST4' }, - { 'America/Port-au-Prince', 'EST5EDT,M3.2.0,M11.1.0' }, - { 'America/Porto Velho', '<-04>4' }, - { 'America/Puerto Rico', 'AST4' }, - { 'America/Punta Arenas', '<-03>3' }, - { 'America/Rainy River', 'CST6CDT,M3.2.0,M11.1.0' }, - { 'America/Rankin Inlet', 'CST6CDT,M3.2.0,M11.1.0' }, - { 'America/Recife', '<-03>3' }, - { 'America/Regina', 'CST6' }, - { 'America/Resolute', 'CST6CDT,M3.2.0,M11.1.0' }, - { 'America/Rio Branco', '<-05>5' }, - { 'America/Santarem', '<-03>3' }, - { 'America/Santiago', '<-04>4<-03>,M9.1.6/24,M4.1.6/24' }, - { 'America/Santo Domingo', 'AST4' }, - { 'America/Sao Paulo', '<-03>3' }, - { 'America/Scoresbysund', '<-01>1<+00>,M3.5.0/0,M10.5.0/1' }, - { 'America/Sitka', 'AKST9AKDT,M3.2.0,M11.1.0' }, - { 'America/St Barthelemy', 'AST4' }, - { 'America/St Johns', 'NST3:30NDT,M3.2.0,M11.1.0' }, - { 'America/St Kitts', 'AST4' }, - { 'America/St Lucia', 'AST4' }, - { 'America/St Thomas', 'AST4' }, - { 'America/St Vincent', 'AST4' }, - { 'America/Swift Current', 'CST6' }, - { 'America/Tegucigalpa', 'CST6' }, - { 'America/Thule', 'AST4ADT,M3.2.0,M11.1.0' }, - { 'America/Thunder Bay', 'EST5EDT,M3.2.0,M11.1.0' }, - { 'America/Tijuana', 'PST8PDT,M3.2.0,M11.1.0' }, - { 'America/Toronto', 'EST5EDT,M3.2.0,M11.1.0' }, - { 'America/Tortola', 'AST4' }, - { 'America/Vancouver', 'PST8PDT,M3.2.0,M11.1.0' }, - { 'America/Whitehorse', 'MST7' }, - { 'America/Winnipeg', 'CST6CDT,M3.2.0,M11.1.0' }, - { 'America/Yakutat', 'AKST9AKDT,M3.2.0,M11.1.0' }, - { 'America/Yellowknife', 'MST7MDT,M3.2.0,M11.1.0' }, - { 'Antarctica/Casey', '<+11>-11' }, - { 'Antarctica/Davis', '<+07>-7' }, - { 'Antarctica/DumontDUrville', '<+10>-10' }, - { 'Antarctica/Macquarie', 'AEST-10AEDT,M10.1.0,M4.1.0/3' }, - { 'Antarctica/Mawson', '<+05>-5' }, - { 'Antarctica/McMurdo', 'NZST-12NZDT,M9.5.0,M4.1.0/3' }, - { 'Antarctica/Palmer', '<-03>3' }, - { 'Antarctica/Rothera', '<-03>3' }, - { 'Antarctica/Syowa', '<+03>-3' }, - { 'Antarctica/Troll', '<+00>0<+02>-2,M3.5.0/1,M10.5.0/3' }, - { 'Antarctica/Vostok', '<+06>-6' }, - { 'Arctic/Longyearbyen', 'CET-1CEST,M3.5.0,M10.5.0/3' }, - { 'Asia/Aden', '<+03>-3' }, - { 'Asia/Almaty', '<+06>-6' }, - { 'Asia/Amman', 'EET-2EEST,M2.5.4/24,M10.5.5/1' }, - { 'Asia/Anadyr', '<+12>-12' }, - { 'Asia/Aqtau', '<+05>-5' }, - { 'Asia/Aqtobe', '<+05>-5' }, - { 'Asia/Ashgabat', '<+05>-5' }, - { 'Asia/Atyrau', '<+05>-5' }, - { 'Asia/Baghdad', '<+03>-3' }, - { 'Asia/Bahrain', '<+03>-3' }, - { 'Asia/Baku', '<+04>-4' }, - { 'Asia/Bangkok', '<+07>-7' }, - { 'Asia/Barnaul', '<+07>-7' }, - { 'Asia/Beirut', 'EET-2EEST,M3.5.0/0,M10.5.0/0' }, - { 'Asia/Bishkek', '<+06>-6' }, - { 'Asia/Brunei', '<+08>-8' }, - { 'Asia/Chita', '<+09>-9' }, - { 'Asia/Choibalsan', '<+08>-8' }, - { 'Asia/Colombo', '<+0530>-5:30' }, - { 'Asia/Damascus', 'EET-2EEST,M3.5.5/0,M10.5.5/0' }, - { 'Asia/Dhaka', '<+06>-6' }, - { 'Asia/Dili', '<+09>-9' }, - { 'Asia/Dubai', '<+04>-4' }, - { 'Asia/Dushanbe', '<+05>-5' }, - { 'Asia/Famagusta', 'EET-2EEST,M3.5.0/3,M10.5.0/4' }, - { 'Asia/Gaza', 'EET-2EEST,M3.4.4/72,M10.4.4/25' }, - { 'Asia/Hebron', 'EET-2EEST,M3.4.4/72,M10.4.4/25' }, - { 'Asia/Ho Chi Minh', '<+07>-7' }, - { 'Asia/Hong Kong', 'HKT-8' }, - { 'Asia/Hovd', '<+07>-7' }, - { 'Asia/Irkutsk', '<+08>-8' }, - { 'Asia/Jakarta', 'WIB-7' }, - { 'Asia/Jayapura', 'WIT-9' }, - { 'Asia/Jerusalem', 'IST-2IDT,M3.4.4/26,M10.5.0' }, - { 'Asia/Kabul', '<+0430>-4:30' }, - { 'Asia/Kamchatka', '<+12>-12' }, - { 'Asia/Karachi', 'PKT-5' }, - { 'Asia/Kathmandu', '<+0545>-5:45' }, - { 'Asia/Khandyga', '<+09>-9' }, - { 'Asia/Kolkata', 'IST-5:30' }, - { 'Asia/Krasnoyarsk', '<+07>-7' }, - { 'Asia/Kuala Lumpur', '<+08>-8' }, - { 'Asia/Kuching', '<+08>-8' }, - { 'Asia/Kuwait', '<+03>-3' }, - { 'Asia/Macau', 'CST-8' }, - { 'Asia/Magadan', '<+11>-11' }, - { 'Asia/Makassar', 'WITA-8' }, - { 'Asia/Manila', 'PST-8' }, - { 'Asia/Muscat', '<+04>-4' }, - { 'Asia/Nicosia', 'EET-2EEST,M3.5.0/3,M10.5.0/4' }, - { 'Asia/Novokuznetsk', '<+07>-7' }, - { 'Asia/Novosibirsk', '<+07>-7' }, - { 'Asia/Omsk', '<+06>-6' }, - { 'Asia/Oral', '<+05>-5' }, - { 'Asia/Phnom Penh', '<+07>-7' }, - { 'Asia/Pontianak', 'WIB-7' }, - { 'Asia/Pyongyang', 'KST-9' }, - { 'Asia/Qatar', '<+03>-3' }, - { 'Asia/Qostanay', '<+06>-6' }, - { 'Asia/Qyzylorda', '<+05>-5' }, - { 'Asia/Riyadh', '<+03>-3' }, - { 'Asia/Sakhalin', '<+11>-11' }, - { 'Asia/Samarkand', '<+05>-5' }, - { 'Asia/Seoul', 'KST-9' }, - { 'Asia/Shanghai', 'CST-8' }, - { 'Asia/Singapore', '<+08>-8' }, - { 'Asia/Srednekolymsk', '<+11>-11' }, - { 'Asia/Taipei', 'CST-8' }, - { 'Asia/Tashkent', '<+05>-5' }, - { 'Asia/Tbilisi', '<+04>-4' }, - { 'Asia/Tehran', '<+0330>-3:30' }, - { 'Asia/Thimphu', '<+06>-6' }, - { 'Asia/Tokyo', 'JST-9' }, - { 'Asia/Tomsk', '<+07>-7' }, - { 'Asia/Ulaanbaatar', '<+08>-8' }, - { 'Asia/Urumqi', '<+06>-6' }, - { 'Asia/Ust-Nera', '<+10>-10' }, - { 'Asia/Vientiane', '<+07>-7' }, - { 'Asia/Vladivostok', '<+10>-10' }, - { 'Asia/Yakutsk', '<+09>-9' }, - { 'Asia/Yangon', '<+0630>-6:30' }, - { 'Asia/Yekaterinburg', '<+05>-5' }, - { 'Asia/Yerevan', '<+04>-4' }, - { 'Atlantic/Azores', '<-01>1<+00>,M3.5.0/0,M10.5.0/1' }, - { 'Atlantic/Bermuda', 'AST4ADT,M3.2.0,M11.1.0' }, - { 'Atlantic/Canary', 'WET0WEST,M3.5.0/1,M10.5.0' }, - { 'Atlantic/Cape Verde', '<-01>1' }, - { 'Atlantic/Faroe', 'WET0WEST,M3.5.0/1,M10.5.0' }, - { 'Atlantic/Madeira', 'WET0WEST,M3.5.0/1,M10.5.0' }, - { 'Atlantic/Reykjavik', 'GMT0' }, - { 'Atlantic/South Georgia', '<-02>2' }, - { 'Atlantic/St Helena', 'GMT0' }, - { 'Atlantic/Stanley', '<-03>3' }, - { 'Australia/Adelaide', 'ACST-9:30ACDT,M10.1.0,M4.1.0/3' }, - { 'Australia/Brisbane', 'AEST-10' }, - { 'Australia/Broken Hill', 'ACST-9:30ACDT,M10.1.0,M4.1.0/3' }, - { 'Australia/Darwin', 'ACST-9:30' }, - { 'Australia/Eucla', '<+0845>-8:45' }, - { 'Australia/Hobart', 'AEST-10AEDT,M10.1.0,M4.1.0/3' }, - { 'Australia/Lindeman', 'AEST-10' }, - { 'Australia/Lord Howe', '<+1030>-10:30<+11>-11,M10.1.0,M4.1.0' }, - { 'Australia/Melbourne', 'AEST-10AEDT,M10.1.0,M4.1.0/3' }, - { 'Australia/Perth', 'AWST-8' }, - { 'Australia/Sydney', 'AEST-10AEDT,M10.1.0,M4.1.0/3' }, - { 'Etc/GMT', 'GMT0' }, - { 'Etc/GMT+1', '<-01>1' }, - { 'Etc/GMT+10', '<-10>10' }, - { 'Etc/GMT+11', '<-11>11' }, - { 'Etc/GMT+12', '<-12>12' }, - { 'Etc/GMT+2', '<-02>2' }, - { 'Etc/GMT+3', '<-03>3' }, - { 'Etc/GMT+4', '<-04>4' }, - { 'Etc/GMT+5', '<-05>5' }, - { 'Etc/GMT+6', '<-06>6' }, - { 'Etc/GMT+7', '<-07>7' }, - { 'Etc/GMT+8', '<-08>8' }, - { 'Etc/GMT+9', '<-09>9' }, - { 'Etc/GMT-1', '<+01>-1' }, - { 'Etc/GMT-10', '<+10>-10' }, - { 'Etc/GMT-11', '<+11>-11' }, - { 'Etc/GMT-12', '<+12>-12' }, - { 'Etc/GMT-13', '<+13>-13' }, - { 'Etc/GMT-14', '<+14>-14' }, - { 'Etc/GMT-2', '<+02>-2' }, - { 'Etc/GMT-3', '<+03>-3' }, - { 'Etc/GMT-4', '<+04>-4' }, - { 'Etc/GMT-5', '<+05>-5' }, - { 'Etc/GMT-6', '<+06>-6' }, - { 'Etc/GMT-7', '<+07>-7' }, - { 'Etc/GMT-8', '<+08>-8' }, - { 'Etc/GMT-9', '<+09>-9' }, - { 'Europe/Amsterdam', 'CET-1CEST,M3.5.0,M10.5.0/3' }, - { 'Europe/Andorra', 'CET-1CEST,M3.5.0,M10.5.0/3' }, - { 'Europe/Astrakhan', '<+04>-4' }, - { 'Europe/Athens', 'EET-2EEST,M3.5.0/3,M10.5.0/4' }, - { 'Europe/Belgrade', 'CET-1CEST,M3.5.0,M10.5.0/3' }, - { 'Europe/Berlin', 'CET-1CEST,M3.5.0,M10.5.0/3' }, - { 'Europe/Bratislava', 'CET-1CEST,M3.5.0,M10.5.0/3' }, - { 'Europe/Brussels', 'CET-1CEST,M3.5.0,M10.5.0/3' }, - { 'Europe/Bucharest', 'EET-2EEST,M3.5.0/3,M10.5.0/4' }, - { 'Europe/Budapest', 'CET-1CEST,M3.5.0,M10.5.0/3' }, - { 'Europe/Busingen', 'CET-1CEST,M3.5.0,M10.5.0/3' }, - { 'Europe/Chisinau', 'EET-2EEST,M3.5.0,M10.5.0/3' }, - { 'Europe/Copenhagen', 'CET-1CEST,M3.5.0,M10.5.0/3' }, - { 'Europe/Dublin', 'IST-1GMT0,M10.5.0,M3.5.0/1' }, - { 'Europe/Gibraltar', 'CET-1CEST,M3.5.0,M10.5.0/3' }, - { 'Europe/Guernsey', 'GMT0BST,M3.5.0/1,M10.5.0' }, - { 'Europe/Helsinki', 'EET-2EEST,M3.5.0/3,M10.5.0/4' }, - { 'Europe/Isle of Man', 'GMT0BST,M3.5.0/1,M10.5.0' }, - { 'Europe/Istanbul', '<+03>-3' }, - { 'Europe/Jersey', 'GMT0BST,M3.5.0/1,M10.5.0' }, - { 'Europe/Kaliningrad', 'EET-2' }, - { 'Europe/Kirov', '<+03>-3' }, - { 'Europe/Kyiv', 'EET-2EEST,M3.5.0/3,M10.5.0/4' }, - { 'Europe/Lisbon', 'WET0WEST,M3.5.0/1,M10.5.0' }, - { 'Europe/Ljubljana', 'CET-1CEST,M3.5.0,M10.5.0/3' }, - { 'Europe/London', 'GMT0BST,M3.5.0/1,M10.5.0' }, - { 'Europe/Luxembourg', 'CET-1CEST,M3.5.0,M10.5.0/3' }, - { 'Europe/Madrid', 'CET-1CEST,M3.5.0,M10.5.0/3' }, - { 'Europe/Malta', 'CET-1CEST,M3.5.0,M10.5.0/3' }, - { 'Europe/Mariehamn', 'EET-2EEST,M3.5.0/3,M10.5.0/4' }, - { 'Europe/Minsk', '<+03>-3' }, - { 'Europe/Monaco', 'CET-1CEST,M3.5.0,M10.5.0/3' }, - { 'Europe/Moscow', 'MSK-3' }, - { 'Europe/Oslo', 'CET-1CEST,M3.5.0,M10.5.0/3' }, - { 'Europe/Paris', 'CET-1CEST,M3.5.0,M10.5.0/3' }, - { 'Europe/Podgorica', 'CET-1CEST,M3.5.0,M10.5.0/3' }, - { 'Europe/Prague', 'CET-1CEST,M3.5.0,M10.5.0/3' }, - { 'Europe/Riga', 'EET-2EEST,M3.5.0/3,M10.5.0/4' }, - { 'Europe/Rome', 'CET-1CEST,M3.5.0,M10.5.0/3' }, - { 'Europe/Samara', '<+04>-4' }, - { 'Europe/San Marino', 'CET-1CEST,M3.5.0,M10.5.0/3' }, - { 'Europe/Sarajevo', 'CET-1CEST,M3.5.0,M10.5.0/3' }, - { 'Europe/Saratov', '<+04>-4' }, - { 'Europe/Simferopol', 'MSK-3' }, - { 'Europe/Skopje', 'CET-1CEST,M3.5.0,M10.5.0/3' }, - { 'Europe/Sofia', 'EET-2EEST,M3.5.0/3,M10.5.0/4' }, - { 'Europe/Stockholm', 'CET-1CEST,M3.5.0,M10.5.0/3' }, - { 'Europe/Tallinn', 'EET-2EEST,M3.5.0/3,M10.5.0/4' }, - { 'Europe/Tirane', 'CET-1CEST,M3.5.0,M10.5.0/3' }, - { 'Europe/Ulyanovsk', '<+04>-4' }, - { 'Europe/Uzhgorod', 'EET-2EEST,M3.5.0/3,M10.5.0/4' }, - { 'Europe/Vaduz', 'CET-1CEST,M3.5.0,M10.5.0/3' }, - { 'Europe/Vatican', 'CET-1CEST,M3.5.0,M10.5.0/3' }, - { 'Europe/Vienna', 'CET-1CEST,M3.5.0,M10.5.0/3' }, - { 'Europe/Vilnius', 'EET-2EEST,M3.5.0/3,M10.5.0/4' }, - { 'Europe/Volgograd', '<+03>-3' }, - { 'Europe/Warsaw', 'CET-1CEST,M3.5.0,M10.5.0/3' }, - { 'Europe/Zagreb', 'CET-1CEST,M3.5.0,M10.5.0/3' }, - { 'Europe/Zaporozhye', 'EET-2EEST,M3.5.0/3,M10.5.0/4' }, - { 'Europe/Zurich', 'CET-1CEST,M3.5.0,M10.5.0/3' }, - { 'Indian/Antananarivo', 'EAT-3' }, - { 'Indian/Chagos', '<+06>-6' }, - { 'Indian/Christmas', '<+07>-7' }, - { 'Indian/Cocos', '<+0630>-6:30' }, - { 'Indian/Comoro', 'EAT-3' }, - { 'Indian/Kerguelen', '<+05>-5' }, - { 'Indian/Mahe', '<+04>-4' }, - { 'Indian/Maldives', '<+05>-5' }, - { 'Indian/Mauritius', '<+04>-4' }, - { 'Indian/Mayotte', 'EAT-3' }, - { 'Indian/Reunion', '<+04>-4' }, - { 'Pacific/Apia', '<+13>-13' }, - { 'Pacific/Auckland', 'NZST-12NZDT,M9.5.0,M4.1.0/3' }, - { 'Pacific/Bougainville', '<+11>-11' }, - { 'Pacific/Chatham', '<+1245>-12:45<+1345>,M9.5.0/2:45,M4.1.0/3:45' }, - { 'Pacific/Chuuk', '<+10>-10' }, - { 'Pacific/Easter', '<-06>6<-05>,M9.1.6/22,M4.1.6/22' }, - { 'Pacific/Efate', '<+11>-11' }, - { 'Pacific/Fakaofo', '<+13>-13' }, - { 'Pacific/Fiji', '<+12>-12<+13>,M11.2.0,M1.2.3/99' }, - { 'Pacific/Funafuti', '<+12>-12' }, - { 'Pacific/Galapagos', '<-06>6' }, - { 'Pacific/Gambier', '<-09>9' }, - { 'Pacific/Guadalcanal', '<+11>-11' }, - { 'Pacific/Guam', 'ChST-10' }, - { 'Pacific/Honolulu', 'HST10' }, - { 'Pacific/Kanton', '<+13>-13' }, - { 'Pacific/Kiritimati', '<+14>-14' }, - { 'Pacific/Kosrae', '<+11>-11' }, - { 'Pacific/Kwajalein', '<+12>-12' }, - { 'Pacific/Majuro', '<+12>-12' }, - { 'Pacific/Marquesas', '<-0930>9:30' }, - { 'Pacific/Midway', 'SST11' }, - { 'Pacific/Nauru', '<+12>-12' }, - { 'Pacific/Niue', '<-11>11' }, - { 'Pacific/Norfolk', '<+11>-11<+12>,M10.1.0,M4.1.0/3' }, - { 'Pacific/Noumea', '<+11>-11' }, - { 'Pacific/Pago Pago', 'SST11' }, - { 'Pacific/Palau', '<+09>-9' }, - { 'Pacific/Pitcairn', '<-08>8' }, - { 'Pacific/Pohnpei', '<+11>-11' }, - { 'Pacific/Port Moresby', '<+10>-10' }, - { 'Pacific/Rarotonga', '<-10>10' }, - { 'Pacific/Saipan', 'ChST-10' }, - { 'Pacific/Tahiti', '<-10>10' }, - { 'Pacific/Tarawa', '<+12>-12' }, - { 'Pacific/Tongatapu', '<+13>-13' }, - { 'Pacific/Wake', '<+12>-12' }, - { 'Pacific/Wallis', '<+12>-12' }, -} diff --git a/modules/luci-base/luasrc/sys/zoneinfo/tzoffset.lua b/modules/luci-base/luasrc/sys/zoneinfo/tzoffset.lua deleted file mode 100644 index caee1d2c1c..0000000000 --- a/modules/luci-base/luasrc/sys/zoneinfo/tzoffset.lua +++ /dev/null @@ -1,46 +0,0 @@ --- Licensed to the public under the Apache License 2.0. - -module "luci.sys.zoneinfo.tzoffset" - -OFFSET = { - gmt = 0, -- GMT - eat = 10800, -- EAT - cet = 3600, -- CET - wat = 3600, -- WAT - cat = 7200, -- CAT - eet = 7200, -- EET - sast = 7200, -- SAST - hst = -36000, -- HST - hdt = -32400, -- HDT - akst = -32400, -- AKST - akdt = -28800, -- AKDT - ast = -14400, -- AST - est = -18000, -- EST - cst = -21600, -- CST - cdt = -18000, -- CDT - mst = -25200, -- MST - mdt = -21600, -- MDT - pst = -28800, -- PST - pdt = -25200, -- PDT - nst = -12600, -- NST - ndt = -9000, -- NDT - aest = 36000, -- AEST - aedt = 39600, -- AEDT - nzst = 43200, -- NZST - nzdt = 46800, -- NZDT - hkt = 28800, -- HKT - wib = 25200, -- WIB - wit = 32400, -- WIT - ist = 7200, -- IST - idt = 10800, -- IDT - pkt = 18000, -- PKT - wita = 28800, -- WITA - kst = 32400, -- KST - jst = 32400, -- JST - wet = 0, -- WET - acst = 34200, -- ACST - acdt = 37800, -- ACDT - awst = 28800, -- AWST - msk = 10800, -- MSK - sst = -39600, -- SST -} diff --git a/modules/luci-base/luasrc/template.lua b/modules/luci-base/luasrc/template.lua deleted file mode 100644 index 3955bd76f3..0000000000 --- a/modules/luci-base/luasrc/template.lua +++ /dev/null @@ -1,100 +0,0 @@ --- Copyright 2008 Steven Barth <steven@midlink.org> --- Licensed to the public under the Apache License 2.0. - -local util = require "luci.util" -local config = require "luci.config" -local tparser = require "luci.template.parser" - -local tostring, pairs, loadstring = tostring, pairs, loadstring -local setmetatable, loadfile = setmetatable, loadfile -local getfenv, setfenv, rawget = getfenv, setfenv, rawget -local assert, type, error = assert, type, error - ---- LuCI template library. -module "luci.template" - -config.template = config.template or {} -viewdir = config.template.viewdir or util.libpath() .. "/view" - - --- Define the namespace for template modules -context = util.threadlocal() - ---- Render a certain template. --- @param name Template name --- @param scope Scope to assign to template (optional) -function render(name, scope) - return Template(name):render(scope or getfenv(2)) -end - ---- Render a template from a string. --- @param template Template string --- @param scope Scope to assign to template (optional) -function render_string(template, scope) - return Template(nil, template):render(scope or getfenv(2)) -end - - --- Template class -Template = util.class() - --- Shared template cache to store templates in to avoid unnecessary reloading -Template.cache = setmetatable({}, {__mode = "v"}) - - --- Constructor - Reads and compiles the template on-demand -function Template.__init__(self, name, template) - if name then - self.template = self.cache[name] - self.name = name - else - self.name = "[string]" - end - - -- Create a new namespace for this template - self.viewns = context.viewns - - -- If we have a cached template, skip compiling and loading - if not self.template then - - -- Compile template - local err - local sourcefile - - if name then - sourcefile = viewdir .. "/" .. name .. ".htm" - self.template, _, err = tparser.parse(sourcefile) - else - sourcefile = "[string]" - self.template, _, err = tparser.parse_string(template) - end - - -- If we have no valid template throw error, otherwise cache the template - if not self.template then - error("Failed to load template '" .. self.name .. "'.\n" .. - "Error while parsing template '" .. sourcefile .. "':\n" .. - (err or "Unknown syntax error")) - elseif name then - self.cache[name] = self.template - end - end -end - - --- Renders a template -function Template.render(self, scope) - scope = scope or getfenv(2) - - -- Put our predefined objects in the scope of the template - setfenv(self.template, setmetatable({}, {__index = - function(tbl, key) - return rawget(tbl, key) or self.viewns[key] or scope[key] - end})) - - -- Now finally render the thing - local stat, err = util.copcall(self.template) - if not stat then - error("Failed to execute template '" .. self.name .. "'.\n" .. - "A runtime error occurred: " .. tostring(err or "(nil)")) - end -end diff --git a/modules/luci-base/luasrc/version.lua b/modules/luci-base/luasrc/version.lua deleted file mode 100644 index 8af2e80619..0000000000 --- a/modules/luci-base/luasrc/version.lua +++ /dev/null @@ -1,9 +0,0 @@ --- Licensed to the public under the Apache License 2.0. - -module "luci.version" - -distname = "Host System" -distversion = "SDK" - -luciname = "LuCI" -luciversion = "SVN" diff --git a/modules/luci-base/luasrc/view/empty_node_placeholder.htm b/modules/luci-base/luasrc/view/empty_node_placeholder.htm deleted file mode 100644 index b7e276b960..0000000000 --- a/modules/luci-base/luasrc/view/empty_node_placeholder.htm +++ /dev/null @@ -1,11 +0,0 @@ -<%# - Copyright 2010 Jo-Philipp Wich <jow@openwrt.org> - Copyright 2018 Daniel F. Dickinson <cshored@thecshore.com> - Licensed to the public under the Apache License 2.0. --%> - -<%+header%> - -<p>Component not present.</p> - -<%+footer%> diff --git a/modules/luci-base/luasrc/view/error404.htm b/modules/luci-base/luasrc/view/error404.htm deleted file mode 100644 index ff151d1834..0000000000 --- a/modules/luci-base/luasrc/view/error404.htm +++ /dev/null @@ -1,12 +0,0 @@ -<%# - Copyright 2008 Steven Barth <steven@midlink.org> - Copyright 2008 Jo-Philipp Wich <jow@openwrt.org> - Licensed to the public under the Apache License 2.0. --%> - -<%+header%> -<h2 name="content">404 <%:Not Found%></h2> -<p><%:Sorry, the object you requested was not found.%></p> -<p><%=message%></p> -<tt><%:Unable to dispatch%>: <%=url(unpack(luci.dispatcher.context.request))%></tt> -<%+footer%> diff --git a/modules/luci-base/luasrc/view/error500.htm b/modules/luci-base/luasrc/view/error500.htm deleted file mode 100644 index 34a52cda84..0000000000 --- a/modules/luci-base/luasrc/view/error500.htm +++ /dev/null @@ -1,11 +0,0 @@ -<%# - Copyright 2008 Steven Barth <steven@midlink.org> - Copyright 2008 Jo-Philipp Wich <jow@openwrt.org> - Licensed to the public under the Apache License 2.0. --%> - -<%+header%> -<h2 name="content">500 <%:Internal Server Error%></h2> -<p><%:Sorry, the server encountered an unexpected error.%></p> -<pre class="error500"><%=message%></pre> -<%+footer%> diff --git a/modules/luci-base/luasrc/view/footer.htm b/modules/luci-base/luasrc/view/footer.htm deleted file mode 100644 index ba14ec8678..0000000000 --- a/modules/luci-base/luasrc/view/footer.htm +++ /dev/null @@ -1,27 +0,0 @@ -<%# - Copyright 2008 Steven Barth <steven@midlink.org> - Copyright 2008-2019 Jo-Philipp Wich <jo@mein.io> - Licensed to the public under the Apache License 2.0. --%> - -<% - local is_rollback_pending, rollback_time_remaining, rollback_session, rollback_token = luci.model.uci:rollback_pending() - - if is_rollback_pending or trigger_apply or trigger_revert then -%> - <script type="text/javascript"> - document.addEventListener("luci-loaded", function() { - <% if trigger_apply then -%> - L.ui.changes.apply(true); - <%- elseif trigger_revert then -%> - L.ui.changes.revert(); - <%- else -%> - L.ui.changes.confirm(true, Date.now() + <%=rollback_time_remaining%> * 1000, <%=luci.http.write_json(rollback_token)%>); - <%- end %> - }); - </script> -<% - end - - include("themes/" .. theme .. "/footer") -%> diff --git a/modules/luci-base/luasrc/view/header.htm b/modules/luci-base/luasrc/view/header.htm deleted file mode 100644 index cffe9482ca..0000000000 --- a/modules/luci-base/luasrc/view/header.htm +++ /dev/null @@ -1,38 +0,0 @@ -<%# - Copyright 2008 Steven Barth <steven@midlink.org> - Copyright 2008-2019 Jo-Philipp Wich <jo@mein.io> - Licensed to the public under the Apache License 2.0. --%> - -<% - if not luci.dispatcher.context.template_header_sent then - include("themes/" .. theme .. "/header") - luci.dispatcher.context.template_header_sent = true - end - - local applyconf = luci.config and luci.config.apply -%> - -<script type="text/javascript" src="<%=resource%>/promis.min.js"></script> -<script type="text/javascript" src="<%=resource%>/luci.js"></script> -<script type="text/javascript"> - L = new LuCI(<%= luci.http.write_json({ - token = token, - media = media, - resource = resource, - scriptname = luci.http.getenv("SCRIPT_NAME"), - pathinfo = luci.http.getenv("PATH_INFO"), - documentroot = luci.http.getenv("DOCUMENT_ROOT"), - requestpath = luci.dispatcher.context.requestpath, - dispatchpath = luci.dispatcher.context.path, - pollinterval = luci.config.main.pollinterval or 5, - ubuspath = luci.config.main.ubuspath or '/ubus/', - sessionid = luci.dispatcher.context.authsession, - nodespec = luci.dispatcher.context.dispatched, - apply_rollback = math.max(applyconf and applyconf.rollback or 90, 90), - apply_holdoff = math.max(applyconf and applyconf.holdoff or 4, 1), - apply_timeout = math.max(applyconf and applyconf.timeout or 5, 1), - apply_display = math.max(applyconf and applyconf.display or 1.5, 1), - rollback_token = rollback_token - }) %>); -</script> diff --git a/modules/luci-base/luasrc/view/indexer.htm b/modules/luci-base/luasrc/view/indexer.htm deleted file mode 100644 index 28fc3debc3..0000000000 --- a/modules/luci-base/luasrc/view/indexer.htm +++ /dev/null @@ -1,7 +0,0 @@ -<%# - Copyright 2008 Steven Barth <steven@midlink.org> - Copyright 2008 Jo-Philipp Wich <jow@openwrt.org> - Licensed to the public under the Apache License 2.0. --%> - -<% include("themes/" .. theme .. "/indexer") %>
\ No newline at end of file diff --git a/modules/luci-base/luasrc/view/sysauth.htm b/modules/luci-base/luasrc/view/sysauth.htm deleted file mode 100644 index 797c87a72e..0000000000 --- a/modules/luci-base/luasrc/view/sysauth.htm +++ /dev/null @@ -1,75 +0,0 @@ -<%# - Copyright 2008 Steven Barth <steven@midlink.org> - Copyright 2008-2012 Jo-Philipp Wich <jow@openwrt.org> - Licensed to the public under the Apache License 2.0. --%> - -<%+header%> - -<form method="post" action="<%=pcdata(FULL_REQUEST_URI)%>"> - <%- if fuser then %> - <div class="alert-message warning"> - <p><%:Invalid username and/or password! Please try again.%></p> - </div> - <% end -%> - - <div class="cbi-map"> - <h2 name="content"><%:Authorization Required%></h2> - <div class="cbi-map-descr"> - <%:Please enter your username and password.%> - </div> - <div class="cbi-section"><div class="cbi-section-node"> - <div class="cbi-value"> - <label class="cbi-value-title" for="luci_username"><%:Username%></label> - <div class="cbi-value-field"> - <input class="cbi-input-text" type="text" name="luci_username" id="luci_username" autocomplete="username" value="<%=duser%>" /> - </div> - </div> - <div class="cbi-value cbi-value-last"> - <label class="cbi-value-title" for="luci_password"><%:Password%></label> - <div class="cbi-value-field"> - <input class="cbi-input-text" type="password" name="luci_password" id="luci_password" autocomplete="current-password"/> - </div> - </div> - </div></div> - </div> - - <div class="cbi-page-actions"> - <input type="submit" value="<%:Login%>" class="btn cbi-button cbi-button-apply" /> - <input type="reset" value="<%:Reset%>" class="btn cbi-button cbi-button-reset" /> - </div> -</form> -<script type="text/javascript">//<![CDATA[ - var input = document.getElementsByName('luci_password')[0]; - if (input) - input.focus(); -//]]></script> - -<% -local uci = require "luci.model.uci".cursor() -local fs = require "nixio.fs" -local https_key = uci:get("uhttpd", "main", "key") -local https_port = uci:get("uhttpd", "main", "listen_https") -if type(https_port) == "table" then - https_port = https_port[1] -end - -if https_port and fs.access(https_key) then - https_port = https_port:match("(%d+)$") -%> - -<script type="text/javascript">//<![CDATA[ - if (document.location.protocol != 'https:') { - var url = 'https://' + window.location.hostname + ':' + '<%=https_port%>' + window.location.pathname; - var img=new Image; - img.onload=function(){window.location = url}; - img.src='https://' + window.location.hostname + ':' + '<%=https_port%>' + '<%=resource%>/icons/loading.gif?' + Math.random(); - setTimeout(function(){ - img.src='' - }, 5000); - } -//]]></script> - -<% end %> - -<%+footer%> diff --git a/modules/luci-base/luasrc/view/view.htm b/modules/luci-base/luasrc/view/view.htm deleted file mode 100644 index b451e8cfbf..0000000000 --- a/modules/luci-base/luasrc/view/view.htm +++ /dev/null @@ -1,12 +0,0 @@ -<%+header%> - -<div id="view"> - <div class="spinning"><%:Loading view…%></div> - <script type="text/javascript"> - L.require('ui').then(function(ui) { - ui.instantiateView('<%=view%>'); - }); - </script> -</div> - -<%+footer%> diff --git a/modules/luci-base/luasrc/xml.lua b/modules/luci-base/luasrc/xml.lua deleted file mode 100644 index 30b37210bd..0000000000 --- a/modules/luci-base/luasrc/xml.lua +++ /dev/null @@ -1,26 +0,0 @@ --- Copyright 2008 Steven Barth <steven@midlink.org> --- Licensed to the public under the Apache License 2.0. - -local tparser = require "luci.template.parser" -local string = require "string" - -local tostring = tostring - -module "luci.xml" - --- --- String and data manipulation routines --- - -function pcdata(value) - return value and tparser.pcdata(tostring(value)) -end - -function striptags(value) - return value and tparser.striptags(tostring(value)) -end - - --- also register functions above in the central string class for convenience -string.pcdata = pcdata -string.striptags = striptags diff --git a/modules/luci-base/luasrc/xml.luadoc b/modules/luci-base/luasrc/xml.luadoc deleted file mode 100644 index 58de533966..0000000000 --- a/modules/luci-base/luasrc/xml.luadoc +++ /dev/null @@ -1,23 +0,0 @@ ----[[ -LuCI utility functions. -]] -module "luci.xml" - ----[[ -Create valid XML PCDATA from given string. - -@class function -@name pcdata -@param value String value containing the data to escape -@return String value containing the escaped data -]] - ----[[ -Strip HTML tags from given string. - -@class function -@name striptags -@param value String containing the HTML text -@return String with HTML tags stripped of -]] - diff --git a/modules/luci-base/po/ar/base.po b/modules/luci-base/po/ar/base.po index 39931166e8..1d251b3286 100644 --- a/modules/luci-base/po/ar/base.po +++ b/modules/luci-base/po/ar/base.po @@ -1,7 +1,7 @@ msgid "" msgstr "" -"PO-Revision-Date: 2021-12-13 23:53+0000\n" -"Last-Translator: Josef Schlehofer <pepe@bloodkings.eu>\n" +"PO-Revision-Date: 2022-10-22 18:07+0000\n" +"Last-Translator: Abdullah AlShaikh <abdullah@alshai5.com>\n" "Language-Team: Arabic <https://hosted.weblate.org/projects/openwrt/luci/ar/>" "\n" "Language: ar\n" @@ -9,7 +9,7 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 " "&& n%100<=10 ? 3 : n%100>=11 ? 4 : 5;\n" -"X-Generator: Weblate 4.10-dev\n" +"X-Generator: Weblate 4.14.2-dev\n" #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:643 msgctxt "Yet unknown nftables table family (\"family\" table \"name\")" @@ -232,6 +232,18 @@ msgstr "" msgid "<abbr title=\"Router Advertisement\">RA</abbr>-Service" msgstr "" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:294 +msgid "" +"<code>/#/</code> matches any domain. <code>/example.com/</code> returns " +"NXDOMAIN." +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:295 +msgid "" +"<code>/example.com/#</code> returns NULL addresses (<code>0.0.0.0</code> and " +"<code>::</code>) for example.com and its subdomains." +msgstr "" + #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:87 msgctxt "nft relational \">\" operator expression" msgid "<var>%s</var> greater than <strong>%s</strong>" @@ -391,7 +403,7 @@ msgstr "" msgid "ATM device number" msgstr "رقم جهاز ATM" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:36 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:37 msgid "ATU-C System Vendor ID" msgstr "معرف مزود نظام ATU-C" @@ -401,7 +413,7 @@ msgstr "معرف مزود نظام ATU-C" msgid "Absent Interface" msgstr "واجهة غائبة" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:320 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:325 msgid "Accept DNS queries only from hosts whose address is on a local subnet." msgstr "قصر خدمة DNS على واجهات الشبكات الفرعية التي نخدم DNS عليها." @@ -540,7 +552,7 @@ msgstr "إضافة مثيل" msgid "Add key" msgstr "إضافة مفتاح" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:410 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:415 msgid "Add local domain suffix to names served from hosts files." msgstr "أضف لاحقة المجال المحلي للأسماء التي يتم تقديمها من ملفات المضيفين" @@ -561,11 +573,11 @@ msgstr "أضف إلى القائمة السوداء" msgid "Add to Whitelist" msgstr "إضافة إلى القائمة البيضاء" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:367 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:372 msgid "Additional hosts files" msgstr "ملفات Hosts إضافية" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:417 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:422 msgid "Additional servers file" msgstr "ملف سرفير إضافي" @@ -595,7 +607,7 @@ msgstr "" msgid "Address to access local relay bridge" msgstr "عنوان للوصول إلى جسر الترحيل المحلي" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:289 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:291 msgid "Addresses" msgstr "عناوين" @@ -628,7 +640,7 @@ msgstr "" msgid "Aggregate Originator Messages" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:27 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:28 msgid "Aggregate Transmit Power (ACTATP)" msgstr "قدرة الإرسال الإجمالية (ACTATP)" @@ -667,17 +679,17 @@ msgstr "واجهة الاسم المستعار" msgid "Alias of \"%s\"" msgstr "الاسم المستعار ل \"%s\"" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:427 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:432 msgid "All servers" msgstr "جميع السيرفرات" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:378 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:383 msgid "" "Allocate IP addresses sequentially, starting from the lowest available " "address." msgstr "قم بتخصيص عناوين IP بالتسلسل ، بدءًا من أدنى عنوان متاح" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:377 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:382 msgid "Allocate IPs sequentially" msgstr "تخصيص IP بالتسلسل" @@ -705,7 +717,7 @@ msgstr "السماح بمعدلات 802.11b القديمة" msgid "Allow listed only" msgstr "السماح بالقائمة فقط" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:306 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:311 msgid "Allow localhost" msgstr "السماح ب localhost" @@ -749,7 +761,7 @@ msgstr "دائما متوقف (النواة: لا شيء)" msgid "Always on (kernel: default-on)" msgstr "دائمًا قيد التشغيل (kernel: default-on)" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:538 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:543 msgid "Always send DHCP Options. Sometimes needed, with e.g. PXELinux." msgstr "" @@ -778,7 +790,7 @@ msgid "An optional, short description for this device" msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1484 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:20 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:21 msgid "Annex" msgstr "المرفق" @@ -892,7 +904,7 @@ msgstr "" msgid "Any zone" msgstr "أي منطقة" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:532 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:537 msgid "Apply DHCP Options to this net. (Empty = all clients)." msgstr "" @@ -982,11 +994,11 @@ msgstr "المصادقة" msgid "Authentication Type" msgstr "نوع المصادقة" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:265 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:267 msgid "Authoritative" msgstr "موثوق" -#: modules/luci-base/luasrc/view/sysauth.htm:17 +#: modules/luci-base/ucode/template/sysauth.ut:17 #: themes/luci-theme-bootstrap/htdocs/luci-static/resources/view/bootstrap/sysauth.js:11 msgid "Authorization Required" msgstr "التفويض مطلوب" @@ -1056,7 +1068,7 @@ msgstr "متوسط:" msgid "Avoid Bridge Loops" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:388 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:393 msgid "" "Avoid uselessly triggering dial-on-demand links (filters SRV/SOA records and " "names with underscores)." @@ -1091,10 +1103,6 @@ msgstr "" msgid "Back to Overview" msgstr "الرجوع إلى الملخص" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:48 -msgid "Back to configuration" -msgstr "الرجوع إلى التشكيل" - #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:826 msgid "Back to peer configuration" msgstr "" @@ -1108,7 +1116,6 @@ msgid "Backup / Flash Firmware" msgstr "نسخ احتياطي / فلاش firmware" #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:351 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:12 msgid "Backup file list" msgstr "قائمة ملفات النسخ الاحتياطي" @@ -1150,7 +1157,6 @@ msgid "Beacon Interval" msgstr "الفاصل الزمني بين العلامات" #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:352 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:46 msgid "" "Below is the determined list of files to backup. It consists of changed " "configuration files marked by opkg, essential base files and the user " @@ -1164,7 +1170,7 @@ msgstr "" msgid "Bind NTP server" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:326 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:331 msgid "Bind dynamically to interfaces rather than wildcard address." msgstr "" "ربط ديناميكيًا بالواجهات بدلاً من عنوان أحرف البدل (موصى به باعتباره افتراضيًا " @@ -1182,6 +1188,17 @@ msgstr "" msgid "Bind interface" msgstr "واجهة ربط" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:595 +msgid "" +"Bind service records to a domain name: specify the location of services." +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:556 +msgid "" +"Bind service records to a domain name: specify the location of services. See " +"<a href=\"%s\">RFC2782</a>." +msgstr "" + #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:59 #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:64 #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:64 @@ -1284,6 +1301,10 @@ msgstr "شهادة CA إذا كانت فارغة سيتم حفظها بعد ال msgid "CLAT configuration failed" msgstr "فشل تكوين CLAT" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:574 +msgid "CNAME or fqdn" +msgstr "" + #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/processes.js:72 msgid "CPU usage (%)" msgstr "استخدام المعالج (٪)" @@ -1537,17 +1558,13 @@ msgid "" msgstr "" "أغلق الاتصال غير النشط بعد مقدار الثواني المحدد ، واستخدم 0 لاستمرار الاتصال" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:49 -msgid "Close list..." -msgstr "إغلاق القائمة ..." - #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:44 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:63 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2184 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:391 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:352 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:355 -#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:72 +#: themes/luci-theme-material/ucode/template/themes/material/header.ut:66 msgid "Collecting data..." msgstr "جمع البيانات..." @@ -1586,6 +1603,10 @@ msgstr "" msgid "Compute outgoing checksum (optional)." msgstr "حساب المجموع الاختباري الصادر (اختياري)." +#: protocols/luci-proto-nebula/htdocs/luci-static/resources/protocol/nebula.js:40 +msgid "Config File" +msgstr "" + #: modules/luci-base/htdocs/luci-static/resources/ui.js:4375 #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:454 msgid "Configuration" @@ -1632,8 +1653,8 @@ msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:764 msgid "" -"Configures the operation mode of the <abbr title=\"Router " -"Advertisement\">RA</abbr> service on this interface." +"Configures the operation mode of the <abbr title=\"Router Advertisement" +"\">RA</abbr> service on this interface." msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:879 @@ -1812,8 +1833,8 @@ msgstr "فاصل زمني مخصص للفلاش (kernel: timer)" #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/leds.js:59 msgid "" -"Customizes the behaviour of the device <abbr title=\"Light Emitting " -"Diode\">LED</abbr>s if possible." +"Customizes the behaviour of the device <abbr title=\"Light Emitting Diode" +"\">LED</abbr>s if possible." msgstr "" "يضبط إعدادات الأجهزة-<abbr title=\"Light Emitting Diode\">LED</abbr>-اذا " "امكن." @@ -1834,7 +1855,7 @@ msgstr "بوابة -DAE" msgid "DAE-Secret" msgstr "سر -DAE" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:525 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:530 msgid "DHCP Options" msgstr "" @@ -1874,11 +1895,11 @@ msgstr "خدمة DHCPv6" msgid "DNS" msgstr "نظام أسماء النطاقات" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:282 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:284 msgid "DNS forwardings" msgstr "شحن DNS" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:445 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:450 msgid "DNS query port" msgstr "<abbr title=\"Domain Name System\">DNS</abbr> query port" @@ -1886,7 +1907,7 @@ msgstr "<abbr title=\"Domain Name System\">DNS</abbr> query port" msgid "DNS search domains" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:438 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:443 msgid "DNS server port" msgstr "منفذ سيرفر<abbr title=\" Domain Name System\">DNS</abbr> System>" @@ -1902,11 +1923,11 @@ msgstr "" msgid "DNS-Label / FQDN" msgstr "DNS-Label / FQDN" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:397 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:402 msgid "DNSSEC" msgstr "DNSSEC" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:402 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:407 msgid "DNSSEC check unsigned" msgstr "تحقق DNSSEC بدون توقيع" @@ -1919,11 +1940,11 @@ msgid "DS-Lite AFTR address" msgstr "عنوان DS-Lite AFTR" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1481 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:44 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:45 msgid "DSL" msgstr "DSL" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:14 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:15 msgid "DSL Status" msgstr "حالة DSL" @@ -1936,12 +1957,12 @@ msgid "DTIM Interval" msgstr "فترة DTIM" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:59 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:700 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:771 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:136 msgid "DUID" msgstr "DUID" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:21 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:22 msgid "Data Rate" msgstr "معدل البيانات" @@ -2189,7 +2210,7 @@ msgstr "" msgid "Disassociate On Low Acknowledgement" msgstr "إلغاء الارتباط عند الإقرار القليل" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:302 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:307 msgid "" "Discard upstream responses containing <a href=\"%s\">RFC1918</a> addresses." msgstr "تجاهل استجابات المنبع RFC1918" @@ -2235,7 +2256,7 @@ msgstr "المسافة إلى أبعد عضو في الشبكة بالمتر." msgid "Distributed ARP Table" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:543 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:548 msgid "" "Dnsmasq instance to which this boot section is bound. If unspecified, the " "section is valid for all dnsmasq instances." @@ -2243,16 +2264,15 @@ msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:246 msgid "" -"Dnsmasq is a lightweight <abbr title=\"Dynamic Host Configuration " -"Protocol\">DHCP</abbr> server and <abbr title=\"Domain Name System\">DNS</" -"abbr> forwarder." +"Dnsmasq is a lightweight <abbr title=\"Dynamic Host Configuration Protocol" +"\">DHCP</abbr> server and <abbr title=\"Domain Name System\">DNS</abbr> " +"forwarder." msgstr "" -"Dnsmasq هو مزيج من خادم <abbr title=\"Dynamic Host Configuration " -"Protocol\">DHCP</abbr>- و <abbr title=\"Domain Name System\">DNS</abbr>- " -"معاد توجيهه إلى جدران الحماية <abbr title=\"Network Address " -"Translation\">NAT</abbr>" +"Dnsmasq هو مزيج من خادم <abbr title=\"Dynamic Host Configuration Protocol" +"\">DHCP</abbr>- و <abbr title=\"Domain Name System\">DNS</abbr>- معاد توجيهه " +"إلى جدران الحماية <abbr title=\"Network Address Translation\">NAT</abbr>" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:414 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:419 msgid "Do not cache negative replies, e.g. for non-existent domains." msgstr "" "لا تقم بتخزين الردود السلبية مؤقتًا ، على سبيل المثال لغير المجالات الموجودة" @@ -2265,17 +2285,17 @@ msgstr "" msgid "Do not create host route to peer (optional)." msgstr "لا تقم بإنشاء مسار مضيف إلى نظير (اختياري)." -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:262 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:264 msgid "Do not forward DNS queries without dots or domain parts." msgstr "" "لا تقم بإعادة توجيه طلبات <abbr title=\"Domain Name System\">DNS</abbr> بدون " "إسم <abbr title=\"Domain Name System\">DNS</abbr>-" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:383 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:388 msgid "Do not forward reverse lookups for local networks." msgstr "لا تقم بإعادة توجيه عمليات البحث العكسي للشبكات المحلية" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:339 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:344 msgid "Do not listen on the specified interfaces." msgstr "منع الاستماع على هذه الواجهات." @@ -2328,15 +2348,16 @@ msgstr "" msgid "Do you want to replace the current keys?" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:593 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:606 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:664 msgid "Domain" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:261 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:263 msgid "Domain required" msgstr "المجال مطلوب" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:311 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:316 msgid "Domain whitelist" msgstr "القائمة البيضاء للمجال" @@ -2578,7 +2599,7 @@ msgstr "تمكين عميل NTP" msgid "Enable Single DES" msgstr "تمكين واحد DES" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:480 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:485 msgid "Enable TFTP server" msgstr "تفعيل خادم TFTP" @@ -2596,9 +2617,9 @@ msgstr "تفعيل زر WPS يتطلب WPA (2) -PSK / WPA3-SAE" #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/uhttpd.js:14 msgid "" -"Enable automatic redirection of <abbr title=\"Hypertext Transfer " -"Protocol\">HTTP</abbr> requests to <abbr title=\"Hypertext Transfer Protocol " -"Secure\">HTTPS</abbr> port." +"Enable automatic redirection of <abbr title=\"Hypertext Transfer Protocol" +"\">HTTP</abbr> requests to <abbr title=\"Hypertext Transfer Protocol Secure" +"\">HTTPS</abbr> port." msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:977 @@ -2663,7 +2684,7 @@ msgstr "تمكين الدعم لحركة مرور البث المتعدد (اخ msgid "Enable the DF (Don't Fragment) flag of the encapsulating packets." msgstr "قم بتمكين علامة DF (عدم تجزئة) للحزم المغلفة." -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:481 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:486 msgid "Enable the built-in single-instance TFTP server." msgstr "" @@ -2780,7 +2801,7 @@ msgstr "خطأ" msgid "Error getting PublicKey" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:29 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:30 msgid "Errored seconds (ES)" msgstr "الثواني الخطأ (ES)" @@ -2802,11 +2823,11 @@ msgstr "كل 30 ثانية (بطيء ، 0)" msgid "Every second (fast, 1)" msgstr "كل ثانية (سريع ، 1)" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:338 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:343 msgid "Exclude interfaces" msgstr "استبعاد واجهات" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:307 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:312 msgid "" "Exempt <code>127.0.0.0/8</code> and <code>::1</code> from rebinding checks, " "e.g. for RBL services." @@ -2817,7 +2838,7 @@ msgstr "" msgid "Existing device" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:409 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:414 msgid "Expand hosts" msgstr "قم بتوسيع المضيفين" @@ -2953,7 +2974,7 @@ msgstr "" msgid "File" msgstr "ملف" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:418 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:423 msgid "" "File listing upstream resolvers, optionally domain-specific, e.g. " "<code>server=1.2.3.4</code>, <code>server=/domain/1.2.3.4</code>." @@ -2966,22 +2987,22 @@ msgstr "" msgid "File not accessible" msgstr "الملف لا يمكن الوصول إليه" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:349 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:354 msgid "File to store DHCP lease information." msgstr "" "ملف حيث سيتم تخزين الإجازات المعطاة <abbr title = \"بروتوكول التكوين " "الديناميكي للمضيف\"> DHCP </abbr>" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:357 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:362 msgid "File with upstream resolvers." msgstr "الملف محلي <abbr title=\"Domain Name System\">DNS</abbr>" #: modules/luci-base/htdocs/luci-static/resources/ui.js:2846 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:507 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:512 msgid "Filename" msgstr "اسم الملف" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:493 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:498 msgid "Filename of the boot image advertised to clients." msgstr "تم الإعلان عن اسم ملف صورة الاشهار للعملاء" @@ -2990,11 +3011,11 @@ msgstr "تم الإعلان عن اسم ملف صورة الاشهار للعم msgid "Filesystem" msgstr "نظام الملفات" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:382 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:387 msgid "Filter private" msgstr "تصفية خاصة" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:387 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:392 msgid "Filter useless" msgstr "تصفية عديمة الفائدة" @@ -3060,7 +3081,7 @@ msgstr "ملف البرامج الثابتة" msgid "Firmware Version" msgstr "نسخة برنامج ثابت" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:446 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:451 msgid "Fixed source port for outbound DNS queries." msgstr "منفذ مصدر ثابت لاستعلامات DNS الصادرة" @@ -3086,7 +3107,7 @@ msgstr "عمليات الفلاش" msgid "Flashing…" msgstr "تتبيت الصورة …" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:537 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:542 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:686 msgid "Force" msgstr "أجبار" @@ -3131,16 +3152,16 @@ msgstr "قوة الترقية" msgid "Force use of NAT-T" msgstr "فرض استخدام NAT-T" -#: modules/luci-base/luasrc/view/csrftoken.htm:8 +#: modules/luci-base/ucode/template/csrftoken.ut:8 msgid "Form token mismatch" msgstr "رمز النموذج غير متطابق" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:919 msgid "" -"Forward <abbr title=\"Neighbour Discovery Protocol\">NDP</abbr> <abbr " -"title=\"Neighbour Solicitation, Type 135\">NS</abbr> and <abbr " -"title=\"Neighbour Advertisement, Type 136\">NA</abbr> messages between the " -"designated master interface and downstream interfaces." +"Forward <abbr title=\"Neighbour Discovery Protocol\">NDP</abbr> <abbr title=" +"\"Neighbour Solicitation, Type 135\">NS</abbr> and <abbr title=\"Neighbour " +"Advertisement, Type 136\">NA</abbr> messages between the designated master " +"interface and downstream interfaces." msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:770 @@ -3160,7 +3181,7 @@ msgid "" "downstream interfaces." msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:28 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:29 msgid "Forward Error Correction Seconds (FECS)" msgstr "ثواني تصحيح الخطأ الأمامي (FECS)" @@ -3319,15 +3340,15 @@ msgstr "الاعدادات العامة" msgid "Global network options" msgstr "خيارات الشبكة العالمية" -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:82 -#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:89 -#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:74 +#: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/header.ut:70 +#: themes/luci-theme-material/ucode/template/themes/material/header.ut:84 +#: themes/luci-theme-openwrt-2020/ucode/template/themes/openwrt2020/header.ut:67 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:92 msgid "Go to firmware upgrade..." msgstr "" -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:72 -#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:64 +#: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/header.ut:60 +#: themes/luci-theme-openwrt-2020/ucode/template/themes/openwrt2020/header.ut:57 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:82 msgid "Go to password configuration..." msgstr "انتقل إلى تكوين كلمة المرور ..." @@ -3468,7 +3489,7 @@ msgstr "" msgid "Hang Up" msgstr "قطع الخط" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:33 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:34 msgid "Header Error Code Errors (HEC)" msgstr "رمز أخطاء (HEC)" @@ -3520,7 +3541,7 @@ msgstr "ضيف" msgid "Host expiry timeout" msgstr "انتهت مهلة انتهاء صلاحية المضيف" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:508 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:513 msgid "Host requests this filename from the boot server." msgstr "" @@ -3529,8 +3550,8 @@ msgid "Host-Uniq tag content" msgstr "محتوى علامة Host-Uniq" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:38 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:559 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:607 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:630 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:678 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/10_system.js:54 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:87 #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:135 @@ -3545,7 +3566,7 @@ msgstr "اسم المضيف المراد إرساله عند طلب DHCP" msgid "Hostnames" msgstr "أسماء المضيفين" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:551 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:622 msgid "" "Hostnames are used to bind a domain name to an IP address. This setting is " "redundant for hostnames already configured with static leases, but it can be " @@ -3609,7 +3630,7 @@ msgstr "عناوينIP" msgid "IP Protocol" msgstr "بروتوكول IP" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:258 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:260 msgid "IP Sets" msgstr "" @@ -3617,7 +3638,7 @@ msgstr "" msgid "IP Type" msgstr "نوع IP" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:563 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:634 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:178 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:204 msgid "IP address" @@ -3643,15 +3664,15 @@ msgctxt "nft meta l4proto" msgid "IP protocol" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:589 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:660 msgid "IP set" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:295 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:300 msgid "IP sets" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:432 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:437 msgid "IPs to override with NXDOMAIN" msgstr "تجاوز المجال الزائف NX" @@ -3692,7 +3713,7 @@ msgstr "IPv4 المنبع" #: modules/luci-base/htdocs/luci-static/resources/protocol/static.js:178 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:39 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:665 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:736 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:88 #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:164 msgid "IPv4 address" @@ -3863,7 +3884,7 @@ msgstr "" msgid "IPv6 suffix" msgstr "لاحقة IPv6" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:706 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:777 msgid "IPv6 suffix (hex)" msgstr "" "لاحقة ( سداسية) <abbr title=\"Internet Protocol Version 6\">IPv6</abbr>" @@ -3960,19 +3981,19 @@ msgstr "إذا لم يتم تحديده ، فسيتم تجاهل عناوين خ #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:340 msgid "" "If your physical memory is insufficient unused data can be temporarily " -"swapped to a swap-device resulting in a higher amount of usable <abbr " -"title=\"Random Access Memory\">RAM</abbr>. Be aware that swapping data is a " -"very slow process as the swap-device cannot be accessed with the high " -"datarates of the <abbr title=\"Random Access Memory\">RAM</abbr>." +"swapped to a swap-device resulting in a higher amount of usable <abbr title=" +"\"Random Access Memory\">RAM</abbr>. Be aware that swapping data is a very " +"slow process as the swap-device cannot be accessed with the high datarates " +"of the <abbr title=\"Random Access Memory\">RAM</abbr>." msgstr "" "إذا كانت الذاكرة الفعلية الخاصة بك غير كافية ، فيمكن تبديل البيانات غير " "المستخدمة مؤقتًا بجهاز المبادلة مما يؤدي إلى كمية أكبر من البيانات القابلة " "للاستخدام <abbr title=\"Random Access Memory\">RAM</abbr>. كن على علم بأن " "عملية تبادل البيانات هي عملية بطيئة للغاية حيث لا يمكن الوصول إلى جهاز " -"المبادلة بالبيانات العالية الخاصة بـ <abbr title=\"Random Access " -"Memory\">RAM</abbr>." +"المبادلة بالبيانات العالية الخاصة بـ <abbr title=\"Random Access Memory" +"\">RAM</abbr>." -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:363 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:368 msgid "Ignore <code>/etc/hosts</code>" msgstr "تجاهل <code> / etc / hosts </code>" @@ -3980,7 +4001,7 @@ msgstr "تجاهل <code> / etc / hosts </code>" msgid "Ignore interface" msgstr "تجاهل الواجهة" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:352 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:357 msgid "Ignore resolv file" msgstr "تجاهل حل الملف" @@ -4028,7 +4049,7 @@ msgid "" "order to avoid broadcast loops that can bring the entire LAN to a standstill." msgstr "" -#: modules/luci-base/luasrc/view/csrftoken.htm:13 +#: modules/luci-base/ucode/template/csrftoken.ut:13 msgid "" "In order to prevent unauthorized access to the system, your request has been " "blocked. Click \"Continue »\" below to return to the previous page." @@ -4139,7 +4160,7 @@ msgstr "قيد الشهادة الداخلية (حرف البدل)" msgid "Install protocol extensions..." msgstr "تثبيت ملحقات البروتوكول ..." -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:542 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:547 msgid "Instance" msgstr "" @@ -4228,10 +4249,6 @@ msgstr "واجهات" msgid "Internal" msgstr "داخلي" -#: modules/luci-base/luasrc/view/error500.htm:8 -msgid "Internal Server Error" -msgstr "خطأ في الخادم الداخلي" - #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:285 msgid "Interval For Sending Learning Packets" msgstr "الفاصل الزمني لإرسال حزم التعلم" @@ -4302,8 +4319,8 @@ msgstr "أمر خاطئ" msgid "Invalid hexadecimal value" msgstr "قيمة سداسية عشرية غير صالحة" -#: modules/luci-base/luasrc/view/sysauth.htm:12 -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/sysauth.htm:37 +#: modules/luci-base/ucode/template/sysauth.ut:12 +#: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/sysauth.ut:32 msgid "Invalid username and/or password! Please try again." msgstr "اسم المستخدم و / أو كلمة المرور غير صالحة! حاول مرة اخرى." @@ -4327,8 +4344,8 @@ msgstr "" "يبدو أنك تحاول وميض صورة لا تتناسب مع ذاكرة الفلاش ، يرجى التحقق من ملف " "الصورة!" -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:89 -#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:96 +#: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/header.ut:77 +#: themes/luci-theme-material/ucode/template/themes/material/header.ut:91 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:72 msgid "JavaScript required!" msgstr "مطلوب جافا سكريبت!" @@ -4460,11 +4477,17 @@ msgstr "اللغة" msgid "Language and Style" msgstr "اللغة والأسلوب" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:560 +msgid "" +"Larger weights (of the same prio) are given a proportionately higher " +"probability of being selected." +msgstr "" + #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:575 msgid "Last member interval" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:23 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:24 msgid "Latency" msgstr "وقت الإستجابة" @@ -4480,11 +4503,11 @@ msgstr "" msgid "Learn routes" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:348 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:353 msgid "Lease file" msgstr "ملف الإيجار" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:697 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:768 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:679 msgid "Lease time" msgstr "مدة الايجار" @@ -4531,19 +4554,19 @@ msgstr "عنوان تفسيري:" msgid "Limit" msgstr "حد" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:24 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:25 msgid "Line Attenuation (LATN)" msgstr "توهين الخط (LATN)" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:18 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:19 msgid "Line Mode" msgstr "وضع الخط" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:17 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:18 msgid "Line State" msgstr "حالة الخط" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:19 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:20 msgid "Line Uptime" msgstr "جهوزية الخط" @@ -4564,12 +4587,12 @@ msgctxt "nft @ll,off,len" msgid "Link layer header bits %d-%d" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:433 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:438 msgid "List of IP addresses to convert into NXDOMAIN responses." msgstr "قائمة المضيفين الذين يقدمون نتائج زائفة لمجال NX" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:296 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:581 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:301 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:652 msgid "List of IP sets to populate with the specified domain IPs." msgstr "" @@ -4603,25 +4626,21 @@ msgstr "" msgid "List of SSH key files for auth" msgstr "قائمة ملفات مفتاح SSH للمصادقة" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:312 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:317 msgid "List of domains to allow RFC1918 responses for." msgstr "قائمة المجالات التي تسمح باستجابات RFC1918 ل" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:290 -msgid "List of domains to force to an IP address." -msgstr "قائمة المجالات التي سيتم فرضها على عنوان IP." - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:283 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:285 msgid "List of upstream resolvers to forward queries to." msgstr "" -"قائمة الخوادم لإعادة توجيه الطلبات إليها <abbr title=\"Domain Name " -"System\">DNS</abbr>" +"قائمة الخوادم لإعادة توجيه الطلبات إليها <abbr title=\"Domain Name System" +"\">DNS</abbr>" #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:176 msgid "Listen Port" msgstr "بوابة الاستماع" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:332 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:337 msgid "Listen interfaces" msgstr "واجهات الاستماع" @@ -4629,7 +4648,7 @@ msgstr "واجهات الاستماع" msgid "Listen only on the given interface or, if unspecified, on all" msgstr "استمع فقط على الواجهة المحددة أو على الكل ، إذا لم يتم تحديدها" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:333 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:338 msgid "" "Listen only on the specified interfaces, and loopback if not excluded " "explicitly." @@ -4639,7 +4658,7 @@ msgstr "الحد من الاستماع إلى هذه الواجهات والاس msgid "ListenPort setting is invalid" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:439 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:444 msgid "Listening port for inbound DNS queries." msgstr "منفذ الاستماع لاستعلامات DNS الواردة" @@ -4666,9 +4685,9 @@ msgid "Loading directory contents…" msgstr "تحميل محتويات الدليل …" #: modules/luci-base/htdocs/luci-static/resources/luci.js:1942 -#: modules/luci-base/luasrc/view/view.htm:4 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:12 -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/sysauth.htm:45 +#: modules/luci-base/ucode/template/view.ut:4 +#: modules/luci-mod-status/ucode/template/admin_status/index.ut:12 +#: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/sysauth.ut:40 msgid "Loading view…" msgstr "جارٍ تحميل العرض…" @@ -4726,19 +4745,19 @@ msgstr "التوقيت المحلي" msgid "Local ULA" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:273 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:275 msgid "Local domain" msgstr "المجال المحلي" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:274 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:276 msgid "Local domain suffix appended to DHCP names and hosts file entries." msgstr "يتم إلحاق لاحقة المجال المحلي بأسماء DHCP وإدخالات ملف المضيفين" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:269 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:271 msgid "Local server" msgstr "السرفير المحلي" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:319 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:324 msgid "Local service only" msgstr "الخدمة المحلية فقط" @@ -4746,7 +4765,7 @@ msgstr "الخدمة المحلية فقط" msgid "Local wireguard key" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:392 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:397 msgid "Localise queries" msgstr "تحديد تواجد الاستعلامات" @@ -4758,7 +4777,7 @@ msgstr "قفل ل BSSID" msgid "Log output level" msgstr "مستوى إخراج السجل" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:277 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:279 msgid "Log queries" msgstr "سجل الاستفسارات" @@ -4784,8 +4803,8 @@ msgstr "" msgid "Logical network to which the tunnel will be added (bridged) (optional)." msgstr "الشبكة المنطقية التي سيتم إضافة النفق إليها (جسور) (اختياري)." -#: modules/luci-base/luasrc/view/sysauth.htm:38 -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/sysauth.htm:41 +#: modules/luci-base/ucode/template/sysauth.ut:38 +#: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/sysauth.ut:36 msgid "Login" msgstr "تسجيل الدخول" @@ -4797,7 +4816,7 @@ msgstr "تسجيل خروج" msgid "Loose filtering" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:31 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:32 msgid "Loss of Signal Seconds (LOSS)" msgstr "فقدان ثانية الإشارة (LOSS)" @@ -4805,6 +4824,10 @@ msgstr "فقدان ثانية الإشارة (LOSS)" msgid "Lowest leased address as offset from the network address." msgstr "أقل عنوان مؤجر تمت إزاحته من عنوان الشبكة." +#: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/footer.ut:12 +msgid "Lua compatibility mode active" +msgstr "" + #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:48 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:83 msgid "MAC" @@ -4829,7 +4852,7 @@ msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:591 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:40 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:619 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:690 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1164 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2177 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:56 @@ -4888,6 +4911,10 @@ msgstr "الفاصل الزمني MII" msgid "MTU" msgstr "MTU" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:259 +msgid "MX" +msgstr "" + #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:303 msgid "" "Make sure to clone the root filesystem using something like the commands " @@ -4912,23 +4939,23 @@ msgstr "سيد" msgid "Max <abbr title=\"Router Advertisement\">RA</abbr> interval" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:22 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:23 msgid "Max. Attainable Data Rate (ATTNDR)" msgstr "الأعلى. معدل البيانات الممكن تحقيقه (ATTNDR)" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:452 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:457 msgid "Max. DHCP leases" msgstr "" "إيجارات <abbr title=\"maximal\">Max.</abbr> <abbr title=\"Dynamic Host " "Configuration Protocol\">DHCP</abbr>" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:459 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:464 msgid "Max. EDNS0 packet size" msgstr "" "حجم الحزمة <abbr title=\"maximal\">Max.</abbr> <abbr title=\"Extension " "Mechanisms for Domain Name System\">EDNS0</abbr>" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:466 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:471 msgid "Max. concurrent queries" msgstr "<abbr title=\"maximal\">Max.</abbr> أقصى استفسارات متزامنة" @@ -4940,15 +4967,15 @@ msgstr "" msgid "Maximum allowed Listen Interval" msgstr "الحد الأقصى المسموح به لفاصل الاستماع" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:453 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:458 msgid "Maximum allowed number of active DHCP leases." msgstr "العدد الأقصى المسموح به لعقود إيجار DHCP النشطة" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:467 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:472 msgid "Maximum allowed number of concurrent DNS queries." msgstr "العدد الأقصى المسموح به لاستعلامات DNS المتزامنة" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:460 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:465 msgid "Maximum allowed size of EDNS0 UDP packets." msgstr "الحجم الأقصى المسموح به لحزم EDNS.0 UDP" @@ -4975,7 +5002,7 @@ msgstr "" msgid "Maximum transmit power" msgstr "قوة الإرسال القصوى" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:389 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:394 msgid "May prevent VoIP or other services from working." msgstr "" @@ -5291,11 +5318,15 @@ msgstr "اسم الشبكة الجديدة" msgid "Name of the tunnel device" msgstr "" -#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:46 +#: themes/luci-theme-openwrt-2020/ucode/template/themes/openwrt2020/header.ut:39 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:50 msgid "Navigation" msgstr "التنقل" +#: protocols/luci-proto-nebula/htdocs/luci-static/resources/protocol/nebula.js:10 +msgid "Nebula Network" +msgstr "" + #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:653 msgid "Neighbour cache validity" msgstr "" @@ -5331,7 +5362,7 @@ msgstr "مرافق الشبكة" msgid "Network address" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:492 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:497 msgid "Network boot image" msgstr "صورة تمهيد الشبكة" @@ -5371,7 +5402,7 @@ msgstr "" msgid "Network interface" msgstr "واجهة الشبكة" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:531 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:536 msgid "Network-ID" msgstr "" @@ -5379,7 +5410,7 @@ msgstr "" msgid "Never" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:270 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:272 msgid "" "Never forward matching domains and subdomains, resolve from DHCP or hosts " "files only." @@ -5429,9 +5460,9 @@ msgstr "لا يوجد NAT-T" msgid "No RX signal" msgstr "لا توجد إشارة RX" -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:80 -#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:87 -#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:72 +#: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/header.ut:68 +#: themes/luci-theme-material/ucode/template/themes/material/header.ut:82 +#: themes/luci-theme-openwrt-2020/ucode/template/themes/openwrt2020/header.ut:65 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:90 msgid "" "No changes to settings will be stored and are lost after rebooting. This " @@ -5473,10 +5504,6 @@ msgstr "" msgid "No entries in this directory" msgstr "لا توجد إدخالات في هذا الدليل" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:82 -msgid "No files found" -msgstr "لا توجد ملفات" - #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:833 msgid "" "No fixed interface listening port defined, peers might not be able to " @@ -5512,7 +5539,7 @@ msgstr "لا مزيد من المستخدمين متاحين" msgid "No more slaves available, can not save interface" msgstr "لا مزيد من المستخدمين متاحين ، لا يمكن حفظ الواجهة" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:413 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:418 msgid "No negative cache" msgstr "لا توجد ذاكرة تخزين مؤقت سلبية" @@ -5520,8 +5547,8 @@ msgstr "لا توجد ذاكرة تخزين مؤقت سلبية" msgid "No nftables ruleset loaded." msgstr "" -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:69 -#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:61 +#: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/header.ut:57 +#: themes/luci-theme-openwrt-2020/ucode/template/themes/openwrt2020/header.ut:54 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:79 msgid "No password set!" msgstr "لم يتم تعيين كلمة مرور!" @@ -5561,7 +5588,7 @@ msgstr "لم يتم تعيين منطقة" msgid "Noise" msgstr "التشويش" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:26 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:27 msgid "Noise Margin (SNR)" msgstr "هامش التشويش (SNR)" @@ -5569,11 +5596,11 @@ msgstr "هامش التشويش (SNR)" msgid "Noise:" msgstr "التشويش:" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:34 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:35 msgid "Non Pre-emptive CRC errors (CRC_P)" msgstr "أخطاء CRC غير استباقية (CRC_P)" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:325 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:330 msgid "Non-wildcard" msgstr "غير البدل" @@ -5588,7 +5615,7 @@ msgstr "لاشيء" msgid "Normal" msgstr "عادي" -#: modules/luci-base/luasrc/view/error404.htm:8 +#: modules/luci-base/ucode/template/error404.ut:9 msgid "Not Found" msgstr "غير موجود" @@ -5640,7 +5667,7 @@ msgstr "Nslookup" msgid "Number of IGMP membership reports" msgstr "عدد تقارير عضوية IGMP" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:474 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:479 msgid "Number of cached DNS entries, 10000 is maximum, 0 is no caching." msgstr "" "عدد إدخالات DNS المخزنة مؤقتًا (الحد الأقصى 10000 ، 0 لا يوجد تخزين مؤقت)" @@ -5690,7 +5717,7 @@ msgstr "حالة التأخير" msgid "On-link" msgstr "طريق على الارتباط" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:672 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:743 msgid "One of hostname or MAC address must be specified!" msgstr "يجب تحديد اسم مضيف أو عنوان mac!" @@ -5726,7 +5753,6 @@ msgid "Open iptables rules overview…" msgstr "" #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:472 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:19 msgid "Open list..." msgstr "فتح القائمة ..." @@ -5879,18 +5905,23 @@ msgstr "خياري. يستخدم منفذ UDP للحزم الصادرة والو msgid "Options" msgstr "خيارات" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:526 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:531 msgid "" "Options for the Network-ID. (Note: needs also Network-ID.) E.g. " -"\"<code>42,192.168.1.4</code>\" for NTP server, \"<code>3,192.168.4.4</" -"code>\" for default route. <code>0.0.0.0</code> means \"the address of the " -"system running dnsmasq\"." +"\"<code>42,192.168.1.4</code>\" for NTP server, \"<code>3,192.168.4.4</code>" +"\" for default route. <code>0.0.0.0</code> means \"the address of the system " +"running dnsmasq\"." msgstr "" #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:125 msgid "Options:" msgstr "خيارات:" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:584 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:616 +msgid "Ordinal: lower comes first." +msgstr "" + #: protocols/luci-proto-batman-adv/htdocs/luci-static/resources/protocol/batadv.js:55 msgid "Originator Interval" msgstr "" @@ -6164,13 +6195,13 @@ msgctxt "MACVLAN mode" msgid "Pass-through (Mirror physical device to single MAC VLAN)" msgstr "" -#: modules/luci-base/luasrc/view/sysauth.htm:29 +#: modules/luci-base/ucode/template/sysauth.ut:29 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1690 #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:51 #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:114 #: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:103 #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:58 -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/sysauth.htm:24 +#: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/sysauth.ut:19 msgid "Password" msgstr "كلمة المرور" @@ -6341,7 +6372,7 @@ msgstr "ping" msgid "Pkts." msgstr "الحزم." -#: modules/luci-base/luasrc/view/sysauth.htm:19 +#: modules/luci-base/ucode/template/sysauth.ut:19 msgid "Please enter your username and password." msgstr "الرجاء إدخال اسم المستخدم وكلمة المرور الخاصة بك." @@ -6358,6 +6389,7 @@ msgctxt "Chain hook policy" msgid "Policy: <strong>%h</strong> (%h)" msgstr "" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:579 #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/dropbear.js:21 msgid "Port" msgstr "المنفذ" @@ -6374,11 +6406,11 @@ msgstr "حالة المنفذ:" msgid "Potential negation of: %s" msgstr "النفي المحتمل ل: s%" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:37 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:38 msgid "Power Management Mode" msgstr "وضع إدارة الطاقة" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:35 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:36 msgid "Pre-emptive CRC errors (CRCP_P)" msgstr "أخطاء CRC الاستباقية (CRCP_P)" @@ -6455,6 +6487,8 @@ msgid "Primary becomes active slave whenever it comes back up (always, 0)" msgstr "يصبح الأساسي مستخدماً نشطًا كلما ظهر مرة أخرى (دائمًا ، 0)" #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:508 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:584 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:616 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:129 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:197 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:223 @@ -6573,11 +6607,11 @@ msgstr "QMI الخلوية" msgid "Quality" msgstr "جودة" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:428 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:433 msgid "Query all available upstream resolvers." msgstr "" -"الاستعلام عن جميع خوادم المنبع المتاحة <abbr title=\"Domain Name " -"System\">DNS</abbr>" +"الاستعلام عن جميع خوادم المنبع المتاحة <abbr title=\"Domain Name System" +"\">DNS</abbr>" #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:556 msgid "Query interval" @@ -6658,7 +6692,7 @@ msgid "Raw hex-encoded bytes. Leave empty unless your ISP require this" msgstr "" "بايت خام بترميز سداسي عشري. اتركه فارغًا ما لم يطلب مزود خدمة الإنترنت ذلك" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:345 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:350 msgid "Read <code>/etc/ethers</code> to configure the DHCP server." msgstr "" "اقرأ <code>/etc/ethers</code> لتكوين الخادم <abbr title=\"Dynamic Host " @@ -6676,7 +6710,7 @@ msgstr "الرسوم البيانية في الوقت الفعلي" msgid "Reassociation Deadline" msgstr "الموعد النهائي لإعادة التجمع" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:301 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:306 msgid "Rebind protection" msgstr "إعادة ربط الحماية" @@ -6761,6 +6795,7 @@ msgid "" msgstr "" #: modules/luci-compat/luasrc/model/network/proto_relay.lua:153 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:611 #: protocols/luci-proto-relay/htdocs/luci-static/resources/protocol/relay.js:39 msgid "Relay" msgstr "تناوب" @@ -6851,6 +6886,10 @@ msgstr "مطلوب لبعض مزودي خدمة الإنترنت ، على سب msgid "Required. Base64-encoded private key for this interface." msgstr "مطلوب. المفتاح الخاص بترميز Base64 لهذه الواجهة." +#: protocols/luci-proto-nebula/htdocs/luci-static/resources/protocol/nebula.js:40 +msgid "Required. Path to the .yml config file for this interface." +msgstr "" + #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:587 msgid "Required. Public key of the WireGuard peer." msgstr "" @@ -6932,7 +6971,7 @@ msgid "Reselection policy for primary slave" msgstr "سياسة إعادة الاختيار للمستخدم الأساسي" #: modules/luci-base/htdocs/luci-static/resources/luci.js:2197 -#: modules/luci-base/luasrc/view/sysauth.htm:39 +#: modules/luci-base/ucode/template/sysauth.ut:39 #: modules/luci-compat/luasrc/view/cbi/delegator.htm:17 #: modules/luci-compat/luasrc/view/cbi/footer.htm:30 #: modules/luci-compat/luasrc/view/cbi/simpleform.htm:66 @@ -6951,10 +6990,14 @@ msgstr "إعادة التعيين إلى الإعدادات الافتراضية msgid "Resolv and Hosts Files" msgstr "لمفات resolv و hosts" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:356 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:361 msgid "Resolv file" msgstr "ملف resolve" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:292 +msgid "Resolve specified FQDNs to an IP." +msgstr "قائمة المجالات التي سيتم فرضها على عنوان IP." + #: modules/luci-base/htdocs/luci-static/resources/rpc.js:405 msgid "Resource not found" msgstr "الموارد غير موجود" @@ -6981,7 +7024,7 @@ msgstr "إعادة" msgid "Restore backup" msgstr "استرجاع النسخة الاحتياطية" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:393 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:398 msgid "" "Return answers to DNS queries matching the subnet from which the query was " "received if multiple IPs are available." @@ -7069,7 +7112,7 @@ msgstr "" msgid "Robustness" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:486 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:491 msgid "" "Root directory for files served via TFTP. <em>Enable TFTP server</em> and " "<em>TFTP server root</em> turn on the TFTP server and serve files from " @@ -7173,6 +7216,11 @@ msgstr "SHA256" msgid "SNR" msgstr "SNR" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:258 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:569 +msgid "SRV" +msgstr "" + #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/dropbear.js:10 #: modules/luci-mod-system/root/usr/share/luci/menu.d/luci-mod-system.json:38 msgid "SSH Access" @@ -7314,11 +7362,11 @@ msgstr "أرسل اسم مضيف هذا الجهاز" msgid "Server" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:519 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:524 msgid "Server address" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:513 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:518 msgid "Server name" msgstr "" @@ -7408,7 +7456,7 @@ msgstr "" msgid "Setup routes for proxied IPv6 neighbours." msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:30 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:31 msgid "Severely Errored Seconds (SES)" msgstr "الثواني التي بها أخطاء جسيمة (SES)" @@ -7422,7 +7470,6 @@ msgid "Short Preamble" msgstr "لمحة سريعة" #: 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 msgid "Show current backup file list" msgstr "إظهار قائمة ملفات النسخ الاحتياطي الحالية" @@ -7456,7 +7503,7 @@ msgstr "الإشارة" msgid "Signal / Noise" msgstr "إشارة / تشويش" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:25 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:26 msgid "Signal Attenuation (SATN)" msgstr "توهين الإشارة (SATN)" @@ -7473,7 +7520,7 @@ msgstr "الإشارة:" msgid "Size" msgstr "مقاس" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:473 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:478 msgid "Size of DNS query cache" msgstr "حجم ذاكرة التخزين المؤقت لاستعلام DNS" @@ -7490,12 +7537,12 @@ msgstr "تخطى" msgid "Skip from backup files that are equal to those in /rom" msgstr "" -#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:42 +#: themes/luci-theme-openwrt-2020/ucode/template/themes/openwrt2020/header.ut:35 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:46 msgid "Skip to content" msgstr "تخطى الى المحتوى" -#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:41 +#: themes/luci-theme-openwrt-2020/ucode/template/themes/openwrt2020/header.ut:34 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:45 msgid "Skip to navigation" msgstr "تخطي إلى التصفح" @@ -7513,14 +7560,10 @@ msgstr "برنامج VLAN" msgid "Some fields are invalid, cannot save values!" msgstr "بعض الحقول غير صالحة ، لا يمكن حفظ القيم!" -#: modules/luci-base/luasrc/view/error404.htm:9 +#: modules/luci-base/ucode/template/error404.ut:10 msgid "Sorry, the object you requested was not found." msgstr "عذرا ، الشيء الذي طلبته لم يتم العثور عليه." -#: modules/luci-base/luasrc/view/error500.htm:9 -msgid "Sorry, the server encountered an unexpected error." -msgstr "عذرا ، واجه الخادم خطأ غير متوقع." - #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:442 msgid "" "Sorry, there is no sysupgrade support present; a new firmware image must be " @@ -7558,7 +7601,7 @@ msgctxt "nft ip sport" msgid "Source port" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:500 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:505 msgid "" "Special <abbr title=\"Preboot eXecution Environment\">PXE</abbr> boot " "options for Dnsmasq." @@ -7958,7 +8001,7 @@ msgstr "الإيجارات الثابتة" msgid "Static address" msgstr "عنوان ثابت" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:598 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:669 msgid "" "Static leases are used to assign fixed IP addresses and symbolic hostnames " "to DHCP clients. They are also required for non-dynamic interface " @@ -7975,7 +8018,7 @@ msgstr "حد عدم نشاط المحطة" #: modules/luci-base/root/usr/share/luci/menu.d/luci-base.json:16 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:541 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:929 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:9 +#: modules/luci-mod-status/ucode/template/admin_status/index.ut:9 msgid "Status" msgstr "الحالة" @@ -8001,7 +8044,7 @@ msgstr "" msgid "Strict filtering" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:422 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:427 msgid "Strict order" msgstr "ترتيب صارم" @@ -8014,11 +8057,11 @@ msgstr "متين" msgid "Submit" msgstr "أرسل" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:372 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:377 msgid "Suppress logging" msgstr "قم بإلغاء التسجيل" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:373 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:378 msgid "Suppress logging of the routine operation for the DHCP protocol." msgstr "قم بإيقاف تسجيل العملية الروتينية لهذه البروتوكولات" @@ -8071,6 +8114,14 @@ msgstr "مزامنة مع خادم NTP" msgid "Sync with browser" msgstr "تزامن مع المتصفح" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:293 +msgid "Syntax: <code>/fqdn[/fqdn…]/[ipaddr]</code>." +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:569 +msgid "Syntax: <code>_service._proto.example.com</code>." +msgstr "" + #: modules/luci-base/root/usr/share/luci/menu.d/luci-base.json:26 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/10_system.js:17 #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:113 @@ -8096,9 +8147,9 @@ msgstr "خصائص النظام" msgid "System log buffer size" msgstr "حجم المخزن المؤقت لسجل النظام" -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:79 -#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:86 -#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:71 +#: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/header.ut:67 +#: themes/luci-theme-material/ucode/template/themes/material/header.ut:81 +#: themes/luci-theme-openwrt-2020/ucode/template/themes/openwrt2020/header.ut:64 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:89 msgid "System running in recovery (initramfs) mode." msgstr "" @@ -8127,7 +8178,7 @@ msgstr "" msgid "TCP:" msgstr "TCP:" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:485 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:490 msgid "TFTP server root" msgstr "جذر خادم TFTP" @@ -8152,6 +8203,7 @@ msgstr "" msgid "Table" msgstr "جدول" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:574 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:56 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:66 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:187 @@ -8224,15 +8276,15 @@ msgstr "" "تم تغيير تكوين تحديث نقطة نهاية HE.net ، يجب عليك الآن استخدام اسم المستخدم " "العادي بدلاً من معرف المستخدم!" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:681 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:752 msgid "The IP address %h is already used by another static lease" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:690 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:761 msgid "The IP address is outside of any DHCP pool address range" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:520 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:525 msgid "The IP address of the boot server" msgstr "" @@ -8411,7 +8463,7 @@ msgid "" "to be received and retransmitted which costs airtime)" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:514 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:519 msgid "The hostname of the boot server" msgstr "" @@ -8496,8 +8548,8 @@ msgstr "تم استخدام اسم الشبكة من قبل" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:139 msgid "" -"The network ports on this device can be combined to several <abbr " -"title=\"Virtual Local Area Network\">VLAN</abbr>s in which computers can " +"The network ports on this device can be combined to several <abbr title=" +"\"Virtual Local Area Network\">VLAN</abbr>s in which computers can " "communicate directly with each other. <abbr title=\"Virtual Local Area " "Network\">VLAN</abbr>s are often used to separate different network " "segments. Often there is by default one Uplink port for a connection to the " @@ -8554,7 +8606,7 @@ msgstr "" msgid "The selected %s mode is incompatible with %s encryption" msgstr "وضع%s المحدد غير متوافق مع تشفير%s" -#: modules/luci-base/luasrc/view/csrftoken.htm:11 +#: modules/luci-base/ucode/template/csrftoken.ut:11 msgid "The submitted security token is invalid or already expired!" msgstr "رمز الأمان المقدم غير صالح أو انتهت صلاحيته بالفعل!" @@ -8634,8 +8686,8 @@ msgid "" "nftables rules is discouraged and may lead to incomplete traffic filtering." msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:746 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:778 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:817 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:849 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:130 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:179 msgid "There are no active leases" @@ -8645,8 +8697,8 @@ msgstr "لا توجد إيجارات نشطة" msgid "There are no changes to apply" msgstr "لا توجد تغييرات لتطبيقها" -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:70 -#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:62 +#: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/header.ut:58 +#: themes/luci-theme-openwrt-2020/ucode/template/themes/openwrt2020/header.ut:55 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:80 msgid "" "There is no password set on this router. Please configure a root password to " @@ -8669,7 +8721,6 @@ msgid "This does not look like a valid PEM file" msgstr "لا يبدو هذا كملف PEM صالح" #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:454 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:16 msgid "" "This is a list of shell glob patterns for matching files and directories to " "include during sysupgrade. Modified files in /etc/config/ and certain other " @@ -8714,7 +8765,7 @@ msgstr "" "هذا هو عنوان نقطة النهاية المحلية المعين من قبل وسيط النفق ، وعادة ما ينتهي " "ب <code> ...: 2/64 </code>" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:266 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:268 msgid "This is the only DHCP server in the local network." msgstr "" "هذا هو <abbr title = \"بروتوكول التكوين الديناميكي للمضيف\"> DHCP </abbr> " @@ -8795,8 +8846,8 @@ msgstr "lلمنطقة الزمنية" #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:440 msgid "" "To fully configure the local WireGuard interface from an existing (e.g. " -"provider supplied) configuration file, use the <strong><a class=\"full-" -"import\" href=\"#\">configuration import</a></strong> instead." +"provider supplied) configuration file, use the <strong><a class=\"full-import" +"\" href=\"#\">configuration import</a></strong> instead." msgstr "" #: modules/luci-base/htdocs/luci-static/resources/luci.js:2674 @@ -8810,8 +8861,8 @@ msgid "" "reset\" (only possible with squashfs images)." msgstr "" "لاستعادة ملفات التكوين ، يمكنك تحميل أرشيف نسخ احتياطي تم إنشاؤه مسبقًا هنا. " -"لإعادة تعيين البرنامج الثابت إلى حالته الأولية ، انقر فوق \"إجراء إعادة " -"الضبط\" (هذا ممكن فقط مع صور squashfs)." +"لإعادة تعيين البرنامج الثابت إلى حالته الأولية ، انقر فوق \"إجراء إعادة الضبط" +"\" (هذا ممكن فقط مع صور squashfs)." #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1501 msgid "Tone" @@ -8961,7 +9012,7 @@ msgstr "تعذر تحديد عنوان IP الخارجي" msgid "Unable to determine upstream interface" msgstr "تعذر تحديد واجهة المنبع" -#: modules/luci-base/luasrc/view/error404.htm:11 +#: modules/luci-base/ucode/template/error404.ut:12 msgid "Unable to dispatch" msgstr "غير قادر على الإرسال" @@ -9016,7 +9067,7 @@ msgstr "تعذر حفظ المحتويات: %s" msgid "Unable to verify PIN" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:32 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:33 msgid "Unavailable Seconds (UAS)" msgstr "الثواني غير المتاحة (UAS)" @@ -9164,7 +9215,7 @@ msgid "" "will be restarted to apply the updated configuration." msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:423 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:428 msgid "Upstream resolvers will be queried in the order of the resolv file." msgstr "" "<abbr title=\"Domain Name System\">DNS</abbr> سيتم الاستعلام عن الخوادم " @@ -9175,7 +9226,7 @@ msgstr "" msgid "Uptime" msgstr "مدة التشغيل" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:344 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:349 msgid "Use <code>/etc/ethers</code>" msgstr "استخدم <code> / etc / ethers </code>" @@ -9290,7 +9341,7 @@ msgstr "استخدم شهادات النظام" msgid "Use system certificates for inner-tunnel" msgstr "استخدم شهادات النظام للنفق الداخلي" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:599 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:670 msgid "" "Use the <em>Add</em> Button to add a new lease entry. The <em>MAC address</" "em> identifies the host, the <em>IPv4 address</em> specifies the fixed " @@ -9350,11 +9401,11 @@ msgstr "" msgid "User key (PEM encoded)" msgstr "مفتاح المستخدم (مشفر PEM)" -#: modules/luci-base/luasrc/view/sysauth.htm:23 +#: modules/luci-base/ucode/template/sysauth.ut:23 #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:112 #: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:101 #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:56 -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/sysauth.htm:18 +#: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/sysauth.ut:13 msgid "Username" msgstr "اسم المستخدم" @@ -9452,7 +9503,7 @@ msgstr "معرف شبكة VXLAN" msgid "VXLANv6 (RFC7348)" msgstr "شبكة محلية افتراضية قابلة للتوسيع VXLANv6 (RFC7348)" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:398 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:403 msgid "" "Validate DNS replies and cache DNSSEC data, requires upstream to support " "DNSSEC." @@ -9489,7 +9540,7 @@ msgstr "بائع" msgid "Vendor Class to send when requesting DHCP" msgstr "إرسال فئة البائع عند طلب DHCP" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:403 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:408 msgid "Verify unsigned domain responses really come from unsigned domains." msgstr "" @@ -9566,6 +9617,10 @@ msgstr "تحذير: هناك تغييرات غير محفوظة ستضيع عن msgid "Weak" msgstr "ضعيف" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:589 +msgid "Weight" +msgstr "" + #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1029 msgid "" "When delegating prefixes to multiple downstreams, interfaces with a higher " @@ -9692,7 +9747,7 @@ msgstr "تم تعطيل الشبكة اللاسلكية" msgid "Wireless network is enabled" msgstr "تم تمكين الشبكة اللاسلكية" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:278 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:280 msgid "Write received DNS queries to syslog." msgstr "اكتب طلبات DNS المستلمة إلى سجل النظام" @@ -9731,8 +9786,16 @@ msgstr "" "إعادة تشغيل الجهاز. <br /> <strong> تحذير: إذا عطلت البرامج النصية الأساسية " "للبادئ مثل \"الشبكة\" ، فقد يتعذر الوصول إلى جهازك! </ strong>" -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:90 -#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:97 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:559 +msgid "You may add multiple records for the same Target." +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:596 +msgid "You may add multiple records for the same domain." +msgstr "" + +#: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/header.ut:78 +#: themes/luci-theme-material/ucode/template/themes/material/header.ut:92 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:73 msgid "" "You must enable JavaScript in your browser or LuCI will not work properly." @@ -9761,7 +9824,17 @@ msgstr "إعدادات ZRam" msgid "ZRam Size" msgstr "حجم ZRam" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:449 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:558 +msgid "_proto: _tcp, _udp, _sctp, _quic, … ." +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:557 +msgid "" +"_service: _sip, _ldap, _imap, _stun, _xmpp-client, … . (Note: while _http is " +"possible, no browsers support SRV records.)" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:454 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:152 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:163 msgid "any" @@ -9872,8 +9945,8 @@ msgstr "على سبيل المثال: - proxy 10.10.10.10" msgid "e.g: dump" msgstr "على سبيل المثال: dump" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:726 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:756 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:797 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:827 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:101 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:148 msgid "expired" @@ -10084,9 +10157,9 @@ msgstr "قيمة فريدة" msgid "unknown" msgstr "غير معروف" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:456 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:724 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:754 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:461 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:795 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:825 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:99 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:146 msgid "unlimited" @@ -10259,7 +10332,7 @@ msgstr "الوقت الصالح (HH: MM: SS)" #: modules/luci-base/htdocs/luci-static/resources/validation.js:450 msgid "value between %d and %d characters" -msgstr "قيمة بين %d و%d حرف" +msgstr "قيمة بين %d و%d حرفًا" #: modules/luci-base/htdocs/luci-static/resources/validation.js:431 msgid "value between %f and %f" @@ -10267,15 +10340,15 @@ msgstr "قيمة بين %f و %f" #: modules/luci-base/htdocs/luci-static/resources/validation.js:435 msgid "value greater or equal to %f" -msgstr "قيمة أكبر أو تساوي %f" +msgstr "قيمة أكبر من أو تساوي %f" #: modules/luci-base/htdocs/luci-static/resources/validation.js:439 msgid "value smaller or equal to %f" -msgstr "قيمة أصغر أو تساوي %f" +msgstr "قيمة أصغر من أو تساوي %f" #: modules/luci-base/htdocs/luci-static/resources/validation.js:444 msgid "value with %d characters" -msgstr "قيمة مع %d حرف" +msgstr "قيمة تحتوي على d% حرفًا" #: modules/luci-base/htdocs/luci-static/resources/validation.js:455 msgid "value with at least %d characters" @@ -10283,16 +10356,16 @@ msgstr "قيمة تحتوي على d% حرفًا على الأقل" #: modules/luci-base/htdocs/luci-static/resources/validation.js:460 msgid "value with at most %d characters" -msgstr "قيمة بحد أقصى d% حرف" +msgstr "قيمة تحتوي على d% حرفًا كحد أقصى" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1401 msgid "weak security" -msgstr "ضعف الأمن" +msgstr "ضعيف الأمن" #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:72 msgctxt "nft unit" msgid "week" -msgstr "" +msgstr "إسبوع" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:47 msgid "yes" @@ -10302,6 +10375,21 @@ msgstr "نعم" msgid "« Back" msgstr "إرجع >>" +#~ msgid "Back to configuration" +#~ msgstr "الرجوع إلى التشكيل" + +#~ msgid "Close list..." +#~ msgstr "إغلاق القائمة ..." + +#~ msgid "Internal Server Error" +#~ msgstr "خطأ في الخادم الداخلي" + +#~ msgid "No files found" +#~ msgstr "لا توجد ملفات" + +#~ msgid "Sorry, the server encountered an unexpected error." +#~ msgstr "عذرا ، واجه الخادم خطأ غير متوقع." + #~ msgid "Do not forward queries that cannot be answered by public resolvers." #~ msgstr "" #~ "لا تقم بإعادة توجيه الطلبات التي لا يمكن الرد عليها بواسطة خوادم الأسماء " diff --git a/modules/luci-base/po/bg/base.po b/modules/luci-base/po/bg/base.po index 41615bf717..6134ba1875 100644 --- a/modules/luci-base/po/bg/base.po +++ b/modules/luci-base/po/bg/base.po @@ -226,6 +226,18 @@ msgstr "<abbr title=\"Router Advertisement\">RA</abbr> MTU" msgid "<abbr title=\"Router Advertisement\">RA</abbr>-Service" msgstr "<abbr title=\"Router Advertisement\">RA</abbr>-Сървис" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:294 +msgid "" +"<code>/#/</code> matches any domain. <code>/example.com/</code> returns " +"NXDOMAIN." +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:295 +msgid "" +"<code>/example.com/#</code> returns NULL addresses (<code>0.0.0.0</code> and " +"<code>::</code>) for example.com and its subdomains." +msgstr "" + #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:87 msgctxt "nft relational \">\" operator expression" msgid "<var>%s</var> greater than <strong>%s</strong>" @@ -384,7 +396,7 @@ msgstr "" msgid "ATM device number" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:36 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:37 msgid "ATU-C System Vendor ID" msgstr "" @@ -394,7 +406,7 @@ msgstr "" msgid "Absent Interface" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:320 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:325 msgid "Accept DNS queries only from hosts whose address is on a local subnet." msgstr "" @@ -533,7 +545,7 @@ msgstr "" msgid "Add key" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:410 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:415 msgid "Add local domain suffix to names served from hosts files." msgstr "" @@ -554,11 +566,11 @@ msgstr "" msgid "Add to Whitelist" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:367 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:372 msgid "Additional hosts files" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:417 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:422 msgid "Additional servers file" msgstr "" @@ -588,7 +600,7 @@ msgstr "" msgid "Address to access local relay bridge" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:289 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:291 msgid "Addresses" msgstr "" @@ -621,7 +633,7 @@ msgstr "" msgid "Aggregate Originator Messages" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:27 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:28 msgid "Aggregate Transmit Power (ACTATP)" msgstr "" @@ -657,17 +669,17 @@ msgstr "" msgid "Alias of \"%s\"" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:427 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:432 msgid "All servers" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:378 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:383 msgid "" "Allocate IP addresses sequentially, starting from the lowest available " "address." msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:377 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:382 msgid "Allocate IPs sequentially" msgstr "" @@ -695,7 +707,7 @@ msgstr "" msgid "Allow listed only" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:306 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:311 msgid "Allow localhost" msgstr "" @@ -739,7 +751,7 @@ msgstr "" msgid "Always on (kernel: default-on)" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:538 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:543 msgid "Always send DHCP Options. Sometimes needed, with e.g. PXELinux." msgstr "" @@ -766,7 +778,7 @@ msgid "An optional, short description for this device" msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1484 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:20 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:21 msgid "Annex" msgstr "" @@ -880,7 +892,7 @@ msgstr "" msgid "Any zone" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:532 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:537 msgid "Apply DHCP Options to this net. (Empty = all clients)." msgstr "" @@ -970,11 +982,11 @@ msgstr "" msgid "Authentication Type" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:265 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:267 msgid "Authoritative" msgstr "" -#: modules/luci-base/luasrc/view/sysauth.htm:17 +#: modules/luci-base/ucode/template/sysauth.ut:17 #: themes/luci-theme-bootstrap/htdocs/luci-static/resources/view/bootstrap/sysauth.js:11 msgid "Authorization Required" msgstr "" @@ -1044,7 +1056,7 @@ msgstr "" msgid "Avoid Bridge Loops" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:388 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:393 msgid "" "Avoid uselessly triggering dial-on-demand links (filters SRV/SOA records and " "names with underscores)." @@ -1079,10 +1091,6 @@ msgstr "" msgid "Back to Overview" msgstr "Обратно към Общ преглед" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:48 -msgid "Back to configuration" -msgstr "Обратно към Конфигуриране" - #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:826 msgid "Back to peer configuration" msgstr "" @@ -1096,7 +1104,6 @@ msgid "Backup / Flash Firmware" msgstr "Архивиране / Флаш на фърмуера" #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:351 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:12 msgid "Backup file list" msgstr "Списък с файлове за архивиране" @@ -1138,7 +1145,6 @@ msgid "Beacon Interval" msgstr "" #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:352 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:46 msgid "" "Below is the determined list of files to backup. It consists of changed " "configuration files marked by opkg, essential base files and the user " @@ -1152,7 +1158,7 @@ msgstr "" msgid "Bind NTP server" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:326 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:331 msgid "Bind dynamically to interfaces rather than wildcard address." msgstr "" "Свързване динамично с интерфейси, а не със wildcard адрес (препоръчва се по " @@ -1170,6 +1176,17 @@ msgstr "" msgid "Bind interface" msgstr "Свързване на интерфейс" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:595 +msgid "" +"Bind service records to a domain name: specify the location of services." +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:556 +msgid "" +"Bind service records to a domain name: specify the location of services. See " +"<a href=\"%s\">RFC2782</a>." +msgstr "" + #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:59 #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:64 #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:64 @@ -1272,6 +1289,10 @@ msgstr "" msgid "CLAT configuration failed" msgstr "" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:574 +msgid "CNAME or fqdn" +msgstr "" + #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/processes.js:72 msgid "CPU usage (%)" msgstr "Използване на процесора (%)" @@ -1521,17 +1542,13 @@ msgstr "" "Затваряне на неактивна връзка след зададения брой секунди, използвайте 0, за " "да запазите връзката" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:49 -msgid "Close list..." -msgstr "Затвори списъка..." - #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:44 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:63 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2184 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:391 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:352 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:355 -#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:72 +#: themes/luci-theme-material/ucode/template/themes/material/header.ut:66 msgid "Collecting data..." msgstr "Събиране данни..." @@ -1566,6 +1583,10 @@ msgstr "" msgid "Compute outgoing checksum (optional)." msgstr "Изчисляване на изходяща контролна сума (по избор)." +#: protocols/luci-proto-nebula/htdocs/luci-static/resources/protocol/nebula.js:40 +msgid "Config File" +msgstr "" + #: modules/luci-base/htdocs/luci-static/resources/ui.js:4375 #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:454 msgid "Configuration" @@ -1605,8 +1626,8 @@ msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:764 msgid "" -"Configures the operation mode of the <abbr title=\"Router " -"Advertisement\">RA</abbr> service on this interface." +"Configures the operation mode of the <abbr title=\"Router Advertisement" +"\">RA</abbr> service on this interface." msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:879 @@ -1783,8 +1804,8 @@ msgstr "" #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/leds.js:59 msgid "" -"Customizes the behaviour of the device <abbr title=\"Light Emitting " -"Diode\">LED</abbr>s if possible." +"Customizes the behaviour of the device <abbr title=\"Light Emitting Diode" +"\">LED</abbr>s if possible." msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:673 @@ -1803,7 +1824,7 @@ msgstr "" msgid "DAE-Secret" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:525 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:530 msgid "DHCP Options" msgstr "" @@ -1843,11 +1864,11 @@ msgstr "" msgid "DNS" msgstr "DNS" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:282 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:284 msgid "DNS forwardings" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:445 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:450 msgid "DNS query port" msgstr "Порт за заявки за DNS" @@ -1855,7 +1876,7 @@ msgstr "Порт за заявки за DNS" msgid "DNS search domains" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:438 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:443 msgid "DNS server port" msgstr "" @@ -1871,11 +1892,11 @@ msgstr "DNS тегло" msgid "DNS-Label / FQDN" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:397 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:402 msgid "DNSSEC" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:402 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:407 msgid "DNSSEC check unsigned" msgstr "" @@ -1888,11 +1909,11 @@ msgid "DS-Lite AFTR address" msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1481 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:44 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:45 msgid "DSL" msgstr "DSL" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:14 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:15 msgid "DSL Status" msgstr "" @@ -1905,12 +1926,12 @@ msgid "DTIM Interval" msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:59 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:700 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:771 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:136 msgid "DUID" msgstr "DUID" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:21 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:22 msgid "Data Rate" msgstr "" @@ -2157,7 +2178,7 @@ msgstr "" msgid "Disassociate On Low Acknowledgement" msgstr "Дисоцииране при ниско потвърждение" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:302 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:307 msgid "" "Discard upstream responses containing <a href=\"%s\">RFC1918</a> addresses." msgstr "" @@ -2204,7 +2225,7 @@ msgstr "Разстояние до най-отдалечения член на м msgid "Distributed ARP Table" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:543 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:548 msgid "" "Dnsmasq instance to which this boot section is bound. If unspecified, the " "section is valid for all dnsmasq instances." @@ -2212,14 +2233,14 @@ msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:246 msgid "" -"Dnsmasq is a lightweight <abbr title=\"Dynamic Host Configuration " -"Protocol\">DHCP</abbr> server and <abbr title=\"Domain Name System\">DNS</" -"abbr> forwarder." +"Dnsmasq is a lightweight <abbr title=\"Dynamic Host Configuration Protocol" +"\">DHCP</abbr> server and <abbr title=\"Domain Name System\">DNS</abbr> " +"forwarder." msgstr "" "Dnsmasq е лек <abbr title=\"Dynamic Host Configuration Protocol\">DHCP</" "abbr> сървър и <abbr title=\"Domain Name System\">DNS</abbr> препращач." -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:414 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:419 msgid "Do not cache negative replies, e.g. for non-existent domains." msgstr "Не кеширайте отрицателни отговори, например за несъществуващи домейни." @@ -2232,15 +2253,15 @@ msgstr "Не кеширайте отрицателни отговори, нап msgid "Do not create host route to peer (optional)." msgstr "Да не се създава маршрут към хост на партньор (по избор)." -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:262 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:264 msgid "Do not forward DNS queries without dots or domain parts." msgstr "Не препращай DNS заявки без точки или домейн части." -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:383 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:388 msgid "Do not forward reverse lookups for local networks." msgstr "Не препращай обратно търсене за локални мрежи." -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:339 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:344 msgid "Do not listen on the specified interfaces." msgstr "Да не се слуша на посочените интерфейси." @@ -2297,15 +2318,16 @@ msgstr "" msgid "Do you want to replace the current keys?" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:593 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:606 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:664 msgid "Domain" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:261 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:263 msgid "Domain required" msgstr "Изисква се домейн" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:311 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:316 msgid "Domain whitelist" msgstr "Бял списък на домейни" @@ -2552,7 +2574,7 @@ msgstr "Разрешаване на NTP клиент" msgid "Enable Single DES" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:480 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:485 msgid "Enable TFTP server" msgstr "Разрешаване на TFTP сървър" @@ -2570,9 +2592,9 @@ msgstr "Активиране на бутона WPS, изисква WPA(2)-PSK/WP #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/uhttpd.js:14 msgid "" -"Enable automatic redirection of <abbr title=\"Hypertext Transfer " -"Protocol\">HTTP</abbr> requests to <abbr title=\"Hypertext Transfer Protocol " -"Secure\">HTTPS</abbr> port." +"Enable automatic redirection of <abbr title=\"Hypertext Transfer Protocol" +"\">HTTP</abbr> requests to <abbr title=\"Hypertext Transfer Protocol Secure" +"\">HTTPS</abbr> port." msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:977 @@ -2636,7 +2658,7 @@ msgstr "Активиране на поддръжката на мултикаст msgid "Enable the DF (Don't Fragment) flag of the encapsulating packets." msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:481 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:486 msgid "Enable the built-in single-instance TFTP server." msgstr "" @@ -2758,7 +2780,7 @@ msgstr "Грешка" msgid "Error getting PublicKey" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:29 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:30 msgid "Errored seconds (ES)" msgstr "" @@ -2780,11 +2802,11 @@ msgstr "На всеки 30 секунди (бавно, 0)" msgid "Every second (fast, 1)" msgstr "Всяка секунда (бързо, 1)" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:338 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:343 msgid "Exclude interfaces" msgstr "Изключване на интерфейси" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:307 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:312 msgid "" "Exempt <code>127.0.0.0/8</code> and <code>::1</code> from rebinding checks, " "e.g. for RBL services." @@ -2794,7 +2816,7 @@ msgstr "" msgid "Existing device" msgstr "Съществуващо устройство" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:409 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:414 #, fuzzy msgid "Expand hosts" msgstr "Разгъване на хостове" @@ -2931,7 +2953,7 @@ msgstr "" msgid "File" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:418 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:423 msgid "" "File listing upstream resolvers, optionally domain-specific, e.g. " "<code>server=1.2.3.4</code>, <code>server=/domain/1.2.3.4</code>." @@ -2941,20 +2963,20 @@ msgstr "" msgid "File not accessible" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:349 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:354 msgid "File to store DHCP lease information." msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:357 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:362 msgid "File with upstream resolvers." msgstr "" #: modules/luci-base/htdocs/luci-static/resources/ui.js:2846 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:507 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:512 msgid "Filename" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:493 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:498 msgid "Filename of the boot image advertised to clients." msgstr "" @@ -2963,11 +2985,11 @@ msgstr "" msgid "Filesystem" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:382 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:387 msgid "Filter private" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:387 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:392 msgid "Filter useless" msgstr "" @@ -3031,7 +3053,7 @@ msgstr "" msgid "Firmware Version" msgstr "Версия на firmware" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:446 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:451 msgid "Fixed source port for outbound DNS queries." msgstr "" @@ -3057,7 +3079,7 @@ msgstr "" msgid "Flashing…" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:537 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:542 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:686 msgid "Force" msgstr "" @@ -3102,16 +3124,16 @@ msgstr "" msgid "Force use of NAT-T" msgstr "" -#: modules/luci-base/luasrc/view/csrftoken.htm:8 +#: modules/luci-base/ucode/template/csrftoken.ut:8 msgid "Form token mismatch" msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:919 msgid "" -"Forward <abbr title=\"Neighbour Discovery Protocol\">NDP</abbr> <abbr " -"title=\"Neighbour Solicitation, Type 135\">NS</abbr> and <abbr " -"title=\"Neighbour Advertisement, Type 136\">NA</abbr> messages between the " -"designated master interface and downstream interfaces." +"Forward <abbr title=\"Neighbour Discovery Protocol\">NDP</abbr> <abbr title=" +"\"Neighbour Solicitation, Type 135\">NS</abbr> and <abbr title=\"Neighbour " +"Advertisement, Type 136\">NA</abbr> messages between the designated master " +"interface and downstream interfaces." msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:770 @@ -3131,7 +3153,7 @@ msgid "" "downstream interfaces." msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:28 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:29 msgid "Forward Error Correction Seconds (FECS)" msgstr "" @@ -3288,15 +3310,15 @@ msgstr "Глобални настройки" msgid "Global network options" msgstr "" -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:82 -#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:89 -#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:74 +#: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/header.ut:70 +#: themes/luci-theme-material/ucode/template/themes/material/header.ut:84 +#: themes/luci-theme-openwrt-2020/ucode/template/themes/openwrt2020/header.ut:67 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:92 msgid "Go to firmware upgrade..." msgstr "" -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:72 -#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:64 +#: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/header.ut:60 +#: themes/luci-theme-openwrt-2020/ucode/template/themes/openwrt2020/header.ut:57 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:82 msgid "Go to password configuration..." msgstr "" @@ -3437,7 +3459,7 @@ msgstr "" msgid "Hang Up" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:33 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:34 msgid "Header Error Code Errors (HEC)" msgstr "" @@ -3488,7 +3510,7 @@ msgstr "" msgid "Host expiry timeout" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:508 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:513 msgid "Host requests this filename from the boot server." msgstr "" @@ -3497,8 +3519,8 @@ msgid "Host-Uniq tag content" msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:38 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:559 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:607 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:630 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:678 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/10_system.js:54 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:87 #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:135 @@ -3513,7 +3535,7 @@ msgstr "" msgid "Hostnames" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:551 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:622 msgid "" "Hostnames are used to bind a domain name to an IP address. This setting is " "redundant for hostnames already configured with static leases, but it can be " @@ -3577,7 +3599,7 @@ msgstr "" msgid "IP Protocol" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:258 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:260 msgid "IP Sets" msgstr "" @@ -3585,7 +3607,7 @@ msgstr "" msgid "IP Type" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:563 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:634 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:178 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:204 msgid "IP address" @@ -3611,15 +3633,15 @@ msgctxt "nft meta l4proto" msgid "IP protocol" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:589 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:660 msgid "IP set" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:295 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:300 msgid "IP sets" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:432 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:437 msgid "IPs to override with NXDOMAIN" msgstr "" @@ -3660,7 +3682,7 @@ msgstr "" #: modules/luci-base/htdocs/luci-static/resources/protocol/static.js:178 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:39 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:665 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:736 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:88 #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:164 msgid "IPv4 address" @@ -3831,7 +3853,7 @@ msgstr "" msgid "IPv6 suffix" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:706 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:777 msgid "IPv6 suffix (hex)" msgstr "<abbr title=\"Internet Protocol Version 6\">IPv6</abbr>-Съфикс(hex)" @@ -3923,13 +3945,13 @@ msgstr "" #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:340 msgid "" "If your physical memory is insufficient unused data can be temporarily " -"swapped to a swap-device resulting in a higher amount of usable <abbr " -"title=\"Random Access Memory\">RAM</abbr>. Be aware that swapping data is a " -"very slow process as the swap-device cannot be accessed with the high " -"datarates of the <abbr title=\"Random Access Memory\">RAM</abbr>." +"swapped to a swap-device resulting in a higher amount of usable <abbr title=" +"\"Random Access Memory\">RAM</abbr>. Be aware that swapping data is a very " +"slow process as the swap-device cannot be accessed with the high datarates " +"of the <abbr title=\"Random Access Memory\">RAM</abbr>." msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:363 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:368 msgid "Ignore <code>/etc/hosts</code>" msgstr "" @@ -3937,7 +3959,7 @@ msgstr "" msgid "Ignore interface" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:352 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:357 msgid "Ignore resolv file" msgstr "" @@ -3985,7 +4007,7 @@ msgid "" "order to avoid broadcast loops that can bring the entire LAN to a standstill." msgstr "" -#: modules/luci-base/luasrc/view/csrftoken.htm:13 +#: modules/luci-base/ucode/template/csrftoken.ut:13 msgid "" "In order to prevent unauthorized access to the system, your request has been " "blocked. Click \"Continue »\" below to return to the previous page." @@ -4094,7 +4116,7 @@ msgstr "" msgid "Install protocol extensions..." msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:542 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:547 msgid "Instance" msgstr "" @@ -4181,10 +4203,6 @@ msgstr "" msgid "Internal" msgstr "" -#: modules/luci-base/luasrc/view/error500.htm:8 -msgid "Internal Server Error" -msgstr "" - #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:285 msgid "Interval For Sending Learning Packets" msgstr "" @@ -4253,8 +4271,8 @@ msgstr "" msgid "Invalid hexadecimal value" msgstr "" -#: modules/luci-base/luasrc/view/sysauth.htm:12 -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/sysauth.htm:37 +#: modules/luci-base/ucode/template/sysauth.ut:12 +#: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/sysauth.ut:32 msgid "Invalid username and/or password! Please try again." msgstr "Невалидно потребителско име и/или парола! Моля, опитайте отново." @@ -4278,8 +4296,8 @@ msgstr "" "Изглежда, че се опитвате да флашнете фирмуеър, което не се побира във флаш " "паметта, моля, проверете файла с изображението!" -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:89 -#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:96 +#: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/header.ut:77 +#: themes/luci-theme-material/ucode/template/themes/material/header.ut:91 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:72 msgid "JavaScript required!" msgstr "" @@ -4411,11 +4429,17 @@ msgstr "" msgid "Language and Style" msgstr "" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:560 +msgid "" +"Larger weights (of the same prio) are given a proportionately higher " +"probability of being selected." +msgstr "" + #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:575 msgid "Last member interval" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:23 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:24 msgid "Latency" msgstr "" @@ -4431,11 +4455,11 @@ msgstr "" msgid "Learn routes" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:348 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:353 msgid "Lease file" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:697 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:768 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:679 msgid "Lease time" msgstr "" @@ -4479,19 +4503,19 @@ msgstr "" msgid "Limit" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:24 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:25 msgid "Line Attenuation (LATN)" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:18 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:19 msgid "Line Mode" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:17 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:18 msgid "Line State" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:19 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:20 msgid "Line Uptime" msgstr "" @@ -4512,12 +4536,12 @@ msgctxt "nft @ll,off,len" msgid "Link layer header bits %d-%d" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:433 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:438 msgid "List of IP addresses to convert into NXDOMAIN responses." msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:296 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:581 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:301 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:652 msgid "List of IP sets to populate with the specified domain IPs." msgstr "" @@ -4543,15 +4567,11 @@ msgstr "" msgid "List of SSH key files for auth" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:312 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:317 msgid "List of domains to allow RFC1918 responses for." msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:290 -msgid "List of domains to force to an IP address." -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:283 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:285 msgid "List of upstream resolvers to forward queries to." msgstr "" @@ -4559,7 +4579,7 @@ msgstr "" msgid "Listen Port" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:332 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:337 msgid "Listen interfaces" msgstr "" @@ -4567,7 +4587,7 @@ msgstr "" msgid "Listen only on the given interface or, if unspecified, on all" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:333 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:338 msgid "" "Listen only on the specified interfaces, and loopback if not excluded " "explicitly." @@ -4577,7 +4597,7 @@ msgstr "" msgid "ListenPort setting is invalid" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:439 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:444 msgid "Listening port for inbound DNS queries." msgstr "" @@ -4604,9 +4624,9 @@ msgid "Loading directory contents…" msgstr "" #: modules/luci-base/htdocs/luci-static/resources/luci.js:1942 -#: modules/luci-base/luasrc/view/view.htm:4 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:12 -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/sysauth.htm:45 +#: modules/luci-base/ucode/template/view.ut:4 +#: modules/luci-mod-status/ucode/template/admin_status/index.ut:12 +#: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/sysauth.ut:40 msgid "Loading view…" msgstr "" @@ -4664,19 +4684,19 @@ msgstr "Местно време" msgid "Local ULA" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:273 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:275 msgid "Local domain" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:274 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:276 msgid "Local domain suffix appended to DHCP names and hosts file entries." msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:269 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:271 msgid "Local server" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:319 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:324 msgid "Local service only" msgstr "" @@ -4684,7 +4704,7 @@ msgstr "" msgid "Local wireguard key" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:392 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:397 msgid "Localise queries" msgstr "" @@ -4696,7 +4716,7 @@ msgstr "" msgid "Log output level" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:277 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:279 msgid "Log queries" msgstr "" @@ -4720,8 +4740,8 @@ msgstr "" msgid "Logical network to which the tunnel will be added (bridged) (optional)." msgstr "" -#: modules/luci-base/luasrc/view/sysauth.htm:38 -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/sysauth.htm:41 +#: modules/luci-base/ucode/template/sysauth.ut:38 +#: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/sysauth.ut:36 msgid "Login" msgstr "" @@ -4733,7 +4753,7 @@ msgstr "" msgid "Loose filtering" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:31 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:32 msgid "Loss of Signal Seconds (LOSS)" msgstr "" @@ -4741,6 +4761,10 @@ msgstr "" msgid "Lowest leased address as offset from the network address." msgstr "" +#: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/footer.ut:12 +msgid "Lua compatibility mode active" +msgstr "" + #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:48 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:83 msgid "MAC" @@ -4765,7 +4789,7 @@ msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:591 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:40 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:619 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:690 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1164 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2177 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:56 @@ -4824,6 +4848,10 @@ msgstr "" msgid "MTU" msgstr "MTU" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:259 +msgid "MX" +msgstr "" + #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:303 msgid "" "Make sure to clone the root filesystem using something like the commands " @@ -4848,21 +4876,21 @@ msgstr "" msgid "Max <abbr title=\"Router Advertisement\">RA</abbr> interval" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:22 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:23 msgid "Max. Attainable Data Rate (ATTNDR)" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:452 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:457 msgid "Max. DHCP leases" msgstr "" "<abbr title=\"maximal\">Max.</abbr> <abbr title=\"Dynamic Host Configuration " "Protocol\">DHCP</abbr> лийзове" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:459 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:464 msgid "Max. EDNS0 packet size" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:466 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:471 msgid "Max. concurrent queries" msgstr "<abbr title=\"maximal\">Макс.</abbr> едновременни заявки" @@ -4874,15 +4902,15 @@ msgstr "" msgid "Maximum allowed Listen Interval" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:453 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:458 msgid "Maximum allowed number of active DHCP leases." msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:467 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:472 msgid "Maximum allowed number of concurrent DNS queries." msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:460 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:465 msgid "Maximum allowed size of EDNS0 UDP packets." msgstr "" @@ -4909,7 +4937,7 @@ msgstr "" msgid "Maximum transmit power" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:389 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:394 msgid "May prevent VoIP or other services from working." msgstr "" @@ -5225,11 +5253,15 @@ msgstr "" msgid "Name of the tunnel device" msgstr "" -#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:46 +#: themes/luci-theme-openwrt-2020/ucode/template/themes/openwrt2020/header.ut:39 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:50 msgid "Navigation" msgstr "" +#: protocols/luci-proto-nebula/htdocs/luci-static/resources/protocol/nebula.js:10 +msgid "Nebula Network" +msgstr "" + #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:653 msgid "Neighbour cache validity" msgstr "" @@ -5265,7 +5297,7 @@ msgstr "" msgid "Network address" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:492 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:497 msgid "Network boot image" msgstr "" @@ -5305,7 +5337,7 @@ msgstr "" msgid "Network interface" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:531 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:536 msgid "Network-ID" msgstr "" @@ -5313,7 +5345,7 @@ msgstr "" msgid "Never" msgstr "Никога" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:270 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:272 msgid "" "Never forward matching domains and subdomains, resolve from DHCP or hosts " "files only." @@ -5361,9 +5393,9 @@ msgstr "" msgid "No RX signal" msgstr "" -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:80 -#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:87 -#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:72 +#: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/header.ut:68 +#: themes/luci-theme-material/ucode/template/themes/material/header.ut:82 +#: themes/luci-theme-openwrt-2020/ucode/template/themes/openwrt2020/header.ut:65 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:90 msgid "" "No changes to settings will be stored and are lost after rebooting. This " @@ -5405,10 +5437,6 @@ msgstr "" msgid "No entries in this directory" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:82 -msgid "No files found" -msgstr "" - #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:833 msgid "" "No fixed interface listening port defined, peers might not be able to " @@ -5444,7 +5472,7 @@ msgstr "" msgid "No more slaves available, can not save interface" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:413 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:418 msgid "No negative cache" msgstr "" @@ -5452,8 +5480,8 @@ msgstr "" msgid "No nftables ruleset loaded." msgstr "" -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:69 -#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:61 +#: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/header.ut:57 +#: themes/luci-theme-openwrt-2020/ucode/template/themes/openwrt2020/header.ut:54 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:79 msgid "No password set!" msgstr "" @@ -5493,7 +5521,7 @@ msgstr "" msgid "Noise" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:26 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:27 msgid "Noise Margin (SNR)" msgstr "" @@ -5501,11 +5529,11 @@ msgstr "" msgid "Noise:" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:34 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:35 msgid "Non Pre-emptive CRC errors (CRC_P)" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:325 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:330 msgid "Non-wildcard" msgstr "" @@ -5520,7 +5548,7 @@ msgstr "" msgid "Normal" msgstr "" -#: modules/luci-base/luasrc/view/error404.htm:8 +#: modules/luci-base/ucode/template/error404.ut:9 msgid "Not Found" msgstr "" @@ -5570,7 +5598,7 @@ msgstr "" msgid "Number of IGMP membership reports" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:474 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:479 msgid "Number of cached DNS entries, 10000 is maximum, 0 is no caching." msgstr "" @@ -5619,7 +5647,7 @@ msgstr "" msgid "On-link" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:672 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:743 msgid "One of hostname or MAC address must be specified!" msgstr "" @@ -5655,7 +5683,6 @@ msgid "Open iptables rules overview…" msgstr "" #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:472 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:19 msgid "Open list..." msgstr "" @@ -5799,18 +5826,23 @@ msgstr "" msgid "Options" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:526 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:531 msgid "" "Options for the Network-ID. (Note: needs also Network-ID.) E.g. " -"\"<code>42,192.168.1.4</code>\" for NTP server, \"<code>3,192.168.4.4</" -"code>\" for default route. <code>0.0.0.0</code> means \"the address of the " -"system running dnsmasq\"." +"\"<code>42,192.168.1.4</code>\" for NTP server, \"<code>3,192.168.4.4</code>" +"\" for default route. <code>0.0.0.0</code> means \"the address of the system " +"running dnsmasq\"." msgstr "" #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:125 msgid "Options:" msgstr "" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:584 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:616 +msgid "Ordinal: lower comes first." +msgstr "" + #: protocols/luci-proto-batman-adv/htdocs/luci-static/resources/protocol/batadv.js:55 msgid "Originator Interval" msgstr "" @@ -6082,13 +6114,13 @@ msgctxt "MACVLAN mode" msgid "Pass-through (Mirror physical device to single MAC VLAN)" msgstr "" -#: modules/luci-base/luasrc/view/sysauth.htm:29 +#: modules/luci-base/ucode/template/sysauth.ut:29 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1690 #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:51 #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:114 #: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:103 #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:58 -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/sysauth.htm:24 +#: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/sysauth.ut:19 msgid "Password" msgstr "" @@ -6259,7 +6291,7 @@ msgstr "" msgid "Pkts." msgstr "" -#: modules/luci-base/luasrc/view/sysauth.htm:19 +#: modules/luci-base/ucode/template/sysauth.ut:19 msgid "Please enter your username and password." msgstr "Моля, въведете потребителско име и парола." @@ -6276,6 +6308,7 @@ msgctxt "Chain hook policy" msgid "Policy: <strong>%h</strong> (%h)" msgstr "" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:579 #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/dropbear.js:21 msgid "Port" msgstr "" @@ -6292,11 +6325,11 @@ msgstr "" msgid "Potential negation of: %s" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:37 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:38 msgid "Power Management Mode" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:35 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:36 msgid "Pre-emptive CRC errors (CRCP_P)" msgstr "" @@ -6369,6 +6402,8 @@ msgid "Primary becomes active slave whenever it comes back up (always, 0)" msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:508 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:584 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:616 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:129 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:197 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:223 @@ -6488,7 +6523,7 @@ msgstr "" msgid "Quality" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:428 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:433 msgid "Query all available upstream resolvers." msgstr "" @@ -6570,7 +6605,7 @@ msgstr "" msgid "Raw hex-encoded bytes. Leave empty unless your ISP require this" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:345 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:350 msgid "Read <code>/etc/ethers</code> to configure the DHCP server." msgstr "" @@ -6586,7 +6621,7 @@ msgstr "" msgid "Reassociation Deadline" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:301 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:306 msgid "Rebind protection" msgstr "" @@ -6671,6 +6706,7 @@ msgid "" msgstr "" #: modules/luci-compat/luasrc/model/network/proto_relay.lua:153 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:611 #: protocols/luci-proto-relay/htdocs/luci-static/resources/protocol/relay.js:39 msgid "Relay" msgstr "" @@ -6761,6 +6797,10 @@ msgstr "" msgid "Required. Base64-encoded private key for this interface." msgstr "" +#: protocols/luci-proto-nebula/htdocs/luci-static/resources/protocol/nebula.js:40 +msgid "Required. Path to the .yml config file for this interface." +msgstr "" + #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:587 msgid "Required. Public key of the WireGuard peer." msgstr "" @@ -6842,7 +6882,7 @@ msgid "Reselection policy for primary slave" msgstr "" #: modules/luci-base/htdocs/luci-static/resources/luci.js:2197 -#: modules/luci-base/luasrc/view/sysauth.htm:39 +#: modules/luci-base/ucode/template/sysauth.ut:39 #: modules/luci-compat/luasrc/view/cbi/delegator.htm:17 #: modules/luci-compat/luasrc/view/cbi/footer.htm:30 #: modules/luci-compat/luasrc/view/cbi/simpleform.htm:66 @@ -6861,10 +6901,14 @@ msgstr "" msgid "Resolv and Hosts Files" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:356 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:361 msgid "Resolv file" msgstr "" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:292 +msgid "Resolve specified FQDNs to an IP." +msgstr "" + #: modules/luci-base/htdocs/luci-static/resources/rpc.js:405 msgid "Resource not found" msgstr "" @@ -6891,7 +6935,7 @@ msgstr "" msgid "Restore backup" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:393 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:398 msgid "" "Return answers to DNS queries matching the subnet from which the query was " "received if multiple IPs are available." @@ -6977,7 +7021,7 @@ msgstr "" msgid "Robustness" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:486 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:491 msgid "" "Root directory for files served via TFTP. <em>Enable TFTP server</em> and " "<em>TFTP server root</em> turn on the TFTP server and serve files from " @@ -7080,6 +7124,11 @@ msgstr "SHA256" msgid "SNR" msgstr "" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:258 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:569 +msgid "SRV" +msgstr "" + #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/dropbear.js:10 #: modules/luci-mod-system/root/usr/share/luci/menu.d/luci-mod-system.json:38 msgid "SSH Access" @@ -7217,11 +7266,11 @@ msgstr "" msgid "Server" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:519 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:524 msgid "Server address" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:513 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:518 msgid "Server name" msgstr "" @@ -7309,7 +7358,7 @@ msgstr "" msgid "Setup routes for proxied IPv6 neighbours." msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:30 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:31 msgid "Severely Errored Seconds (SES)" msgstr "" @@ -7323,7 +7372,6 @@ msgid "Short Preamble" msgstr "" #: 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 msgid "Show current backup file list" msgstr "" @@ -7357,7 +7405,7 @@ msgstr "Сигнал" msgid "Signal / Noise" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:25 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:26 msgid "Signal Attenuation (SATN)" msgstr "" @@ -7374,7 +7422,7 @@ msgstr "" msgid "Size" msgstr "Размер" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:473 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:478 msgid "Size of DNS query cache" msgstr "" @@ -7391,12 +7439,12 @@ msgstr "" msgid "Skip from backup files that are equal to those in /rom" msgstr "" -#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:42 +#: themes/luci-theme-openwrt-2020/ucode/template/themes/openwrt2020/header.ut:35 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:46 msgid "Skip to content" msgstr "" -#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:41 +#: themes/luci-theme-openwrt-2020/ucode/template/themes/openwrt2020/header.ut:34 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:45 msgid "Skip to navigation" msgstr "" @@ -7414,14 +7462,10 @@ msgstr "" msgid "Some fields are invalid, cannot save values!" msgstr "" -#: modules/luci-base/luasrc/view/error404.htm:9 +#: modules/luci-base/ucode/template/error404.ut:10 msgid "Sorry, the object you requested was not found." msgstr "" -#: modules/luci-base/luasrc/view/error500.htm:9 -msgid "Sorry, the server encountered an unexpected error." -msgstr "" - #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:442 msgid "" "Sorry, there is no sysupgrade support present; a new firmware image must be " @@ -7457,7 +7501,7 @@ msgctxt "nft ip sport" msgid "Source port" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:500 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:505 msgid "" "Special <abbr title=\"Preboot eXecution Environment\">PXE</abbr> boot " "options for Dnsmasq." @@ -7825,7 +7869,7 @@ msgstr "" msgid "Static address" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:598 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:669 msgid "" "Static leases are used to assign fixed IP addresses and symbolic hostnames " "to DHCP clients. They are also required for non-dynamic interface " @@ -7839,7 +7883,7 @@ msgstr "" #: modules/luci-base/root/usr/share/luci/menu.d/luci-base.json:16 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:541 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:929 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:9 +#: modules/luci-mod-status/ucode/template/admin_status/index.ut:9 msgid "Status" msgstr "Статус" @@ -7865,7 +7909,7 @@ msgstr "" msgid "Strict filtering" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:422 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:427 msgid "Strict order" msgstr "" @@ -7878,11 +7922,11 @@ msgstr "" msgid "Submit" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:372 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:377 msgid "Suppress logging" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:373 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:378 msgid "Suppress logging of the routine operation for the DHCP protocol." msgstr "" @@ -7935,6 +7979,14 @@ msgstr "" msgid "Sync with browser" msgstr "" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:293 +msgid "Syntax: <code>/fqdn[/fqdn…]/[ipaddr]</code>." +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:569 +msgid "Syntax: <code>_service._proto.example.com</code>." +msgstr "" + #: modules/luci-base/root/usr/share/luci/menu.d/luci-base.json:26 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/10_system.js:17 #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:113 @@ -7960,9 +8012,9 @@ msgstr "" msgid "System log buffer size" msgstr "" -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:79 -#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:86 -#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:71 +#: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/header.ut:67 +#: themes/luci-theme-material/ucode/template/themes/material/header.ut:81 +#: themes/luci-theme-openwrt-2020/ucode/template/themes/openwrt2020/header.ut:64 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:89 msgid "System running in recovery (initramfs) mode." msgstr "" @@ -7991,7 +8043,7 @@ msgstr "" msgid "TCP:" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:485 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:490 msgid "TFTP server root" msgstr "" @@ -8016,6 +8068,7 @@ msgstr "" msgid "Table" msgstr "" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:574 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:56 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:66 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:187 @@ -8086,15 +8139,15 @@ msgid "" "username instead of the user ID!" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:681 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:752 msgid "The IP address %h is already used by another static lease" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:690 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:761 msgid "The IP address is outside of any DHCP pool address range" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:520 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:525 msgid "The IP address of the boot server" msgstr "" @@ -8261,7 +8314,7 @@ msgid "" "to be received and retransmitted which costs airtime)" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:514 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:519 msgid "The hostname of the boot server" msgstr "" @@ -8346,8 +8399,8 @@ msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:139 msgid "" -"The network ports on this device can be combined to several <abbr " -"title=\"Virtual Local Area Network\">VLAN</abbr>s in which computers can " +"The network ports on this device can be combined to several <abbr title=" +"\"Virtual Local Area Network\">VLAN</abbr>s in which computers can " "communicate directly with each other. <abbr title=\"Virtual Local Area " "Network\">VLAN</abbr>s are often used to separate different network " "segments. Often there is by default one Uplink port for a connection to the " @@ -8398,7 +8451,7 @@ msgstr "" msgid "The selected %s mode is incompatible with %s encryption" msgstr "" -#: modules/luci-base/luasrc/view/csrftoken.htm:11 +#: modules/luci-base/ucode/template/csrftoken.ut:11 msgid "The submitted security token is invalid or already expired!" msgstr "" @@ -8468,8 +8521,8 @@ msgid "" "nftables rules is discouraged and may lead to incomplete traffic filtering." msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:746 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:778 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:817 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:849 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:130 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:179 msgid "There are no active leases" @@ -8479,8 +8532,8 @@ msgstr "" msgid "There are no changes to apply" msgstr "" -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:70 -#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:62 +#: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/header.ut:58 +#: themes/luci-theme-openwrt-2020/ucode/template/themes/openwrt2020/header.ut:55 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:80 msgid "" "There is no password set on this router. Please configure a root password to " @@ -8501,7 +8554,6 @@ msgid "This does not look like a valid PEM file" msgstr "" #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:454 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:16 msgid "" "This is a list of shell glob patterns for matching files and directories to " "include during sysupgrade. Modified files in /etc/config/ and certain other " @@ -8537,7 +8589,7 @@ msgid "" "ends with <code>...:2/64</code>" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:266 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:268 msgid "This is the only DHCP server in the local network." msgstr "" @@ -8616,8 +8668,8 @@ msgstr "" #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:440 msgid "" "To fully configure the local WireGuard interface from an existing (e.g. " -"provider supplied) configuration file, use the <strong><a class=\"full-" -"import\" href=\"#\">configuration import</a></strong> instead." +"provider supplied) configuration file, use the <strong><a class=\"full-import" +"\" href=\"#\">configuration import</a></strong> instead." msgstr "" #: modules/luci-base/htdocs/luci-static/resources/luci.js:2674 @@ -8783,7 +8835,7 @@ msgstr "" msgid "Unable to determine upstream interface" msgstr "" -#: modules/luci-base/luasrc/view/error404.htm:11 +#: modules/luci-base/ucode/template/error404.ut:12 msgid "Unable to dispatch" msgstr "" @@ -8838,7 +8890,7 @@ msgstr "" msgid "Unable to verify PIN" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:32 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:33 msgid "Unavailable Seconds (UAS)" msgstr "" @@ -8982,7 +9034,7 @@ msgid "" "will be restarted to apply the updated configuration." msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:423 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:428 msgid "Upstream resolvers will be queried in the order of the resolv file." msgstr "" @@ -8991,7 +9043,7 @@ msgstr "" msgid "Uptime" msgstr "Ъптайм" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:344 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:349 msgid "Use <code>/etc/ethers</code>" msgstr "" @@ -9102,7 +9154,7 @@ msgstr "" msgid "Use system certificates for inner-tunnel" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:599 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:670 msgid "" "Use the <em>Add</em> Button to add a new lease entry. The <em>MAC address</" "em> identifies the host, the <em>IPv4 address</em> specifies the fixed " @@ -9153,11 +9205,11 @@ msgstr "" msgid "User key (PEM encoded)" msgstr "" -#: modules/luci-base/luasrc/view/sysauth.htm:23 +#: modules/luci-base/ucode/template/sysauth.ut:23 #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:112 #: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:101 #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:56 -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/sysauth.htm:18 +#: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/sysauth.ut:13 msgid "Username" msgstr "Потребителско име" @@ -9255,7 +9307,7 @@ msgstr "" msgid "VXLANv6 (RFC7348)" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:398 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:403 msgid "" "Validate DNS replies and cache DNSSEC data, requires upstream to support " "DNSSEC." @@ -9288,7 +9340,7 @@ msgstr "" msgid "Vendor Class to send when requesting DHCP" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:403 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:408 msgid "Verify unsigned domain responses really come from unsigned domains." msgstr "" @@ -9363,6 +9415,10 @@ msgstr "" msgid "Weak" msgstr "" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:589 +msgid "Weight" +msgstr "" + #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1029 msgid "" "When delegating prefixes to multiple downstreams, interfaces with a higher " @@ -9483,7 +9539,7 @@ msgstr "" msgid "Wireless network is enabled" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:278 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:280 msgid "Write received DNS queries to syslog." msgstr "" @@ -9518,8 +9574,16 @@ msgid "" "scripts like \"network\", your device might become inaccessible!</strong>" msgstr "" -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:90 -#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:97 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:559 +msgid "You may add multiple records for the same Target." +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:596 +msgid "You may add multiple records for the same domain." +msgstr "" + +#: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/header.ut:78 +#: themes/luci-theme-material/ucode/template/themes/material/header.ut:92 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:73 msgid "" "You must enable JavaScript in your browser or LuCI will not work properly." @@ -9548,7 +9612,17 @@ msgstr "" msgid "ZRam Size" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:449 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:558 +msgid "_proto: _tcp, _udp, _sctp, _quic, … ." +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:557 +msgid "" +"_service: _sip, _ldap, _imap, _stun, _xmpp-client, … . (Note: while _http is " +"possible, no browsers support SRV records.)" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:454 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:152 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:163 msgid "any" @@ -9659,8 +9733,8 @@ msgstr "" msgid "e.g: dump" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:726 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:756 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:797 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:827 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:101 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:148 msgid "expired" @@ -9871,9 +9945,9 @@ msgstr "" msgid "unknown" msgstr "неизвестен" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:456 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:724 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:754 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:461 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:795 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:825 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:99 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:146 msgid "unlimited" @@ -10089,6 +10163,12 @@ msgstr "да" msgid "« Back" msgstr "" +#~ msgid "Back to configuration" +#~ msgstr "Обратно към Конфигуриране" + +#~ msgid "Close list..." +#~ msgstr "Затвори списъка..." + #, fuzzy #~ msgid "Do not forward queries that cannot be answered by public resolvers." #~ msgstr "" diff --git a/modules/luci-base/po/bn_BD/base.po b/modules/luci-base/po/bn_BD/base.po index f255a59e53..bdcd64b9f8 100644 --- a/modules/luci-base/po/bn_BD/base.po +++ b/modules/luci-base/po/bn_BD/base.po @@ -226,6 +226,18 @@ msgstr "" msgid "<abbr title=\"Router Advertisement\">RA</abbr>-Service" msgstr "" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:294 +msgid "" +"<code>/#/</code> matches any domain. <code>/example.com/</code> returns " +"NXDOMAIN." +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:295 +msgid "" +"<code>/example.com/#</code> returns NULL addresses (<code>0.0.0.0</code> and " +"<code>::</code>) for example.com and its subdomains." +msgstr "" + #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:87 msgctxt "nft relational \">\" operator expression" msgid "<var>%s</var> greater than <strong>%s</strong>" @@ -383,7 +395,7 @@ msgstr "" msgid "ATM device number" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:36 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:37 msgid "ATU-C System Vendor ID" msgstr "" @@ -393,7 +405,7 @@ msgstr "" msgid "Absent Interface" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:320 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:325 msgid "Accept DNS queries only from hosts whose address is on a local subnet." msgstr "" @@ -532,7 +544,7 @@ msgstr "ইন্সট্যান্স যোগ করুন" msgid "Add key" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:410 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:415 msgid "Add local domain suffix to names served from hosts files." msgstr "" @@ -553,11 +565,11 @@ msgstr "" msgid "Add to Whitelist" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:367 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:372 msgid "Additional hosts files" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:417 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:422 msgid "Additional servers file" msgstr "" @@ -587,7 +599,7 @@ msgstr "" msgid "Address to access local relay bridge" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:289 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:291 msgid "Addresses" msgstr "" @@ -620,7 +632,7 @@ msgstr "" msgid "Aggregate Originator Messages" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:27 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:28 msgid "Aggregate Transmit Power (ACTATP)" msgstr "" @@ -656,17 +668,17 @@ msgstr "" msgid "Alias of \"%s\"" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:427 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:432 msgid "All servers" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:378 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:383 msgid "" "Allocate IP addresses sequentially, starting from the lowest available " "address." msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:377 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:382 msgid "Allocate IPs sequentially" msgstr "" @@ -694,7 +706,7 @@ msgstr "" msgid "Allow listed only" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:306 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:311 msgid "Allow localhost" msgstr "" @@ -738,7 +750,7 @@ msgstr "" msgid "Always on (kernel: default-on)" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:538 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:543 msgid "Always send DHCP Options. Sometimes needed, with e.g. PXELinux." msgstr "" @@ -765,7 +777,7 @@ msgid "An optional, short description for this device" msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1484 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:20 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:21 msgid "Annex" msgstr "" @@ -879,7 +891,7 @@ msgstr "" msgid "Any zone" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:532 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:537 msgid "Apply DHCP Options to this net. (Empty = all clients)." msgstr "" @@ -969,11 +981,11 @@ msgstr "" msgid "Authentication Type" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:265 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:267 msgid "Authoritative" msgstr "" -#: modules/luci-base/luasrc/view/sysauth.htm:17 +#: modules/luci-base/ucode/template/sysauth.ut:17 #: themes/luci-theme-bootstrap/htdocs/luci-static/resources/view/bootstrap/sysauth.js:11 msgid "Authorization Required" msgstr "" @@ -1043,7 +1055,7 @@ msgstr "" msgid "Avoid Bridge Loops" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:388 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:393 msgid "" "Avoid uselessly triggering dial-on-demand links (filters SRV/SOA records and " "names with underscores)." @@ -1078,10 +1090,6 @@ msgstr "" msgid "Back to Overview" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:48 -msgid "Back to configuration" -msgstr "" - #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:826 msgid "Back to peer configuration" msgstr "" @@ -1095,7 +1103,6 @@ msgid "Backup / Flash Firmware" msgstr "" #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:351 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:12 msgid "Backup file list" msgstr "" @@ -1137,7 +1144,6 @@ msgid "Beacon Interval" msgstr "" #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:352 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:46 msgid "" "Below is the determined list of files to backup. It consists of changed " "configuration files marked by opkg, essential base files and the user " @@ -1148,7 +1154,7 @@ msgstr "" msgid "Bind NTP server" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:326 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:331 msgid "Bind dynamically to interfaces rather than wildcard address." msgstr "" @@ -1164,6 +1170,17 @@ msgstr "" msgid "Bind interface" msgstr "" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:595 +msgid "" +"Bind service records to a domain name: specify the location of services." +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:556 +msgid "" +"Bind service records to a domain name: specify the location of services. See " +"<a href=\"%s\">RFC2782</a>." +msgstr "" + #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:59 #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:64 #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:64 @@ -1266,6 +1283,10 @@ msgstr "" msgid "CLAT configuration failed" msgstr "" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:574 +msgid "CNAME or fqdn" +msgstr "" + #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/processes.js:72 msgid "CPU usage (%)" msgstr "" @@ -1503,17 +1524,13 @@ msgid "" "persist connection" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:49 -msgid "Close list..." -msgstr "" - #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:44 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:63 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2184 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:391 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:352 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:355 -#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:72 +#: themes/luci-theme-material/ucode/template/themes/material/header.ut:66 msgid "Collecting data..." msgstr "" @@ -1548,6 +1565,10 @@ msgstr "" msgid "Compute outgoing checksum (optional)." msgstr "" +#: protocols/luci-proto-nebula/htdocs/luci-static/resources/protocol/nebula.js:40 +msgid "Config File" +msgstr "" + #: modules/luci-base/htdocs/luci-static/resources/ui.js:4375 #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:454 msgid "Configuration" @@ -1587,8 +1608,8 @@ msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:764 msgid "" -"Configures the operation mode of the <abbr title=\"Router " -"Advertisement\">RA</abbr> service on this interface." +"Configures the operation mode of the <abbr title=\"Router Advertisement" +"\">RA</abbr> service on this interface." msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:879 @@ -1761,8 +1782,8 @@ msgstr "" #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/leds.js:59 msgid "" -"Customizes the behaviour of the device <abbr title=\"Light Emitting " -"Diode\">LED</abbr>s if possible." +"Customizes the behaviour of the device <abbr title=\"Light Emitting Diode" +"\">LED</abbr>s if possible." msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:673 @@ -1781,7 +1802,7 @@ msgstr "" msgid "DAE-Secret" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:525 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:530 msgid "DHCP Options" msgstr "" @@ -1821,11 +1842,11 @@ msgstr "" msgid "DNS" msgstr "ডিএনএস" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:282 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:284 msgid "DNS forwardings" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:445 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:450 msgid "DNS query port" msgstr "" @@ -1833,7 +1854,7 @@ msgstr "" msgid "DNS search domains" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:438 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:443 msgid "DNS server port" msgstr "" @@ -1849,11 +1870,11 @@ msgstr "" msgid "DNS-Label / FQDN" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:397 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:402 msgid "DNSSEC" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:402 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:407 msgid "DNSSEC check unsigned" msgstr "" @@ -1866,11 +1887,11 @@ msgid "DS-Lite AFTR address" msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1481 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:44 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:45 msgid "DSL" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:14 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:15 msgid "DSL Status" msgstr "" @@ -1883,12 +1904,12 @@ msgid "DTIM Interval" msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:59 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:700 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:771 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:136 msgid "DUID" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:21 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:22 msgid "Data Rate" msgstr "" @@ -2131,7 +2152,7 @@ msgstr "" msgid "Disassociate On Low Acknowledgement" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:302 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:307 msgid "" "Discard upstream responses containing <a href=\"%s\">RFC1918</a> addresses." msgstr "" @@ -2177,7 +2198,7 @@ msgstr "" msgid "Distributed ARP Table" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:543 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:548 msgid "" "Dnsmasq instance to which this boot section is bound. If unspecified, the " "section is valid for all dnsmasq instances." @@ -2185,12 +2206,12 @@ msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:246 msgid "" -"Dnsmasq is a lightweight <abbr title=\"Dynamic Host Configuration " -"Protocol\">DHCP</abbr> server and <abbr title=\"Domain Name System\">DNS</" -"abbr> forwarder." +"Dnsmasq is a lightweight <abbr title=\"Dynamic Host Configuration Protocol" +"\">DHCP</abbr> server and <abbr title=\"Domain Name System\">DNS</abbr> " +"forwarder." msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:414 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:419 msgid "Do not cache negative replies, e.g. for non-existent domains." msgstr "" @@ -2202,15 +2223,15 @@ msgstr "" msgid "Do not create host route to peer (optional)." msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:262 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:264 msgid "Do not forward DNS queries without dots or domain parts." msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:383 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:388 msgid "Do not forward reverse lookups for local networks." msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:339 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:344 msgid "Do not listen on the specified interfaces." msgstr "" @@ -2263,15 +2284,16 @@ msgstr "" msgid "Do you want to replace the current keys?" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:593 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:606 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:664 msgid "Domain" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:261 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:263 msgid "Domain required" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:311 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:316 msgid "Domain whitelist" msgstr "" @@ -2505,7 +2527,7 @@ msgstr "" msgid "Enable Single DES" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:480 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:485 msgid "Enable TFTP server" msgstr "" @@ -2523,9 +2545,9 @@ msgstr "" #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/uhttpd.js:14 msgid "" -"Enable automatic redirection of <abbr title=\"Hypertext Transfer " -"Protocol\">HTTP</abbr> requests to <abbr title=\"Hypertext Transfer Protocol " -"Secure\">HTTPS</abbr> port." +"Enable automatic redirection of <abbr title=\"Hypertext Transfer Protocol" +"\">HTTP</abbr> requests to <abbr title=\"Hypertext Transfer Protocol Secure" +"\">HTTPS</abbr> port." msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:977 @@ -2588,7 +2610,7 @@ msgstr "" msgid "Enable the DF (Don't Fragment) flag of the encapsulating packets." msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:481 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:486 msgid "Enable the built-in single-instance TFTP server." msgstr "" @@ -2705,7 +2727,7 @@ msgstr "ভুল" msgid "Error getting PublicKey" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:29 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:30 msgid "Errored seconds (ES)" msgstr "" @@ -2727,11 +2749,11 @@ msgstr "" msgid "Every second (fast, 1)" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:338 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:343 msgid "Exclude interfaces" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:307 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:312 msgid "" "Exempt <code>127.0.0.0/8</code> and <code>::1</code> from rebinding checks, " "e.g. for RBL services." @@ -2741,7 +2763,7 @@ msgstr "" msgid "Existing device" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:409 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:414 msgid "Expand hosts" msgstr "" @@ -2875,7 +2897,7 @@ msgstr "" msgid "File" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:418 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:423 msgid "" "File listing upstream resolvers, optionally domain-specific, e.g. " "<code>server=1.2.3.4</code>, <code>server=/domain/1.2.3.4</code>." @@ -2885,20 +2907,20 @@ msgstr "" msgid "File not accessible" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:349 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:354 msgid "File to store DHCP lease information." msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:357 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:362 msgid "File with upstream resolvers." msgstr "" #: modules/luci-base/htdocs/luci-static/resources/ui.js:2846 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:507 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:512 msgid "Filename" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:493 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:498 msgid "Filename of the boot image advertised to clients." msgstr "" @@ -2907,11 +2929,11 @@ msgstr "" msgid "Filesystem" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:382 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:387 msgid "Filter private" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:387 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:392 msgid "Filter useless" msgstr "" @@ -2975,7 +2997,7 @@ msgstr "" msgid "Firmware Version" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:446 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:451 msgid "Fixed source port for outbound DNS queries." msgstr "" @@ -3001,7 +3023,7 @@ msgstr "" msgid "Flashing…" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:537 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:542 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:686 msgid "Force" msgstr "" @@ -3046,16 +3068,16 @@ msgstr "" msgid "Force use of NAT-T" msgstr "" -#: modules/luci-base/luasrc/view/csrftoken.htm:8 +#: modules/luci-base/ucode/template/csrftoken.ut:8 msgid "Form token mismatch" msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:919 msgid "" -"Forward <abbr title=\"Neighbour Discovery Protocol\">NDP</abbr> <abbr " -"title=\"Neighbour Solicitation, Type 135\">NS</abbr> and <abbr " -"title=\"Neighbour Advertisement, Type 136\">NA</abbr> messages between the " -"designated master interface and downstream interfaces." +"Forward <abbr title=\"Neighbour Discovery Protocol\">NDP</abbr> <abbr title=" +"\"Neighbour Solicitation, Type 135\">NS</abbr> and <abbr title=\"Neighbour " +"Advertisement, Type 136\">NA</abbr> messages between the designated master " +"interface and downstream interfaces." msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:770 @@ -3075,7 +3097,7 @@ msgid "" "downstream interfaces." msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:28 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:29 msgid "Forward Error Correction Seconds (FECS)" msgstr "" @@ -3232,15 +3254,15 @@ msgstr "" msgid "Global network options" msgstr "" -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:82 -#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:89 -#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:74 +#: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/header.ut:70 +#: themes/luci-theme-material/ucode/template/themes/material/header.ut:84 +#: themes/luci-theme-openwrt-2020/ucode/template/themes/openwrt2020/header.ut:67 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:92 msgid "Go to firmware upgrade..." msgstr "" -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:72 -#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:64 +#: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/header.ut:60 +#: themes/luci-theme-openwrt-2020/ucode/template/themes/openwrt2020/header.ut:57 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:82 msgid "Go to password configuration..." msgstr "" @@ -3381,7 +3403,7 @@ msgstr "" msgid "Hang Up" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:33 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:34 msgid "Header Error Code Errors (HEC)" msgstr "" @@ -3432,7 +3454,7 @@ msgstr "" msgid "Host expiry timeout" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:508 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:513 msgid "Host requests this filename from the boot server." msgstr "" @@ -3441,8 +3463,8 @@ msgid "Host-Uniq tag content" msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:38 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:559 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:607 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:630 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:678 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/10_system.js:54 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:87 #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:135 @@ -3457,7 +3479,7 @@ msgstr "" msgid "Hostnames" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:551 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:622 msgid "" "Hostnames are used to bind a domain name to an IP address. This setting is " "redundant for hostnames already configured with static leases, but it can be " @@ -3521,7 +3543,7 @@ msgstr "" msgid "IP Protocol" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:258 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:260 msgid "IP Sets" msgstr "" @@ -3529,7 +3551,7 @@ msgstr "" msgid "IP Type" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:563 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:634 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:178 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:204 msgid "IP address" @@ -3555,15 +3577,15 @@ msgctxt "nft meta l4proto" msgid "IP protocol" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:589 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:660 msgid "IP set" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:295 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:300 msgid "IP sets" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:432 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:437 msgid "IPs to override with NXDOMAIN" msgstr "" @@ -3604,7 +3626,7 @@ msgstr "" #: modules/luci-base/htdocs/luci-static/resources/protocol/static.js:178 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:39 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:665 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:736 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:88 #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:164 msgid "IPv4 address" @@ -3775,7 +3797,7 @@ msgstr "" msgid "IPv6 suffix" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:706 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:777 msgid "IPv6 suffix (hex)" msgstr "" @@ -3867,13 +3889,13 @@ msgstr "" #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:340 msgid "" "If your physical memory is insufficient unused data can be temporarily " -"swapped to a swap-device resulting in a higher amount of usable <abbr " -"title=\"Random Access Memory\">RAM</abbr>. Be aware that swapping data is a " -"very slow process as the swap-device cannot be accessed with the high " -"datarates of the <abbr title=\"Random Access Memory\">RAM</abbr>." +"swapped to a swap-device resulting in a higher amount of usable <abbr title=" +"\"Random Access Memory\">RAM</abbr>. Be aware that swapping data is a very " +"slow process as the swap-device cannot be accessed with the high datarates " +"of the <abbr title=\"Random Access Memory\">RAM</abbr>." msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:363 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:368 msgid "Ignore <code>/etc/hosts</code>" msgstr "" @@ -3881,7 +3903,7 @@ msgstr "" msgid "Ignore interface" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:352 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:357 msgid "Ignore resolv file" msgstr "" @@ -3929,7 +3951,7 @@ msgid "" "order to avoid broadcast loops that can bring the entire LAN to a standstill." msgstr "" -#: modules/luci-base/luasrc/view/csrftoken.htm:13 +#: modules/luci-base/ucode/template/csrftoken.ut:13 msgid "" "In order to prevent unauthorized access to the system, your request has been " "blocked. Click \"Continue »\" below to return to the previous page." @@ -4038,7 +4060,7 @@ msgstr "" msgid "Install protocol extensions..." msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:542 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:547 msgid "Instance" msgstr "" @@ -4125,10 +4147,6 @@ msgstr "ইন্টারফেস" msgid "Internal" msgstr "" -#: modules/luci-base/luasrc/view/error500.htm:8 -msgid "Internal Server Error" -msgstr "" - #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:285 msgid "Interval For Sending Learning Packets" msgstr "" @@ -4197,8 +4215,8 @@ msgstr "" msgid "Invalid hexadecimal value" msgstr "" -#: modules/luci-base/luasrc/view/sysauth.htm:12 -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/sysauth.htm:37 +#: modules/luci-base/ucode/template/sysauth.ut:12 +#: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/sysauth.ut:32 msgid "Invalid username and/or password! Please try again." msgstr "" @@ -4220,8 +4238,8 @@ msgid "" "flash memory, please verify the image file!" msgstr "" -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:89 -#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:96 +#: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/header.ut:77 +#: themes/luci-theme-material/ucode/template/themes/material/header.ut:91 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:72 msgid "JavaScript required!" msgstr "" @@ -4353,11 +4371,17 @@ msgstr "" msgid "Language and Style" msgstr "" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:560 +msgid "" +"Larger weights (of the same prio) are given a proportionately higher " +"probability of being selected." +msgstr "" + #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:575 msgid "Last member interval" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:23 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:24 msgid "Latency" msgstr "" @@ -4373,11 +4397,11 @@ msgstr "" msgid "Learn routes" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:348 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:353 msgid "Lease file" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:697 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:768 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:679 msgid "Lease time" msgstr "" @@ -4421,19 +4445,19 @@ msgstr "" msgid "Limit" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:24 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:25 msgid "Line Attenuation (LATN)" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:18 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:19 msgid "Line Mode" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:17 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:18 msgid "Line State" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:19 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:20 msgid "Line Uptime" msgstr "" @@ -4454,12 +4478,12 @@ msgctxt "nft @ll,off,len" msgid "Link layer header bits %d-%d" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:433 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:438 msgid "List of IP addresses to convert into NXDOMAIN responses." msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:296 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:581 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:301 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:652 msgid "List of IP sets to populate with the specified domain IPs." msgstr "" @@ -4485,15 +4509,11 @@ msgstr "" msgid "List of SSH key files for auth" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:312 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:317 msgid "List of domains to allow RFC1918 responses for." msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:290 -msgid "List of domains to force to an IP address." -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:283 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:285 msgid "List of upstream resolvers to forward queries to." msgstr "" @@ -4501,7 +4521,7 @@ msgstr "" msgid "Listen Port" msgstr "শোনার পোর্ট" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:332 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:337 msgid "Listen interfaces" msgstr "" @@ -4509,7 +4529,7 @@ msgstr "" msgid "Listen only on the given interface or, if unspecified, on all" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:333 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:338 msgid "" "Listen only on the specified interfaces, and loopback if not excluded " "explicitly." @@ -4519,7 +4539,7 @@ msgstr "" msgid "ListenPort setting is invalid" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:439 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:444 msgid "Listening port for inbound DNS queries." msgstr "" @@ -4546,9 +4566,9 @@ msgid "Loading directory contents…" msgstr "" #: modules/luci-base/htdocs/luci-static/resources/luci.js:1942 -#: modules/luci-base/luasrc/view/view.htm:4 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:12 -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/sysauth.htm:45 +#: modules/luci-base/ucode/template/view.ut:4 +#: modules/luci-mod-status/ucode/template/admin_status/index.ut:12 +#: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/sysauth.ut:40 msgid "Loading view…" msgstr "" @@ -4606,19 +4626,19 @@ msgstr "" msgid "Local ULA" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:273 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:275 msgid "Local domain" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:274 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:276 msgid "Local domain suffix appended to DHCP names and hosts file entries." msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:269 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:271 msgid "Local server" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:319 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:324 msgid "Local service only" msgstr "" @@ -4626,7 +4646,7 @@ msgstr "" msgid "Local wireguard key" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:392 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:397 msgid "Localise queries" msgstr "" @@ -4638,7 +4658,7 @@ msgstr "" msgid "Log output level" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:277 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:279 msgid "Log queries" msgstr "" @@ -4662,8 +4682,8 @@ msgstr "" msgid "Logical network to which the tunnel will be added (bridged) (optional)." msgstr "" -#: modules/luci-base/luasrc/view/sysauth.htm:38 -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/sysauth.htm:41 +#: modules/luci-base/ucode/template/sysauth.ut:38 +#: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/sysauth.ut:36 msgid "Login" msgstr "" @@ -4675,7 +4695,7 @@ msgstr "" msgid "Loose filtering" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:31 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:32 msgid "Loss of Signal Seconds (LOSS)" msgstr "" @@ -4683,6 +4703,10 @@ msgstr "" msgid "Lowest leased address as offset from the network address." msgstr "" +#: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/footer.ut:12 +msgid "Lua compatibility mode active" +msgstr "" + #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:48 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:83 msgid "MAC" @@ -4707,7 +4731,7 @@ msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:591 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:40 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:619 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:690 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1164 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2177 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:56 @@ -4766,6 +4790,10 @@ msgstr "" msgid "MTU" msgstr "" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:259 +msgid "MX" +msgstr "" + #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:303 msgid "" "Make sure to clone the root filesystem using something like the commands " @@ -4790,19 +4818,19 @@ msgstr "" msgid "Max <abbr title=\"Router Advertisement\">RA</abbr> interval" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:22 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:23 msgid "Max. Attainable Data Rate (ATTNDR)" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:452 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:457 msgid "Max. DHCP leases" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:459 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:464 msgid "Max. EDNS0 packet size" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:466 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:471 msgid "Max. concurrent queries" msgstr "" @@ -4814,15 +4842,15 @@ msgstr "" msgid "Maximum allowed Listen Interval" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:453 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:458 msgid "Maximum allowed number of active DHCP leases." msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:467 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:472 msgid "Maximum allowed number of concurrent DNS queries." msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:460 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:465 msgid "Maximum allowed size of EDNS0 UDP packets." msgstr "" @@ -4849,7 +4877,7 @@ msgstr "" msgid "Maximum transmit power" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:389 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:394 msgid "May prevent VoIP or other services from working." msgstr "" @@ -5163,11 +5191,15 @@ msgstr "" msgid "Name of the tunnel device" msgstr "" -#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:46 +#: themes/luci-theme-openwrt-2020/ucode/template/themes/openwrt2020/header.ut:39 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:50 msgid "Navigation" msgstr "" +#: protocols/luci-proto-nebula/htdocs/luci-static/resources/protocol/nebula.js:10 +msgid "Nebula Network" +msgstr "" + #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:653 msgid "Neighbour cache validity" msgstr "" @@ -5203,7 +5235,7 @@ msgstr "" msgid "Network address" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:492 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:497 msgid "Network boot image" msgstr "" @@ -5243,7 +5275,7 @@ msgstr "" msgid "Network interface" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:531 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:536 msgid "Network-ID" msgstr "" @@ -5251,7 +5283,7 @@ msgstr "" msgid "Never" msgstr "কখনও না" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:270 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:272 msgid "" "Never forward matching domains and subdomains, resolve from DHCP or hosts " "files only." @@ -5299,9 +5331,9 @@ msgstr "" msgid "No RX signal" msgstr "" -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:80 -#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:87 -#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:72 +#: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/header.ut:68 +#: themes/luci-theme-material/ucode/template/themes/material/header.ut:82 +#: themes/luci-theme-openwrt-2020/ucode/template/themes/openwrt2020/header.ut:65 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:90 msgid "" "No changes to settings will be stored and are lost after rebooting. This " @@ -5343,10 +5375,6 @@ msgstr "" msgid "No entries in this directory" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:82 -msgid "No files found" -msgstr "" - #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:833 msgid "" "No fixed interface listening port defined, peers might not be able to " @@ -5382,7 +5410,7 @@ msgstr "" msgid "No more slaves available, can not save interface" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:413 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:418 msgid "No negative cache" msgstr "" @@ -5390,8 +5418,8 @@ msgstr "" msgid "No nftables ruleset loaded." msgstr "" -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:69 -#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:61 +#: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/header.ut:57 +#: themes/luci-theme-openwrt-2020/ucode/template/themes/openwrt2020/header.ut:54 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:79 msgid "No password set!" msgstr "" @@ -5431,7 +5459,7 @@ msgstr "" msgid "Noise" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:26 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:27 msgid "Noise Margin (SNR)" msgstr "" @@ -5439,11 +5467,11 @@ msgstr "" msgid "Noise:" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:34 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:35 msgid "Non Pre-emptive CRC errors (CRC_P)" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:325 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:330 msgid "Non-wildcard" msgstr "" @@ -5458,7 +5486,7 @@ msgstr "" msgid "Normal" msgstr "" -#: modules/luci-base/luasrc/view/error404.htm:8 +#: modules/luci-base/ucode/template/error404.ut:9 msgid "Not Found" msgstr "" @@ -5508,7 +5536,7 @@ msgstr "" msgid "Number of IGMP membership reports" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:474 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:479 msgid "Number of cached DNS entries, 10000 is maximum, 0 is no caching." msgstr "" @@ -5557,7 +5585,7 @@ msgstr "" msgid "On-link" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:672 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:743 msgid "One of hostname or MAC address must be specified!" msgstr "" @@ -5593,7 +5621,6 @@ msgid "Open iptables rules overview…" msgstr "" #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:472 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:19 msgid "Open list..." msgstr "" @@ -5737,18 +5764,23 @@ msgstr "" msgid "Options" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:526 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:531 msgid "" "Options for the Network-ID. (Note: needs also Network-ID.) E.g. " -"\"<code>42,192.168.1.4</code>\" for NTP server, \"<code>3,192.168.4.4</" -"code>\" for default route. <code>0.0.0.0</code> means \"the address of the " -"system running dnsmasq\"." +"\"<code>42,192.168.1.4</code>\" for NTP server, \"<code>3,192.168.4.4</code>" +"\" for default route. <code>0.0.0.0</code> means \"the address of the system " +"running dnsmasq\"." msgstr "" #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:125 msgid "Options:" msgstr "" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:584 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:616 +msgid "Ordinal: lower comes first." +msgstr "" + #: protocols/luci-proto-batman-adv/htdocs/luci-static/resources/protocol/batadv.js:55 msgid "Originator Interval" msgstr "" @@ -6020,13 +6052,13 @@ msgctxt "MACVLAN mode" msgid "Pass-through (Mirror physical device to single MAC VLAN)" msgstr "" -#: modules/luci-base/luasrc/view/sysauth.htm:29 +#: modules/luci-base/ucode/template/sysauth.ut:29 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1690 #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:51 #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:114 #: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:103 #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:58 -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/sysauth.htm:24 +#: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/sysauth.ut:19 msgid "Password" msgstr "" @@ -6197,7 +6229,7 @@ msgstr "" msgid "Pkts." msgstr "" -#: modules/luci-base/luasrc/view/sysauth.htm:19 +#: modules/luci-base/ucode/template/sysauth.ut:19 msgid "Please enter your username and password." msgstr "" @@ -6214,6 +6246,7 @@ msgctxt "Chain hook policy" msgid "Policy: <strong>%h</strong> (%h)" msgstr "" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:579 #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/dropbear.js:21 msgid "Port" msgstr "পোর্ট" @@ -6230,11 +6263,11 @@ msgstr "" msgid "Potential negation of: %s" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:37 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:38 msgid "Power Management Mode" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:35 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:36 msgid "Pre-emptive CRC errors (CRCP_P)" msgstr "" @@ -6307,6 +6340,8 @@ msgid "Primary becomes active slave whenever it comes back up (always, 0)" msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:508 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:584 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:616 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:129 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:197 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:223 @@ -6422,7 +6457,7 @@ msgstr "" msgid "Quality" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:428 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:433 msgid "Query all available upstream resolvers." msgstr "" @@ -6504,7 +6539,7 @@ msgstr "" msgid "Raw hex-encoded bytes. Leave empty unless your ISP require this" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:345 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:350 msgid "Read <code>/etc/ethers</code> to configure the DHCP server." msgstr "" @@ -6520,7 +6555,7 @@ msgstr "" msgid "Reassociation Deadline" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:301 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:306 msgid "Rebind protection" msgstr "" @@ -6605,6 +6640,7 @@ msgid "" msgstr "" #: modules/luci-compat/luasrc/model/network/proto_relay.lua:153 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:611 #: protocols/luci-proto-relay/htdocs/luci-static/resources/protocol/relay.js:39 msgid "Relay" msgstr "" @@ -6695,6 +6731,10 @@ msgstr "" msgid "Required. Base64-encoded private key for this interface." msgstr "" +#: protocols/luci-proto-nebula/htdocs/luci-static/resources/protocol/nebula.js:40 +msgid "Required. Path to the .yml config file for this interface." +msgstr "" + #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:587 msgid "Required. Public key of the WireGuard peer." msgstr "" @@ -6776,7 +6816,7 @@ msgid "Reselection policy for primary slave" msgstr "" #: modules/luci-base/htdocs/luci-static/resources/luci.js:2197 -#: modules/luci-base/luasrc/view/sysauth.htm:39 +#: modules/luci-base/ucode/template/sysauth.ut:39 #: modules/luci-compat/luasrc/view/cbi/delegator.htm:17 #: modules/luci-compat/luasrc/view/cbi/footer.htm:30 #: modules/luci-compat/luasrc/view/cbi/simpleform.htm:66 @@ -6795,10 +6835,14 @@ msgstr "" msgid "Resolv and Hosts Files" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:356 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:361 msgid "Resolv file" msgstr "" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:292 +msgid "Resolve specified FQDNs to an IP." +msgstr "" + #: modules/luci-base/htdocs/luci-static/resources/rpc.js:405 msgid "Resource not found" msgstr "" @@ -6825,7 +6869,7 @@ msgstr "" msgid "Restore backup" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:393 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:398 msgid "" "Return answers to DNS queries matching the subnet from which the query was " "received if multiple IPs are available." @@ -6911,7 +6955,7 @@ msgstr "" msgid "Robustness" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:486 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:491 msgid "" "Root directory for files served via TFTP. <em>Enable TFTP server</em> and " "<em>TFTP server root</em> turn on the TFTP server and serve files from " @@ -7014,6 +7058,11 @@ msgstr "" msgid "SNR" msgstr "" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:258 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:569 +msgid "SRV" +msgstr "" + #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/dropbear.js:10 #: modules/luci-mod-system/root/usr/share/luci/menu.d/luci-mod-system.json:38 msgid "SSH Access" @@ -7151,11 +7200,11 @@ msgstr "" msgid "Server" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:519 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:524 msgid "Server address" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:513 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:518 msgid "Server name" msgstr "" @@ -7243,7 +7292,7 @@ msgstr "সেটিংস" msgid "Setup routes for proxied IPv6 neighbours." msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:30 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:31 msgid "Severely Errored Seconds (SES)" msgstr "" @@ -7257,7 +7306,6 @@ msgid "Short Preamble" msgstr "" #: 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 msgid "Show current backup file list" msgstr "" @@ -7291,7 +7339,7 @@ msgstr "সংকেত" msgid "Signal / Noise" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:25 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:26 msgid "Signal Attenuation (SATN)" msgstr "" @@ -7308,7 +7356,7 @@ msgstr "" msgid "Size" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:473 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:478 msgid "Size of DNS query cache" msgstr "" @@ -7325,12 +7373,12 @@ msgstr "" msgid "Skip from backup files that are equal to those in /rom" msgstr "" -#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:42 +#: themes/luci-theme-openwrt-2020/ucode/template/themes/openwrt2020/header.ut:35 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:46 msgid "Skip to content" msgstr "" -#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:41 +#: themes/luci-theme-openwrt-2020/ucode/template/themes/openwrt2020/header.ut:34 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:45 msgid "Skip to navigation" msgstr "" @@ -7348,14 +7396,10 @@ msgstr "" msgid "Some fields are invalid, cannot save values!" msgstr "" -#: modules/luci-base/luasrc/view/error404.htm:9 +#: modules/luci-base/ucode/template/error404.ut:10 msgid "Sorry, the object you requested was not found." msgstr "" -#: modules/luci-base/luasrc/view/error500.htm:9 -msgid "Sorry, the server encountered an unexpected error." -msgstr "" - #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:442 msgid "" "Sorry, there is no sysupgrade support present; a new firmware image must be " @@ -7391,7 +7435,7 @@ msgctxt "nft ip sport" msgid "Source port" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:500 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:505 msgid "" "Special <abbr title=\"Preboot eXecution Environment\">PXE</abbr> boot " "options for Dnsmasq." @@ -7759,7 +7803,7 @@ msgstr "" msgid "Static address" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:598 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:669 msgid "" "Static leases are used to assign fixed IP addresses and symbolic hostnames " "to DHCP clients. They are also required for non-dynamic interface " @@ -7773,7 +7817,7 @@ msgstr "" #: modules/luci-base/root/usr/share/luci/menu.d/luci-base.json:16 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:541 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:929 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:9 +#: modules/luci-mod-status/ucode/template/admin_status/index.ut:9 msgid "Status" msgstr "অবস্থা" @@ -7799,7 +7843,7 @@ msgstr "" msgid "Strict filtering" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:422 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:427 msgid "Strict order" msgstr "" @@ -7812,11 +7856,11 @@ msgstr "" msgid "Submit" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:372 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:377 msgid "Suppress logging" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:373 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:378 msgid "Suppress logging of the routine operation for the DHCP protocol." msgstr "" @@ -7869,6 +7913,14 @@ msgstr "" msgid "Sync with browser" msgstr "" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:293 +msgid "Syntax: <code>/fqdn[/fqdn…]/[ipaddr]</code>." +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:569 +msgid "Syntax: <code>_service._proto.example.com</code>." +msgstr "" + #: modules/luci-base/root/usr/share/luci/menu.d/luci-base.json:26 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/10_system.js:17 #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:113 @@ -7894,9 +7946,9 @@ msgstr "" msgid "System log buffer size" msgstr "" -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:79 -#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:86 -#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:71 +#: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/header.ut:67 +#: themes/luci-theme-material/ucode/template/themes/material/header.ut:81 +#: themes/luci-theme-openwrt-2020/ucode/template/themes/openwrt2020/header.ut:64 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:89 msgid "System running in recovery (initramfs) mode." msgstr "" @@ -7925,7 +7977,7 @@ msgstr "" msgid "TCP:" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:485 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:490 msgid "TFTP server root" msgstr "" @@ -7950,6 +8002,7 @@ msgstr "" msgid "Table" msgstr "" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:574 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:56 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:66 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:187 @@ -8020,15 +8073,15 @@ msgid "" "username instead of the user ID!" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:681 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:752 msgid "The IP address %h is already used by another static lease" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:690 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:761 msgid "The IP address is outside of any DHCP pool address range" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:520 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:525 msgid "The IP address of the boot server" msgstr "" @@ -8193,7 +8246,7 @@ msgid "" "to be received and retransmitted which costs airtime)" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:514 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:519 msgid "The hostname of the boot server" msgstr "" @@ -8278,8 +8331,8 @@ msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:139 msgid "" -"The network ports on this device can be combined to several <abbr " -"title=\"Virtual Local Area Network\">VLAN</abbr>s in which computers can " +"The network ports on this device can be combined to several <abbr title=" +"\"Virtual Local Area Network\">VLAN</abbr>s in which computers can " "communicate directly with each other. <abbr title=\"Virtual Local Area " "Network\">VLAN</abbr>s are often used to separate different network " "segments. Often there is by default one Uplink port for a connection to the " @@ -8330,7 +8383,7 @@ msgstr "" msgid "The selected %s mode is incompatible with %s encryption" msgstr "" -#: modules/luci-base/luasrc/view/csrftoken.htm:11 +#: modules/luci-base/ucode/template/csrftoken.ut:11 msgid "The submitted security token is invalid or already expired!" msgstr "" @@ -8400,8 +8453,8 @@ msgid "" "nftables rules is discouraged and may lead to incomplete traffic filtering." msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:746 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:778 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:817 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:849 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:130 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:179 msgid "There are no active leases" @@ -8411,8 +8464,8 @@ msgstr "" msgid "There are no changes to apply" msgstr "" -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:70 -#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:62 +#: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/header.ut:58 +#: themes/luci-theme-openwrt-2020/ucode/template/themes/openwrt2020/header.ut:55 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:80 msgid "" "There is no password set on this router. Please configure a root password to " @@ -8433,7 +8486,6 @@ msgid "This does not look like a valid PEM file" msgstr "" #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:454 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:16 msgid "" "This is a list of shell glob patterns for matching files and directories to " "include during sysupgrade. Modified files in /etc/config/ and certain other " @@ -8469,7 +8521,7 @@ msgid "" "ends with <code>...:2/64</code>" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:266 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:268 msgid "This is the only DHCP server in the local network." msgstr "" @@ -8548,8 +8600,8 @@ msgstr "" #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:440 msgid "" "To fully configure the local WireGuard interface from an existing (e.g. " -"provider supplied) configuration file, use the <strong><a class=\"full-" -"import\" href=\"#\">configuration import</a></strong> instead." +"provider supplied) configuration file, use the <strong><a class=\"full-import" +"\" href=\"#\">configuration import</a></strong> instead." msgstr "" #: modules/luci-base/htdocs/luci-static/resources/luci.js:2674 @@ -8711,7 +8763,7 @@ msgstr "" msgid "Unable to determine upstream interface" msgstr "" -#: modules/luci-base/luasrc/view/error404.htm:11 +#: modules/luci-base/ucode/template/error404.ut:12 msgid "Unable to dispatch" msgstr "" @@ -8766,7 +8818,7 @@ msgstr "" msgid "Unable to verify PIN" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:32 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:33 msgid "Unavailable Seconds (UAS)" msgstr "" @@ -8910,7 +8962,7 @@ msgid "" "will be restarted to apply the updated configuration." msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:423 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:428 msgid "Upstream resolvers will be queried in the order of the resolv file." msgstr "" @@ -8919,7 +8971,7 @@ msgstr "" msgid "Uptime" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:344 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:349 msgid "Use <code>/etc/ethers</code>" msgstr "" @@ -9030,7 +9082,7 @@ msgstr "" msgid "Use system certificates for inner-tunnel" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:599 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:670 msgid "" "Use the <em>Add</em> Button to add a new lease entry. The <em>MAC address</" "em> identifies the host, the <em>IPv4 address</em> specifies the fixed " @@ -9081,11 +9133,11 @@ msgstr "" msgid "User key (PEM encoded)" msgstr "" -#: modules/luci-base/luasrc/view/sysauth.htm:23 +#: modules/luci-base/ucode/template/sysauth.ut:23 #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:112 #: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:101 #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:56 -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/sysauth.htm:18 +#: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/sysauth.ut:13 msgid "Username" msgstr "" @@ -9183,7 +9235,7 @@ msgstr "" msgid "VXLANv6 (RFC7348)" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:398 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:403 msgid "" "Validate DNS replies and cache DNSSEC data, requires upstream to support " "DNSSEC." @@ -9216,7 +9268,7 @@ msgstr "" msgid "Vendor Class to send when requesting DHCP" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:403 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:408 msgid "Verify unsigned domain responses really come from unsigned domains." msgstr "" @@ -9291,6 +9343,10 @@ msgstr "সতর্কতা: অসংরক্ষিত পরিবর্ত msgid "Weak" msgstr "" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:589 +msgid "Weight" +msgstr "" + #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1029 msgid "" "When delegating prefixes to multiple downstreams, interfaces with a higher " @@ -9411,7 +9467,7 @@ msgstr "" msgid "Wireless network is enabled" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:278 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:280 msgid "Write received DNS queries to syslog." msgstr "" @@ -9446,8 +9502,16 @@ msgid "" "scripts like \"network\", your device might become inaccessible!</strong>" msgstr "" -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:90 -#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:97 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:559 +msgid "You may add multiple records for the same Target." +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:596 +msgid "You may add multiple records for the same domain." +msgstr "" + +#: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/header.ut:78 +#: themes/luci-theme-material/ucode/template/themes/material/header.ut:92 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:73 msgid "" "You must enable JavaScript in your browser or LuCI will not work properly." @@ -9476,7 +9540,17 @@ msgstr "" msgid "ZRam Size" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:449 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:558 +msgid "_proto: _tcp, _udp, _sctp, _quic, … ." +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:557 +msgid "" +"_service: _sip, _ldap, _imap, _stun, _xmpp-client, … . (Note: while _http is " +"possible, no browsers support SRV records.)" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:454 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:152 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:163 msgid "any" @@ -9587,8 +9661,8 @@ msgstr "" msgid "e.g: dump" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:726 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:756 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:797 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:827 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:101 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:148 msgid "expired" @@ -9799,9 +9873,9 @@ msgstr "" msgid "unknown" msgstr "অজ্ঞাত" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:456 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:724 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:754 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:461 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:795 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:825 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:99 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:146 msgid "unlimited" diff --git a/modules/luci-base/po/ca/base.po b/modules/luci-base/po/ca/base.po index 637b9d93f2..7754e40f1f 100644 --- a/modules/luci-base/po/ca/base.po +++ b/modules/luci-base/po/ca/base.po @@ -234,6 +234,18 @@ msgstr "MTU <abbr title=\"Router Advertisement\">RA</abbr>" msgid "<abbr title=\"Router Advertisement\">RA</abbr>-Service" msgstr "Servei <abbr title=\"Router Advertisement\">RA</abbr>" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:294 +msgid "" +"<code>/#/</code> matches any domain. <code>/example.com/</code> returns " +"NXDOMAIN." +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:295 +msgid "" +"<code>/example.com/#</code> returns NULL addresses (<code>0.0.0.0</code> and " +"<code>::</code>) for example.com and its subdomains." +msgstr "" + #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:87 msgctxt "nft relational \">\" operator expression" msgid "<var>%s</var> greater than <strong>%s</strong>" @@ -394,7 +406,7 @@ msgstr "" msgid "ATM device number" msgstr "Número de dispositiu ATM" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:36 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:37 msgid "ATU-C System Vendor ID" msgstr "Identificador del proveïdor del sistema ATU-C" @@ -404,7 +416,7 @@ msgstr "Identificador del proveïdor del sistema ATU-C" msgid "Absent Interface" msgstr "Interfície absent" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:320 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:325 msgid "Accept DNS queries only from hosts whose address is on a local subnet." msgstr "" "Accepta peticions DNS només de dispositius l'adreça dels quals sigui d'una " @@ -545,7 +557,7 @@ msgstr "Afegeix una instància" msgid "Add key" msgstr "Afegeix una clau" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:410 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:415 msgid "Add local domain suffix to names served from hosts files." msgstr "" "Afegeix el sufix de domini local als noms servits des dels fitxers de hosts" @@ -567,11 +579,11 @@ msgstr "Afegeix a la llista negra" msgid "Add to Whitelist" msgstr "Afegeix a la llista blanca" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:367 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:372 msgid "Additional hosts files" msgstr "Fitxers de Hosts addicionals" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:417 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:422 msgid "Additional servers file" msgstr "Fitxer de servidors addicionals" @@ -601,7 +613,7 @@ msgstr "" msgid "Address to access local relay bridge" msgstr "Adreça per accedir al relay bridge local" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:289 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:291 msgid "Addresses" msgstr "Adreces" @@ -634,7 +646,7 @@ msgstr "Temps d’envelliment" msgid "Aggregate Originator Messages" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:27 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:28 #, fuzzy msgid "Aggregate Transmit Power (ACTATP)" msgstr "Potència de transmissió agregada (ACTATP)" @@ -673,11 +685,11 @@ msgstr "Àlies d'interfície" msgid "Alias of \"%s\"" msgstr "Àlies de \"%s\"" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:427 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:432 msgid "All servers" msgstr "Tots els servidors" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:378 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:383 msgid "" "Allocate IP addresses sequentially, starting from the lowest available " "address." @@ -685,7 +697,7 @@ msgstr "" "Assigna les adreces IP seqüencialment, començant per l'adreça més baixa " "disponible." -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:377 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:382 msgid "Allocate IPs sequentially" msgstr "Assigna les adreces IP seqüencialment" @@ -715,7 +727,7 @@ msgstr "Permet velocitats obsoletes de 802.11b" msgid "Allow listed only" msgstr "Permet només les llistades" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:306 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:311 msgid "Allow localhost" msgstr "Permetre el localhost" @@ -761,7 +773,7 @@ msgstr "Sempre apagat (kernel: none)" msgid "Always on (kernel: default-on)" msgstr "Sempre encès (kernel: default-on)" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:538 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:543 msgid "Always send DHCP Options. Sometimes needed, with e.g. PXELinux." msgstr "" @@ -788,7 +800,7 @@ msgid "An optional, short description for this device" msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1484 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:20 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:21 msgid "Annex" msgstr "Annex" @@ -902,7 +914,7 @@ msgstr "" msgid "Any zone" msgstr "Qualsevol zona" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:532 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:537 msgid "Apply DHCP Options to this net. (Empty = all clients)." msgstr "" @@ -992,11 +1004,11 @@ msgstr "Autenticació" msgid "Authentication Type" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:265 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:267 msgid "Authoritative" msgstr "Autoritzada" -#: modules/luci-base/luasrc/view/sysauth.htm:17 +#: modules/luci-base/ucode/template/sysauth.ut:17 #: themes/luci-theme-bootstrap/htdocs/luci-static/resources/view/bootstrap/sysauth.js:11 msgid "Authorization Required" msgstr "Es requereix autenticació" @@ -1066,7 +1078,7 @@ msgstr "Mitjana:" msgid "Avoid Bridge Loops" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:388 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:393 msgid "" "Avoid uselessly triggering dial-on-demand links (filters SRV/SOA records and " "names with underscores)." @@ -1101,10 +1113,6 @@ msgstr "Enrere" msgid "Back to Overview" msgstr "Enrere al Resum" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:48 -msgid "Back to configuration" -msgstr "Enrere a la configuració" - #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:826 msgid "Back to peer configuration" msgstr "" @@ -1118,7 +1126,6 @@ msgid "Backup / Flash Firmware" msgstr "Còpia de seguretat i microprogramari" #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:351 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:12 msgid "Backup file list" msgstr "Llista de còpies de seguretat" @@ -1160,7 +1167,6 @@ msgid "Beacon Interval" msgstr "" #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:352 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:46 msgid "" "Below is the determined list of files to backup. It consists of changed " "configuration files marked by opkg, essential base files and the user " @@ -1174,7 +1180,7 @@ msgstr "" msgid "Bind NTP server" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:326 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:331 msgid "Bind dynamically to interfaces rather than wildcard address." msgstr "" @@ -1190,6 +1196,17 @@ msgstr "" msgid "Bind interface" msgstr "" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:595 +msgid "" +"Bind service records to a domain name: specify the location of services." +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:556 +msgid "" +"Bind service records to a domain name: specify the location of services. See " +"<a href=\"%s\">RFC2782</a>." +msgstr "" + #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:59 #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:64 #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:64 @@ -1292,6 +1309,10 @@ msgstr "" msgid "CLAT configuration failed" msgstr "" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:574 +msgid "CNAME or fqdn" +msgstr "" + #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/processes.js:72 msgid "CPU usage (%)" msgstr "Ús de CPU (%)" @@ -1540,17 +1561,13 @@ msgid "" "persist connection" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:49 -msgid "Close list..." -msgstr "Tanca la llista..." - #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:44 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:63 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2184 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:391 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:352 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:355 -#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:72 +#: themes/luci-theme-material/ucode/template/themes/material/header.ut:66 msgid "Collecting data..." msgstr "S’estan recollint dades…" @@ -1585,6 +1602,10 @@ msgstr "" msgid "Compute outgoing checksum (optional)." msgstr "" +#: protocols/luci-proto-nebula/htdocs/luci-static/resources/protocol/nebula.js:40 +msgid "Config File" +msgstr "" + #: modules/luci-base/htdocs/luci-static/resources/ui.js:4375 #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:454 msgid "Configuration" @@ -1624,8 +1645,8 @@ msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:764 msgid "" -"Configures the operation mode of the <abbr title=\"Router " -"Advertisement\">RA</abbr> service on this interface." +"Configures the operation mode of the <abbr title=\"Router Advertisement" +"\">RA</abbr> service on this interface." msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:879 @@ -1798,8 +1819,8 @@ msgstr "" #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/leds.js:59 msgid "" -"Customizes the behaviour of the device <abbr title=\"Light Emitting " -"Diode\">LED</abbr>s if possible." +"Customizes the behaviour of the device <abbr title=\"Light Emitting Diode" +"\">LED</abbr>s if possible." msgstr "" "Personalitza el comportament dels <abbr title=\"Light Emitting Diode\">LED</" "abbr>s del dispositiu, si és possible." @@ -1820,7 +1841,7 @@ msgstr "" msgid "DAE-Secret" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:525 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:530 msgid "DHCP Options" msgstr "" @@ -1860,11 +1881,11 @@ msgstr "" msgid "DNS" msgstr "DNS" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:282 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:284 msgid "DNS forwardings" msgstr "Reenviaments DNS" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:445 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:450 msgid "DNS query port" msgstr "Port de consulta <abbr title=\"Domain Name System\">DNS</abbr> " @@ -1872,7 +1893,7 @@ msgstr "Port de consulta <abbr title=\"Domain Name System\">DNS</abbr> " msgid "DNS search domains" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:438 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:443 msgid "DNS server port" msgstr "Port del servidor <abbr title=\"Domain Name System\">DNS</abbr>" @@ -1888,12 +1909,12 @@ msgstr "" msgid "DNS-Label / FQDN" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:397 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:402 #, fuzzy msgid "DNSSEC" msgstr "DNSSEC" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:402 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:407 msgid "DNSSEC check unsigned" msgstr "" @@ -1906,11 +1927,11 @@ msgid "DS-Lite AFTR address" msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1481 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:44 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:45 msgid "DSL" msgstr "DSL" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:14 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:15 msgid "DSL Status" msgstr "" @@ -1923,12 +1944,12 @@ msgid "DTIM Interval" msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:59 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:700 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:771 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:136 msgid "DUID" msgstr "DUID" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:21 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:22 msgid "Data Rate" msgstr "" @@ -2173,7 +2194,7 @@ msgstr "" msgid "Disassociate On Low Acknowledgement" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:302 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:307 msgid "" "Discard upstream responses containing <a href=\"%s\">RFC1918</a> addresses." msgstr "Descarta les respostes RFC1918 des de dalt." @@ -2219,7 +2240,7 @@ msgstr "Distància al membre de la xarxa més allunyat en metres." msgid "Distributed ARP Table" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:543 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:548 msgid "" "Dnsmasq instance to which this boot section is bound. If unspecified, the " "section is valid for all dnsmasq instances." @@ -2227,16 +2248,16 @@ msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:246 msgid "" -"Dnsmasq is a lightweight <abbr title=\"Dynamic Host Configuration " -"Protocol\">DHCP</abbr> server and <abbr title=\"Domain Name System\">DNS</" -"abbr> forwarder." +"Dnsmasq is a lightweight <abbr title=\"Dynamic Host Configuration Protocol" +"\">DHCP</abbr> server and <abbr title=\"Domain Name System\">DNS</abbr> " +"forwarder." msgstr "" -"El Dnsmasq és un servidor <abbr title=\"Dynamic Host Configuration " -"Protocol\">DHCP</abbr> combinat i un reenviador de <abbr title=\"Domain Name " -"System\">DNS</abbr> per tallafocs <abbr title=\"Network Address " -"Translation\">NAT</abbr>" +"El Dnsmasq és un servidor <abbr title=\"Dynamic Host Configuration Protocol" +"\">DHCP</abbr> combinat i un reenviador de <abbr title=\"Domain Name System" +"\">DNS</abbr> per tallafocs <abbr title=\"Network Address Translation\">NAT</" +"abbr>" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:414 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:419 msgid "Do not cache negative replies, e.g. for non-existent domains." msgstr "" @@ -2248,17 +2269,17 @@ msgstr "" msgid "Do not create host route to peer (optional)." msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:262 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:264 msgid "Do not forward DNS queries without dots or domain parts." msgstr "" "No reenviïs les peticions <abbr title=\"Domain Name System\">DNS</abbr> " "sense el nom <abbr title=\"Domain Name System\">DNS</abbr>" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:383 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:388 msgid "Do not forward reverse lookups for local networks." msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:339 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:344 msgid "Do not listen on the specified interfaces." msgstr "" @@ -2311,15 +2332,16 @@ msgstr "" msgid "Do you want to replace the current keys?" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:593 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:606 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:664 msgid "Domain" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:261 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:263 msgid "Domain required" msgstr "Es requereix un domini" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:311 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:316 msgid "Domain whitelist" msgstr "" @@ -2556,7 +2578,7 @@ msgstr "Habilita el client NTP" msgid "Enable Single DES" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:480 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:485 msgid "Enable TFTP server" msgstr "Habilita el servidor TFTP" @@ -2574,9 +2596,9 @@ msgstr "" #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/uhttpd.js:14 msgid "" -"Enable automatic redirection of <abbr title=\"Hypertext Transfer " -"Protocol\">HTTP</abbr> requests to <abbr title=\"Hypertext Transfer Protocol " -"Secure\">HTTPS</abbr> port." +"Enable automatic redirection of <abbr title=\"Hypertext Transfer Protocol" +"\">HTTP</abbr> requests to <abbr title=\"Hypertext Transfer Protocol Secure" +"\">HTTPS</abbr> port." msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:977 @@ -2639,7 +2661,7 @@ msgstr "" msgid "Enable the DF (Don't Fragment) flag of the encapsulating packets." msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:481 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:486 msgid "Enable the built-in single-instance TFTP server." msgstr "" @@ -2756,7 +2778,7 @@ msgstr "Error" msgid "Error getting PublicKey" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:29 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:30 msgid "Errored seconds (ES)" msgstr "" @@ -2778,11 +2800,11 @@ msgstr "" msgid "Every second (fast, 1)" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:338 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:343 msgid "Exclude interfaces" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:307 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:312 msgid "" "Exempt <code>127.0.0.0/8</code> and <code>::1</code> from rebinding checks, " "e.g. for RBL services." @@ -2792,7 +2814,7 @@ msgstr "Permet respostes del rang 127.0.0.0/8, p.e. per serveis RBL" msgid "Existing device" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:409 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:414 msgid "Expand hosts" msgstr "" @@ -2926,7 +2948,7 @@ msgstr "" msgid "File" msgstr "Fitxer" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:418 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:423 msgid "" "File listing upstream resolvers, optionally domain-specific, e.g. " "<code>server=1.2.3.4</code>, <code>server=/domain/1.2.3.4</code>." @@ -2936,22 +2958,22 @@ msgstr "" msgid "File not accessible" msgstr "No hi ha accés al fitxer" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:349 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:354 msgid "File to store DHCP lease information." msgstr "" -"fitxer on els leases de <abbr title=\"Dynamic Host Configuration " -"Protocol\">DHCP</abbr> s'emmagatzemaran" +"fitxer on els leases de <abbr title=\"Dynamic Host Configuration Protocol" +"\">DHCP</abbr> s'emmagatzemaran" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:357 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:362 msgid "File with upstream resolvers." msgstr "fitxer <abbr title=\"Domain Name System\">DNS</abbr> local" #: modules/luci-base/htdocs/luci-static/resources/ui.js:2846 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:507 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:512 msgid "Filename" msgstr "Nom de fitxer" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:493 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:498 msgid "Filename of the boot image advertised to clients." msgstr "Nom de fitxer de la imatge d'inici que es publica als clients" @@ -2960,11 +2982,11 @@ msgstr "Nom de fitxer de la imatge d'inici que es publica als clients" msgid "Filesystem" msgstr "Sistema de fitxers" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:382 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:387 msgid "Filter private" msgstr "Filtra privat" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:387 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:392 msgid "Filter useless" msgstr "Filtra els no útils" @@ -3028,7 +3050,7 @@ msgstr "" msgid "Firmware Version" msgstr "Versió de microprogramari" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:446 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:451 msgid "Fixed source port for outbound DNS queries." msgstr "" @@ -3054,7 +3076,7 @@ msgstr "Operacions a la memòria flaix" msgid "Flashing…" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:537 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:542 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:686 msgid "Force" msgstr "Força" @@ -3099,16 +3121,16 @@ msgstr "" msgid "Force use of NAT-T" msgstr "" -#: modules/luci-base/luasrc/view/csrftoken.htm:8 +#: modules/luci-base/ucode/template/csrftoken.ut:8 msgid "Form token mismatch" msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:919 msgid "" -"Forward <abbr title=\"Neighbour Discovery Protocol\">NDP</abbr> <abbr " -"title=\"Neighbour Solicitation, Type 135\">NS</abbr> and <abbr " -"title=\"Neighbour Advertisement, Type 136\">NA</abbr> messages between the " -"designated master interface and downstream interfaces." +"Forward <abbr title=\"Neighbour Discovery Protocol\">NDP</abbr> <abbr title=" +"\"Neighbour Solicitation, Type 135\">NS</abbr> and <abbr title=\"Neighbour " +"Advertisement, Type 136\">NA</abbr> messages between the designated master " +"interface and downstream interfaces." msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:770 @@ -3128,7 +3150,7 @@ msgid "" "downstream interfaces." msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:28 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:29 msgid "Forward Error Correction Seconds (FECS)" msgstr "" @@ -3287,15 +3309,15 @@ msgstr "Configuració global" msgid "Global network options" msgstr "" -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:82 -#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:89 -#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:74 +#: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/header.ut:70 +#: themes/luci-theme-material/ucode/template/themes/material/header.ut:84 +#: themes/luci-theme-openwrt-2020/ucode/template/themes/openwrt2020/header.ut:67 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:92 msgid "Go to firmware upgrade..." msgstr "" -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:72 -#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:64 +#: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/header.ut:60 +#: themes/luci-theme-openwrt-2020/ucode/template/themes/openwrt2020/header.ut:57 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:82 msgid "Go to password configuration..." msgstr "Vés a la configuració de contrasenya" @@ -3436,7 +3458,7 @@ msgstr "" msgid "Hang Up" msgstr "Penja" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:33 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:34 msgid "Header Error Code Errors (HEC)" msgstr "" @@ -3490,7 +3512,7 @@ msgstr "Amfitrió" msgid "Host expiry timeout" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:508 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:513 msgid "Host requests this filename from the boot server." msgstr "" @@ -3499,8 +3521,8 @@ msgid "Host-Uniq tag content" msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:38 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:559 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:607 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:630 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:678 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/10_system.js:54 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:87 #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:135 @@ -3515,7 +3537,7 @@ msgstr "" msgid "Hostnames" msgstr "Noms de màquina" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:551 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:622 msgid "" "Hostnames are used to bind a domain name to an IP address. This setting is " "redundant for hostnames already configured with static leases, but it can be " @@ -3579,7 +3601,7 @@ msgstr "" msgid "IP Protocol" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:258 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:260 msgid "IP Sets" msgstr "" @@ -3587,7 +3609,7 @@ msgstr "" msgid "IP Type" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:563 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:634 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:178 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:204 msgid "IP address" @@ -3613,15 +3635,15 @@ msgctxt "nft meta l4proto" msgid "IP protocol" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:589 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:660 msgid "IP set" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:295 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:300 msgid "IP sets" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:432 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:437 msgid "IPs to override with NXDOMAIN" msgstr "Substitució dels dominis NX falsos" @@ -3662,7 +3684,7 @@ msgstr "" #: modules/luci-base/htdocs/luci-static/resources/protocol/static.js:178 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:39 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:665 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:736 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:88 #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:164 msgid "IPv4 address" @@ -3833,7 +3855,7 @@ msgstr "" msgid "IPv6 suffix" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:706 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:777 msgid "IPv6 suffix (hex)" msgstr "Sufix (hex)<abbr title=\"Internet Protocol Version 6\">IPv6</abbr>-" @@ -3925,10 +3947,10 @@ msgstr "" #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:340 msgid "" "If your physical memory is insufficient unused data can be temporarily " -"swapped to a swap-device resulting in a higher amount of usable <abbr " -"title=\"Random Access Memory\">RAM</abbr>. Be aware that swapping data is a " -"very slow process as the swap-device cannot be accessed with the high " -"datarates of the <abbr title=\"Random Access Memory\">RAM</abbr>." +"swapped to a swap-device resulting in a higher amount of usable <abbr title=" +"\"Random Access Memory\">RAM</abbr>. Be aware that swapping data is a very " +"slow process as the swap-device cannot be accessed with the high datarates " +"of the <abbr title=\"Random Access Memory\">RAM</abbr>." msgstr "" "Si la teva memòria física és insuficient, les dades no usades es poden " "intercanviar a un dispositiu d'intercanvi, pel qual hi haurà una quantitat " @@ -3937,7 +3959,7 @@ msgstr "" "es pot accedir al dispositiu d'intercanvi amb unes taxes tan altes com les " "de la <abbr title=\"Random Access Memory\">RAM</abbr>." -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:363 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:368 msgid "Ignore <code>/etc/hosts</code>" msgstr "Ignora <code>/etc/hosts</code>" @@ -3945,7 +3967,7 @@ msgstr "Ignora <code>/etc/hosts</code>" msgid "Ignore interface" msgstr "Ignora la interfície" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:352 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:357 msgid "Ignore resolv file" msgstr "Ignora el fitxer de resolució" @@ -3993,7 +4015,7 @@ msgid "" "order to avoid broadcast loops that can bring the entire LAN to a standstill." msgstr "" -#: modules/luci-base/luasrc/view/csrftoken.htm:13 +#: modules/luci-base/ucode/template/csrftoken.ut:13 msgid "" "In order to prevent unauthorized access to the system, your request has been " "blocked. Click \"Continue »\" below to return to the previous page." @@ -4102,7 +4124,7 @@ msgstr "" msgid "Install protocol extensions..." msgstr "Instal·la extensions de protocol" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:542 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:547 msgid "Instance" msgstr "" @@ -4189,10 +4211,6 @@ msgstr "Interfícies" msgid "Internal" msgstr "Intern" -#: modules/luci-base/luasrc/view/error500.htm:8 -msgid "Internal Server Error" -msgstr "Error de servidor intern" - #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:285 msgid "Interval For Sending Learning Packets" msgstr "" @@ -4261,8 +4279,8 @@ msgstr "" msgid "Invalid hexadecimal value" msgstr "" -#: modules/luci-base/luasrc/view/sysauth.htm:12 -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/sysauth.htm:37 +#: modules/luci-base/ucode/template/sysauth.ut:12 +#: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/sysauth.ut:32 msgid "Invalid username and/or password! Please try again." msgstr "Usuari i/o contrasenya invàlids! Si us plau prova-ho de nou." @@ -4287,8 +4305,8 @@ msgstr "" "Sembla que intentes actualitzar una imatge que no hi cap a la memòria flaix, " "si us plau verifica el fitxer d'imatge!" -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:89 -#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:96 +#: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/header.ut:77 +#: themes/luci-theme-material/ucode/template/themes/material/header.ut:91 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:72 msgid "JavaScript required!" msgstr "Es requereix JavaScript!" @@ -4420,11 +4438,17 @@ msgstr "Llengua" msgid "Language and Style" msgstr "Llengua i estil" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:560 +msgid "" +"Larger weights (of the same prio) are given a proportionately higher " +"probability of being selected." +msgstr "" + #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:575 msgid "Last member interval" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:23 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:24 msgid "Latency" msgstr "Latència" @@ -4440,11 +4464,11 @@ msgstr "Aprèn" msgid "Learn routes" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:348 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:353 msgid "Lease file" msgstr "Fitxer d'arrendament" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:697 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:768 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:679 msgid "Lease time" msgstr "" @@ -4488,19 +4512,19 @@ msgstr "Llegenda:" msgid "Limit" msgstr "Límit" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:24 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:25 msgid "Line Attenuation (LATN)" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:18 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:19 msgid "Line Mode" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:17 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:18 msgid "Line State" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:19 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:20 msgid "Line Uptime" msgstr "" @@ -4521,12 +4545,12 @@ msgctxt "nft @ll,off,len" msgid "Link layer header bits %d-%d" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:433 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:438 msgid "List of IP addresses to convert into NXDOMAIN responses." msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:296 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:581 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:301 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:652 msgid "List of IP sets to populate with the specified domain IPs." msgstr "" @@ -4552,15 +4576,11 @@ msgstr "" msgid "List of SSH key files for auth" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:312 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:317 msgid "List of domains to allow RFC1918 responses for." msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:290 -msgid "List of domains to force to an IP address." -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:283 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:285 msgid "List of upstream resolvers to forward queries to." msgstr "" @@ -4568,7 +4588,7 @@ msgstr "" msgid "Listen Port" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:332 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:337 msgid "Listen interfaces" msgstr "" @@ -4578,7 +4598,7 @@ msgstr "" "Habilita el servei en totes les interfícies o, si no se n'especifica cap, en " "totes" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:333 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:338 msgid "" "Listen only on the specified interfaces, and loopback if not excluded " "explicitly." @@ -4588,7 +4608,7 @@ msgstr "" msgid "ListenPort setting is invalid" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:439 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:444 msgid "Listening port for inbound DNS queries." msgstr "" @@ -4615,9 +4635,9 @@ msgid "Loading directory contents…" msgstr "" #: modules/luci-base/htdocs/luci-static/resources/luci.js:1942 -#: modules/luci-base/luasrc/view/view.htm:4 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:12 -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/sysauth.htm:45 +#: modules/luci-base/ucode/template/view.ut:4 +#: modules/luci-mod-status/ucode/template/admin_status/index.ut:12 +#: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/sysauth.ut:40 msgid "Loading view…" msgstr "" @@ -4675,19 +4695,19 @@ msgstr "Hora local" msgid "Local ULA" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:273 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:275 msgid "Local domain" msgstr "Domini local" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:274 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:276 msgid "Local domain suffix appended to DHCP names and hosts file entries." msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:269 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:271 msgid "Local server" msgstr "Servidor local" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:319 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:324 msgid "Local service only" msgstr "" @@ -4695,7 +4715,7 @@ msgstr "" msgid "Local wireguard key" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:392 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:397 msgid "Localise queries" msgstr "Localitza les peticions" @@ -4707,7 +4727,7 @@ msgstr "" msgid "Log output level" msgstr "Nivell de sortida de registre" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:277 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:279 msgid "Log queries" msgstr "Registra les peticions" @@ -4731,8 +4751,8 @@ msgstr "" msgid "Logical network to which the tunnel will be added (bridged) (optional)." msgstr "" -#: modules/luci-base/luasrc/view/sysauth.htm:38 -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/sysauth.htm:41 +#: modules/luci-base/ucode/template/sysauth.ut:38 +#: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/sysauth.ut:36 msgid "Login" msgstr "Entra" @@ -4744,7 +4764,7 @@ msgstr "Surt" msgid "Loose filtering" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:31 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:32 msgid "Loss of Signal Seconds (LOSS)" msgstr "" @@ -4752,6 +4772,10 @@ msgstr "" msgid "Lowest leased address as offset from the network address." msgstr "" +#: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/footer.ut:12 +msgid "Lua compatibility mode active" +msgstr "" + #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:48 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:83 msgid "MAC" @@ -4776,7 +4800,7 @@ msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:591 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:40 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:619 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:690 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1164 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2177 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:56 @@ -4835,6 +4859,10 @@ msgstr "" msgid "MTU" msgstr "MTU" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:259 +msgid "MX" +msgstr "" + #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:303 msgid "" "Make sure to clone the root filesystem using something like the commands " @@ -4859,23 +4887,23 @@ msgstr "" msgid "Max <abbr title=\"Router Advertisement\">RA</abbr> interval" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:22 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:23 msgid "Max. Attainable Data Rate (ATTNDR)" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:452 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:457 msgid "Max. DHCP leases" msgstr "" "Arrendaments de <abbr title=\"Dynamic Host Configuration Protocol\">DHCP</" "abbr> <abbr title=\"màxims\">max.</abbr>" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:459 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:464 msgid "Max. EDNS0 packet size" msgstr "" "Mida <abbr title=\"màxima\">màx.</abbr> de paquet <abbr title=\"Extension " "Mechanisms for Domain Name System\">EDNS0</abbr>" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:466 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:471 msgid "Max. concurrent queries" msgstr "Consultes concurrents <abbr title=\"màximes\">max.</abbr>" @@ -4887,15 +4915,15 @@ msgstr "" msgid "Maximum allowed Listen Interval" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:453 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:458 msgid "Maximum allowed number of active DHCP leases." msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:467 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:472 msgid "Maximum allowed number of concurrent DNS queries." msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:460 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:465 msgid "Maximum allowed size of EDNS0 UDP packets." msgstr "" @@ -4922,7 +4950,7 @@ msgstr "" msgid "Maximum transmit power" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:389 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:394 msgid "May prevent VoIP or other services from working." msgstr "" @@ -5238,11 +5266,15 @@ msgstr "Nom de la nova xarxa" msgid "Name of the tunnel device" msgstr "" -#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:46 +#: themes/luci-theme-openwrt-2020/ucode/template/themes/openwrt2020/header.ut:39 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:50 msgid "Navigation" msgstr "Navegació" +#: protocols/luci-proto-nebula/htdocs/luci-static/resources/protocol/nebula.js:10 +msgid "Nebula Network" +msgstr "" + #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:653 msgid "Neighbour cache validity" msgstr "" @@ -5278,7 +5310,7 @@ msgstr "Utilitats de xarxa" msgid "Network address" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:492 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:497 msgid "Network boot image" msgstr "Imatge d'inici de xarxa" @@ -5318,7 +5350,7 @@ msgstr "" msgid "Network interface" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:531 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:536 msgid "Network-ID" msgstr "" @@ -5326,7 +5358,7 @@ msgstr "" msgid "Never" msgstr "Mai" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:270 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:272 msgid "" "Never forward matching domains and subdomains, resolve from DHCP or hosts " "files only." @@ -5374,9 +5406,9 @@ msgstr "" msgid "No RX signal" msgstr "" -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:80 -#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:87 -#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:72 +#: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/header.ut:68 +#: themes/luci-theme-material/ucode/template/themes/material/header.ut:82 +#: themes/luci-theme-openwrt-2020/ucode/template/themes/openwrt2020/header.ut:65 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:90 msgid "" "No changes to settings will be stored and are lost after rebooting. This " @@ -5418,10 +5450,6 @@ msgstr "" msgid "No entries in this directory" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:82 -msgid "No files found" -msgstr "Cap fitxer trobat" - #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:833 msgid "" "No fixed interface listening port defined, peers might not be able to " @@ -5457,7 +5485,7 @@ msgstr "" msgid "No more slaves available, can not save interface" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:413 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:418 msgid "No negative cache" msgstr "Sense memòria cau negativa" @@ -5465,8 +5493,8 @@ msgstr "Sense memòria cau negativa" msgid "No nftables ruleset loaded." msgstr "" -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:69 -#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:61 +#: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/header.ut:57 +#: themes/luci-theme-openwrt-2020/ucode/template/themes/openwrt2020/header.ut:54 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:79 msgid "No password set!" msgstr "No hi ha cap contrasenya establerta!" @@ -5506,7 +5534,7 @@ msgstr "Cap zona assignada" msgid "Noise" msgstr "Soroll" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:26 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:27 msgid "Noise Margin (SNR)" msgstr "" @@ -5514,11 +5542,11 @@ msgstr "" msgid "Noise:" msgstr "Soroll:" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:34 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:35 msgid "Non Pre-emptive CRC errors (CRC_P)" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:325 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:330 msgid "Non-wildcard" msgstr "" @@ -5533,7 +5561,7 @@ msgstr "Cap" msgid "Normal" msgstr "Normal" -#: modules/luci-base/luasrc/view/error404.htm:8 +#: modules/luci-base/ucode/template/error404.ut:9 msgid "Not Found" msgstr "No trobat" @@ -5583,7 +5611,7 @@ msgstr "Nslookup" msgid "Number of IGMP membership reports" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:474 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:479 msgid "Number of cached DNS entries, 10000 is maximum, 0 is no caching." msgstr "" @@ -5632,7 +5660,7 @@ msgstr "" msgid "On-link" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:672 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:743 msgid "One of hostname or MAC address must be specified!" msgstr "Cal especificar o el nom de host o l'adreça MAC!" @@ -5668,7 +5696,6 @@ msgid "Open iptables rules overview…" msgstr "" #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:472 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:19 msgid "Open list..." msgstr "Obre una llista..." @@ -5812,18 +5839,23 @@ msgstr "" msgid "Options" msgstr "Opcions" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:526 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:531 msgid "" "Options for the Network-ID. (Note: needs also Network-ID.) E.g. " -"\"<code>42,192.168.1.4</code>\" for NTP server, \"<code>3,192.168.4.4</" -"code>\" for default route. <code>0.0.0.0</code> means \"the address of the " -"system running dnsmasq\"." +"\"<code>42,192.168.1.4</code>\" for NTP server, \"<code>3,192.168.4.4</code>" +"\" for default route. <code>0.0.0.0</code> means \"the address of the system " +"running dnsmasq\"." msgstr "" #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:125 msgid "Options:" msgstr "Opcions:" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:584 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:616 +msgid "Ordinal: lower comes first." +msgstr "" + #: protocols/luci-proto-batman-adv/htdocs/luci-static/resources/protocol/batadv.js:55 msgid "Originator Interval" msgstr "" @@ -6095,13 +6127,13 @@ msgctxt "MACVLAN mode" msgid "Pass-through (Mirror physical device to single MAC VLAN)" msgstr "" -#: modules/luci-base/luasrc/view/sysauth.htm:29 +#: modules/luci-base/ucode/template/sysauth.ut:29 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1690 #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:51 #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:114 #: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:103 #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:58 -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/sysauth.htm:24 +#: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/sysauth.ut:19 msgid "Password" msgstr "Contrasenya" @@ -6272,7 +6304,7 @@ msgstr "Ping" msgid "Pkts." msgstr "Paquets" -#: modules/luci-base/luasrc/view/sysauth.htm:19 +#: modules/luci-base/ucode/template/sysauth.ut:19 msgid "Please enter your username and password." msgstr "Si us plau entra el teu nom d'usuari i contrasenya." @@ -6289,6 +6321,7 @@ msgctxt "Chain hook policy" msgid "Policy: <strong>%h</strong> (%h)" msgstr "" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:579 #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/dropbear.js:21 msgid "Port" msgstr "Port" @@ -6305,11 +6338,11 @@ msgstr "Estatus de port" msgid "Potential negation of: %s" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:37 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:38 msgid "Power Management Mode" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:35 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:36 msgid "Pre-emptive CRC errors (CRCP_P)" msgstr "" @@ -6382,6 +6415,8 @@ msgid "Primary becomes active slave whenever it comes back up (always, 0)" msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:508 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:584 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:616 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:129 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:197 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:223 @@ -6497,7 +6532,7 @@ msgstr "" msgid "Quality" msgstr "Calidad" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:428 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:433 msgid "Query all available upstream resolvers." msgstr "" @@ -6579,11 +6614,11 @@ msgstr "" msgid "Raw hex-encoded bytes. Leave empty unless your ISP require this" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:345 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:350 msgid "Read <code>/etc/ethers</code> to configure the DHCP server." msgstr "" -"Llegeix <code>/etc/ethers</code> per configurar el servidor <abbr " -"title=\"Dynamic Host Configuration Protocol\">DHCP</abbr>" +"Llegeix <code>/etc/ethers</code> per configurar el servidor <abbr title=" +"\"Dynamic Host Configuration Protocol\">DHCP</abbr>" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:559 msgid "Really switch protocol?" @@ -6597,7 +6632,7 @@ msgstr "Gràfiques en temps real" msgid "Reassociation Deadline" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:301 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:306 msgid "Rebind protection" msgstr "" @@ -6682,6 +6717,7 @@ msgid "" msgstr "" #: modules/luci-compat/luasrc/model/network/proto_relay.lua:153 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:611 #: protocols/luci-proto-relay/htdocs/luci-static/resources/protocol/relay.js:39 msgid "Relay" msgstr "Relé" @@ -6772,6 +6808,10 @@ msgstr "Alguns ISP ho requereixen, per exemple el Charter amb DOCSIS 3" msgid "Required. Base64-encoded private key for this interface." msgstr "" +#: protocols/luci-proto-nebula/htdocs/luci-static/resources/protocol/nebula.js:40 +msgid "Required. Path to the .yml config file for this interface." +msgstr "" + #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:587 msgid "Required. Public key of the WireGuard peer." msgstr "" @@ -6853,7 +6893,7 @@ msgid "Reselection policy for primary slave" msgstr "" #: modules/luci-base/htdocs/luci-static/resources/luci.js:2197 -#: modules/luci-base/luasrc/view/sysauth.htm:39 +#: modules/luci-base/ucode/template/sysauth.ut:39 #: modules/luci-compat/luasrc/view/cbi/delegator.htm:17 #: modules/luci-compat/luasrc/view/cbi/footer.htm:30 #: modules/luci-compat/luasrc/view/cbi/simpleform.htm:66 @@ -6872,10 +6912,14 @@ msgstr "Reestableix els valors per defecte" msgid "Resolv and Hosts Files" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:356 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:361 msgid "Resolv file" msgstr "" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:292 +msgid "Resolve specified FQDNs to an IP." +msgstr "" + #: modules/luci-base/htdocs/luci-static/resources/rpc.js:405 msgid "Resource not found" msgstr "" @@ -6902,7 +6946,7 @@ msgstr "Restauració de la configuració" msgid "Restore backup" msgstr "Restaura còpia de seguretat" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:393 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:398 msgid "" "Return answers to DNS queries matching the subnet from which the query was " "received if multiple IPs are available." @@ -6988,7 +7032,7 @@ msgstr "" msgid "Robustness" msgstr "Robustesa" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:486 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:491 msgid "" "Root directory for files served via TFTP. <em>Enable TFTP server</em> and " "<em>TFTP server root</em> turn on the TFTP server and serve files from " @@ -7093,6 +7137,11 @@ msgstr "SHA256" msgid "SNR" msgstr "SNR" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:258 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:569 +msgid "SRV" +msgstr "" + #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/dropbear.js:10 #: modules/luci-mod-system/root/usr/share/luci/menu.d/luci-mod-system.json:38 msgid "SSH Access" @@ -7230,11 +7279,11 @@ msgstr "" msgid "Server" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:519 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:524 msgid "Server address" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:513 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:518 msgid "Server name" msgstr "" @@ -7322,7 +7371,7 @@ msgstr "" msgid "Setup routes for proxied IPv6 neighbours." msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:30 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:31 msgid "Severely Errored Seconds (SES)" msgstr "" @@ -7336,7 +7385,6 @@ msgid "Short Preamble" msgstr "" #: 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 msgid "Show current backup file list" msgstr "" @@ -7370,7 +7418,7 @@ msgstr "Senyal" msgid "Signal / Noise" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:25 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:26 msgid "Signal Attenuation (SATN)" msgstr "" @@ -7387,7 +7435,7 @@ msgstr "Senyal:" msgid "Size" msgstr "Mida" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:473 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:478 msgid "Size of DNS query cache" msgstr "" @@ -7404,12 +7452,12 @@ msgstr "Salta" msgid "Skip from backup files that are equal to those in /rom" msgstr "" -#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:42 +#: themes/luci-theme-openwrt-2020/ucode/template/themes/openwrt2020/header.ut:35 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:46 msgid "Skip to content" msgstr "Salta al contingut" -#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:41 +#: themes/luci-theme-openwrt-2020/ucode/template/themes/openwrt2020/header.ut:34 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:45 msgid "Skip to navigation" msgstr "Salta a la navegació" @@ -7427,14 +7475,10 @@ msgstr "" msgid "Some fields are invalid, cannot save values!" msgstr "No es pot desar els valors perquè alguns camps estan invàlids!" -#: modules/luci-base/luasrc/view/error404.htm:9 +#: modules/luci-base/ucode/template/error404.ut:10 msgid "Sorry, the object you requested was not found." msgstr "Tristament, l'object que heu sol·licitat no s'ha trobat." -#: modules/luci-base/luasrc/view/error500.htm:9 -msgid "Sorry, the server encountered an unexpected error." -msgstr "Tristament, el servidor ha encontrat un error inesperat." - #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:442 msgid "" "Sorry, there is no sysupgrade support present; a new firmware image must be " @@ -7470,7 +7514,7 @@ msgctxt "nft ip sport" msgid "Source port" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:500 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:505 msgid "" "Special <abbr title=\"Preboot eXecution Environment\">PXE</abbr> boot " "options for Dnsmasq." @@ -7838,7 +7882,7 @@ msgstr "Leases estàtics" msgid "Static address" msgstr "Adreça estàtica" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:598 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:669 msgid "" "Static leases are used to assign fixed IP addresses and symbolic hostnames " "to DHCP clients. They are also required for non-dynamic interface " @@ -7852,7 +7896,7 @@ msgstr "" #: modules/luci-base/root/usr/share/luci/menu.d/luci-base.json:16 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:541 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:929 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:9 +#: modules/luci-mod-status/ucode/template/admin_status/index.ut:9 msgid "Status" msgstr "Estat" @@ -7878,7 +7922,7 @@ msgstr "" msgid "Strict filtering" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:422 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:427 msgid "Strict order" msgstr "Ordre estricte" @@ -7891,11 +7935,11 @@ msgstr "Fort" msgid "Submit" msgstr "Envia" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:372 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:377 msgid "Suppress logging" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:373 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:378 msgid "Suppress logging of the routine operation for the DHCP protocol." msgstr "" @@ -7948,6 +7992,14 @@ msgstr "" msgid "Sync with browser" msgstr "Sincronitza amb el navegador" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:293 +msgid "Syntax: <code>/fqdn[/fqdn…]/[ipaddr]</code>." +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:569 +msgid "Syntax: <code>_service._proto.example.com</code>." +msgstr "" + #: modules/luci-base/root/usr/share/luci/menu.d/luci-base.json:26 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/10_system.js:17 #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:113 @@ -7973,9 +8025,9 @@ msgstr "Propietats del sistema" msgid "System log buffer size" msgstr "Mida de la memòria intermèdia per al registre del sistema" -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:79 -#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:86 -#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:71 +#: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/header.ut:67 +#: themes/luci-theme-material/ucode/template/themes/material/header.ut:81 +#: themes/luci-theme-openwrt-2020/ucode/template/themes/openwrt2020/header.ut:64 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:89 msgid "System running in recovery (initramfs) mode." msgstr "" @@ -8004,7 +8056,7 @@ msgstr "" msgid "TCP:" msgstr "TCP:" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:485 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:490 msgid "TFTP server root" msgstr "Arrel del servidor TFTP" @@ -8029,6 +8081,7 @@ msgstr "" msgid "Table" msgstr "Taula" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:574 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:56 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:66 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:187 @@ -8099,15 +8152,15 @@ msgid "" "username instead of the user ID!" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:681 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:752 msgid "The IP address %h is already used by another static lease" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:690 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:761 msgid "The IP address is outside of any DHCP pool address range" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:520 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:525 msgid "The IP address of the boot server" msgstr "" @@ -8213,8 +8266,8 @@ msgid "" "The device file of the memory or partition (<abbr title=\"for example\">e.g." "</abbr> <code>/dev/sda1</code>)" msgstr "" -"El fitxer de dispositiu de la memòria o partició (<abbr title=\"per " -"exemple\">p.e.</abbr> <code>/dev/sda1</code>)" +"El fitxer de dispositiu de la memòria o partició (<abbr title=\"per exemple" +"\">p.e.</abbr> <code>/dev/sda1</code>)" #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:450 msgid "The device name \"%s\" is already taken" @@ -8276,7 +8329,7 @@ msgid "" "to be received and retransmitted which costs airtime)" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:514 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:519 msgid "The hostname of the boot server" msgstr "" @@ -8362,8 +8415,8 @@ msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:139 msgid "" -"The network ports on this device can be combined to several <abbr " -"title=\"Virtual Local Area Network\">VLAN</abbr>s in which computers can " +"The network ports on this device can be combined to several <abbr title=" +"\"Virtual Local Area Network\">VLAN</abbr>s in which computers can " "communicate directly with each other. <abbr title=\"Virtual Local Area " "Network\">VLAN</abbr>s are often used to separate different network " "segments. Often there is by default one Uplink port for a connection to the " @@ -8414,7 +8467,7 @@ msgstr "" msgid "The selected %s mode is incompatible with %s encryption" msgstr "" -#: modules/luci-base/luasrc/view/csrftoken.htm:11 +#: modules/luci-base/ucode/template/csrftoken.ut:11 msgid "The submitted security token is invalid or already expired!" msgstr "" @@ -8494,8 +8547,8 @@ msgid "" "nftables rules is discouraged and may lead to incomplete traffic filtering." msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:746 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:778 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:817 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:849 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:130 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:179 msgid "There are no active leases" @@ -8505,8 +8558,8 @@ msgstr "" msgid "There are no changes to apply" msgstr "" -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:70 -#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:62 +#: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/header.ut:58 +#: themes/luci-theme-openwrt-2020/ucode/template/themes/openwrt2020/header.ut:55 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:80 msgid "" "There is no password set on this router. Please configure a root password to " @@ -8529,7 +8582,6 @@ msgid "This does not look like a valid PEM file" msgstr "" #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:454 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:16 msgid "" "This is a list of shell glob patterns for matching files and directories to " "include during sysupgrade. Modified files in /etc/config/ and certain other " @@ -8568,7 +8620,7 @@ msgid "" "ends with <code>...:2/64</code>" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:266 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:268 msgid "This is the only DHCP server in the local network." msgstr "" "Aquest és l'únic <abbr title=\"Dynamic Host Configuration Protocol\">DHCP</" @@ -8655,8 +8707,8 @@ msgstr "Zona horària" #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:440 msgid "" "To fully configure the local WireGuard interface from an existing (e.g. " -"provider supplied) configuration file, use the <strong><a class=\"full-" -"import\" href=\"#\">configuration import</a></strong> instead." +"provider supplied) configuration file, use the <strong><a class=\"full-import" +"\" href=\"#\">configuration import</a></strong> instead." msgstr "" #: modules/luci-base/htdocs/luci-static/resources/luci.js:2674 @@ -8822,7 +8874,7 @@ msgstr "" msgid "Unable to determine upstream interface" msgstr "" -#: modules/luci-base/luasrc/view/error404.htm:11 +#: modules/luci-base/ucode/template/error404.ut:12 msgid "Unable to dispatch" msgstr "" @@ -8877,7 +8929,7 @@ msgstr "" msgid "Unable to verify PIN" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:32 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:33 msgid "Unavailable Seconds (UAS)" msgstr "" @@ -9021,7 +9073,7 @@ msgid "" "will be restarted to apply the updated configuration." msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:423 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:428 msgid "Upstream resolvers will be queried in the order of the resolv file." msgstr "" "Es consultaran els servidors <abbr title=\"Domain Name System\">DNS</abbr> " @@ -9032,7 +9084,7 @@ msgstr "" msgid "Uptime" msgstr "Temps en marxa" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:344 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:349 msgid "Use <code>/etc/ethers</code>" msgstr "Fes servir <code>/etc/ethers</code>" @@ -9143,7 +9195,7 @@ msgstr "Empra els certificats del sistema" msgid "Use system certificates for inner-tunnel" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:599 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:670 msgid "" "Use the <em>Add</em> Button to add a new lease entry. The <em>MAC address</" "em> identifies the host, the <em>IPv4 address</em> specifies the fixed " @@ -9194,11 +9246,11 @@ msgstr "" msgid "User key (PEM encoded)" msgstr "" -#: modules/luci-base/luasrc/view/sysauth.htm:23 +#: modules/luci-base/ucode/template/sysauth.ut:23 #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:112 #: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:101 #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:56 -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/sysauth.htm:18 +#: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/sysauth.ut:13 msgid "Username" msgstr "Nom d'usuari" @@ -9296,7 +9348,7 @@ msgstr "" msgid "VXLANv6 (RFC7348)" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:398 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:403 msgid "" "Validate DNS replies and cache DNSSEC data, requires upstream to support " "DNSSEC." @@ -9329,7 +9381,7 @@ msgstr "Venedor" msgid "Vendor Class to send when requesting DHCP" msgstr "Classe de venidor per enviar al sol·licitar DHCP" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:403 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:408 msgid "Verify unsigned domain responses really come from unsigned domains." msgstr "" @@ -9406,6 +9458,10 @@ msgstr "" msgid "Weak" msgstr "Dèbil" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:589 +msgid "Weight" +msgstr "" + #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1029 msgid "" "When delegating prefixes to multiple downstreams, interfaces with a higher " @@ -9526,7 +9582,7 @@ msgstr "La xarxa sense fil està inhabilitada" msgid "Wireless network is enabled" msgstr "La xarxa sense fils està habilitada" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:278 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:280 msgid "Write received DNS queries to syslog." msgstr "Escriure les peticions DNS rebudes al registre del sistema" @@ -9565,8 +9621,16 @@ msgstr "" "Si desactives scripts d'inici necessaris com el \"network\", el teu " "dispositiu pot resultar inaccessible!</strong>" -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:90 -#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:97 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:559 +msgid "You may add multiple records for the same Target." +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:596 +msgid "You may add multiple records for the same domain." +msgstr "" + +#: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/header.ut:78 +#: themes/luci-theme-material/ucode/template/themes/material/header.ut:92 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:73 msgid "" "You must enable JavaScript in your browser or LuCI will not work properly." @@ -9597,7 +9661,17 @@ msgstr "" msgid "ZRam Size" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:449 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:558 +msgid "_proto: _tcp, _udp, _sctp, _quic, … ." +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:557 +msgid "" +"_service: _sip, _ldap, _imap, _stun, _xmpp-client, … . (Note: while _http is " +"possible, no browsers support SRV records.)" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:454 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:152 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:163 msgid "any" @@ -9708,8 +9782,8 @@ msgstr "" msgid "e.g: dump" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:726 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:756 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:797 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:827 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:101 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:148 msgid "expired" @@ -9920,9 +9994,9 @@ msgstr "" msgid "unknown" msgstr "desconegut" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:456 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:724 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:754 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:461 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:795 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:825 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:99 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:146 msgid "unlimited" @@ -10138,6 +10212,21 @@ msgstr "sí" msgid "« Back" msgstr "« Enrere" +#~ msgid "Back to configuration" +#~ msgstr "Enrere a la configuració" + +#~ msgid "Close list..." +#~ msgstr "Tanca la llista..." + +#~ msgid "Internal Server Error" +#~ msgstr "Error de servidor intern" + +#~ msgid "No files found" +#~ msgstr "Cap fitxer trobat" + +#~ msgid "Sorry, the server encountered an unexpected error." +#~ msgstr "Tristament, el servidor ha encontrat un error inesperat." + #~ msgid "Default %d" #~ msgstr "%d per defecte" @@ -10284,12 +10373,12 @@ msgstr "« Enrere" #~ msgid "" #~ "The filesystem that was used to format the memory (<abbr title=\"for " -#~ "example\">e.g.</abbr> <samp><abbr title=\"Third Extended " -#~ "Filesystem\">ext3</abbr></samp>)" +#~ "example\">e.g.</abbr> <samp><abbr title=\"Third Extended Filesystem" +#~ "\">ext3</abbr></samp>)" #~ msgstr "" #~ "El sistema the fitxers que es va fer servir per formatar la memòria " -#~ "(<abbr title=\"per exemple example\">p.e.</abbr> <samp><abbr " -#~ "title=\"Third Extended Filesystem\">ext3</abbr></samp>)" +#~ "(<abbr title=\"per exemple example\">p.e.</abbr> <samp><abbr title=" +#~ "\"Third Extended Filesystem\">ext3</abbr></samp>)" #~ msgid "" #~ "The flash image was uploaded. Below is the checksum and file size listed, " diff --git a/modules/luci-base/po/cs/base.po b/modules/luci-base/po/cs/base.po index 35e80f73f6..61de612fe0 100644 --- a/modules/luci-base/po/cs/base.po +++ b/modules/luci-base/po/cs/base.po @@ -228,6 +228,18 @@ msgstr "<abbr title=\"Router Advertisement\">RA</abbr> MTU" msgid "<abbr title=\"Router Advertisement\">RA</abbr>-Service" msgstr "" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:294 +msgid "" +"<code>/#/</code> matches any domain. <code>/example.com/</code> returns " +"NXDOMAIN." +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:295 +msgid "" +"<code>/example.com/#</code> returns NULL addresses (<code>0.0.0.0</code> and " +"<code>::</code>) for example.com and its subdomains." +msgstr "" + #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:87 msgctxt "nft relational \">\" operator expression" msgid "<var>%s</var> greater than <strong>%s</strong>" @@ -389,7 +401,7 @@ msgstr "" msgid "ATM device number" msgstr "číslo ATM zařízení" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:36 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:37 msgid "ATU-C System Vendor ID" msgstr "ATU-C identifikace výrobce systému" @@ -399,7 +411,7 @@ msgstr "ATU-C identifikace výrobce systému" msgid "Absent Interface" msgstr "Rozhraní chybí" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:320 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:325 msgid "Accept DNS queries only from hosts whose address is on a local subnet." msgstr "" "Omezit obsluhování DNS na rozhraní podsítí, na kterých je DNS poskytováno." @@ -539,7 +551,7 @@ msgstr "Přidat instanci" msgid "Add key" msgstr "Přidat klíč" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:410 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:415 msgid "Add local domain suffix to names served from hosts files." msgstr "Přidat lokální koncovku k doménovým jménům ze souboru hosts." @@ -560,11 +572,11 @@ msgstr "Přidat na blacklist" msgid "Add to Whitelist" msgstr "Přidat na whitelist" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:367 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:372 msgid "Additional hosts files" msgstr "Dodatečné Hosts soubory" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:417 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:422 msgid "Additional servers file" msgstr "Soubor s dalšími servery" @@ -594,7 +606,7 @@ msgstr "" msgid "Address to access local relay bridge" msgstr "Adresa pro přístup k místnímu relay bridge" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:289 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:291 msgid "Addresses" msgstr "Adresy" @@ -627,7 +639,7 @@ msgstr "" msgid "Aggregate Originator Messages" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:27 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:28 msgid "Aggregate Transmit Power (ACTATP)" msgstr "Celkový vysílací výkon (ACTATP)" @@ -663,17 +675,17 @@ msgstr "Alternativní název rozhraní" msgid "Alias of \"%s\"" msgstr "Alternativní název „%s“" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:427 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:432 msgid "All servers" msgstr "Všechny servery" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:378 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:383 msgid "" "Allocate IP addresses sequentially, starting from the lowest available " "address." msgstr "Postupné přidělování adres IP od nejnižší dostupné adresy." -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:377 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:382 msgid "Allocate IPs sequentially" msgstr "Postupné přidělování adres IP" @@ -703,7 +715,7 @@ msgstr "Povolit starší rychlosti 802.11b" msgid "Allow listed only" msgstr "Povolit pouze uvedené" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:306 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:311 msgid "Allow localhost" msgstr "Povolit localhost" @@ -749,7 +761,7 @@ msgstr "Vždy vypnuto (jádro: žádné)" msgid "Always on (kernel: default-on)" msgstr "Vždy zapnuto (jádro: default-on)" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:538 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:543 msgid "Always send DHCP Options. Sometimes needed, with e.g. PXELinux." msgstr "" @@ -778,7 +790,7 @@ msgid "An optional, short description for this device" msgstr "Volitelný, krátký popis zařízení" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1484 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:20 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:21 msgid "Annex" msgstr "Annex" @@ -892,7 +904,7 @@ msgstr "" msgid "Any zone" msgstr "Libovolná zóna" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:532 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:537 msgid "Apply DHCP Options to this net. (Empty = all clients)." msgstr "" @@ -988,11 +1000,11 @@ msgstr "Ověřování se" msgid "Authentication Type" msgstr "Typ ověřování se" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:265 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:267 msgid "Authoritative" msgstr "Autoritativní" -#: modules/luci-base/luasrc/view/sysauth.htm:17 +#: modules/luci-base/ucode/template/sysauth.ut:17 #: themes/luci-theme-bootstrap/htdocs/luci-static/resources/view/bootstrap/sysauth.js:11 msgid "Authorization Required" msgstr "Vyžadováno ověření se" @@ -1064,7 +1076,7 @@ msgstr "Průměr:" msgid "Avoid Bridge Loops" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:388 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:393 msgid "" "Avoid uselessly triggering dial-on-demand links (filters SRV/SOA records and " "names with underscores)." @@ -1099,10 +1111,6 @@ msgstr "Zpět" msgid "Back to Overview" msgstr "Zpět na přehled" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:48 -msgid "Back to configuration" -msgstr "Zpět na nastavení" - #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:826 msgid "Back to peer configuration" msgstr "" @@ -1116,7 +1124,6 @@ msgid "Backup / Flash Firmware" msgstr "Zálohovat / nahrát firmware" #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:351 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:12 msgid "Backup file list" msgstr "Seznam souborů k zálohování" @@ -1158,7 +1165,6 @@ msgid "Beacon Interval" msgstr "Interval majáku (beacon)" #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:352 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:46 msgid "" "Below is the determined list of files to backup. It consists of changed " "configuration files marked by opkg, essential base files and the user " @@ -1172,7 +1178,7 @@ msgstr "" msgid "Bind NTP server" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:326 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:331 msgid "Bind dynamically to interfaces rather than wildcard address." msgstr "" "Dynamicky navázat k rozhraním místo wildcard adresy (doporučeno jako výchozí " @@ -1190,6 +1196,17 @@ msgstr "" msgid "Bind interface" msgstr "Navázat k rozhraní" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:595 +msgid "" +"Bind service records to a domain name: specify the location of services." +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:556 +msgid "" +"Bind service records to a domain name: specify the location of services. See " +"<a href=\"%s\">RFC2782</a>." +msgstr "" + #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:59 #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:64 #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:64 @@ -1294,6 +1311,10 @@ msgstr "" msgid "CLAT configuration failed" msgstr "Nastavení CLAT se nezdařilo" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:574 +msgid "CNAME or fqdn" +msgstr "" + #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/processes.js:72 msgid "CPU usage (%)" msgstr "Vytížení procesoru (%)" @@ -1544,17 +1565,13 @@ msgstr "" "Uzavírat neaktivní spojení po daném počtu sekund. Pro vypnutí časového " "omezení použijte jako hodntu nulu" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:49 -msgid "Close list..." -msgstr "Zavřít seznam…" - #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:44 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:63 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2184 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:391 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:352 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:355 -#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:72 +#: themes/luci-theme-material/ucode/template/themes/material/header.ut:66 msgid "Collecting data..." msgstr "Shromažďování údajů…" @@ -1594,6 +1611,10 @@ msgstr "" msgid "Compute outgoing checksum (optional)." msgstr "Vypočítat odchozí kontrolní součet (volitelné)." +#: protocols/luci-proto-nebula/htdocs/luci-static/resources/protocol/nebula.js:40 +msgid "Config File" +msgstr "" + #: modules/luci-base/htdocs/luci-static/resources/ui.js:4375 #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:454 msgid "Configuration" @@ -1633,8 +1654,8 @@ msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:764 msgid "" -"Configures the operation mode of the <abbr title=\"Router " -"Advertisement\">RA</abbr> service on this interface." +"Configures the operation mode of the <abbr title=\"Router Advertisement" +"\">RA</abbr> service on this interface." msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:879 @@ -1812,8 +1833,8 @@ msgstr "" #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/leds.js:59 msgid "" -"Customizes the behaviour of the device <abbr title=\"Light Emitting " -"Diode\">LED</abbr>s if possible." +"Customizes the behaviour of the device <abbr title=\"Light Emitting Diode" +"\">LED</abbr>s if possible." msgstr "" "Upraví chování <abbr title=\"Light Emitting Diode\">LED</abbr> diod zařízení " "pokud je to možné." @@ -1834,7 +1855,7 @@ msgstr "DAE port" msgid "DAE-Secret" msgstr "DAE-Secret" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:525 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:530 msgid "DHCP Options" msgstr "" @@ -1874,11 +1895,11 @@ msgstr "Služba DHCPv6" msgid "DNS" msgstr "DNS" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:282 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:284 msgid "DNS forwardings" msgstr "Přeposílání DNS" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:445 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:450 msgid "DNS query port" msgstr "port dotazů <abbr title=\"Domain Name System\">DNS</abbr>" @@ -1886,7 +1907,7 @@ msgstr "port dotazů <abbr title=\"Domain Name System\">DNS</abbr>" msgid "DNS search domains" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:438 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:443 msgid "DNS server port" msgstr "port serveru <abbr title=\"Domain Name System\">DNS</abbr>" @@ -1902,11 +1923,11 @@ msgstr "" msgid "DNS-Label / FQDN" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:397 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:402 msgid "DNSSEC" msgstr "DNSSEC" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:402 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:407 msgid "DNSSEC check unsigned" msgstr "DNSSEC kontrolovat nepodepsané" @@ -1919,11 +1940,11 @@ msgid "DS-Lite AFTR address" msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1481 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:44 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:45 msgid "DSL" msgstr "DSL" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:14 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:15 msgid "DSL Status" msgstr "Stav DSL" @@ -1936,12 +1957,12 @@ msgid "DTIM Interval" msgstr "Interval DTIM" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:59 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:700 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:771 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:136 msgid "DUID" msgstr "DUID" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:21 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:22 msgid "Data Rate" msgstr "Rychlost přenosu dat" @@ -2145,8 +2166,8 @@ msgid "" "Disable <abbr title=\"Dynamic Host Configuration Protocol\">DHCP</abbr> for " "this interface." msgstr "" -"Pro toto rozhraní zakázat <abbr title=\"Dynamic Host Configuration " -"Protocol\">DHCP</abbr>." +"Pro toto rozhraní zakázat <abbr title=\"Dynamic Host Configuration Protocol" +"\">DHCP</abbr>." #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:174 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:375 @@ -2188,7 +2209,7 @@ msgstr "" msgid "Disassociate On Low Acknowledgement" msgstr "Zrušit spojení při nízkém počtu ACK potvrzení" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:302 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:307 msgid "" "Discard upstream responses containing <a href=\"%s\">RFC1918</a> addresses." msgstr "Vyřadit upstream RFC1918 odpovědi." @@ -2234,7 +2255,7 @@ msgstr "Vzdálenost nejodlehlejšího člena sítě v metrech." msgid "Distributed ARP Table" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:543 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:548 msgid "" "Dnsmasq instance to which this boot section is bound. If unspecified, the " "section is valid for all dnsmasq instances." @@ -2242,15 +2263,15 @@ msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:246 msgid "" -"Dnsmasq is a lightweight <abbr title=\"Dynamic Host Configuration " -"Protocol\">DHCP</abbr> server and <abbr title=\"Domain Name System\">DNS</" -"abbr> forwarder." +"Dnsmasq is a lightweight <abbr title=\"Dynamic Host Configuration Protocol" +"\">DHCP</abbr> server and <abbr title=\"Domain Name System\">DNS</abbr> " +"forwarder." msgstr "" "Dnsmasq je jednoduchá kombinace <abbr title=\"Dynamic Host Configuration " "Protocol\">DHCP</abbr> serveru a <abbr title=\"Domain Name System\">DNS</" "abbr> forwarderu." -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:414 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:419 msgid "Do not cache negative replies, e.g. for non-existent domains." msgstr "" "Neukládat negativní odpovědi do mezipaměti (např. pro neexistující domény)." @@ -2263,17 +2284,17 @@ msgstr "" msgid "Do not create host route to peer (optional)." msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:262 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:264 msgid "Do not forward DNS queries without dots or domain parts." msgstr "" "Nepřeposílat <abbr title=\"Domain Name System\">DNS</abbr> dotazy bez <abbr " "title=\"Domain Name System\">DNS</abbr> jména." -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:383 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:388 msgid "Do not forward reverse lookups for local networks." msgstr "Nepřeposílat reverzní dotazy na místní sítě." -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:339 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:344 msgid "Do not listen on the specified interfaces." msgstr "Zabránit naslouchání na těchto rozhraních." @@ -2326,15 +2347,16 @@ msgstr "" msgid "Do you want to replace the current keys?" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:593 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:606 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:664 msgid "Domain" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:261 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:263 msgid "Domain required" msgstr "Vyžadována doména" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:311 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:316 msgid "Domain whitelist" msgstr "Whitelist domén" @@ -2578,7 +2600,7 @@ msgstr "Povolit NTP klienta" msgid "Enable Single DES" msgstr "Povolit Single DES" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:480 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:485 msgid "Enable TFTP server" msgstr "Zapnout TFTP server" @@ -2596,9 +2618,9 @@ msgstr "Povolit tlačítko WPS, vyžaduje WPA(2)-PSK / WPA3-SAE" #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/uhttpd.js:14 msgid "" -"Enable automatic redirection of <abbr title=\"Hypertext Transfer " -"Protocol\">HTTP</abbr> requests to <abbr title=\"Hypertext Transfer Protocol " -"Secure\">HTTPS</abbr> port." +"Enable automatic redirection of <abbr title=\"Hypertext Transfer Protocol" +"\">HTTP</abbr> requests to <abbr title=\"Hypertext Transfer Protocol Secure" +"\">HTTPS</abbr> port." msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:977 @@ -2661,7 +2683,7 @@ msgstr "" msgid "Enable the DF (Don't Fragment) flag of the encapsulating packets." msgstr "Povolit příznak DF (Nefragmentovat) zapouzdřujících paketů." -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:481 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:486 msgid "Enable the built-in single-instance TFTP server." msgstr "" @@ -2780,7 +2802,7 @@ msgstr "Chyba" msgid "Error getting PublicKey" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:29 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:30 msgid "Errored seconds (ES)" msgstr "Sekund s chybami (ES)" @@ -2802,11 +2824,11 @@ msgstr "Každých 30 vteřin (pomalý, 0)" msgid "Every second (fast, 1)" msgstr "Každou vteřinu (rychlý, 1)" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:338 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:343 msgid "Exclude interfaces" msgstr "Vynechat rozhraní" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:307 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:312 msgid "" "Exempt <code>127.0.0.0/8</code> and <code>::1</code> from rebinding checks, " "e.g. for RBL services." @@ -2818,7 +2840,7 @@ msgstr "" msgid "Existing device" msgstr "Existující zařízení" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:409 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:414 msgid "Expand hosts" msgstr "Rozšířit hostitele" @@ -2957,7 +2979,7 @@ msgstr "" msgid "File" msgstr "Soubor" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:418 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:423 msgid "" "File listing upstream resolvers, optionally domain-specific, e.g. " "<code>server=1.2.3.4</code>, <code>server=/domain/1.2.3.4</code>." @@ -2970,22 +2992,22 @@ msgstr "" msgid "File not accessible" msgstr "Soubor není přístupný" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:349 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:354 msgid "File to store DHCP lease information." msgstr "" "Soubor, ve kterém budou uloženy zadané <abbr title=\"Dynamic Host " "Configuration Protocol\">DHCP</abbr> výpůjčky (leases)." -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:357 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:362 msgid "File with upstream resolvers." msgstr "Soubor s nadřazenými resolvery." #: modules/luci-base/htdocs/luci-static/resources/ui.js:2846 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:507 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:512 msgid "Filename" msgstr "Název souboru" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:493 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:498 msgid "Filename of the boot image advertised to clients." msgstr "Název souboru s bootovacím obrazem oznamovaný klientům." @@ -2994,11 +3016,11 @@ msgstr "Název souboru s bootovacím obrazem oznamovaný klientům." msgid "Filesystem" msgstr "Souborový systém" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:382 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:387 msgid "Filter private" msgstr "Filtrovat soukromé" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:387 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:392 msgid "Filter useless" msgstr "Filtrovat nepotřebné" @@ -3064,7 +3086,7 @@ msgstr "Soubor s firmware" msgid "Firmware Version" msgstr "Verze firmware" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:446 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:451 msgid "Fixed source port for outbound DNS queries." msgstr "Pevný zdrojový port pro odchozí DNS dotazy." @@ -3090,7 +3112,7 @@ msgstr "Operace nad flash pamětí" msgid "Flashing…" msgstr "Flashování…" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:537 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:542 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:686 msgid "Force" msgstr "Vynutit" @@ -3135,16 +3157,16 @@ msgstr "Vynutit přechod na novější verzi" msgid "Force use of NAT-T" msgstr "Vynutit použití NAT-T" -#: modules/luci-base/luasrc/view/csrftoken.htm:8 +#: modules/luci-base/ucode/template/csrftoken.ut:8 msgid "Form token mismatch" msgstr "Neshoda tokenu formuláře" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:919 msgid "" -"Forward <abbr title=\"Neighbour Discovery Protocol\">NDP</abbr> <abbr " -"title=\"Neighbour Solicitation, Type 135\">NS</abbr> and <abbr " -"title=\"Neighbour Advertisement, Type 136\">NA</abbr> messages between the " -"designated master interface and downstream interfaces." +"Forward <abbr title=\"Neighbour Discovery Protocol\">NDP</abbr> <abbr title=" +"\"Neighbour Solicitation, Type 135\">NS</abbr> and <abbr title=\"Neighbour " +"Advertisement, Type 136\">NA</abbr> messages between the designated master " +"interface and downstream interfaces." msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:770 @@ -3164,7 +3186,7 @@ msgid "" "downstream interfaces." msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:28 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:29 msgid "Forward Error Correction Seconds (FECS)" msgstr "Dopředné korekce chyb v sekundách (FECS)" @@ -3324,15 +3346,15 @@ msgstr "Obecná nastavení" msgid "Global network options" msgstr "Globální možnosti sítě" -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:82 -#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:89 -#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:74 +#: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/header.ut:70 +#: themes/luci-theme-material/ucode/template/themes/material/header.ut:84 +#: themes/luci-theme-openwrt-2020/ucode/template/themes/openwrt2020/header.ut:67 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:92 msgid "Go to firmware upgrade..." msgstr "" -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:72 -#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:64 +#: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/header.ut:60 +#: themes/luci-theme-openwrt-2020/ucode/template/themes/openwrt2020/header.ut:57 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:82 msgid "Go to password configuration..." msgstr "Přejít na nastavení hesla..." @@ -3473,7 +3495,7 @@ msgstr "" msgid "Hang Up" msgstr "Zavěsit" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:33 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:34 msgid "Header Error Code Errors (HEC)" msgstr "Chyby kódu hlavičky (HEC)" @@ -3526,7 +3548,7 @@ msgstr "Hostitel" msgid "Host expiry timeout" msgstr "Vypršení časového limitu hostitele" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:508 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:513 msgid "Host requests this filename from the boot server." msgstr "" @@ -3535,8 +3557,8 @@ msgid "Host-Uniq tag content" msgstr "Obsah značky Host-Uniq" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:38 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:559 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:607 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:630 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:678 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/10_system.js:54 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:87 #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:135 @@ -3551,7 +3573,7 @@ msgstr "Jméno hostitele odesílané při vyžádání DHCP" msgid "Hostnames" msgstr "Jména hostitelů" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:551 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:622 msgid "" "Hostnames are used to bind a domain name to an IP address. This setting is " "redundant for hostnames already configured with static leases, but it can be " @@ -3615,7 +3637,7 @@ msgstr "IP adresy" msgid "IP Protocol" msgstr "Protokol IP" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:258 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:260 msgid "IP Sets" msgstr "" @@ -3623,7 +3645,7 @@ msgstr "" msgid "IP Type" msgstr "Typ IP" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:563 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:634 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:178 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:204 msgid "IP address" @@ -3649,15 +3671,15 @@ msgctxt "nft meta l4proto" msgid "IP protocol" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:589 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:660 msgid "IP set" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:295 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:300 msgid "IP sets" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:432 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:437 msgid "IPs to override with NXDOMAIN" msgstr "Přepíše falešnou hodnotu NX Domény" @@ -3698,7 +3720,7 @@ msgstr "IPv4 Upstream" #: modules/luci-base/htdocs/luci-static/resources/protocol/static.js:178 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:39 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:665 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:736 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:88 #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:164 msgid "IPv4 address" @@ -3870,7 +3892,7 @@ msgstr "" msgid "IPv6 suffix" msgstr "IPv6 suffix" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:706 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:777 msgid "IPv6 suffix (hex)" msgstr "" "<abbr title=\"Internetový Protokol Verze 6\">IPv6</abbr>-Suffix " @@ -3964,10 +3986,10 @@ msgstr "Pokud není povoleno, oznámené adresy DNS serverů budou ignorovány" #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:340 msgid "" "If your physical memory is insufficient unused data can be temporarily " -"swapped to a swap-device resulting in a higher amount of usable <abbr " -"title=\"Random Access Memory\">RAM</abbr>. Be aware that swapping data is a " -"very slow process as the swap-device cannot be accessed with the high " -"datarates of the <abbr title=\"Random Access Memory\">RAM</abbr>." +"swapped to a swap-device resulting in a higher amount of usable <abbr title=" +"\"Random Access Memory\">RAM</abbr>. Be aware that swapping data is a very " +"slow process as the swap-device cannot be accessed with the high datarates " +"of the <abbr title=\"Random Access Memory\">RAM</abbr>." msgstr "" "Pokud máte nedostatek fyzické paměti, nepoužívaná data mohou být dočasně " "odložena do odkládacího zařízení, což bude mít za důsledek větší množství " @@ -3976,7 +3998,7 @@ msgstr "" "přístup na odkládací zařízení je řádově pomalejší, než přístup do paměti " "<abbr title=\"Random Access Memory\">RAM</abbr>." -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:363 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:368 msgid "Ignore <code>/etc/hosts</code>" msgstr "Ignorovat <code>/etc/hosts</code>" @@ -3984,7 +4006,7 @@ msgstr "Ignorovat <code>/etc/hosts</code>" msgid "Ignore interface" msgstr "Ignorovat rozhraní" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:352 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:357 msgid "Ignore resolv file" msgstr "Ignorovat resolv soubor" @@ -4032,7 +4054,7 @@ msgid "" "order to avoid broadcast loops that can bring the entire LAN to a standstill." msgstr "" -#: modules/luci-base/luasrc/view/csrftoken.htm:13 +#: modules/luci-base/ucode/template/csrftoken.ut:13 msgid "" "In order to prevent unauthorized access to the system, your request has been " "blocked. Click \"Continue »\" below to return to the previous page." @@ -4144,7 +4166,7 @@ msgstr "" msgid "Install protocol extensions..." msgstr "Instalovat protokolové rozšíření…" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:542 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:547 msgid "Instance" msgstr "" @@ -4153,8 +4175,8 @@ msgid "" "Instead of joining any network with a matching SSID, only connect to the " "BSSID <code>%h</code>." msgstr "" -"Místo připojení k jakékoli síti se shodným SSID pouze připojit k BSSID " -"<code>%h</code>." +"Místo připojení k jakékoli síti se shodným SSID pouze připojit k BSSID <code>" +"%h</code>." #: modules/luci-compat/luasrc/view/cbi/map.htm:43 msgid "Insufficient permissions to read UCI configuration." @@ -4233,11 +4255,6 @@ msgstr "Síťová rozhraní" msgid "Internal" msgstr "Interní" -# Není co dodat. -#: modules/luci-base/luasrc/view/error500.htm:8 -msgid "Internal Server Error" -msgstr "Vnitřní chyba serveru" - #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:285 msgid "Interval For Sending Learning Packets" msgstr "" @@ -4307,8 +4324,8 @@ msgstr "Neplatný příkaz" msgid "Invalid hexadecimal value" msgstr "Neplatná šestnáctková hodnota" -#: modules/luci-base/luasrc/view/sysauth.htm:12 -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/sysauth.htm:37 +#: modules/luci-base/ucode/template/sysauth.ut:12 +#: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/sysauth.ut:32 msgid "Invalid username and/or password! Please try again." msgstr "Špatné uživatelské jméno a/nebo heslo! Prosím zkuste to znovu." @@ -4332,8 +4349,8 @@ msgstr "" "Vypadadá to, že se pokoušíte zapsat obraz, který se nevejde do flash paměti. " "Prosím ověřte soubor s obrazem!" -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:89 -#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:96 +#: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/header.ut:77 +#: themes/luci-theme-material/ucode/template/themes/material/header.ut:91 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:72 msgid "JavaScript required!" msgstr "Je vyžadován JavaScript!" @@ -4465,11 +4482,17 @@ msgstr "Jazyk" msgid "Language and Style" msgstr "Jazyk a vzhled" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:560 +msgid "" +"Larger weights (of the same prio) are given a proportionately higher " +"probability of being selected." +msgstr "" + #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:575 msgid "Last member interval" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:23 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:24 msgid "Latency" msgstr "Odezva" @@ -4485,11 +4508,11 @@ msgstr "" msgid "Learn routes" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:348 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:353 msgid "Lease file" msgstr "Soubor zápůjček" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:697 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:768 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:679 msgid "Lease time" msgstr "Doba zapůjčení" @@ -4537,19 +4560,19 @@ msgstr "Legenda:" msgid "Limit" msgstr "Limit" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:24 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:25 msgid "Line Attenuation (LATN)" msgstr "Útlum vedení (LATN)" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:18 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:19 msgid "Line Mode" msgstr "Režim linky" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:17 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:18 msgid "Line State" msgstr "Stav linky" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:19 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:20 msgid "Line Uptime" msgstr "Line Uptime" @@ -4570,12 +4593,12 @@ msgctxt "nft @ll,off,len" msgid "Link layer header bits %d-%d" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:433 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:438 msgid "List of IP addresses to convert into NXDOMAIN responses." msgstr "Seznam IP adres, které se mají převádět na odpovědi NXDOMAIN." -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:296 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:581 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:301 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:652 msgid "List of IP sets to populate with the specified domain IPs." msgstr "" @@ -4615,15 +4638,11 @@ msgstr "" msgid "List of SSH key files for auth" msgstr "Seznam SSH klíčů pro autentizaci" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:312 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:317 msgid "List of domains to allow RFC1918 responses for." msgstr "Seznam domén, pro které povolit odpovědi podle RFC1918." -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:290 -msgid "List of domains to force to an IP address." -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:283 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:285 msgid "List of upstream resolvers to forward queries to." msgstr "" "Seznam nadřazených <abbr title=\"Domain Name System\">DNS</abbr> serverů, na " @@ -4633,7 +4652,7 @@ msgstr "" msgid "Listen Port" msgstr "Port na kterém očekávat spojení" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:332 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:337 msgid "Listen interfaces" msgstr "Naslouchající rozhraní" @@ -4642,7 +4661,7 @@ msgid "Listen only on the given interface or, if unspecified, on all" msgstr "" "Poslouchat pouze na daném rozhraní, nebo pokud není specifikováno, na všech" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:333 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:338 msgid "" "Listen only on the specified interfaces, and loopback if not excluded " "explicitly." @@ -4652,7 +4671,7 @@ msgstr "Omezit naslouchání na tato rozhraní a zpětnou smyčku." msgid "ListenPort setting is invalid" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:439 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:444 msgid "Listening port for inbound DNS queries." msgstr "Port pro příchozí dotazy DNS." @@ -4679,9 +4698,9 @@ msgid "Loading directory contents…" msgstr "Načítání obsahu adresáře…" #: modules/luci-base/htdocs/luci-static/resources/luci.js:1942 -#: modules/luci-base/luasrc/view/view.htm:4 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:12 -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/sysauth.htm:45 +#: modules/luci-base/ucode/template/view.ut:4 +#: modules/luci-mod-status/ucode/template/admin_status/index.ut:12 +#: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/sysauth.ut:40 msgid "Loading view…" msgstr "Načítání zobrazení…" @@ -4739,21 +4758,21 @@ msgstr "Místní čas" msgid "Local ULA" msgstr "Místní ULA" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:273 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:275 msgid "Local domain" msgstr "Místní doména" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:274 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:276 msgid "Local domain suffix appended to DHCP names and hosts file entries." msgstr "" "Přípona místní domény, připojená za názvy DHCP jmen a záznamů v souboru " "hosts." -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:269 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:271 msgid "Local server" msgstr "Místní server" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:319 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:324 msgid "Local service only" msgstr "Pouze lokální služba" @@ -4761,7 +4780,7 @@ msgstr "Pouze lokální služba" msgid "Local wireguard key" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:392 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:397 msgid "Localise queries" msgstr "Lokalizační dotazy" @@ -4773,7 +4792,7 @@ msgstr "Uzamčení na BSSID" msgid "Log output level" msgstr "Úroveň logování" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:277 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:279 msgid "Log queries" msgstr "Dotazy pro logování" @@ -4799,8 +4818,8 @@ msgstr "" msgid "Logical network to which the tunnel will be added (bridged) (optional)." msgstr "" -#: modules/luci-base/luasrc/view/sysauth.htm:38 -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/sysauth.htm:41 +#: modules/luci-base/ucode/template/sysauth.ut:38 +#: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/sysauth.ut:36 msgid "Login" msgstr "Přihlásit" @@ -4812,7 +4831,7 @@ msgstr "Odhlásit" msgid "Loose filtering" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:31 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:32 msgid "Loss of Signal Seconds (LOSS)" msgstr "Ztráta signálních sekund (LOSS)" @@ -4820,6 +4839,10 @@ msgstr "Ztráta signálních sekund (LOSS)" msgid "Lowest leased address as offset from the network address." msgstr "Nejnižší zapůjčenou adresu použít jako offset síťové adresy." +#: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/footer.ut:12 +msgid "Lua compatibility mode active" +msgstr "" + #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:48 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:83 msgid "MAC" @@ -4845,7 +4868,7 @@ msgstr "MAC VLAN" #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:591 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:40 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:619 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:690 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1164 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2177 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:56 @@ -4904,6 +4927,10 @@ msgstr "" msgid "MTU" msgstr "MTU" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:259 +msgid "MX" +msgstr "" + #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:303 #, fuzzy msgid "" @@ -4931,23 +4958,23 @@ msgstr "Master" msgid "Max <abbr title=\"Router Advertisement\">RA</abbr> interval" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:22 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:23 msgid "Max. Attainable Data Rate (ATTNDR)" msgstr "Max. dosažitelná rychlost přenosu dat (ATTNDR)" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:452 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:457 msgid "Max. DHCP leases" msgstr "" "Nejvyšší počet <abbr title=\"Dynamic Host Configuration Protocol\">DHCP</" "abbr> zápůjček" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:459 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:464 msgid "Max. EDNS0 packet size" msgstr "" "Největší povolená velikost <abbr title=\"Extension Mechanisms for Domain " "Name System\">EDNS0</abbr> paketů" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:466 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:471 msgid "Max. concurrent queries" msgstr "Nejvyšší počet souběžných dotazů" @@ -4959,15 +4986,15 @@ msgstr "" msgid "Maximum allowed Listen Interval" msgstr "Maximální povolený naslouchací interval" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:453 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:458 msgid "Maximum allowed number of active DHCP leases." msgstr "Nejvyšší povolené množství aktivních DHCP zápůjček." -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:467 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:472 msgid "Maximum allowed number of concurrent DNS queries." msgstr "Nejvyšší povolené množství souběžných DNS dotazů." -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:460 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:465 msgid "Maximum allowed size of EDNS0 UDP packets." msgstr "Nejvyšší povolená velikost EDNS0 UDP paketů." @@ -4994,7 +5021,7 @@ msgstr "" msgid "Maximum transmit power" msgstr "Maximální vysílací výkon" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:389 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:394 msgid "May prevent VoIP or other services from working." msgstr "" @@ -5315,11 +5342,15 @@ msgstr "Název nové sítě" msgid "Name of the tunnel device" msgstr "" -#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:46 +#: themes/luci-theme-openwrt-2020/ucode/template/themes/openwrt2020/header.ut:39 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:50 msgid "Navigation" msgstr "Navigace" +#: protocols/luci-proto-nebula/htdocs/luci-static/resources/protocol/nebula.js:10 +msgid "Nebula Network" +msgstr "" + #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:653 msgid "Neighbour cache validity" msgstr "" @@ -5355,7 +5386,7 @@ msgstr "Síťové nástroje" msgid "Network address" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:492 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:497 msgid "Network boot image" msgstr "Síťový bootovací obraz" @@ -5395,7 +5426,7 @@ msgstr "" msgid "Network interface" msgstr "Síťové rozhraní" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:531 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:536 msgid "Network-ID" msgstr "" @@ -5403,7 +5434,7 @@ msgstr "" msgid "Never" msgstr "Nikdy" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:270 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:272 msgid "" "Never forward matching domains and subdomains, resolve from DHCP or hosts " "files only." @@ -5453,9 +5484,9 @@ msgstr "Žádné NAT-T" msgid "No RX signal" msgstr "Žádný signál RX" -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:80 -#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:87 -#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:72 +#: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/header.ut:68 +#: themes/luci-theme-material/ucode/template/themes/material/header.ut:82 +#: themes/luci-theme-openwrt-2020/ucode/template/themes/openwrt2020/header.ut:65 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:90 msgid "" "No changes to settings will be stored and are lost after rebooting. This " @@ -5497,10 +5528,6 @@ msgstr "" msgid "No entries in this directory" msgstr "V tomto adresáři nejsou žádné položky" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:82 -msgid "No files found" -msgstr "Nebyly nalezeny žádné soubory" - #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:833 msgid "" "No fixed interface listening port defined, peers might not be able to " @@ -5536,7 +5563,7 @@ msgstr "" msgid "No more slaves available, can not save interface" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:413 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:418 msgid "No negative cache" msgstr "Žádná negativní mezipaměť" @@ -5544,8 +5571,8 @@ msgstr "Žádná negativní mezipaměť" msgid "No nftables ruleset loaded." msgstr "" -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:69 -#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:61 +#: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/header.ut:57 +#: themes/luci-theme-openwrt-2020/ucode/template/themes/openwrt2020/header.ut:54 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:79 msgid "No password set!" msgstr "Žádné heslo!" @@ -5585,7 +5612,7 @@ msgstr "Žádná zóna nepřiřazena" msgid "Noise" msgstr "Šum" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:26 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:27 msgid "Noise Margin (SNR)" msgstr "Odstup signálu od šumu (SNR)" @@ -5593,11 +5620,11 @@ msgstr "Odstup signálu od šumu (SNR)" msgid "Noise:" msgstr "Šum:" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:34 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:35 msgid "Non Pre-emptive CRC errors (CRC_P)" msgstr "Nepreemptivní CRC chyby (CRC_P)" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:325 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:330 msgid "Non-wildcard" msgstr "Bez zástupných znaků" @@ -5612,7 +5639,7 @@ msgstr "Žádný" msgid "Normal" msgstr "Normální" -#: modules/luci-base/luasrc/view/error404.htm:8 +#: modules/luci-base/ucode/template/error404.ut:9 msgid "Not Found" msgstr "Nenalezeno" @@ -5666,7 +5693,7 @@ msgstr "Nslookup" msgid "Number of IGMP membership reports" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:474 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:479 msgid "Number of cached DNS entries, 10000 is maximum, 0 is no caching." msgstr "Počet záznamů v mezipaměti DNS (max. 10 000, 0 bez mezipaměťi)." @@ -5716,7 +5743,7 @@ msgstr "Zapnutí prodlevy" msgid "On-link" msgstr "Link-local trasa" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:672 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:743 msgid "One of hostname or MAC address must be specified!" msgstr "Jedno jméno nebo mac adresa, musí být zadáno!" @@ -5752,7 +5779,6 @@ msgid "Open iptables rules overview…" msgstr "" #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:472 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:19 msgid "Open list..." msgstr "Otevřít seznam..." @@ -5910,18 +5936,23 @@ msgstr "Volitelné. Port UDP používaný pro odchozí a příchozí pakety." msgid "Options" msgstr "Možnosti" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:526 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:531 msgid "" "Options for the Network-ID. (Note: needs also Network-ID.) E.g. " -"\"<code>42,192.168.1.4</code>\" for NTP server, \"<code>3,192.168.4.4</" -"code>\" for default route. <code>0.0.0.0</code> means \"the address of the " -"system running dnsmasq\"." +"\"<code>42,192.168.1.4</code>\" for NTP server, \"<code>3,192.168.4.4</code>" +"\" for default route. <code>0.0.0.0</code> means \"the address of the system " +"running dnsmasq\"." msgstr "" #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:125 msgid "Options:" msgstr "" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:584 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:616 +msgid "Ordinal: lower comes first." +msgstr "" + #: protocols/luci-proto-batman-adv/htdocs/luci-static/resources/protocol/batadv.js:55 msgid "Originator Interval" msgstr "" @@ -6195,13 +6226,13 @@ msgctxt "MACVLAN mode" msgid "Pass-through (Mirror physical device to single MAC VLAN)" msgstr "" -#: modules/luci-base/luasrc/view/sysauth.htm:29 +#: modules/luci-base/ucode/template/sysauth.ut:29 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1690 #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:51 #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:114 #: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:103 #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:58 -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/sysauth.htm:24 +#: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/sysauth.ut:19 msgid "Password" msgstr "Heslo" @@ -6372,7 +6403,7 @@ msgstr "Ping" msgid "Pkts." msgstr "paketů" -#: modules/luci-base/luasrc/view/sysauth.htm:19 +#: modules/luci-base/ucode/template/sysauth.ut:19 msgid "Please enter your username and password." msgstr "Prosím vložte vaše uživatelské jméno a heslo." @@ -6389,6 +6420,7 @@ msgctxt "Chain hook policy" msgid "Policy: <strong>%h</strong> (%h)" msgstr "" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:579 #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/dropbear.js:21 msgid "Port" msgstr "Port" @@ -6405,11 +6437,11 @@ msgstr "Stav portu:" msgid "Potential negation of: %s" msgstr "Potenciální negace: %s" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:37 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:38 msgid "Power Management Mode" msgstr "Režim řízení spotřeby" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:35 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:36 msgid "Pre-emptive CRC errors (CRCP_P)" msgstr "Preemptivní chyby CRC (CRCP_P)" @@ -6484,6 +6516,8 @@ msgid "Primary becomes active slave whenever it comes back up (always, 0)" msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:508 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:584 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:616 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:129 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:197 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:223 @@ -6603,11 +6637,11 @@ msgstr "Mobilní QMI" msgid "Quality" msgstr "Kvalita" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:428 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:433 msgid "Query all available upstream resolvers." msgstr "" -"Dotazovat se všech dostupných nadřazených <abbr title=\"Domain Name " -"System\">DNS</abbr> serverů." +"Dotazovat se všech dostupných nadřazených <abbr title=\"Domain Name System" +"\">DNS</abbr> serverů." #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:556 msgid "Query interval" @@ -6689,7 +6723,7 @@ msgstr "" "Nezpracované šestnáctkové bajty. Ponechte prázdné, pokud to poskytovatel " "internetu nevyžaduje" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:345 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:350 msgid "Read <code>/etc/ethers</code> to configure the DHCP server." msgstr "" "Přečtěte si <code>/etc/ethers</code> ke konfiguraci <abbr title=\"Dynamic " @@ -6707,7 +6741,7 @@ msgstr "Grafy v reálném čase" msgid "Reassociation Deadline" msgstr "Termín reasociace" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:301 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:306 msgid "Rebind protection" msgstr "Opětovné nastavení ochrany" @@ -6792,6 +6826,7 @@ msgid "" msgstr "" #: modules/luci-compat/luasrc/model/network/proto_relay.lua:153 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:611 #: protocols/luci-proto-relay/htdocs/luci-static/resources/protocol/relay.js:39 msgid "Relay" msgstr "Přenos" @@ -6883,6 +6918,10 @@ msgstr "Vyžadováno u některých ISP, např. Charter s DocSIS 3" msgid "Required. Base64-encoded private key for this interface." msgstr "Povinné. Soukromý klíč tohoto rozhraní v kódování Base64." +#: protocols/luci-proto-nebula/htdocs/luci-static/resources/protocol/nebula.js:40 +msgid "Required. Path to the .yml config file for this interface." +msgstr "" + #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:587 msgid "Required. Public key of the WireGuard peer." msgstr "" @@ -6964,7 +7003,7 @@ msgid "Reselection policy for primary slave" msgstr "" #: modules/luci-base/htdocs/luci-static/resources/luci.js:2197 -#: modules/luci-base/luasrc/view/sysauth.htm:39 +#: modules/luci-base/ucode/template/sysauth.ut:39 #: modules/luci-compat/luasrc/view/cbi/delegator.htm:17 #: modules/luci-compat/luasrc/view/cbi/footer.htm:30 #: modules/luci-compat/luasrc/view/cbi/simpleform.htm:66 @@ -6983,10 +7022,14 @@ msgstr "Obnovit na výchozí" msgid "Resolv and Hosts Files" msgstr "Soubory Resolv a Hosts" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:356 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:361 msgid "Resolv file" msgstr "Soubor resolve" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:292 +msgid "Resolve specified FQDNs to an IP." +msgstr "" + #: modules/luci-base/htdocs/luci-static/resources/rpc.js:405 msgid "Resource not found" msgstr "Zdroj nebyl nalezen" @@ -7013,7 +7056,7 @@ msgstr "Obnovit" msgid "Restore backup" msgstr "Obnovit ze zálohy" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:393 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:398 msgid "" "Return answers to DNS queries matching the subnet from which the query was " "received if multiple IPs are available." @@ -7101,7 +7144,7 @@ msgstr "" msgid "Robustness" msgstr "Robustnost" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:486 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:491 msgid "" "Root directory for files served via TFTP. <em>Enable TFTP server</em> and " "<em>TFTP server root</em> turn on the TFTP server and serve files from " @@ -7205,6 +7248,11 @@ msgstr "SHA256" msgid "SNR" msgstr "Odstup signálu od šumu" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:258 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:569 +msgid "SRV" +msgstr "" + #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/dropbear.js:10 #: modules/luci-mod-system/root/usr/share/luci/menu.d/luci-mod-system.json:38 msgid "SSH Access" @@ -7347,11 +7395,11 @@ msgstr "" msgid "Server" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:519 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:524 msgid "Server address" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:513 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:518 msgid "Server name" msgstr "" @@ -7441,7 +7489,7 @@ msgstr "Nastavení" msgid "Setup routes for proxied IPv6 neighbours." msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:30 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:31 msgid "Severely Errored Seconds (SES)" msgstr "Silně chybné sekundy (SES)" @@ -7455,7 +7503,6 @@ msgid "Short Preamble" msgstr "Krátká preambule" #: 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 msgid "Show current backup file list" msgstr "Ukázat aktuální seznam záložních souborů" @@ -7489,7 +7536,7 @@ msgstr "Signál" msgid "Signal / Noise" msgstr "Signál / šum" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:25 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:26 msgid "Signal Attenuation (SATN)" msgstr "Útlum signálu (SATN)" @@ -7506,7 +7553,7 @@ msgstr "Signál:" msgid "Size" msgstr "Velikost" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:473 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:478 msgid "Size of DNS query cache" msgstr "Velikost mezipaměti DNS dotazů" @@ -7523,12 +7570,12 @@ msgstr "Přeskočit" msgid "Skip from backup files that are equal to those in /rom" msgstr "" -#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:42 +#: themes/luci-theme-openwrt-2020/ucode/template/themes/openwrt2020/header.ut:35 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:46 msgid "Skip to content" msgstr "Skočit na obsah" -#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:41 +#: themes/luci-theme-openwrt-2020/ucode/template/themes/openwrt2020/header.ut:34 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:45 msgid "Skip to navigation" msgstr "Skočit na navigaci" @@ -7546,14 +7593,10 @@ msgstr "Software VLAN" msgid "Some fields are invalid, cannot save values!" msgstr "Některá pole obsahují neplatné hodnoty, nelze uložit!" -#: modules/luci-base/luasrc/view/error404.htm:9 +#: modules/luci-base/ucode/template/error404.ut:10 msgid "Sorry, the object you requested was not found." msgstr "Omlouváme se, ale požadovaný objekt nebyl nalezen." -#: modules/luci-base/luasrc/view/error500.htm:9 -msgid "Sorry, the server encountered an unexpected error." -msgstr "Omlouváme se, na serveru došlo k neočekávané vyjímce." - #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:442 msgid "" "Sorry, there is no sysupgrade support present; a new firmware image must be " @@ -7592,7 +7635,7 @@ msgctxt "nft ip sport" msgid "Source port" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:500 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:505 msgid "" "Special <abbr title=\"Preboot eXecution Environment\">PXE</abbr> boot " "options for Dnsmasq." @@ -7969,7 +8012,7 @@ msgstr "Statické zápůjčky" msgid "Static address" msgstr "Statická adresa" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:598 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:669 msgid "" "Static leases are used to assign fixed IP addresses and symbolic hostnames " "to DHCP clients. They are also required for non-dynamic interface " @@ -7986,7 +8029,7 @@ msgstr "Limit nečinnosti stanice" #: modules/luci-base/root/usr/share/luci/menu.d/luci-base.json:16 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:541 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:929 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:9 +#: modules/luci-mod-status/ucode/template/admin_status/index.ut:9 msgid "Status" msgstr "Stav" @@ -8012,7 +8055,7 @@ msgstr "" msgid "Strict filtering" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:422 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:427 msgid "Strict order" msgstr "Striktní výběr" @@ -8025,11 +8068,11 @@ msgstr "Silné" msgid "Submit" msgstr "Odeslat" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:372 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:377 msgid "Suppress logging" msgstr "Potlačit logování" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:373 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:378 msgid "Suppress logging of the routine operation for the DHCP protocol." msgstr "Potlačit protokolování rutinního provozu protokolu DHCP." @@ -8083,6 +8126,14 @@ msgstr "Synchronizovat s NTP serverem" msgid "Sync with browser" msgstr "Synchronizovat s prohlížečem" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:293 +msgid "Syntax: <code>/fqdn[/fqdn…]/[ipaddr]</code>." +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:569 +msgid "Syntax: <code>_service._proto.example.com</code>." +msgstr "" + #: modules/luci-base/root/usr/share/luci/menu.d/luci-base.json:26 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/10_system.js:17 #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:113 @@ -8108,9 +8159,9 @@ msgstr "Vlastnosti systému" msgid "System log buffer size" msgstr "Velikost bufferu systémového logu" -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:79 -#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:86 -#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:71 +#: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/header.ut:67 +#: themes/luci-theme-material/ucode/template/themes/material/header.ut:81 +#: themes/luci-theme-openwrt-2020/ucode/template/themes/openwrt2020/header.ut:64 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:89 msgid "System running in recovery (initramfs) mode." msgstr "" @@ -8139,7 +8190,7 @@ msgstr "" msgid "TCP:" msgstr "TCP:" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:485 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:490 msgid "TFTP server root" msgstr "Kořenový adresář TFTP serveru" @@ -8164,6 +8215,7 @@ msgstr "Délka fronty TX" msgid "Table" msgstr "Tabulka" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:574 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:56 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:66 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:187 @@ -8236,15 +8288,15 @@ msgstr "" "Postup aktualizace pro koncový bod HE.net se změnil. Místo číselného ID " "uživatele musí být nyní zadáno normální uživatelské jméno!" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:681 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:752 msgid "The IP address %h is already used by another static lease" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:690 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:761 msgid "The IP address is outside of any DHCP pool address range" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:520 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:525 msgid "The IP address of the boot server" msgstr "" @@ -8426,7 +8478,7 @@ msgid "" "to be received and retransmitted which costs airtime)" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:514 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:519 msgid "The hostname of the boot server" msgstr "" @@ -8511,15 +8563,15 @@ msgstr "Název sítě je již používán" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:139 msgid "" -"The network ports on this device can be combined to several <abbr " -"title=\"Virtual Local Area Network\">VLAN</abbr>s in which computers can " +"The network ports on this device can be combined to several <abbr title=" +"\"Virtual Local Area Network\">VLAN</abbr>s in which computers can " "communicate directly with each other. <abbr title=\"Virtual Local Area " "Network\">VLAN</abbr>s are often used to separate different network " "segments. Often there is by default one Uplink port for a connection to the " "next greater network like the internet and other ports for a local network." msgstr "" -"Síťové porty tohoto zařízení mohou být kombinovány do několika <abbr " -"title=\"Virtualních místních sítí\">VLAN</abbr> ve kterých počítače mohou " +"Síťové porty tohoto zařízení mohou být kombinovány do několika <abbr title=" +"\"Virtualních místních sítí\">VLAN</abbr> ve kterých počítače mohou " "komunikovat přímo mezi sebou. <abbr title=\"Virtuální místní sítě \">VLAN</" "abbr> se často používají na oddělení různých siťových částí. Většinou je " "jeden port pro připojení k vyšší síti (Uplink) jako třeba internet a " @@ -8569,7 +8621,7 @@ msgstr "" msgid "The selected %s mode is incompatible with %s encryption" msgstr "Vybraný režim %s není kompatibilní s šifrováním %s" -#: modules/luci-base/luasrc/view/csrftoken.htm:11 +#: modules/luci-base/ucode/template/csrftoken.ut:11 msgid "The submitted security token is invalid or already expired!" msgstr "Odeslaný bezpečnostní token je neplatný nebo již vypršel!" @@ -8653,8 +8705,8 @@ msgid "" "nftables rules is discouraged and may lead to incomplete traffic filtering." msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:746 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:778 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:817 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:849 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:130 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:179 msgid "There are no active leases" @@ -8664,8 +8716,8 @@ msgstr "Žádné aktivní zápůjčky" msgid "There are no changes to apply" msgstr "Žádné změny k provedení" -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:70 -#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:62 +#: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/header.ut:58 +#: themes/luci-theme-openwrt-2020/ucode/template/themes/openwrt2020/header.ut:55 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:80 msgid "" "There is no password set on this router. Please configure a root password to " @@ -8688,7 +8740,6 @@ msgid "This does not look like a valid PEM file" msgstr "Toto nevypadá jako platný PEM soubor" #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:454 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:16 #, fuzzy msgid "" "This is a list of shell glob patterns for matching files and directories to " @@ -8734,7 +8785,7 @@ msgstr "" "Toto je adresa lokálního koncového bodu přiřazená zprostředkovatelem " "tunelového propojení, obvykle končí na <code>...:2/64</code>" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:266 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:268 msgid "This is the only DHCP server in the local network." msgstr "" "Toto je jediný <abbr title=\"Dynamic Host Configuration Protocol\">DHCP</" @@ -8823,8 +8874,8 @@ msgstr "Časové pásmo" #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:440 msgid "" "To fully configure the local WireGuard interface from an existing (e.g. " -"provider supplied) configuration file, use the <strong><a class=\"full-" -"import\" href=\"#\">configuration import</a></strong> instead." +"provider supplied) configuration file, use the <strong><a class=\"full-import" +"\" href=\"#\">configuration import</a></strong> instead." msgstr "" #: modules/luci-base/htdocs/luci-static/resources/luci.js:2674 @@ -8989,7 +9040,7 @@ msgstr "Nelze určit externí IP adresu" msgid "Unable to determine upstream interface" msgstr "Nelze určit odchozí WAN rozhraní" -#: modules/luci-base/luasrc/view/error404.htm:11 +#: modules/luci-base/ucode/template/error404.ut:12 msgid "Unable to dispatch" msgstr "Nelze odeslat" @@ -9044,7 +9095,7 @@ msgstr "Nelze uložit obsah: %s" msgid "Unable to verify PIN" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:32 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:33 msgid "Unavailable Seconds (UAS)" msgstr "Počet nedostupných sekund (UAS)" @@ -9193,7 +9244,7 @@ msgid "" "will be restarted to apply the updated configuration." msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:423 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:428 msgid "Upstream resolvers will be queried in the order of the resolv file." msgstr "" "<abbr title=\"Domain Name System\">DNS</abbr> servery budou dotazovány podle " @@ -9204,7 +9255,7 @@ msgstr "" msgid "Uptime" msgstr "Doba běhu" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:344 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:349 msgid "Use <code>/etc/ethers</code>" msgstr "Použít <code>/etc/ethers</code>" @@ -9315,7 +9366,7 @@ msgstr "" msgid "Use system certificates for inner-tunnel" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:599 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:670 msgid "" "Use the <em>Add</em> Button to add a new lease entry. The <em>MAC address</" "em> identifies the host, the <em>IPv4 address</em> specifies the fixed " @@ -9374,11 +9425,11 @@ msgstr "" msgid "User key (PEM encoded)" msgstr "Uživatelský klíč (PEM formát)" -#: modules/luci-base/luasrc/view/sysauth.htm:23 +#: modules/luci-base/ucode/template/sysauth.ut:23 #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:112 #: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:101 #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:56 -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/sysauth.htm:18 +#: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/sysauth.ut:13 msgid "Username" msgstr "Uživatelské jméno" @@ -9476,7 +9527,7 @@ msgstr "" msgid "VXLANv6 (RFC7348)" msgstr "VXLANv6 (RFC7348)" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:398 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:403 msgid "" "Validate DNS replies and cache DNSSEC data, requires upstream to support " "DNSSEC." @@ -9513,7 +9564,7 @@ msgstr "Výrobce" msgid "Vendor Class to send when requesting DHCP" msgstr "Třída výrobce (Vendor Class) odesílaná při vyžádání DHCP" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:403 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:408 msgid "Verify unsigned domain responses really come from unsigned domains." msgstr "" @@ -9590,6 +9641,10 @@ msgstr "Varování: Existují neuložené změny, které se po restartu ztratí! msgid "Weak" msgstr "Slabé" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:589 +msgid "Weight" +msgstr "" + #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1029 msgid "" "When delegating prefixes to multiple downstreams, interfaces with a higher " @@ -9718,7 +9773,7 @@ msgstr "Bezdrátová síť je zakázána" msgid "Wireless network is enabled" msgstr "Bezdrátová síť je povolena" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:278 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:280 msgid "Write received DNS queries to syslog." msgstr "Zapisovat přijaté požadavky DNS do systemového logu." @@ -9758,8 +9813,16 @@ msgstr "" "zařízení.<br /><strong>Varování: Pokud zakážete základní init skripty jako " "\"network\", vaše zařízení se může stát nepřístupným!</strong>" -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:90 -#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:97 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:559 +msgid "You may add multiple records for the same Target." +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:596 +msgid "You may add multiple records for the same domain." +msgstr "" + +#: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/header.ut:78 +#: themes/luci-theme-material/ucode/template/themes/material/header.ut:92 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:73 msgid "" "You must enable JavaScript in your browser or LuCI will not work properly." @@ -9792,7 +9855,17 @@ msgstr "Nastavení ZRam" msgid "ZRam Size" msgstr "Velikost ZRam" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:449 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:558 +msgid "_proto: _tcp, _udp, _sctp, _quic, … ." +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:557 +msgid "" +"_service: _sip, _ldap, _imap, _stun, _xmpp-client, … . (Note: while _http is " +"possible, no browsers support SRV records.)" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:454 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:152 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:163 msgid "any" @@ -9903,8 +9976,8 @@ msgstr "např.: --proxy 10.10.10.10" msgid "e.g: dump" msgstr "např.: dump" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:726 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:756 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:797 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:827 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:101 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:148 msgid "expired" @@ -10115,9 +10188,9 @@ msgstr "jedinečná hodnota" msgid "unknown" msgstr "neznámý" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:456 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:724 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:754 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:461 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:795 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:825 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:99 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:146 msgid "unlimited" @@ -10333,6 +10406,22 @@ msgstr "ano" msgid "« Back" msgstr "« Zpět" +#~ msgid "Back to configuration" +#~ msgstr "Zpět na nastavení" + +#~ msgid "Close list..." +#~ msgstr "Zavřít seznam…" + +# Není co dodat. +#~ msgid "Internal Server Error" +#~ msgstr "Vnitřní chyba serveru" + +#~ msgid "No files found" +#~ msgstr "Nebyly nalezeny žádné soubory" + +#~ msgid "Sorry, the server encountered an unexpected error." +#~ msgstr "Omlouváme se, na serveru došlo k neočekávané vyjímce." + #~ msgid "Do not forward queries that cannot be answered by public resolvers." #~ msgstr "" #~ "Nepřeposílat požadavky, které nemohou být zodpovězeny veřejnými jmennými " @@ -10625,12 +10714,12 @@ msgstr "« Zpět" #~ msgid "" #~ "The filesystem that was used to format the memory (<abbr title=\"for " -#~ "example\">e.g.</abbr> <samp><abbr title=\"Third Extended " -#~ "Filesystem\">ext3</abbr></samp>)" +#~ "example\">e.g.</abbr> <samp><abbr title=\"Third Extended Filesystem" +#~ "\">ext3</abbr></samp>)" #~ msgstr "" -#~ "Souborový systém, který byl použit pro formátování paměti (<abbr " -#~ "title=\"například\">napři.</abbr> <samp><abbr title=\"Souborový " -#~ "systém\">ext3</abbr></samp>)" +#~ "Souborový systém, který byl použit pro formátování paměti (<abbr title=" +#~ "\"například\">napři.</abbr> <samp><abbr title=\"Souborový systém\">ext3</" +#~ "abbr></samp>)" #~ msgid "" #~ "The flash image was uploaded. Below is the checksum and file size listed, " @@ -10736,10 +10825,9 @@ msgstr "« Zpět" #~ msgstr "" #~ "Na této stránce můžete nastavit síťová rozhraní. Můžete přemostit několik " #~ "rozhraní zaškrtnutím pole \"přemostit rozhraní\" a zápisem názvů " -#~ "rozhraní, vzájemně oddělených mezerami. Také můžete použít <abbr " -#~ "title=\"Virtual Local Area Network\">VLAN</abbr> zápis <samp>INTERFACE." -#~ "VLANNR</samp> (<abbr title=\"například\">např.</abbr>: <samp>eth0.1</" -#~ "samp>)." +#~ "rozhraní, vzájemně oddělených mezerami. Také můžete použít <abbr title=" +#~ "\"Virtual Local Area Network\">VLAN</abbr> zápis <samp>INTERFACE.VLANNR</" +#~ "samp> (<abbr title=\"například\">např.</abbr>: <samp>eth0.1</samp>)." #~ msgid "Package libiwinfo required!" #~ msgstr "Vyžadován balíček libiwinfo!" diff --git a/modules/luci-base/po/da/base.po b/modules/luci-base/po/da/base.po index e5be3efb59..5418ffb406 100644 --- a/modules/luci-base/po/da/base.po +++ b/modules/luci-base/po/da/base.po @@ -1,14 +1,14 @@ msgid "" msgstr "" -"PO-Revision-Date: 2022-09-05 01:37+0000\n" +"PO-Revision-Date: 2022-10-23 17:26+0000\n" "Last-Translator: drax red <drax@outlook.dk>\n" -"Language-Team: Danish <https://hosted.weblate.org/projects/openwrt/luci/da/" -">\n" +"Language-Team: Danish <https://hosted.weblate.org/projects/openwrt/luci/da/>" +"\n" "Language: da\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.14.1-dev\n" +"X-Generator: Weblate 4.14.2-dev\n" #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:643 msgctxt "Yet unknown nftables table family (\"family\" table \"name\")" @@ -20,7 +20,6 @@ msgid "%.1f dB" msgstr "%.1f dB" #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:123 -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:117 msgid "%d Bit" msgstr "%d Bit" @@ -229,6 +228,22 @@ msgstr "<abbr title=\"Router Advertisement\">RA</abbr> MTU" msgid "<abbr title=\"Router Advertisement\">RA</abbr>-Service" msgstr "<abbr title=\"Router Advertisement\">RA</abbr>-tjeneste" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:294 +msgid "" +"<code>/#/</code> matches any domain. <code>/example.com/</code> returns " +"NXDOMAIN." +msgstr "" +"<code>/#/</code> matcher ethvert domæne. <code>/example.com/</code> " +"returnerer NXDOMAIN." + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:295 +msgid "" +"<code>/example.com/#</code> returns NULL addresses (<code>0.0.0.0</code> and " +"<code>::</code>) for example.com and its subdomains." +msgstr "" +"<code>/example.com/#</code> returnerer NULL-adresser (<code>0.0.0.0</code> " +"og <code>::</code>) for example.com og dets underdomæner." + #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:87 msgctxt "nft relational \">\" operator expression" msgid "<var>%s</var> greater than <strong>%s</strong>" @@ -397,7 +412,7 @@ msgstr "" msgid "ATM device number" msgstr "ATM-enhedsnummer" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:36 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:37 msgid "ATU-C System Vendor ID" msgstr "ATU-C-systemleverandør-id" @@ -407,7 +422,7 @@ msgstr "ATU-C-systemleverandør-id" msgid "Absent Interface" msgstr "Fraværende Interface" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:320 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:325 msgid "Accept DNS queries only from hosts whose address is on a local subnet." msgstr "" "Accepter kun DNS-forespørgsler fra værter, hvis adresse er i et lokalt " @@ -545,12 +560,10 @@ msgstr "Tilføj Instans" #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:171 #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:177 #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:274 -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:165 -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:268 msgid "Add key" msgstr "Tilføj nøgle" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:410 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:415 msgid "Add local domain suffix to names served from hosts files." msgstr "Tilføj lokalt domæne-suffiks til navne, der serveres fra hosts-filer." @@ -571,11 +584,11 @@ msgstr "Tilføj til sortliste" msgid "Add to Whitelist" msgstr "Tilføj til hvidliste" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:367 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:372 msgid "Additional hosts files" msgstr "Yderligere værtsfiler" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:417 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:422 msgid "Additional servers file" msgstr "Yderligere servere fil" @@ -605,7 +618,7 @@ msgstr "Adresseindstillingen er ugyldig" msgid "Address to access local relay bridge" msgstr "Adresse for at få adgang til lokal relæbro" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:289 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:291 msgid "Addresses" msgstr "Adresser" @@ -638,7 +651,7 @@ msgstr "Aldringstid" msgid "Aggregate Originator Messages" msgstr "Aggregerede meddelelser fra afsender" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:27 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:28 msgid "Aggregate Transmit Power (ACTATP)" msgstr "ACTATP (Aggregate Transmit Power)" @@ -677,11 +690,11 @@ msgstr "Alias Interface" msgid "Alias of \"%s\"" msgstr "Alias for \"%s\"" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:427 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:432 msgid "All servers" msgstr "Alle servere" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:378 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:383 msgid "" "Allocate IP addresses sequentially, starting from the lowest available " "address." @@ -689,7 +702,7 @@ msgstr "" "Tildel IP-adresser sekventielt, startende fra den lavest tilgængelige " "adresse." -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:377 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:382 msgid "Allocate IPs sequentially" msgstr "Tildel IP'er sekventielt" @@ -717,7 +730,7 @@ msgstr "Tillader gamle 802.11b-hastigheder" msgid "Allow listed only" msgstr "Tillad kun anførte" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:306 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:311 msgid "Allow localhost" msgstr "Tillad localhost" @@ -763,7 +776,7 @@ msgstr "Altid slukket (kerne: ingen)" msgid "Always on (kernel: default-on)" msgstr "Altid tændt (kerne: standard tændt)" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:538 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:543 msgid "Always send DHCP Options. Sometimes needed, with e.g. PXELinux." msgstr "" "Altid sende DHCP-indstillinger. Nogle gange er det nødvendigt, f.eks. med " @@ -794,7 +807,7 @@ msgid "An optional, short description for this device" msgstr "En valgfri, kort beskrivelse af denne enhed" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1484 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:20 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:21 msgid "Annex" msgstr "Bilag" @@ -914,7 +927,7 @@ msgstr "Enhver pakke" msgid "Any zone" msgstr "Enhver zone" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:532 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:537 msgid "Apply DHCP Options to this net. (Empty = all clients)." msgstr "Anvend DHCP-indstillinger på dette net. (Tomt = alle klienter)." @@ -1013,11 +1026,11 @@ msgstr "Godkendelse" msgid "Authentication Type" msgstr "Godkendelsestype" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:265 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:267 msgid "Authoritative" msgstr "Autoritativ" -#: modules/luci-base/luasrc/view/sysauth.htm:17 +#: modules/luci-base/ucode/template/sysauth.ut:17 #: themes/luci-theme-bootstrap/htdocs/luci-static/resources/view/bootstrap/sysauth.js:11 msgid "Authorization Required" msgstr "Autorisation påkrævet" @@ -1089,7 +1102,7 @@ msgstr "Gennemsnit:" msgid "Avoid Bridge Loops" msgstr "Undgå bro Loops" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:388 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:393 msgid "" "Avoid uselessly triggering dial-on-demand links (filters SRV/SOA records and " "names with underscores)." @@ -1126,10 +1139,6 @@ msgstr "Tilbage" msgid "Back to Overview" msgstr "Tilbage til Oversigt" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:48 -msgid "Back to configuration" -msgstr "Tilbage til konfiguration" - #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:826 msgid "Back to peer configuration" msgstr "Tilbage til peer-konfiguration" @@ -1143,7 +1152,6 @@ msgid "Backup / Flash Firmware" msgstr "Backup / Flash Firmware" #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:351 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:12 msgid "Backup file list" msgstr "Liste over backup-filer" @@ -1192,7 +1200,6 @@ msgid "Beacon Interval" msgstr "Beacon-interval" #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:352 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:46 msgid "" "Below is the determined list of files to backup. It consists of changed " "configuration files marked by opkg, essential base files and the user " @@ -1206,7 +1213,7 @@ msgstr "" msgid "Bind NTP server" msgstr "Bind NTP server" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:326 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:331 msgid "Bind dynamically to interfaces rather than wildcard address." msgstr "Bind dynamisk til interfaces i stedet for wildcard-adresser." @@ -1222,6 +1229,19 @@ msgstr "Bind dynamisk til interfaces i stedet for wildcard-adresser." msgid "Bind interface" msgstr "Bind interface" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:595 +msgid "" +"Bind service records to a domain name: specify the location of services." +msgstr "Bind tjeneste akter til et domænenavn: angiv placeringen af tjenester." + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:556 +msgid "" +"Bind service records to a domain name: specify the location of services. See " +"<a href=\"%s\">RFC2782</a>." +msgstr "" +"Bind tjeneste akter til et domænenavn: Angiv placeringen af tjenester. Se <a " +"href=\"%s\">RFC2782</a>." + #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:59 #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:64 #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:64 @@ -1328,6 +1348,10 @@ msgstr "" msgid "CLAT configuration failed" msgstr "CLAT-konfiguration mislykkedes" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:574 +msgid "CNAME or fqdn" +msgstr "CNAME eller fqdn" + #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/processes.js:72 msgid "CPU usage (%)" msgstr "CPU-forbrug (%)" @@ -1354,7 +1378,6 @@ msgstr "Opkald mislykkedes" #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:295 #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:209 #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:487 -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:203 msgid "Cancel" msgstr "Annuller" @@ -1572,7 +1595,6 @@ msgstr "Klient-ID, der skal sendes ved anmodning om DHCP" #: modules/luci-base/htdocs/luci-static/resources/ui.js:4392 #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:173 #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:179 -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:167 msgid "Close" msgstr "Luk" @@ -1589,17 +1611,13 @@ msgstr "" "Luk inaktiv forbindelse efter det angivne antal sekunder, brug 0 for at " "opretholde forbindelsen" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:49 -msgid "Close list..." -msgstr "Luk liste..." - #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:44 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:63 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2184 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:391 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:352 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:355 -#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:72 +#: themes/luci-theme-material/ucode/template/themes/material/header.ut:66 msgid "Collecting data..." msgstr "Indsamler data..." @@ -1638,6 +1656,10 @@ msgstr "" msgid "Compute outgoing checksum (optional)." msgstr "Beregner den udgående checksum (valgfrit)." +#: protocols/luci-proto-nebula/htdocs/luci-static/resources/protocol/nebula.js:40 +msgid "Config File" +msgstr "Konfigurationsfil" + #: modules/luci-base/htdocs/luci-static/resources/ui.js:4375 #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:454 msgid "Configuration" @@ -1894,7 +1916,7 @@ msgstr "DAE-port" msgid "DAE-Secret" msgstr "DAE-Secret" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:525 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:530 msgid "DHCP Options" msgstr "DHCP-indstillinger" @@ -1934,11 +1956,11 @@ msgstr "DHCPv6-tjeneste" msgid "DNS" msgstr "DNS" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:282 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:284 msgid "DNS forwardings" msgstr "DNS-videresendelser" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:445 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:450 msgid "DNS query port" msgstr "Port til DNS-forespørgsel" @@ -1946,7 +1968,7 @@ msgstr "Port til DNS-forespørgsel" msgid "DNS search domains" msgstr "DNS-søgningsdomæner" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:438 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:443 msgid "DNS server port" msgstr "Port til DNS-server" @@ -1962,11 +1984,11 @@ msgstr "DNS vægt" msgid "DNS-Label / FQDN" msgstr "DNS-mærke / FQDN" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:397 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:402 msgid "DNSSEC" msgstr "DNSSEC" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:402 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:407 msgid "DNSSEC check unsigned" msgstr "DNSSEC check usigneret" @@ -1979,11 +2001,11 @@ msgid "DS-Lite AFTR address" msgstr "DS-Lite AFTR-adresse" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1481 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:44 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:45 msgid "DSL" msgstr "DSL" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:14 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:15 msgid "DSL Status" msgstr "DSL Status" @@ -1996,12 +2018,12 @@ msgid "DTIM Interval" msgstr "DTIM interval" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:59 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:700 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:771 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:136 msgid "DUID" msgstr "DUID" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:21 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:22 msgid "Data Rate" msgstr "Datahastighed" @@ -2064,7 +2086,6 @@ msgstr "Slet" #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:205 #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:211 -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:199 msgid "Delete key" msgstr "Slet nøgle" @@ -2253,7 +2274,7 @@ msgstr "Deaktiveret" msgid "Disassociate On Low Acknowledgement" msgstr "Fjern tilknytning ved lav anerkendelse" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:302 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:307 msgid "" "Discard upstream responses containing <a href=\"%s\">RFC1918</a> addresses." msgstr "" @@ -2300,7 +2321,7 @@ msgstr "Afstand til det fjerneste netværksmedlem i meter." msgid "Distributed ARP Table" msgstr "Distribueret ARP-tabel" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:543 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:548 msgid "" "Dnsmasq instance to which this boot section is bound. If unspecified, the " "section is valid for all dnsmasq instances." @@ -2317,7 +2338,7 @@ msgstr "" "Dnsmasq er en let <abbr title=\"Dynamic Host Configuration Protocol\">DHCP</" "abbr>-server og <abbr title=\"Domain Name System\">DNS</abbr>-forwarder." -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:414 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:419 msgid "Do not cache negative replies, e.g. for non-existent domains." msgstr "Cache ikke negative svar, f.eks. for ikke-eksisterende domæner." @@ -2329,15 +2350,15 @@ msgstr "Cache ikke negative svar, f.eks. for ikke-eksisterende domæner." msgid "Do not create host route to peer (optional)." msgstr "Opret ikke værtsrute til peer (valgfrit)." -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:262 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:264 msgid "Do not forward DNS queries without dots or domain parts." msgstr "Videresend ikke DNS-forespørgsler uden prikker eller domænedele." -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:383 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:388 msgid "Do not forward reverse lookups for local networks." msgstr "Videresend ikke reverse opslag for lokale netværk." -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:339 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:344 msgid "Do not listen on the specified interfaces." msgstr "Lyt ikke på de angivne interfaces." @@ -2375,7 +2396,6 @@ msgid "Do you really want to delete \"%s\" ?" msgstr "Ønsker du virkelig at slette \"%s\" ?" #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:206 -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:200 msgid "Do you really want to delete the following SSH key?" msgstr "Ønsker du virkelig at slette følgende SSH-nøgle?" @@ -2395,15 +2415,16 @@ msgstr "Vil du erstatte den nuværende PSK?" msgid "Do you want to replace the current keys?" msgstr "Vil du erstatte de nuværende nøgler?" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:593 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:606 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:664 msgid "Domain" msgstr "Domæne" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:261 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:263 msgid "Domain required" msgstr "Påkrævet domæne" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:311 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:316 msgid "Domain whitelist" msgstr "Domænehvidliste" @@ -2650,7 +2671,7 @@ msgstr "Aktiver NTP-klient" msgid "Enable Single DES" msgstr "Aktiver Single DES" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:480 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:485 msgid "Enable TFTP server" msgstr "Aktiver TFTP-server" @@ -2740,7 +2761,7 @@ msgstr "Aktiver understøttelse af multicast-trafik (valgfrit)." msgid "Enable the DF (Don't Fragment) flag of the encapsulating packets." msgstr "Aktiver DF-flaget (Don't Fragment) i de indkapslende pakker." -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:481 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:486 msgid "Enable the built-in single-instance TFTP server." msgstr "Aktiver den indbyggede TFTP-server med enkeltinstans." @@ -2861,7 +2882,7 @@ msgstr "Fejl" msgid "Error getting PublicKey" msgstr "Fejl ved hentning af Offentlig nøgle" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:29 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:30 msgid "Errored seconds (ES)" msgstr "Fejlede sekunder (ES)" @@ -2883,11 +2904,11 @@ msgstr "Hvert 30. sekund (langsom, 0)" msgid "Every second (fast, 1)" msgstr "Hvert sekund (hurtigt, 1)" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:338 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:343 msgid "Exclude interfaces" msgstr "Udelad interfaces" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:307 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:312 msgid "" "Exempt <code>127.0.0.0/8</code> and <code>::1</code> from rebinding checks, " "e.g. for RBL services." @@ -2899,7 +2920,7 @@ msgstr "" msgid "Existing device" msgstr "Eksisterende enhed" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:409 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:414 msgid "Expand hosts" msgstr "Udvid værter" @@ -3035,7 +3056,7 @@ msgstr "Kunne ikke indstille driftstilstand" msgid "File" msgstr "Fil" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:418 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:423 msgid "" "File listing upstream resolvers, optionally domain-specific, e.g. " "<code>server=1.2.3.4</code>, <code>server=/domain/1.2.3.4</code>." @@ -3047,20 +3068,20 @@ msgstr "" msgid "File not accessible" msgstr "Filen er ikke tilgængelig" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:349 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:354 msgid "File to store DHCP lease information." msgstr "Fil til lagring af DHCP-leasingoplysninger." -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:357 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:362 msgid "File with upstream resolvers." msgstr "Fil med upstream resolvers." #: modules/luci-base/htdocs/luci-static/resources/ui.js:2846 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:507 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:512 msgid "Filename" msgstr "Filnavn" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:493 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:498 msgid "Filename of the boot image advertised to clients." msgstr "Filnavn på det boot image, der annonceres til klienterne." @@ -3069,11 +3090,11 @@ msgstr "Filnavn på det boot image, der annonceres til klienterne." msgid "Filesystem" msgstr "Filsystem" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:382 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:387 msgid "Filter private" msgstr "Filter privat" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:387 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:392 msgid "Filter useless" msgstr "Filter ubrugelig" @@ -3139,7 +3160,7 @@ msgstr "Firmware-fil" msgid "Firmware Version" msgstr "Firmware-version" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:446 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:451 msgid "Fixed source port for outbound DNS queries." msgstr "Fast kildeport til udgående DNS-forespørgsler." @@ -3165,7 +3186,7 @@ msgstr "Flash-operationer" msgid "Flashing…" msgstr "Flashing…" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:537 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:542 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:686 msgid "Force" msgstr "Tving" @@ -3210,7 +3231,7 @@ msgstr "Tving opgradering" msgid "Force use of NAT-T" msgstr "Tving brug af NAT-T" -#: modules/luci-base/luasrc/view/csrftoken.htm:8 +#: modules/luci-base/ucode/template/csrftoken.ut:8 msgid "Form token mismatch" msgstr "Form token uoverensstemmelse" @@ -3248,7 +3269,7 @@ msgstr "" "Videresend DHCPv6-meddelelser mellem den udpegede master interface og " "downstream-interfaces." -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:28 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:29 msgid "Forward Error Correction Seconds (FECS)" msgstr "Fecs (Forward Error Correction Seconds)" @@ -3409,18 +3430,16 @@ msgstr "Globale indstillinger" msgid "Global network options" msgstr "Globale netværksindstillinger" -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:82 -#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:89 -#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:74 +#: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/header.ut:70 +#: themes/luci-theme-material/ucode/template/themes/material/header.ut:84 +#: themes/luci-theme-openwrt-2020/ucode/template/themes/openwrt2020/header.ut:67 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:92 -#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:72 msgid "Go to firmware upgrade..." msgstr "Gå til opgradering af firmware..." -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:72 -#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:64 +#: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/header.ut:60 +#: themes/luci-theme-openwrt-2020/ucode/template/themes/openwrt2020/header.ut:57 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:82 -#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:62 msgid "Go to password configuration..." msgstr "Gå til adgangskodekonfiguration..." @@ -3560,7 +3579,7 @@ msgstr "HTTP(S)-adgang" msgid "Hang Up" msgstr "Læg på" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:33 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:34 msgid "Header Error Code Errors (HEC)" msgstr "Header Error Code Errors (HEC)" @@ -3613,7 +3632,7 @@ msgstr "Vært" msgid "Host expiry timeout" msgstr "Udløbstidspunkt for vært" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:508 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:513 msgid "Host requests this filename from the boot server." msgstr "Værten anmoder om dette filnavn fra opstartsserveren." @@ -3622,8 +3641,8 @@ msgid "Host-Uniq tag content" msgstr "Host-Uniq tag indhold" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:38 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:559 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:607 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:630 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:678 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/10_system.js:54 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:87 #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:135 @@ -3638,7 +3657,7 @@ msgstr "Værtsnavn, der skal sendes, når der anmodes om DHCP" msgid "Hostnames" msgstr "Værtsnavne" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:551 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:622 msgid "" "Hostnames are used to bind a domain name to an IP address. This setting is " "redundant for hostnames already configured with static leases, but it can be " @@ -3705,7 +3724,7 @@ msgstr "IP-adresser" msgid "IP Protocol" msgstr "IP-protokol" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:258 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:260 msgid "IP Sets" msgstr "IP-sæt" @@ -3713,7 +3732,7 @@ msgstr "IP-sæt" msgid "IP Type" msgstr "IP-type" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:563 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:634 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:178 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:204 msgid "IP address" @@ -3739,15 +3758,15 @@ msgctxt "nft meta l4proto" msgid "IP protocol" msgstr "IP protokol" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:589 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:660 msgid "IP set" msgstr "IP-sæt" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:295 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:300 msgid "IP sets" msgstr "IP-sæt" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:432 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:437 msgid "IPs to override with NXDOMAIN" msgstr "IP'er, der skal tilsidesættes med NXDOMAIN" @@ -3788,7 +3807,7 @@ msgstr "IPv4 Upstream" #: modules/luci-base/htdocs/luci-static/resources/protocol/static.js:178 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:39 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:665 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:736 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:88 #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:164 msgid "IPv4 address" @@ -3959,7 +3978,7 @@ msgstr "IPv6 kilde routing" msgid "IPv6 suffix" msgstr "IPv6-suffiks" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:706 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:777 msgid "IPv6 suffix (hex)" msgstr "IPv6-suffiks (hex)" @@ -4074,7 +4093,7 @@ msgstr "" "en meget langsommelig proces at bytte data, da swap-enheden ikke kan tilgås " "med de høje datarater i <abbr title=\"Random Access Memory\">RAM</abbr>." -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:363 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:368 msgid "Ignore <code>/etc/hosts</code>" msgstr "Ignorer <code>/etc/hosts</code>" @@ -4082,7 +4101,7 @@ msgstr "Ignorer <code>/etc/hosts</code>" msgid "Ignore interface" msgstr "Ignorer interface" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:352 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:357 msgid "Ignore resolv file" msgstr "Ignorer resolv-fil" @@ -4134,7 +4153,7 @@ msgstr "" "avoidance for at undgå broadcast loops, der kan få hele LAN'et til at gå i " "stå." -#: modules/luci-base/luasrc/view/csrftoken.htm:13 +#: modules/luci-base/ucode/template/csrftoken.ut:13 msgid "" "In order to prevent unauthorized access to the system, your request has been " "blocked. Click \"Continue »\" below to return to the previous page." @@ -4248,7 +4267,7 @@ msgstr "Indre certifikatbegrænsning (Wildcard)" msgid "Install protocol extensions..." msgstr "Installer protokoludvidelser..." -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:542 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:547 msgid "Instance" msgstr "Instans" @@ -4337,10 +4356,6 @@ msgstr "Interfaces" msgid "Internal" msgstr "Intern" -#: modules/luci-base/luasrc/view/error500.htm:8 -msgid "Internal Server Error" -msgstr "Intern serverfejl" - #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:285 msgid "Interval For Sending Learning Packets" msgstr "Interval for afsendelse af læringspakker" @@ -4414,8 +4429,8 @@ msgstr "Ugyldig kommando" msgid "Invalid hexadecimal value" msgstr "Ugyldig hexadecimal værdi" -#: modules/luci-base/luasrc/view/sysauth.htm:12 -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/sysauth.htm:37 +#: modules/luci-base/ucode/template/sysauth.ut:12 +#: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/sysauth.ut:32 msgid "Invalid username and/or password! Please try again." msgstr "Ugyldigt brugernavn og/eller password! Prøv venligst igen." @@ -4439,8 +4454,8 @@ msgstr "" "Det ser ud til, at du forsøger at flashe et image, der ikke passer ind i " "flashhukommelsen, kontrollere venligst imagefilen!" -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:89 -#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:96 +#: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/header.ut:77 +#: themes/luci-theme-material/ucode/template/themes/material/header.ut:91 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:72 msgid "JavaScript required!" msgstr "JavaScript påkrævet!" @@ -4572,11 +4587,19 @@ msgstr "Sprog" msgid "Language and Style" msgstr "Sprog og stil" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:560 +msgid "" +"Larger weights (of the same prio) are given a proportionately higher " +"probability of being selected." +msgstr "" +"Større vægte (af samme prio) gives en forholdsmæssigt højere sandsynlighed " +"for at blive valgt." + #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:575 msgid "Last member interval" msgstr "Sidste medlemsinterval" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:23 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:24 msgid "Latency" msgstr "Latency" @@ -4592,11 +4615,11 @@ msgstr "Lær" msgid "Learn routes" msgstr "Lær ruter" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:348 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:353 msgid "Lease file" msgstr "Lease-fil" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:697 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:768 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:679 msgid "Lease time" msgstr "Lease tid" @@ -4644,19 +4667,19 @@ msgstr "Legend:" msgid "Limit" msgstr "Grænse" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:24 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:25 msgid "Line Attenuation (LATN)" msgstr "Linjedæmpning (LATN)" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:18 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:19 msgid "Line Mode" msgstr "Linjetilstand" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:17 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:18 msgid "Line State" msgstr "Linjetilstand" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:19 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:20 msgid "Line Uptime" msgstr "Linje oppetid" @@ -4677,12 +4700,12 @@ msgctxt "nft @ll,off,len" msgid "Link layer header bits %d-%d" msgstr "Linklags header bits %d-%d" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:433 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:438 msgid "List of IP addresses to convert into NXDOMAIN responses." msgstr "Liste over IP-adresser, der skal konverteres til NXDOMAIN-svar." -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:296 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:581 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:301 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:652 msgid "List of IP sets to populate with the specified domain IPs." msgstr "Liste over IP-sæt, der skal udfyldes med de angivne domæne-IP'er." @@ -4718,15 +4741,11 @@ msgstr "" msgid "List of SSH key files for auth" msgstr "Liste over SSH-nøglefiler til auth" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:312 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:317 msgid "List of domains to allow RFC1918 responses for." msgstr "Liste over domæner, som der skal tillades RFC1918-svar for." -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:290 -msgid "List of domains to force to an IP address." -msgstr "Liste over domæner, der skal tvinges til en IP-adresse." - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:283 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:285 msgid "List of upstream resolvers to forward queries to." msgstr "Liste over upstream-resolvere at videresende forespørgsler til." @@ -4734,7 +4753,7 @@ msgstr "Liste over upstream-resolvere at videresende forespørgsler til." msgid "Listen Port" msgstr "Lytteport" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:332 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:337 msgid "Listen interfaces" msgstr "Lytte interfaces" @@ -4742,7 +4761,7 @@ msgstr "Lytte interfaces" msgid "Listen only on the given interface or, if unspecified, on all" msgstr "Lytter kun på det angivne interface eller, hvis ikke angivet, på alle" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:333 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:338 msgid "" "Listen only on the specified interfaces, and loopback if not excluded " "explicitly." @@ -4754,7 +4773,7 @@ msgstr "" msgid "ListenPort setting is invalid" msgstr "ListenPort-indstillingen er ugyldig" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:439 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:444 msgid "Listening port for inbound DNS queries." msgstr "Lytteport til indgående DNS-forespørgsler." @@ -4781,9 +4800,9 @@ msgid "Loading directory contents…" msgstr "Indlæser mappeindhold…" #: modules/luci-base/htdocs/luci-static/resources/luci.js:1942 -#: modules/luci-base/luasrc/view/view.htm:4 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:12 -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/sysauth.htm:45 +#: modules/luci-base/ucode/template/view.ut:4 +#: modules/luci-mod-status/ucode/template/admin_status/index.ut:12 +#: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/sysauth.ut:40 msgid "Loading view…" msgstr "Indlæser visning…" @@ -4841,19 +4860,19 @@ msgstr "Lokal tid" msgid "Local ULA" msgstr "Lokal ULA" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:273 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:275 msgid "Local domain" msgstr "Lokalt domæne" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:274 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:276 msgid "Local domain suffix appended to DHCP names and hosts file entries." msgstr "Lokalt domæne-suffiks tilføjes til DHCP-navne og poster i hosts-filen." -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:269 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:271 msgid "Local server" msgstr "Lokal server" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:319 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:324 msgid "Local service only" msgstr "Kun lokal betjening" @@ -4861,7 +4880,7 @@ msgstr "Kun lokal betjening" msgid "Local wireguard key" msgstr "Lokal wireguard nøgle" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:392 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:397 msgid "Localise queries" msgstr "Lokaliser forespørgsler" @@ -4873,7 +4892,7 @@ msgstr "Lås til BSSID" msgid "Log output level" msgstr "Log output-niveau" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:277 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:279 msgid "Log queries" msgstr "Log forespørgsler" @@ -4901,8 +4920,8 @@ msgid "Logical network to which the tunnel will be added (bridged) (optional)." msgstr "" "Logisk netværk, som tunnelen skal tilføjes til (overbrygges) (valgfrit)." -#: modules/luci-base/luasrc/view/sysauth.htm:38 -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/sysauth.htm:41 +#: modules/luci-base/ucode/template/sysauth.ut:38 +#: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/sysauth.ut:36 msgid "Login" msgstr "Login" @@ -4914,7 +4933,7 @@ msgstr "Log ud" msgid "Loose filtering" msgstr "Løs filtrering" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:31 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:32 msgid "Loss of Signal Seconds (LOSS)" msgstr "Sekunder med tab af signal (LOSS)" @@ -4922,6 +4941,10 @@ msgstr "Sekunder med tab af signal (LOSS)" msgid "Lowest leased address as offset from the network address." msgstr "Laveste leased adresse som forskydning fra netværksadressen." +#: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/footer.ut:12 +msgid "Lua compatibility mode active" +msgstr "" + #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:48 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:83 msgid "MAC" @@ -4946,7 +4969,7 @@ msgstr "MAC VLAN" #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:591 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:40 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:619 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:690 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1164 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2177 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:56 @@ -5005,6 +5028,10 @@ msgstr "MII-interval" msgid "MTU" msgstr "MTU" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:259 +msgid "MX" +msgstr "MX" + #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:303 msgid "" "Make sure to clone the root filesystem using something like the commands " @@ -5031,19 +5058,19 @@ msgstr "Master" msgid "Max <abbr title=\"Router Advertisement\">RA</abbr> interval" msgstr "Max <abbr title=\"Router Advertisement\">RA</abbr>-interval" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:22 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:23 msgid "Max. Attainable Data Rate (ATTNDR)" msgstr "Max. opnåelig datahastighed (ATTNDR)" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:452 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:457 msgid "Max. DHCP leases" msgstr "Max. DHCP-leases" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:459 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:464 msgid "Max. EDNS0 packet size" msgstr "Max. EDNS0-pakkestørrelse" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:466 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:471 msgid "Max. concurrent queries" msgstr "Maks. samtidige forespørgsler" @@ -5055,15 +5082,15 @@ msgstr "Maksimal alder" msgid "Maximum allowed Listen Interval" msgstr "Maksimalt tilladt lytteinterval" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:453 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:458 msgid "Maximum allowed number of active DHCP leases." msgstr "Det maksimalt tilladte antal aktive DHCP-leases." -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:467 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:472 msgid "Maximum allowed number of concurrent DNS queries." msgstr "Det maksimalt tilladte antal samtidige DNS-forespørgsler." -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:460 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:465 msgid "Maximum allowed size of EDNS0 UDP packets." msgstr "Maksimal tilladt størrelse af EDNS0 UDP-pakker." @@ -5092,7 +5119,7 @@ msgstr "" msgid "Maximum transmit power" msgstr "Maksimal sendestyrke" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:389 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:394 msgid "May prevent VoIP or other services from working." msgstr "Kan forhindre VoIP eller andre tjenester i at fungere." @@ -5414,12 +5441,15 @@ msgstr "Navn på det nye netværk" msgid "Name of the tunnel device" msgstr "Navn på tunnelenheden" -#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:46 +#: themes/luci-theme-openwrt-2020/ucode/template/themes/openwrt2020/header.ut:39 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:50 -#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:44 msgid "Navigation" msgstr "Navigation" +#: protocols/luci-proto-nebula/htdocs/luci-static/resources/protocol/nebula.js:10 +msgid "Nebula Network" +msgstr "Nebula Netværk" + #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:653 msgid "Neighbour cache validity" msgstr "Naboens cache gyldighed" @@ -5455,7 +5485,7 @@ msgstr "Netværksværktøjer" msgid "Network address" msgstr "Netværksadresse" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:492 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:497 msgid "Network boot image" msgstr "Netværks boot image" @@ -5495,7 +5525,7 @@ msgstr "Migration af netværks ifname-konfiguration" msgid "Network interface" msgstr "Netværks interface" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:531 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:536 msgid "Network-ID" msgstr "Netværks-ID" @@ -5503,7 +5533,7 @@ msgstr "Netværks-ID" msgid "Never" msgstr "Aldrig" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:270 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:272 msgid "" "Never forward matching domains and subdomains, resolve from DHCP or hosts " "files only." @@ -5553,11 +5583,10 @@ msgstr "Ingen NAT-T" msgid "No RX signal" msgstr "Intet RX-signal" -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:80 -#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:87 -#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:72 +#: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/header.ut:68 +#: themes/luci-theme-material/ucode/template/themes/material/header.ut:82 +#: themes/luci-theme-openwrt-2020/ucode/template/themes/openwrt2020/header.ut:65 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:90 -#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:70 msgid "" "No changes to settings will be stored and are lost after rebooting. This " "mode should only be used to install a firmware upgrade" @@ -5600,10 +5629,6 @@ msgstr "Ingen tilgængelige poster" msgid "No entries in this directory" msgstr "Ingen poster i denne mappe" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:82 -msgid "No files found" -msgstr "Ingen filer fundet" - #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:833 msgid "" "No fixed interface listening port defined, peers might not be able to " @@ -5641,7 +5666,7 @@ msgstr "Der er ikke flere slaver til rådighed" msgid "No more slaves available, can not save interface" msgstr "Der er ikke flere slaver til rådighed, kan ikke gemme interface" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:413 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:418 msgid "No negative cache" msgstr "Ingen negativ cache" @@ -5649,10 +5674,9 @@ msgstr "Ingen negativ cache" msgid "No nftables ruleset loaded." msgstr "Der er ikke indlæst noget nftables-regelsæt." -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:69 -#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:61 +#: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/header.ut:57 +#: themes/luci-theme-openwrt-2020/ucode/template/themes/openwrt2020/header.ut:54 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:79 -#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:59 msgid "No password set!" msgstr "Ingen adgangskode angivet!" @@ -5662,8 +5686,6 @@ msgstr "Der er endnu ikke defineret nogen peers." #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:146 #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:283 -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:140 -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:277 msgid "No public keys present yet." msgstr "Der er endnu ingen offentlige nøgler til stede." @@ -5693,7 +5715,7 @@ msgstr "Ingen zone tildelt" msgid "Noise" msgstr "Støj" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:26 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:27 msgid "Noise Margin (SNR)" msgstr "Støjmargin (SNR)" @@ -5701,11 +5723,11 @@ msgstr "Støjmargin (SNR)" msgid "Noise:" msgstr "Støj:" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:34 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:35 msgid "Non Pre-emptive CRC errors (CRC_P)" msgstr "Ikke-forebyggende CRC-fejl (CRC_P)" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:325 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:330 msgid "Non-wildcard" msgstr "Ikke-wildcard" @@ -5720,7 +5742,7 @@ msgstr "Ingen" msgid "Normal" msgstr "Normal" -#: modules/luci-base/luasrc/view/error404.htm:8 +#: modules/luci-base/ucode/template/error404.ut:9 msgid "Not Found" msgstr "Blev ikke fundet" @@ -5772,7 +5794,7 @@ msgstr "Nslookup" msgid "Number of IGMP membership reports" msgstr "Antal IGMP-medlemskabsrapporter" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:474 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:479 msgid "Number of cached DNS entries, 10000 is maximum, 0 is no caching." msgstr "Antal cachede DNS-poster, 10000 er maksimum, 0 er ingen caching." @@ -5821,7 +5843,7 @@ msgstr "On-State Forsinkelse" msgid "On-link" msgstr "On-link" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:672 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:743 msgid "One of hostname or MAC address must be specified!" msgstr "Der skal angives et værtsnavn eller MAC-adresse!" @@ -5860,7 +5882,6 @@ msgid "Open iptables rules overview…" msgstr "Åbn oversigt over iptables-regler…" #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:472 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:19 msgid "Open list..." msgstr "Åbn listen..." @@ -6030,7 +6051,7 @@ msgstr "Valgfrit. UDP-port, der bruges til udgående og indgående pakker." msgid "Options" msgstr "Indstillinger" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:526 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:531 msgid "" "Options for the Network-ID. (Note: needs also Network-ID.) E.g. " "\"<code>42,192.168.1.4</code>\" for NTP server, \"<code>3,192.168.4.4</code>" @@ -6043,10 +6064,14 @@ msgstr "" "system, der kører dnsmasq\"." #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:125 -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:119 msgid "Options:" msgstr "Indstillinger:" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:584 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:616 +msgid "Ordinal: lower comes first." +msgstr "Ordinal: den laveste kommer først." + #: protocols/luci-proto-batman-adv/htdocs/luci-static/resources/protocol/batadv.js:55 msgid "Originator Interval" msgstr "Ophavsmandsinterval" @@ -6323,13 +6348,13 @@ msgctxt "MACVLAN mode" msgid "Pass-through (Mirror physical device to single MAC VLAN)" msgstr "Pass-through (spejler fysisk enhed til et enkelt MAC VLAN)" -#: modules/luci-base/luasrc/view/sysauth.htm:29 +#: modules/luci-base/ucode/template/sysauth.ut:29 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1690 #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:51 #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:114 #: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:103 #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:58 -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/sysauth.htm:24 +#: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/sysauth.ut:19 msgid "Password" msgstr "Adgangskode" @@ -6357,7 +6382,6 @@ msgid "Password2" msgstr "Adgangskode2" #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:266 -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:260 msgid "Paste or drag SSH key file…" msgstr "Indsæt eller træk SSH-nøglefilen…" @@ -6505,7 +6529,7 @@ msgstr "Ping" msgid "Pkts." msgstr "Pkts." -#: modules/luci-base/luasrc/view/sysauth.htm:19 +#: modules/luci-base/ucode/template/sysauth.ut:19 msgid "Please enter your username and password." msgstr "Indtast venligst dit brugernavn og din adgangskode." @@ -6522,6 +6546,7 @@ msgctxt "Chain hook policy" msgid "Policy: <strong>%h</strong> (%h)" msgstr "Politik: <strong>%h</strong> (%h)" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:579 #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/dropbear.js:21 msgid "Port" msgstr "Port" @@ -6538,11 +6563,11 @@ msgstr "Port status:" msgid "Potential negation of: %s" msgstr "Potentiel negation af: %s" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:37 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:38 msgid "Power Management Mode" msgstr "Strømstyringstilstand" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:35 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:36 msgid "Pre-emptive CRC errors (CRCP_P)" msgstr "Forudgående CRC-fejl (CRCP_P)" @@ -6621,6 +6646,8 @@ msgid "Primary becomes active slave whenever it comes back up (always, 0)" msgstr "Primær bliver aktiv slave, når den kommer op igen (altid, 0)" #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:508 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:584 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:616 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:129 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:197 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:223 @@ -6716,7 +6743,6 @@ msgid "Public key: %h" msgstr "Offentlig nøgle: %h" #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:290 -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:284 msgid "" "Public keys allow for the passwordless SSH logins with a higher security " "compared to the use of plain passwords. In order to upload a new key to the " @@ -6748,7 +6774,7 @@ msgstr "QMI-Cellulær" msgid "Quality" msgstr "Kvalitet" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:428 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:433 msgid "Query all available upstream resolvers." msgstr "Forespørg alle tilgængelige upstream-resolvere." @@ -6832,7 +6858,7 @@ msgstr "" "Rå hex-kodede bytes. Lad den være tom, medmindre din internetudbyder kræver " "dette" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:345 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:350 msgid "Read <code>/etc/ethers</code> to configure the DHCP server." msgstr "Læs <code>/etc/ethers</code> for at konfigurere DHCP-serveren." @@ -6848,7 +6874,7 @@ msgstr "Grafer i realtid" msgid "Reassociation Deadline" msgstr "Frist for genforening" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:301 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:306 msgid "Rebind protection" msgstr "Beskyttelse mod genindbinding" @@ -6935,6 +6961,7 @@ msgstr "" "lig med den angivne værdi" #: modules/luci-compat/luasrc/model/network/proto_relay.lua:153 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:611 #: protocols/luci-proto-relay/htdocs/luci-static/resources/protocol/relay.js:39 msgid "Relay" msgstr "Relæ" @@ -7025,6 +7052,10 @@ msgstr "Påkrævet for visse internetudbydere, f.eks. Charter med DOCSIS 3" msgid "Required. Base64-encoded private key for this interface." msgstr "Påkrævet. Base64-kodet privat nøgle for dette interface." +#: protocols/luci-proto-nebula/htdocs/luci-static/resources/protocol/nebula.js:40 +msgid "Required. Path to the .yml config file for this interface." +msgstr "Påkrævet. Sti til .yml-konfigurationsfilen for dette interface." + #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:587 msgid "Required. Public key of the WireGuard peer." msgstr "Påkrævet. Offentlig nøgle til WireGuard-peeren." @@ -7106,7 +7137,7 @@ msgid "Reselection policy for primary slave" msgstr "Politik for genvalg af primærslave" #: modules/luci-base/htdocs/luci-static/resources/luci.js:2197 -#: modules/luci-base/luasrc/view/sysauth.htm:39 +#: modules/luci-base/ucode/template/sysauth.ut:39 #: modules/luci-compat/luasrc/view/cbi/delegator.htm:17 #: modules/luci-compat/luasrc/view/cbi/footer.htm:30 #: modules/luci-compat/luasrc/view/cbi/simpleform.htm:66 @@ -7125,10 +7156,14 @@ msgstr "Nulstil til standardindstillingerne" msgid "Resolv and Hosts Files" msgstr "Resolv- og værtsfiler" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:356 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:361 msgid "Resolv file" msgstr "Resolv-fil" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:292 +msgid "Resolve specified FQDNs to an IP." +msgstr "Liste over domæner, der skal tvinges til en IP-adresse." + #: modules/luci-base/htdocs/luci-static/resources/rpc.js:405 msgid "Resource not found" msgstr "Ressourcen blev ikke fundet" @@ -7155,7 +7190,7 @@ msgstr "Gendan" msgid "Restore backup" msgstr "Gendan backup" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:393 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:398 msgid "" "Return answers to DNS queries matching the subnet from which the query was " "received if multiple IPs are available." @@ -7247,7 +7282,7 @@ msgstr "" msgid "Robustness" msgstr "Robusthed" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:486 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:491 msgid "" "Root directory for files served via TFTP. <em>Enable TFTP server</em> and " "<em>TFTP server root</em> turn on the TFTP server and serve files from " @@ -7357,6 +7392,11 @@ msgstr "SHA256" msgid "SNR" msgstr "SNR" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:258 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:569 +msgid "SRV" +msgstr "SRV" + #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/dropbear.js:10 #: modules/luci-mod-system/root/usr/share/luci/menu.d/luci-mod-system.json:38 msgid "SSH Access" @@ -7376,7 +7416,6 @@ msgstr "SSH brugernavn" #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:289 #: modules/luci-mod-system/root/usr/share/luci/menu.d/luci-mod-system.json:51 -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:283 msgid "SSH-Keys" msgstr "SSH-nøgler" @@ -7504,11 +7543,11 @@ msgstr "Send værtsnavnet for denne enhed" msgid "Server" msgstr "Server" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:519 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:524 msgid "Server address" msgstr "Serveradresse" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:513 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:518 msgid "Server name" msgstr "Servernavn" @@ -7605,7 +7644,7 @@ msgstr "Indstillinger" msgid "Setup routes for proxied IPv6 neighbours." msgstr "Opsætning af ruter til proxied IPv6-naboer." -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:30 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:31 msgid "Severely Errored Seconds (SES)" msgstr "Alvorligt fejlbehæftede sekunder (SES)" @@ -7619,7 +7658,6 @@ msgid "Short Preamble" msgstr "Kort præambel" #: 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 msgid "Show current backup file list" msgstr "Vis den aktuelle backup-fil liste" @@ -7653,7 +7691,7 @@ msgstr "Signal" msgid "Signal / Noise" msgstr "Signal / støj" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:25 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:26 msgid "Signal Attenuation (SATN)" msgstr "Signaldæmpning (SATN)" @@ -7670,7 +7708,7 @@ msgstr "Signal:" msgid "Size" msgstr "Størrelse" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:473 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:478 msgid "Size of DNS query cache" msgstr "Størrelsen af DNS forespørgselscachen" @@ -7687,15 +7725,13 @@ msgstr "Spring over" msgid "Skip from backup files that are equal to those in /rom" msgstr "Spring over fra backup filer, der er lig med dem i /rom" -#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:42 +#: themes/luci-theme-openwrt-2020/ucode/template/themes/openwrt2020/header.ut:35 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:46 -#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:40 msgid "Skip to content" msgstr "Gå til indhold" -#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:41 +#: themes/luci-theme-openwrt-2020/ucode/template/themes/openwrt2020/header.ut:34 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:45 -#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:39 msgid "Skip to navigation" msgstr "Gå til navigation" @@ -7712,14 +7748,10 @@ msgstr "Software-VLAN" msgid "Some fields are invalid, cannot save values!" msgstr "Nogle felter er ugyldige, kan ikke gemme værdier!" -#: modules/luci-base/luasrc/view/error404.htm:9 +#: modules/luci-base/ucode/template/error404.ut:10 msgid "Sorry, the object you requested was not found." msgstr "Beklager, det objekt, du anmodede om, blev ikke fundet." -#: modules/luci-base/luasrc/view/error500.htm:9 -msgid "Sorry, the server encountered an unexpected error." -msgstr "Beklager, serveren stødte på en uventet fejl." - #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:442 msgid "" "Sorry, there is no sysupgrade support present; a new firmware image must be " @@ -7758,7 +7790,7 @@ msgctxt "nft ip sport" msgid "Source port" msgstr "Kildeport" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:500 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:505 msgid "" "Special <abbr title=\"Preboot eXecution Environment\">PXE</abbr> boot " "options for Dnsmasq." @@ -8210,7 +8242,7 @@ msgstr "Statiske Leases" msgid "Static address" msgstr "Statisk adresse" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:598 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:669 msgid "" "Static leases are used to assign fixed IP addresses and symbolic hostnames " "to DHCP clients. They are also required for non-dynamic interface " @@ -8227,7 +8259,7 @@ msgstr "Grænse for inaktivitet på stationen" #: modules/luci-base/root/usr/share/luci/menu.d/luci-base.json:16 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:541 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:929 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:9 +#: modules/luci-mod-status/ucode/template/admin_status/index.ut:9 msgid "Status" msgstr "Status" @@ -8253,7 +8285,7 @@ msgstr "Lager" msgid "Strict filtering" msgstr "Streng filtrering" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:422 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:427 msgid "Strict order" msgstr "Streng orden" @@ -8266,11 +8298,11 @@ msgstr "Stærk" msgid "Submit" msgstr "Indsend" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:372 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:377 msgid "Suppress logging" msgstr "Undertrykker logning" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:373 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:378 msgid "Suppress logging of the routine operation for the DHCP protocol." msgstr "Undertrykker logning af rutineoperationen for DHCP-protokollen." @@ -8325,6 +8357,14 @@ msgstr "Synkroniser med NTP-server" msgid "Sync with browser" msgstr "Synkroniser med browser" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:293 +msgid "Syntax: <code>/fqdn[/fqdn…]/[ipaddr]</code>." +msgstr "Syntaks: <code>/fqdn[/fqdn…]/[ipaddr]</code>." + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:569 +msgid "Syntax: <code>_service._proto.example.com</code>." +msgstr "Syntaks: <code>_service._proto.example.com</code>." + #: modules/luci-base/root/usr/share/luci/menu.d/luci-base.json:26 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/10_system.js:17 #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:113 @@ -8350,11 +8390,10 @@ msgstr "Systemegenskaber" msgid "System log buffer size" msgstr "Størrelse af systemlogbuffer" -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:79 -#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:86 -#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:71 +#: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/header.ut:67 +#: themes/luci-theme-material/ucode/template/themes/material/header.ut:81 +#: themes/luci-theme-openwrt-2020/ucode/template/themes/openwrt2020/header.ut:64 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:89 -#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:69 msgid "System running in recovery (initramfs) mode." msgstr "Systemet kører i genoprettelsestilstand (initramfs)." @@ -8382,7 +8421,7 @@ msgstr "TCP-kildeport" msgid "TCP:" msgstr "TCP:" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:485 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:490 msgid "TFTP server root" msgstr "TFTP-server rod" @@ -8407,6 +8446,7 @@ msgstr "TX-køens længde" msgid "Table" msgstr "Tabel" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:574 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:56 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:66 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:187 @@ -8492,15 +8532,15 @@ msgstr "" "Konfigurationen af HE.net-endpoint-opdateringen er ændret, du skal nu bruge " "det almindelige brugernavn i stedet for bruger-id'et!" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:681 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:752 msgid "The IP address %h is already used by another static lease" msgstr "IP-adressen %h er allerede brugt af en anden statisk lease" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:690 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:761 msgid "The IP address is outside of any DHCP pool address range" msgstr "IP-adressen er uden for et DHCP-adresseområde i en DHCP-pool" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:520 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:525 msgid "The IP address of the boot server" msgstr "IP-adressen på opstartsserveren" @@ -8679,12 +8719,10 @@ msgstr "" "at oprette en forbindelse til denne enhed." #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:172 -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:166 msgid "The given SSH public key has already been added." msgstr "Den angivne offentlige SSH-nøgle er allerede blevet tilføjet." #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:178 -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:172 msgid "" "The given SSH public key is invalid. Please supply proper public RSA, " "ED25519 or ECDSA keys." @@ -8704,7 +8742,7 @@ msgstr "" "hver videresendt OGM, hvorved omkostningerne ved et ekstra hop (pakken skal " "modtages og videresendes, hvilket koster sendetid)" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:514 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:519 msgid "The hostname of the boot server" msgstr "Værtsnavnet for opstartsserveren" @@ -8874,7 +8912,7 @@ msgstr "" msgid "The selected %s mode is incompatible with %s encryption" msgstr "Den valgte %s-modus er ikke kompatibel med %s-kryptering" -#: modules/luci-base/luasrc/view/csrftoken.htm:11 +#: modules/luci-base/ucode/template/csrftoken.ut:11 msgid "The submitted security token is invalid or already expired!" msgstr "Den indsendte sikkerhedstoken er ugyldigt eller allerede udløbet!" @@ -8963,8 +9001,8 @@ msgstr "" "iptables- og nftables-regler, hvilket kan føre til ufuldstændig " "trafikfiltrering." -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:746 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:778 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:817 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:849 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:130 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:179 msgid "There are no active leases" @@ -8974,10 +9012,9 @@ msgstr "Der er ingen aktive leases" msgid "There are no changes to apply" msgstr "Der er ingen ændringer at anvende" -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:70 -#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:62 +#: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/header.ut:58 +#: themes/luci-theme-openwrt-2020/ucode/template/themes/openwrt2020/header.ut:55 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:80 -#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:60 msgid "" "There is no password set on this router. Please configure a root password to " "protect the web interface." @@ -8999,7 +9036,6 @@ msgid "This does not look like a valid PEM file" msgstr "Dette ligner ikke en gyldig PEM-fil" #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:454 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:16 msgid "" "This is a list of shell glob patterns for matching files and directories to " "include during sysupgrade. Modified files in /etc/config/ and certain other " @@ -9050,7 +9086,7 @@ msgstr "" "Dette er den lokale endepunktsadresse, der er tildelt af tunnelmægleren, og " "den ender normalt med <code>...:2/64</code>" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:266 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:268 msgid "This is the only DHCP server in the local network." msgstr "Dette er den eneste DHCP-server i det lokale netværk." @@ -9306,7 +9342,7 @@ msgstr "Kan ikke bestemme ekstern IP-adresse" msgid "Unable to determine upstream interface" msgstr "Kan ikke bestemme upstream interface" -#: modules/luci-base/luasrc/view/error404.htm:11 +#: modules/luci-base/ucode/template/error404.ut:12 msgid "Unable to dispatch" msgstr "Kan ikke sendes" @@ -9361,7 +9397,7 @@ msgstr "Kan ikke gemme indholdet: %s" msgid "Unable to verify PIN" msgstr "PIN-koden kunne ikke bekræftes" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:32 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:33 msgid "Unavailable Seconds (UAS)" msgstr "Ikke-tilgængelige sekunder (UAS)" @@ -9420,7 +9456,6 @@ msgid "Unmount" msgstr "Unmount" #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:121 -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:115 msgid "Unnamed key" msgstr "unavngiven nøgle" @@ -9519,7 +9554,7 @@ msgstr "" "Når du trykker på \"Fortsæt\", omdøbes ifname-indstillingerne, og netværket " "genstartes for at anvende den opdaterede konfiguration." -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:423 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:428 msgid "Upstream resolvers will be queried in the order of the resolv file." msgstr "Upstream-resolvere vil blive forespurgt i rækkefølgen af resolv-filen." @@ -9528,7 +9563,7 @@ msgstr "Upstream-resolvere vil blive forespurgt i rækkefølgen af resolv-filen. msgid "Uptime" msgstr "Oppetid" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:344 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:349 msgid "Use <code>/etc/ethers</code>" msgstr "Brug <code>/etc/ethers</code>" @@ -9643,7 +9678,7 @@ msgstr "Brug systemcertifikater" msgid "Use system certificates for inner-tunnel" msgstr "Brug systemcertifikater til den indre tunnel" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:599 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:670 msgid "" "Use the <em>Add</em> Button to add a new lease entry. The <em>MAC address</" "em> identifies the host, the <em>IPv4 address</em> specifies the fixed " @@ -9704,11 +9739,11 @@ msgstr "Bruger-id" msgid "User key (PEM encoded)" msgstr "Brugernøgle (PEM kodet)" -#: modules/luci-base/luasrc/view/sysauth.htm:23 +#: modules/luci-base/ucode/template/sysauth.ut:23 #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:112 #: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:101 #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:56 -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/sysauth.htm:18 +#: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/sysauth.ut:13 msgid "Username" msgstr "Brugernavn" @@ -9791,7 +9826,7 @@ msgstr "VPNC (CISCO 3000 (og andre) VPN)" #: protocols/luci-proto-vti/htdocs/luci-static/resources/protocol/vti.js:10 msgid "VTI" -msgstr "" +msgstr "VTI" #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:10 msgid "VXLAN (RFC7348)" @@ -9806,7 +9841,7 @@ msgstr "VXLAN Netværksidentifikator" msgid "VXLANv6 (RFC7348)" msgstr "VXLANv6 (RFC7348)" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:398 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:403 msgid "" "Validate DNS replies and cache DNSSEC data, requires upstream to support " "DNSSEC." @@ -9843,7 +9878,7 @@ msgstr "Leverandør" msgid "Vendor Class to send when requesting DHCP" msgstr "Leverandørklasse, der skal sendes ved anmodning om DHCP" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:403 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:408 msgid "Verify unsigned domain responses really come from unsigned domains." msgstr "" "Verificere, at usignerede domænesvar virkelig kommer fra usignerede domæner." @@ -9921,6 +9956,10 @@ msgstr "Advarsel: Der er ikke gemte ændringer, som vil gå tabt ved genstart!" msgid "Weak" msgstr "Svag" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:589 +msgid "Weight" +msgstr "Vægt" + #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1029 msgid "" "When delegating prefixes to multiple downstreams, interfaces with a higher " @@ -10062,7 +10101,7 @@ msgstr "Trådløst netværk er deaktiveret" msgid "Wireless network is enabled" msgstr "Trådløst netværk er aktiveret" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:278 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:280 msgid "Write received DNS queries to syslog." msgstr "Skriv modtagne DNS-forespørgsler til syslog." @@ -10103,8 +10142,16 @@ msgstr "" "du deaktiverer vigtige init-scripts som \"network\", kan din enhed blive " "utilgængelig!</strong>" -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:90 -#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:97 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:559 +msgid "You may add multiple records for the same Target." +msgstr "Du kan tilføje flere akter for det samme mål." + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:596 +msgid "You may add multiple records for the same domain." +msgstr "Du kan tilføje flere akter for det samme domæne." + +#: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/header.ut:78 +#: themes/luci-theme-material/ucode/template/themes/material/header.ut:92 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:73 msgid "" "You must enable JavaScript in your browser or LuCI will not work properly." @@ -10137,7 +10184,19 @@ msgstr "ZRam-indstillinger" msgid "ZRam Size" msgstr "ZRam Størrelse" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:449 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:558 +msgid "_proto: _tcp, _udp, _sctp, _quic, … ." +msgstr "_proto: _tcp, _udp, _sctp, _quic, … ." + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:557 +msgid "" +"_service: _sip, _ldap, _imap, _stun, _xmpp-client, … . (Note: while _http is " +"possible, no browsers support SRV records.)" +msgstr "" +"_service: _sip, _ldap, _imap, _stun, _xmpp-client, … . (Bemærk: _http er " +"muligt, men ingen browsere understøtter SRV-poster.)" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:454 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:152 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:163 msgid "any" @@ -10248,8 +10307,8 @@ msgstr "f.eks.: --proxy 10.10.10.10.10" msgid "e.g: dump" msgstr "f.eks.: dump" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:726 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:756 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:797 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:827 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:101 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:148 msgid "expired" @@ -10465,9 +10524,9 @@ msgstr "unik værdi" msgid "unknown" msgstr "ukendt" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:456 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:724 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:754 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:461 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:795 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:825 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:99 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:146 msgid "unlimited" @@ -10683,6 +10742,21 @@ msgstr "ja" msgid "« Back" msgstr "« Tilbage" +#~ msgid "Back to configuration" +#~ msgstr "Tilbage til konfiguration" + +#~ msgid "Close list..." +#~ msgstr "Luk liste..." + +#~ msgid "Internal Server Error" +#~ msgstr "Intern serverfejl" + +#~ msgid "No files found" +#~ msgstr "Ingen filer fundet" + +#~ msgid "Sorry, the server encountered an unexpected error." +#~ msgstr "Beklager, serveren stødte på en uventet fejl." + #~ msgid "Do not forward queries that cannot be answered by public resolvers." #~ msgstr "" #~ "Videresend ikke forespørgsler, som ikke kan besvares af offentlige " diff --git a/modules/luci-base/po/de/base.po b/modules/luci-base/po/de/base.po index 823883f393..a2471eb220 100644 --- a/modules/luci-base/po/de/base.po +++ b/modules/luci-base/po/de/base.po @@ -231,6 +231,18 @@ msgstr "<abbr title=\"Router Advertisement\">RA</abbr> MTU" msgid "<abbr title=\"Router Advertisement\">RA</abbr>-Service" msgstr "<abbr title=\"Router Advertisement\">RA</abbr>-Service" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:294 +msgid "" +"<code>/#/</code> matches any domain. <code>/example.com/</code> returns " +"NXDOMAIN." +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:295 +msgid "" +"<code>/example.com/#</code> returns NULL addresses (<code>0.0.0.0</code> and " +"<code>::</code>) for example.com and its subdomains." +msgstr "" + #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:87 msgctxt "nft relational \">\" operator expression" msgid "<var>%s</var> greater than <strong>%s</strong>" @@ -396,7 +408,7 @@ msgstr "" msgid "ATM device number" msgstr "ATM Adapterindex" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:36 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:37 msgid "ATU-C System Vendor ID" msgstr "<abbr title=\"Internet Protokoll Version 4\">IPv4</abbr>-Adresse" @@ -406,7 +418,7 @@ msgstr "<abbr title=\"Internet Protokoll Version 4\">IPv4</abbr>-Adresse" msgid "Absent Interface" msgstr "Nicht vorhandener Adapter" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:320 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:325 msgid "Accept DNS queries only from hosts whose address is on a local subnet." msgstr "" "DNS-Dienste auf direkte lokale Subnetze beschränken um Missbrauch durch " @@ -547,7 +559,7 @@ msgstr "Instanz hinzufügen" msgid "Add key" msgstr "Schlüssel hinzufügen" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:410 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:415 msgid "Add local domain suffix to names served from hosts files." msgstr "Lokalen Domainsuffx an Namen aus der Hosts-Datei anhängen" @@ -568,11 +580,11 @@ msgstr "Zur Blacklist hinzügen" msgid "Add to Whitelist" msgstr "Zur Whitelist hinzufügen" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:367 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:372 msgid "Additional hosts files" msgstr "Zusätzliche Hosts-Dateien" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:417 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:422 msgid "Additional servers file" msgstr "Zusätzliche Nameserver-Datei" @@ -602,7 +614,7 @@ msgstr "Adressparameter ist ungültig" msgid "Address to access local relay bridge" msgstr "Adresse der lokalen Relay-Brücke" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:289 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:291 msgid "Addresses" msgstr "Adressen" @@ -635,7 +647,7 @@ msgstr "Altersgrenze" msgid "Aggregate Originator Messages" msgstr "Originator-Nachrichten aggregieren" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:27 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:28 msgid "Aggregate Transmit Power (ACTATP)" msgstr "Vollständige Sendeleistung (ACTATP)" @@ -674,11 +686,11 @@ msgstr "Alias-Schnittstelle" msgid "Alias of \"%s\"" msgstr "Alias von \"%s\"" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:427 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:432 msgid "All servers" msgstr "Alle Server" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:378 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:383 msgid "" "Allocate IP addresses sequentially, starting from the lowest available " "address." @@ -686,7 +698,7 @@ msgstr "" "IP-Adressen sequenziell vergeben, beginnend mit der kleinsten verfügbaren " "Adresse" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:377 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:382 msgid "Allocate IPs sequentially" msgstr "IPs sequenziell vergeben" @@ -717,7 +729,7 @@ msgstr "Veraltete 802.11b-Raten erlauben" msgid "Allow listed only" msgstr "Nur gelistete erlauben" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:306 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:311 msgid "Allow localhost" msgstr "Erlaube localhost" @@ -763,7 +775,7 @@ msgstr "Immer aus (kernel: none)" msgid "Always on (kernel: default-on)" msgstr "Immer ein (kernel: default-on)" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:538 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:543 msgid "Always send DHCP Options. Sometimes needed, with e.g. PXELinux." msgstr "Immer DHCP Optionen senden. Wird manchmal benötigt, z.B. mit PXELinux." @@ -795,7 +807,7 @@ msgid "An optional, short description for this device" msgstr "Kurze, optionale Beschreibung dieses Gerätes" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1484 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:20 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:21 msgid "Annex" msgstr "Anhang" @@ -916,7 +928,7 @@ msgstr "Jedes Paket" msgid "Any zone" msgstr "Beliebige Zone" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:532 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:537 msgid "Apply DHCP Options to this net. (Empty = all clients)." msgstr "DHCP Optionen auf dieses Netz anwenden. (Leer = alle clients)." @@ -1018,11 +1030,11 @@ msgstr "Authentifizierung" msgid "Authentication Type" msgstr "Authentifizierungstyp" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:265 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:267 msgid "Authoritative" msgstr "Authoritativ" -#: modules/luci-base/luasrc/view/sysauth.htm:17 +#: modules/luci-base/ucode/template/sysauth.ut:17 #: themes/luci-theme-bootstrap/htdocs/luci-static/resources/view/bootstrap/sysauth.js:11 msgid "Authorization Required" msgstr "Autorisierung benötigt" @@ -1094,7 +1106,7 @@ msgstr "Durchschnitt:" msgid "Avoid Bridge Loops" msgstr "Bridge-Schleifen vermeiden" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:388 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:393 msgid "" "Avoid uselessly triggering dial-on-demand links (filters SRV/SOA records and " "names with underscores)." @@ -1129,10 +1141,6 @@ msgstr "Zurück" msgid "Back to Overview" msgstr "Zurück zur Übersicht" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:48 -msgid "Back to configuration" -msgstr "Zurück zur Konfiguration" - #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:826 msgid "Back to peer configuration" msgstr "Zurück zur Konfiguration des Verbindungspartners" @@ -1146,7 +1154,6 @@ msgid "Backup / Flash Firmware" msgstr "Backup / Firmware Update" #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:351 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:12 msgid "Backup file list" msgstr "Liste zu sichernder Dateien" @@ -1197,7 +1204,6 @@ msgid "Beacon Interval" msgstr "Beacon-Intervall" #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:352 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:46 msgid "" "Below is the determined list of files to backup. It consists of changed " "configuration files marked by opkg, essential base files and the user " @@ -1212,7 +1218,7 @@ msgstr "" msgid "Bind NTP server" msgstr "Schnittstelle" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:326 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:331 msgid "Bind dynamically to interfaces rather than wildcard address." msgstr "" "Dynamisch an Netzwerkadapter binden statt die globale Standardadresse zu " @@ -1230,6 +1236,17 @@ msgstr "" msgid "Bind interface" msgstr "An Adapter binden" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:595 +msgid "" +"Bind service records to a domain name: specify the location of services." +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:556 +msgid "" +"Bind service records to a domain name: specify the location of services. See " +"<a href=\"%s\">RFC2782</a>." +msgstr "" + #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:59 #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:64 #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:64 @@ -1338,6 +1355,10 @@ msgstr "" msgid "CLAT configuration failed" msgstr "CLAT-Konfiguration fehlgeschlagen" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:574 +msgid "CNAME or fqdn" +msgstr "" + #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/processes.js:72 msgid "CPU usage (%)" msgstr "CPU-Nutzung (%)" @@ -1599,17 +1620,13 @@ msgstr "" "Inaktive Verbindungen nach Ablauf dieser Zeit in Sekunden schließen (0 um " "die Verbindung immer aufrecht zu erhalten)" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:49 -msgid "Close list..." -msgstr "Schließe Liste..." - #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:44 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:63 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2184 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:391 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:352 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:355 -#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:72 +#: themes/luci-theme-material/ucode/template/themes/material/header.ut:66 msgid "Collecting data..." msgstr "Sammle Daten..." @@ -1648,6 +1665,10 @@ msgstr "" msgid "Compute outgoing checksum (optional)." msgstr "Prüfsummen für zu sendende Pakete berechnet (optional)" +#: protocols/luci-proto-nebula/htdocs/luci-static/resources/protocol/nebula.js:40 +msgid "Config File" +msgstr "" + #: modules/luci-base/htdocs/luci-static/resources/ui.js:4375 #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:454 msgid "Configuration" @@ -1695,8 +1716,8 @@ msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:764 msgid "" -"Configures the operation mode of the <abbr title=\"Router " -"Advertisement\">RA</abbr> service on this interface." +"Configures the operation mode of the <abbr title=\"Router Advertisement" +"\">RA</abbr> service on this interface." msgstr "" "Konfiguriert den Betriebsmodus des <abbr title=\"Router Advertisement\">RA</" "abbr>-Dienstes an dieser Schnittstelle." @@ -1884,8 +1905,8 @@ msgstr "individuelles Blink-Intervall (kernel:timer)" #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/leds.js:59 msgid "" -"Customizes the behaviour of the device <abbr title=\"Light Emitting " -"Diode\">LED</abbr>s if possible." +"Customizes the behaviour of the device <abbr title=\"Light Emitting Diode" +"\">LED</abbr>s if possible." msgstr "" "Passt das Verhalten der Geräte-<abbr title=\"Light Emitting Diode\">LED</" "abbr>s an - wenn dies möglich ist." @@ -1906,7 +1927,7 @@ msgstr "DAE-Port" msgid "DAE-Secret" msgstr "DAE-Geheimnis" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:525 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:530 msgid "DHCP Options" msgstr "DHCP Optionen" @@ -1946,11 +1967,11 @@ msgstr "DHCPv6-Dienst" msgid "DNS" msgstr "DNS" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:282 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:284 msgid "DNS forwardings" msgstr "DNS-Weiterleitungen" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:445 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:450 msgid "DNS query port" msgstr "<abbr title=\"Domain Name System\">DNS</abbr> Abfrageport" @@ -1958,7 +1979,7 @@ msgstr "<abbr title=\"Domain Name System\">DNS</abbr> Abfrageport" msgid "DNS search domains" msgstr "DNS-Suchdomänen" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:438 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:443 msgid "DNS server port" msgstr "<abbr title=\"Domain Name System\">DNS</abbr> Serverport" @@ -1974,11 +1995,11 @@ msgstr "DNS-Gewichtung" msgid "DNS-Label / FQDN" msgstr "DNS-Label / FQDN" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:397 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:402 msgid "DNSSEC" msgstr "DNSSEC" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:402 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:407 msgid "DNSSEC check unsigned" msgstr "DNSSEC Signaturstatus prüfen" @@ -1991,11 +2012,11 @@ msgid "DS-Lite AFTR address" msgstr "DS-Lite AFTR-Adresse" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1481 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:44 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:45 msgid "DSL" msgstr "DSL" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:14 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:15 msgid "DSL Status" msgstr "DSL-Status" @@ -2008,12 +2029,12 @@ msgid "DTIM Interval" msgstr "DTIM-Intervall" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:59 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:700 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:771 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:136 msgid "DUID" msgstr "DUID" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:21 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:22 msgid "Data Rate" msgstr "Datenrate" @@ -2264,7 +2285,7 @@ msgstr "Deaktiviert" msgid "Disassociate On Low Acknowledgement" msgstr "Trennung bei schlechtem Antwortverhalten" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:302 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:307 msgid "" "Discard upstream responses containing <a href=\"%s\">RFC1918</a> addresses." msgstr "Eingehende RFC1918-Antworten verwerfen." @@ -2310,7 +2331,7 @@ msgstr "Distanz zum am weitesten entfernten Funkpartner in Metern." msgid "Distributed ARP Table" msgstr "Verteilte ARP-Tabelle" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:543 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:548 msgid "" "Dnsmasq instance to which this boot section is bound. If unspecified, the " "section is valid for all dnsmasq instances." @@ -2321,16 +2342,16 @@ msgstr "" # Nur für NAT-Firewalls? #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:246 msgid "" -"Dnsmasq is a lightweight <abbr title=\"Dynamic Host Configuration " -"Protocol\">DHCP</abbr> server and <abbr title=\"Domain Name System\">DNS</" -"abbr> forwarder." +"Dnsmasq is a lightweight <abbr title=\"Dynamic Host Configuration Protocol" +"\">DHCP</abbr> server and <abbr title=\"Domain Name System\">DNS</abbr> " +"forwarder." msgstr "" "Dnsmasq ist ein kombinierter <abbr title=\"Dynamic Host Configuration " "Protocol\">DHCP</abbr>-Server und <abbr title=\"Domain Name System\">DNS</" "abbr>-Forwarder für <abbr title=\"Network Address Translation\">NAT</abbr> " "Router" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:414 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:419 msgid "Do not cache negative replies, e.g. for non-existent domains." msgstr "" "Negative Antworten nicht zwischenspeichern, z.B. bei nicht existierenden " @@ -2344,17 +2365,17 @@ msgstr "" msgid "Do not create host route to peer (optional)." msgstr "Keine Hostroute zum Peer erstellen (optional)." -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:262 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:264 msgid "Do not forward DNS queries without dots or domain parts." msgstr "" -"<abbr title=\"Domain Name System\">DNS</abbr>-Anfragen ohne <abbr " -"title=\"Domain Name System\">DNS</abbr>-Name nicht weiterleiten" +"<abbr title=\"Domain Name System\">DNS</abbr>-Anfragen ohne <abbr title=" +"\"Domain Name System\">DNS</abbr>-Name nicht weiterleiten" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:383 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:388 msgid "Do not forward reverse lookups for local networks." msgstr "Keine Rückwärtsauflösungen für lokale Netzwerke weiterleiten" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:339 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:344 msgid "Do not listen on the specified interfaces." msgstr "Verhindert das Binden an diese Netzwerkadapter." @@ -2412,15 +2433,16 @@ msgstr "Soll der derzeitige PSK-Schlüssel ersetzt werden?" msgid "Do you want to replace the current keys?" msgstr "Soll das derzeitige Schlüsselpaar ersetzt werden?" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:593 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:606 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:664 msgid "Domain" msgstr "Domain" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:261 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:263 msgid "Domain required" msgstr "Anfragen nur mit Domain" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:311 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:316 msgid "Domain whitelist" msgstr "Domain-Whitelist" @@ -2484,8 +2506,8 @@ msgid "" "and an integrated <abbr title=\"Secure Copy\">SCP</abbr> server" msgstr "" "Der <abbr title=\"Secure Shell\">SSH</abbr>-Server ermöglicht Shell-Zugriff " -"über das Netzwerk und bietet einen integrierten <abbr title=\"Secure " -"Copy\">SCP</abbr>-Dienst" +"über das Netzwerk und bietet einen integrierten <abbr title=\"Secure Copy" +"\">SCP</abbr>-Dienst" #: modules/luci-compat/luasrc/model/network/proto_4x6.lua:14 #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dslite.js:11 @@ -2666,7 +2688,7 @@ msgstr "Aktiviere NTP-Client" msgid "Enable Single DES" msgstr "Single-DES aktivieren" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:480 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:485 msgid "Enable TFTP server" msgstr "TFTP-Server aktivieren" @@ -2684,13 +2706,13 @@ msgstr "WPS-via-Knopfdruck aktivieren, erfordert WPA(2)-PSK/WPA3-SAE" #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/uhttpd.js:14 msgid "" -"Enable automatic redirection of <abbr title=\"Hypertext Transfer " -"Protocol\">HTTP</abbr> requests to <abbr title=\"Hypertext Transfer Protocol " -"Secure\">HTTPS</abbr> port." +"Enable automatic redirection of <abbr title=\"Hypertext Transfer Protocol" +"\">HTTP</abbr> requests to <abbr title=\"Hypertext Transfer Protocol Secure" +"\">HTTPS</abbr> port." msgstr "" -"Automatische Weiterleitung von <abbr title=\"Hypertext Transfer " -"Protocol\">HTTP</abbr> Anfragen zum <abbr title=\"Hypertext Transfer " -"Protocol Secure\">HTTPS</abbr> Port." +"Automatische Weiterleitung von <abbr title=\"Hypertext Transfer Protocol" +"\">HTTP</abbr> Anfragen zum <abbr title=\"Hypertext Transfer Protocol Secure" +"\">HTTPS</abbr> Port." #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:977 msgid "" @@ -2756,7 +2778,7 @@ msgstr "Multicast-Unterstützung aktivieren (optional)." msgid "Enable the DF (Don't Fragment) flag of the encapsulating packets." msgstr "Das DF-Bit (Nicht fragmentieren) auf gekapselten Paketen setzen." -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:481 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:486 msgid "Enable the built-in single-instance TFTP server." msgstr "Den eingebauten einzel-instanz TFTP Server aktivieren." @@ -2877,7 +2899,7 @@ msgstr "Fehler" msgid "Error getting PublicKey" msgstr "Fehler beim Abruf des öffentlichen Schlüssels" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:29 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:30 msgid "Errored seconds (ES)" msgstr "Fehlersekunden (ES)" @@ -2899,11 +2921,11 @@ msgstr "Alle 30 Sekunden (langsam, 0)" msgid "Every second (fast, 1)" msgstr "Jede Sekunde (schnell, 1)" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:338 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:343 msgid "Exclude interfaces" msgstr "Netzwerkadapter ausschließen" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:307 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:312 msgid "" "Exempt <code>127.0.0.0/8</code> and <code>::1</code> from rebinding checks, " "e.g. for RBL services." @@ -2915,7 +2937,7 @@ msgstr "" msgid "Existing device" msgstr "Existierender Netzwerkadapter" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:409 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:414 msgid "Expand hosts" msgstr "Hosts vervollständigen" @@ -3053,7 +3075,7 @@ msgstr "" msgid "File" msgstr "Datei" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:418 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:423 msgid "" "File listing upstream resolvers, optionally domain-specific, e.g. " "<code>server=1.2.3.4</code>, <code>server=/domain/1.2.3.4</code>." @@ -3066,22 +3088,22 @@ msgstr "" msgid "File not accessible" msgstr "Datei nicht verfügbar" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:349 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:354 msgid "File to store DHCP lease information." msgstr "" -"Speicherort für vergebene <abbr title=\"Dynamic Host Configuration " -"Protocol\">DHCP</abbr>-Adressen" +"Speicherort für vergebene <abbr title=\"Dynamic Host Configuration Protocol" +"\">DHCP</abbr>-Adressen" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:357 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:362 msgid "File with upstream resolvers." msgstr "Lokale <abbr title=\"Domain Name System\">DNS</abbr>-Datei" #: modules/luci-base/htdocs/luci-static/resources/ui.js:2846 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:507 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:512 msgid "Filename" msgstr "Dateiname" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:493 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:498 msgid "Filename of the boot image advertised to clients." msgstr "Dateiname des Boot-Images welches den Clients mitgeteilt wird" @@ -3090,11 +3112,11 @@ msgstr "Dateiname des Boot-Images welches den Clients mitgeteilt wird" msgid "Filesystem" msgstr "Dateisystem" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:382 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:387 msgid "Filter private" msgstr "Private Anfragen filtern" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:387 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:392 msgid "Filter useless" msgstr "Windowsanfragen filtern" @@ -3160,7 +3182,7 @@ msgstr "Firmware-Datei" msgid "Firmware Version" msgstr "Firmware-Version" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:446 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:451 msgid "Fixed source port for outbound DNS queries." msgstr "Fester Port für ausgehende DNS-Anfragen" @@ -3186,7 +3208,7 @@ msgstr "Flash-Operationen" msgid "Flashing…" msgstr "Aktualisieren…" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:537 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:542 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:686 msgid "Force" msgstr "Start erzwingen" @@ -3233,21 +3255,21 @@ msgstr "Erzwinge Upgrade" msgid "Force use of NAT-T" msgstr "Benutzung von NAT-T erzwingen" -#: modules/luci-base/luasrc/view/csrftoken.htm:8 +#: modules/luci-base/ucode/template/csrftoken.ut:8 msgid "Form token mismatch" msgstr "Abweichendes Formular-Token" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:919 msgid "" -"Forward <abbr title=\"Neighbour Discovery Protocol\">NDP</abbr> <abbr " -"title=\"Neighbour Solicitation, Type 135\">NS</abbr> and <abbr " -"title=\"Neighbour Advertisement, Type 136\">NA</abbr> messages between the " -"designated master interface and downstream interfaces." +"Forward <abbr title=\"Neighbour Discovery Protocol\">NDP</abbr> <abbr title=" +"\"Neighbour Solicitation, Type 135\">NS</abbr> and <abbr title=\"Neighbour " +"Advertisement, Type 136\">NA</abbr> messages between the designated master " +"interface and downstream interfaces." msgstr "" -"<abbr title=\"Neighbour Discovery Protocol\">NDP</abbr> <abbr " -"title=\"Neighbour Solicitation, Type 135\">NS</abbr>- und <abbr " -"title=\"Neighbour Advertisement, Type 136\">NA</abbr>-Nachrichten zwischen " -"der Master-Schnittstellen und nachgelagerten Schnittstellen weiterleiten." +"<abbr title=\"Neighbour Discovery Protocol\">NDP</abbr> <abbr title=" +"\"Neighbour Solicitation, Type 135\">NS</abbr>- und <abbr title=\"Neighbour " +"Advertisement, Type 136\">NA</abbr>-Nachrichten zwischen der Master-" +"Schnittstellen und nachgelagerten Schnittstellen weiterleiten." #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:770 msgid "" @@ -3271,7 +3293,7 @@ msgstr "" "DHCPv6-Nachrichten zwischen der Master-Schnittstelle und nachgelagerten " "Schnittstellen weiterleiten." -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:28 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:29 msgid "Forward Error Correction Seconds (FECS)" msgstr "Fehlerkorrektursekunden (FECS)" @@ -3435,15 +3457,15 @@ msgstr "Globale Einstellungen" msgid "Global network options" msgstr "Globale Netzwerkeinstellungen" -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:82 -#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:89 -#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:74 +#: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/header.ut:70 +#: themes/luci-theme-material/ucode/template/themes/material/header.ut:84 +#: themes/luci-theme-openwrt-2020/ucode/template/themes/openwrt2020/header.ut:67 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:92 msgid "Go to firmware upgrade..." msgstr "Gehe zum Firmware Upgrade..." -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:72 -#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:64 +#: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/header.ut:60 +#: themes/luci-theme-openwrt-2020/ucode/template/themes/openwrt2020/header.ut:57 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:82 msgid "Go to password configuration..." msgstr "Zur Passwortkonfiguration..." @@ -3584,7 +3606,7 @@ msgstr "HTTP(S) Zugriff" msgid "Hang Up" msgstr "Auflegen" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:33 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:34 msgid "Header Error Code Errors (HEC)" msgstr "Anzahl Header-Error-Code-Fehler (HEC)" @@ -3638,7 +3660,7 @@ msgstr "Host" msgid "Host expiry timeout" msgstr "Host Verfallsdatum" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:508 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:513 msgid "Host requests this filename from the boot server." msgstr "Vom Boot-Server angeforderter Dateiname." @@ -3647,8 +3669,8 @@ msgid "Host-Uniq tag content" msgstr "\"Host-Uniq\"-Bezeichner" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:38 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:559 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:607 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:630 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:678 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/10_system.js:54 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:87 #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:135 @@ -3663,7 +3685,7 @@ msgstr "Zu sendender Hostname bei DHCP Anfragen" msgid "Hostnames" msgstr "Rechnernamen" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:551 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:622 msgid "" "Hostnames are used to bind a domain name to an IP address. This setting is " "redundant for hostnames already configured with static leases, but it can be " @@ -3730,7 +3752,7 @@ msgstr "IP-Adressen" msgid "IP Protocol" msgstr "IP-Protokoll" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:258 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:260 msgid "IP Sets" msgstr "IP-Sets" @@ -3738,7 +3760,7 @@ msgstr "IP-Sets" msgid "IP Type" msgstr "IP-Typ" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:563 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:634 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:178 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:204 msgid "IP address" @@ -3764,15 +3786,15 @@ msgctxt "nft meta l4proto" msgid "IP protocol" msgstr "IP-Protokoll" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:589 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:660 msgid "IP set" msgstr "IP-Sets" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:295 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:300 msgid "IP sets" msgstr "IP-Sets" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:432 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:437 msgid "IPs to override with NXDOMAIN" msgstr "Ungültige \"NX-Domain\" Antworten ignorieren" @@ -3813,7 +3835,7 @@ msgstr "IPv4-Upstream" #: modules/luci-base/htdocs/luci-static/resources/protocol/static.js:178 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:39 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:665 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:736 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:88 #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:164 msgid "IPv4 address" @@ -3984,7 +4006,7 @@ msgstr "Quellbasiertes IPv6-Routing" msgid "IPv6 suffix" msgstr "IPv6 Endung" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:706 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:777 msgid "IPv6 suffix (hex)" msgstr "" "<abbr title=\"Internet Protocol Version 6\">IPv6</abbr>-Suffix (hexadezimal)" @@ -4089,17 +4111,17 @@ msgstr "Falls deaktiviert werden die zugewiesenen DNS-Server ignoriert" #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:340 msgid "" "If your physical memory is insufficient unused data can be temporarily " -"swapped to a swap-device resulting in a higher amount of usable <abbr " -"title=\"Random Access Memory\">RAM</abbr>. Be aware that swapping data is a " -"very slow process as the swap-device cannot be accessed with the high " -"datarates of the <abbr title=\"Random Access Memory\">RAM</abbr>." +"swapped to a swap-device resulting in a higher amount of usable <abbr title=" +"\"Random Access Memory\">RAM</abbr>. Be aware that swapping data is a very " +"slow process as the swap-device cannot be accessed with the high datarates " +"of the <abbr title=\"Random Access Memory\">RAM</abbr>." msgstr "" "Falls der Arbeitsspeicher des Routers nicht ausreicht, kann dieser nicht " "benutzte Daten zeitweise auf einem SWAP-Laufwerk auslagern um so die " "effektive Größe des Arbeitsspeichers zu erhöhen. Die Auslagerung der Daten " "ist natürlich bedeutend langsamer als direkte Arbeitsspeicherzugriffe." -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:363 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:368 msgid "Ignore <code>/etc/hosts</code>" msgstr "Ignoriere <code>/etc/hosts</code>" @@ -4107,7 +4129,7 @@ msgstr "Ignoriere <code>/etc/hosts</code>" msgid "Ignore interface" msgstr "Schnittstelle ignorieren" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:352 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:357 msgid "Ignore resolv file" msgstr "Resolv-Datei ignorieren" @@ -4160,7 +4182,7 @@ msgstr "" "Vermeidung zu aktivieren um Broadcast-Schleifen zu vermeiden welche das " "Netzwerk stark beeinträchtigen können." -#: modules/luci-base/luasrc/view/csrftoken.htm:13 +#: modules/luci-base/ucode/template/csrftoken.ut:13 msgid "" "In order to prevent unauthorized access to the system, your request has been " "blocked. Click \"Continue »\" below to return to the previous page." @@ -4274,7 +4296,7 @@ msgstr "Einschränkung für inneres Zertifikat (Wildcard)" msgid "Install protocol extensions..." msgstr "Installiere Protokoll-Erweiterungen..." -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:542 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:547 msgid "Instance" msgstr "Instanz" @@ -4366,10 +4388,6 @@ msgstr "Netzwerkschnittstellen" msgid "Internal" msgstr "Intern" -#: modules/luci-base/luasrc/view/error500.htm:8 -msgid "Internal Server Error" -msgstr "Interner Serverfehler" - #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:285 msgid "Interval For Sending Learning Packets" msgstr "Intervall für das Senden von Lernpaketen" @@ -4447,8 +4465,8 @@ msgstr "Ungültiges Kommando" msgid "Invalid hexadecimal value" msgstr "Ungültiger Hexadezimalwert" -#: modules/luci-base/luasrc/view/sysauth.htm:12 -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/sysauth.htm:37 +#: modules/luci-base/ucode/template/sysauth.ut:12 +#: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/sysauth.ut:32 msgid "Invalid username and/or password! Please try again." msgstr "" "Ungültiger Benutzername oder ungültiges Passwort! Bitte erneut versuchen." @@ -4473,8 +4491,8 @@ msgstr "" "Das verwendete Image scheint zu groß für den internen Flash-Speicher zu " "sein. Überprüfen Sie die Imagedatei!" -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:89 -#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:96 +#: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/header.ut:77 +#: themes/luci-theme-material/ucode/template/themes/material/header.ut:91 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:72 msgid "JavaScript required!" msgstr "JavaScript benötigt!" @@ -4606,11 +4624,17 @@ msgstr "Sprache" msgid "Language and Style" msgstr "Sprache und Aussehen" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:560 +msgid "" +"Larger weights (of the same prio) are given a proportionately higher " +"probability of being selected." +msgstr "" + #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:575 msgid "Last member interval" msgstr "Letzter-Teilnehmer-Intervall" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:23 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:24 msgid "Latency" msgstr "Latenz" @@ -4626,11 +4650,11 @@ msgstr "Lernend" msgid "Learn routes" msgstr "Routen lernen" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:348 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:353 msgid "Lease file" msgstr "Leasedatei" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:697 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:768 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:679 msgid "Lease time" msgstr "Laufzeit" @@ -4678,19 +4702,19 @@ msgstr "Legende:" msgid "Limit" msgstr "Limit" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:24 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:25 msgid "Line Attenuation (LATN)" msgstr "Dämpfung (LATN)" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:18 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:19 msgid "Line Mode" msgstr "Verbindungsmodus" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:17 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:18 msgid "Line State" msgstr "Verbindungsstatus" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:19 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:20 msgid "Line Uptime" msgstr "Verbindungsdauer" @@ -4711,12 +4735,12 @@ msgctxt "nft @ll,off,len" msgid "Link layer header bits %d-%d" msgstr "Link-Layer-Bits %d-%d" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:433 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:438 msgid "List of IP addresses to convert into NXDOMAIN responses." msgstr "Liste von Servern die falsche \"NX Domain\" Antworten liefern" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:296 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:581 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:301 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:652 msgid "List of IP sets to populate with the specified domain IPs." msgstr "" "Liste von IP-Sets welche mit den aufgelösten IPs der angegebenen Domains " @@ -4756,15 +4780,11 @@ msgstr "" msgid "List of SSH key files for auth" msgstr "Liste der SSH Schlüssel zur Authentifikation" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:312 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:317 msgid "List of domains to allow RFC1918 responses for." msgstr "Liste von Domains für welche RFC1918-Antworten erlaubt sind" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:290 -msgid "List of domains to force to an IP address." -msgstr "Liste von erzwungenen Domain-IP-Adressen-Zuordnungen." - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:283 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:285 msgid "List of upstream resolvers to forward queries to." msgstr "" "Liste von <abbr title=\"Domain Name System\">DNS</abbr>-Servern an welche " @@ -4774,7 +4794,7 @@ msgstr "" msgid "Listen Port" msgstr "Listening-Port" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:332 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:337 msgid "Listen interfaces" msgstr "Aktive Adapter" @@ -4784,7 +4804,7 @@ msgstr "" "Nur auf die gegebene Schnittstelle reagieren, nutze alle wenn nicht " "spezifiziert" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:333 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:338 msgid "" "Listen only on the specified interfaces, and loopback if not excluded " "explicitly." @@ -4795,7 +4815,7 @@ msgstr "" msgid "ListenPort setting is invalid" msgstr "ListenPort-Parameter ist ungültig" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:439 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:444 msgid "Listening port for inbound DNS queries." msgstr "Serverport für eingehende DNS Abfragen" @@ -4822,9 +4842,9 @@ msgid "Loading directory contents…" msgstr "Lade Verzeichniseinträge…" #: modules/luci-base/htdocs/luci-static/resources/luci.js:1942 -#: modules/luci-base/luasrc/view/view.htm:4 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:12 -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/sysauth.htm:45 +#: modules/luci-base/ucode/template/view.ut:4 +#: modules/luci-mod-status/ucode/template/admin_status/index.ut:12 +#: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/sysauth.ut:40 msgid "Loading view…" msgstr "Lade Seite…" @@ -4882,21 +4902,21 @@ msgstr "Ortszeit" msgid "Local ULA" msgstr "Lokales ULA-Präfix" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:273 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:275 msgid "Local domain" msgstr "Lokale Domain" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:274 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:276 msgid "Local domain suffix appended to DHCP names and hosts file entries." msgstr "" "Lokaler Domain-Suffix welcher an DHCP Namen und Host-Datei Einträge " "angehangen wird" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:269 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:271 msgid "Local server" msgstr "Lokaler Server" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:319 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:324 msgid "Local service only" msgstr "Nur lokale Dienste" @@ -4904,7 +4924,7 @@ msgstr "Nur lokale Dienste" msgid "Local wireguard key" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:392 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:397 msgid "Localise queries" msgstr "Lokalisiere Anfragen" @@ -4916,7 +4936,7 @@ msgstr "Auf BSSID beschränken" msgid "Log output level" msgstr "Protokolllevel" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:277 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:279 msgid "Log queries" msgstr "Schreibe Abfragelog" @@ -4944,8 +4964,8 @@ msgstr "" "Logisches Netzwerk, zu dem der Tunnel hinzugefügt wird (überbrückt) " "(optional)." -#: modules/luci-base/luasrc/view/sysauth.htm:38 -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/sysauth.htm:41 +#: modules/luci-base/ucode/template/sysauth.ut:38 +#: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/sysauth.ut:36 msgid "Login" msgstr "Anmelden" @@ -4958,7 +4978,7 @@ msgstr "Abmelden" msgid "Loose filtering" msgstr "offene Filterung" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:31 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:32 msgid "Loss of Signal Seconds (LOSS)" msgstr "Signalverlustsekunden (LOSS)" @@ -4966,6 +4986,10 @@ msgstr "Signalverlustsekunden (LOSS)" msgid "Lowest leased address as offset from the network address." msgstr "Kleinste vergebene Adresse (Netzwerkadresse + x)." +#: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/footer.ut:12 +msgid "Lua compatibility mode active" +msgstr "" + #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:48 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:83 msgid "MAC" @@ -4990,7 +5014,7 @@ msgstr "MAC-VLAN" #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:591 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:40 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:619 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:690 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1164 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2177 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:56 @@ -5049,6 +5073,10 @@ msgstr "MII Intervall" msgid "MTU" msgstr "MTU" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:259 +msgid "MX" +msgstr "" + #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:303 msgid "" "Make sure to clone the root filesystem using something like the commands " @@ -5073,23 +5101,23 @@ msgstr "Master" msgid "Max <abbr title=\"Router Advertisement\">RA</abbr> interval" msgstr "Maximales <abbr title=\"Router Advertisement\">RA</abbr>-Intervall" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:22 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:23 msgid "Max. Attainable Data Rate (ATTNDR)" msgstr "Maximal erreichbare Datenrate (ATTNDR)" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:452 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:457 msgid "Max. DHCP leases" msgstr "" "<abbr title=\"maximal\">Max.</abbr> Anzahl von <abbr title=\"Dynamic Host " "Configuration Protocol\">DHCP</abbr>-Leases" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:459 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:464 msgid "Max. EDNS0 packet size" msgstr "" "<abbr title=\"maximal\">Max.</abbr> Größe von <abbr title=\"Extension " "Mechanisms for Domain Name System\">EDNS0</abbr>-Paketen" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:466 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:471 msgid "Max. concurrent queries" msgstr "<abbr title=\"maximal\">Max.</abbr> Anzahl gleichzeitiger Abfragen" @@ -5101,15 +5129,15 @@ msgstr "Maximales Alter" msgid "Maximum allowed Listen Interval" msgstr "Maximal erlaubter Inaktivitätszeitraum" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:453 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:458 msgid "Maximum allowed number of active DHCP leases." msgstr "Maximal zulässige Anzahl von aktiven DHCP-Leases" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:467 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:472 msgid "Maximum allowed number of concurrent DNS queries." msgstr "Maximal zulässige Anzahl an gleichzeitigen DNS-Anfragen" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:460 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:465 msgid "Maximum allowed size of EDNS0 UDP packets." msgstr "Maximal zulässige Größe von EDNS.0 UDP Paketen" @@ -5139,7 +5167,7 @@ msgstr "" msgid "Maximum transmit power" msgstr "Maximale Sendeleistung" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:389 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:394 msgid "May prevent VoIP or other services from working." msgstr "" @@ -5462,11 +5490,15 @@ msgstr "Name des neuen Netzwerkes" msgid "Name of the tunnel device" msgstr "" -#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:46 +#: themes/luci-theme-openwrt-2020/ucode/template/themes/openwrt2020/header.ut:39 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:50 msgid "Navigation" msgstr "Navigation" +#: protocols/luci-proto-nebula/htdocs/luci-static/resources/protocol/nebula.js:10 +msgid "Nebula Network" +msgstr "" + #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:653 msgid "Neighbour cache validity" msgstr "Neighbour-Cache-Gültigkeitsdauer" @@ -5502,7 +5534,7 @@ msgstr "Netzwerk-Werkzeuge" msgid "Network address" msgstr "Netzwerkadresse" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:492 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:497 msgid "Network boot image" msgstr "Netzwerk-Boot-Image" @@ -5542,7 +5574,7 @@ msgstr "Migration der Konfiguration von Schnittstellennamen" msgid "Network interface" msgstr "Netzwerkschnittstelle" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:531 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:536 msgid "Network-ID" msgstr "Netzwerk-ID" @@ -5550,7 +5582,7 @@ msgstr "Netzwerk-ID" msgid "Never" msgstr "Niemals" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:270 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:272 msgid "" "Never forward matching domains and subdomains, resolve from DHCP or hosts " "files only." @@ -5601,9 +5633,9 @@ msgstr "Kein NAT-T" msgid "No RX signal" msgstr "Kein Signal empfangen" -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:80 -#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:87 -#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:72 +#: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/header.ut:68 +#: themes/luci-theme-material/ucode/template/themes/material/header.ut:82 +#: themes/luci-theme-openwrt-2020/ucode/template/themes/openwrt2020/header.ut:65 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:90 msgid "" "No changes to settings will be stored and are lost after rebooting. This " @@ -5648,10 +5680,6 @@ msgstr "Keine Einträge vorhanden" msgid "No entries in this directory" msgstr "Keine Einträge in diesem Verzeichnis" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:82 -msgid "No files found" -msgstr "Keine Dateien gefunden" - #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:833 msgid "" "No fixed interface listening port defined, peers might not be able to " @@ -5692,7 +5720,7 @@ msgstr "" "Keine Slaves mehr verfügbar, Schnittstellenkonfiguration kann nicht " "gespeichert werden" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:413 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:418 msgid "No negative cache" msgstr "Kein Negativ-Cache" @@ -5700,8 +5728,8 @@ msgstr "Kein Negativ-Cache" msgid "No nftables ruleset loaded." msgstr "Kein nftables-Regelwerk geladen." -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:69 -#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:61 +#: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/header.ut:57 +#: themes/luci-theme-openwrt-2020/ucode/template/themes/openwrt2020/header.ut:54 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:79 msgid "No password set!" msgstr "Kein Passwort gesetzt!" @@ -5741,7 +5769,7 @@ msgstr "Keine Zone zugewiesen" msgid "Noise" msgstr "Rauschen" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:26 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:27 msgid "Noise Margin (SNR)" msgstr "Signal-Rausch-Abstand (SNR)" @@ -5749,11 +5777,11 @@ msgstr "Signal-Rausch-Abstand (SNR)" msgid "Noise:" msgstr "Rauschen:" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:34 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:35 msgid "Non Pre-emptive CRC errors (CRC_P)" msgstr "Nicht-präemptive CRC-Fehler (CRC_P)" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:325 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:330 msgid "Non-wildcard" msgstr "An Schnittstellen binden" @@ -5768,7 +5796,7 @@ msgstr "Keine" msgid "Normal" msgstr "Normal" -#: modules/luci-base/luasrc/view/error404.htm:8 +#: modules/luci-base/ucode/template/error404.ut:9 msgid "Not Found" msgstr "Nicht Gefunden" @@ -5820,7 +5848,7 @@ msgstr "DNS-Auflösung" msgid "Number of IGMP membership reports" msgstr "Anzahl der IGMP-Mitgliedschaftsberichte" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:474 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:479 msgid "Number of cached DNS entries, 10000 is maximum, 0 is no caching." msgstr "" "Anzahl der zwischengespeicherten DNS-Einträge. Maximum sind 10000 Einträge, " @@ -5871,7 +5899,7 @@ msgstr "Verzögerung für Anschalt-Zustand" msgid "On-link" msgstr "Link-lokale Route" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:672 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:743 msgid "One of hostname or MAC address must be specified!" msgstr "Es muss entweder ein Hostname oder eine MAC-Adresse angegeben werden!" @@ -5911,7 +5939,6 @@ msgid "Open iptables rules overview…" msgstr "Übersicht der iptables-Regeln öffnen…" #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:472 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:19 msgid "Open list..." msgstr "Liste öffnen..." @@ -5931,8 +5958,8 @@ msgid "" "Protocol\">NDP</abbr> proxying." msgstr "" "Im <em>Relay-Modus</em> operieren wenn eine Master-Schnittstelle festgelegt " -"und aktiv ist, andernfalls den <abbr title=\"Neighbour Discovery " -"Protocol\">NDP</abbr>-Proxy-Dienst deaktivieren." +"und aktiv ist, andernfalls den <abbr title=\"Neighbour Discovery Protocol" +"\">NDP</abbr>-Proxy-Dienst deaktivieren." #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:723 msgid "" @@ -6083,12 +6110,12 @@ msgstr "" msgid "Options" msgstr "Optionen" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:526 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:531 msgid "" "Options for the Network-ID. (Note: needs also Network-ID.) E.g. " -"\"<code>42,192.168.1.4</code>\" for NTP server, \"<code>3,192.168.4.4</" -"code>\" for default route. <code>0.0.0.0</code> means \"the address of the " -"system running dnsmasq\"." +"\"<code>42,192.168.1.4</code>\" for NTP server, \"<code>3,192.168.4.4</code>" +"\" for default route. <code>0.0.0.0</code> means \"the address of the system " +"running dnsmasq\"." msgstr "" "Optionen für die Netzwerk-ID. (Netzwerk-ID-Wert benötigt). Beispiel: " "\"<code>42,192.168.1.4</code>\" für NTP-Server oder \"<code>3,192.168.4.4</" @@ -6099,6 +6126,11 @@ msgstr "" msgid "Options:" msgstr "Optionen:" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:584 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:616 +msgid "Ordinal: lower comes first." +msgstr "" + #: protocols/luci-proto-batman-adv/htdocs/luci-static/resources/protocol/batadv.js:55 msgid "Originator Interval" msgstr "Originator-Intervall." @@ -6377,13 +6409,13 @@ msgid "Pass-through (Mirror physical device to single MAC VLAN)" msgstr "" "Pass-through (Physischen Netzwerkadapter auf einzelnes MAC-VLAN spiegeln)" -#: modules/luci-base/luasrc/view/sysauth.htm:29 +#: modules/luci-base/ucode/template/sysauth.ut:29 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1690 #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:51 #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:114 #: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:103 #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:58 -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/sysauth.htm:24 +#: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/sysauth.ut:19 msgid "Password" msgstr "Passwort" @@ -6554,7 +6586,7 @@ msgstr "Ping" msgid "Pkts." msgstr "Pkte." -#: modules/luci-base/luasrc/view/sysauth.htm:19 +#: modules/luci-base/ucode/template/sysauth.ut:19 msgid "Please enter your username and password." msgstr "Bitte Benutzernamen und Passwort eingeben." @@ -6571,6 +6603,7 @@ msgctxt "Chain hook policy" msgid "Policy: <strong>%h</strong> (%h)" msgstr "Grundregel: <strong>%h</strong> (%h)" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:579 #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/dropbear.js:21 msgid "Port" msgstr "Port" @@ -6587,11 +6620,11 @@ msgstr "Port-Status:" msgid "Potential negation of: %s" msgstr "Mögliche Negation von: %s" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:37 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:38 msgid "Power Management Mode" msgstr "Energiesparmodus" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:35 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:36 msgid "Pre-emptive CRC errors (CRCP_P)" msgstr "Präemptive CRC-Fehler (CRCP_P)" @@ -6673,6 +6706,8 @@ msgstr "" "(immer 0)" #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:508 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:584 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:616 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:129 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:197 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:223 @@ -6800,7 +6835,7 @@ msgstr "QMI Cellular" msgid "Quality" msgstr "Qualität" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:428 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:433 msgid "Query all available upstream resolvers." msgstr "" "Alle verfügbaren übergeordneten <abbr title=\"Domain Name System\">DNS</" @@ -6887,7 +6922,7 @@ msgstr "" "Hexadezimal-kodierte Zeichensequenz. Nur angeben wenn der Internetanbieter " "einen bestimmten Wert erwartet" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:345 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:350 msgid "Read <code>/etc/ethers</code> to configure the DHCP server." msgstr "" "Lese <code>/etc/ethers</code> um den <abbr title=\"Dynamic Host " @@ -6905,7 +6940,7 @@ msgstr "Echtzeit-Diagramme" msgid "Reassociation Deadline" msgstr "Reassoziierungsfrist" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:301 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:306 msgid "Rebind protection" msgstr "DNS-Rebind-Schutz" @@ -6992,6 +7027,7 @@ msgstr "" "angegebenem Wert ablehnen" #: modules/luci-compat/luasrc/model/network/proto_relay.lua:153 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:611 #: protocols/luci-proto-relay/htdocs/luci-static/resources/protocol/relay.js:39 msgid "Relay" msgstr "Relay" @@ -7083,6 +7119,10 @@ msgstr "" msgid "Required. Base64-encoded private key for this interface." msgstr "Benötigt. Base64-kodierter privater Schlüssel für diese Schnittstelle." +#: protocols/luci-proto-nebula/htdocs/luci-static/resources/protocol/nebula.js:40 +msgid "Required. Path to the .yml config file for this interface." +msgstr "" + #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:587 msgid "Required. Public key of the WireGuard peer." msgstr "Benötigt. Öffentlicher Schlüssel des WireGuard Verbindungspartners." @@ -7164,7 +7204,7 @@ msgid "Reselection policy for primary slave" msgstr "Neuauswahlrichtlinie für primären Slave" #: modules/luci-base/htdocs/luci-static/resources/luci.js:2197 -#: modules/luci-base/luasrc/view/sysauth.htm:39 +#: modules/luci-base/ucode/template/sysauth.ut:39 #: modules/luci-compat/luasrc/view/cbi/delegator.htm:17 #: modules/luci-compat/luasrc/view/cbi/footer.htm:30 #: modules/luci-compat/luasrc/view/cbi/simpleform.htm:66 @@ -7183,10 +7223,14 @@ msgstr "Auslieferungszustand wiederherstellen" msgid "Resolv and Hosts Files" msgstr "Resolv- und Hosts-Dateien" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:356 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:361 msgid "Resolv file" msgstr "Resolv-Datei" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:292 +msgid "Resolve specified FQDNs to an IP." +msgstr "Liste von erzwungenen Domain-IP-Adressen-Zuordnungen." + #: modules/luci-base/htdocs/luci-static/resources/rpc.js:405 msgid "Resource not found" msgstr "Resource nicht gefunden" @@ -7213,7 +7257,7 @@ msgstr "Wiederherstellen" msgid "Restore backup" msgstr "Sicherung wiederherstellen" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:393 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:398 msgid "" "Return answers to DNS queries matching the subnet from which the query was " "received if multiple IPs are available." @@ -7303,7 +7347,7 @@ msgstr "" msgid "Robustness" msgstr "Robustheit" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:486 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:491 msgid "" "Root directory for files served via TFTP. <em>Enable TFTP server</em> and " "<em>TFTP server root</em> turn on the TFTP server and serve files from " @@ -7413,6 +7457,11 @@ msgstr "SHA256" msgid "SNR" msgstr "SNR" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:258 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:569 +msgid "SRV" +msgstr "" + #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/dropbear.js:10 #: modules/luci-mod-system/root/usr/share/luci/menu.d/luci-mod-system.json:38 msgid "SSH Access" @@ -7559,11 +7608,11 @@ msgstr "Den Hostnamen dieses Gerätes senden" msgid "Server" msgstr "Server" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:519 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:524 msgid "Server address" msgstr "Serveradresse" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:513 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:518 msgid "Server name" msgstr "Servername" @@ -7664,7 +7713,7 @@ msgstr "" "Netzwerkrouten für IPv6-Nachbarn installieren, die durch den NDP-Proxy " "behandelt werden." -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:30 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:31 msgid "Severely Errored Seconds (SES)" msgstr "schwerwiegende Fehlersekunden (SES)" @@ -7678,7 +7727,6 @@ msgid "Short Preamble" msgstr "Kurze Präambel" #: 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 msgid "Show current backup file list" msgstr "Zeige aktuelle Liste der gesicherten Dateien" @@ -7712,7 +7760,7 @@ msgstr "Signal" msgid "Signal / Noise" msgstr "Signal / Rauschen" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:25 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:26 msgid "Signal Attenuation (SATN)" msgstr "Signaldämpfung (SATN)" @@ -7729,7 +7777,7 @@ msgstr "Signal:" msgid "Size" msgstr "Größe" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:473 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:478 msgid "Size of DNS query cache" msgstr "Größe des DNS-Caches" @@ -7746,12 +7794,12 @@ msgstr "Überspringen" msgid "Skip from backup files that are equal to those in /rom" msgstr "Mit dem ROM-Speicher identische Dateien nicht sichern" -#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:42 +#: themes/luci-theme-openwrt-2020/ucode/template/themes/openwrt2020/header.ut:35 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:46 msgid "Skip to content" msgstr "Zum Inhalt springen" -#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:41 +#: themes/luci-theme-openwrt-2020/ucode/template/themes/openwrt2020/header.ut:34 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:45 msgid "Skip to navigation" msgstr "Zur Navigation springen" @@ -7769,15 +7817,10 @@ msgstr "Software-VLAN" msgid "Some fields are invalid, cannot save values!" msgstr "Einige Felder sind ungültig, kann das Formular nicht speichern!" -#: modules/luci-base/luasrc/view/error404.htm:9 +#: modules/luci-base/ucode/template/error404.ut:10 msgid "Sorry, the object you requested was not found." msgstr "Entschuldigung, das anfgeforderte Objekt wurde nicht gefunden." -#: modules/luci-base/luasrc/view/error500.htm:9 -msgid "Sorry, the server encountered an unexpected error." -msgstr "" -"Entschuldigung, auf dem Server ist ein unerwarteter Fehler aufgetreten." - #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:442 msgid "" "Sorry, there is no sysupgrade support present; a new firmware image must be " @@ -7816,7 +7859,7 @@ msgctxt "nft ip sport" msgid "Source port" msgstr "Quell-Port" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:500 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:505 msgid "" "Special <abbr title=\"Preboot eXecution Environment\">PXE</abbr> boot " "options for Dnsmasq." @@ -8270,7 +8313,7 @@ msgstr "Statische Einträge" msgid "Static address" msgstr "Statische Adresse" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:598 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:669 msgid "" "Static leases are used to assign fixed IP addresses and symbolic hostnames " "to DHCP clients. They are also required for non-dynamic interface " @@ -8288,7 +8331,7 @@ msgstr "Client-Inaktivitäts-Limit" #: modules/luci-base/root/usr/share/luci/menu.d/luci-base.json:16 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:541 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:929 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:9 +#: modules/luci-mod-status/ucode/template/admin_status/index.ut:9 msgid "Status" msgstr "Status" @@ -8314,7 +8357,7 @@ msgstr "Speicher" msgid "Strict filtering" msgstr "strikte Filterung" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:422 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:427 msgid "Strict order" msgstr "Strikte Reihenfolge" @@ -8327,11 +8370,11 @@ msgstr "Stark" msgid "Submit" msgstr "Absenden" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:372 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:377 msgid "Suppress logging" msgstr "Logeinträge unterdrücken" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:373 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:378 msgid "Suppress logging of the routine operation for the DHCP protocol." msgstr "" "Logeinträge für erfolgreiche Operationen dieser Protokolle unterdrücken" @@ -8387,6 +8430,14 @@ msgstr "Mit NTP-Server synchronisieren" msgid "Sync with browser" msgstr "Mit Browser synchronisieren" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:293 +msgid "Syntax: <code>/fqdn[/fqdn…]/[ipaddr]</code>." +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:569 +msgid "Syntax: <code>_service._proto.example.com</code>." +msgstr "" + #: modules/luci-base/root/usr/share/luci/menu.d/luci-base.json:26 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/10_system.js:17 #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:113 @@ -8412,9 +8463,9 @@ msgstr "Systemeigenschaften" msgid "System log buffer size" msgstr "Größe des Systemprotokoll-Puffers" -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:79 -#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:86 -#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:71 +#: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/header.ut:67 +#: themes/luci-theme-material/ucode/template/themes/material/header.ut:81 +#: themes/luci-theme-openwrt-2020/ucode/template/themes/openwrt2020/header.ut:64 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:89 msgid "System running in recovery (initramfs) mode." msgstr "System läuft im Wiederherstellungsmodus (initramfs-Modus)." @@ -8443,7 +8494,7 @@ msgstr "TCP-Quell-Port" msgid "TCP:" msgstr "TCP:" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:485 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:490 msgid "TFTP server root" msgstr "TFTP Wurzelverzeichnis" @@ -8469,6 +8520,7 @@ msgstr "Sendewarteschlangenlänge" msgid "Table" msgstr "Tabelle" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:574 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:56 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:66 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:187 @@ -8555,16 +8607,16 @@ msgstr "" "Die Updateprozedur für HE.net Tunnel-IP-Adrerssen hat sich geändert, statt " "der numerischen User-ID muss nun der normale Benutzername angegeben werden!" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:681 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:752 msgid "The IP address %h is already used by another static lease" msgstr "" "Die IP-Adresse %h wird bereits von einem anderem statischen Lease verwendet" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:690 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:761 msgid "The IP address is outside of any DHCP pool address range" msgstr "Die IP-Adresse liegt außerhalb jedes DHCP-Adressbereiches" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:520 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:525 msgid "The IP address of the boot server" msgstr "Die IP-Adresse des Boot-Servers" @@ -8695,8 +8747,8 @@ msgid "" "The device file of the memory or partition (<abbr title=\"for example\">e.g." "</abbr> <code>/dev/sda1</code>)" msgstr "" -"Die Gerätedatei des Speichers oder der Partition (<abbr title=\"zum " -"Beispiel\">z.B.</abbr>: <code>/dev/sda1</code>)" +"Die Gerätedatei des Speichers oder der Partition (<abbr title=\"zum Beispiel" +"\">z.B.</abbr>: <code>/dev/sda1</code>)" #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:450 msgid "The device name \"%s\" is already taken" @@ -8777,7 +8829,7 @@ msgstr "" "eines weiteren Hops zu propagieren (Pakete müssen empfangen und " "weitergesendet werden, was Funkspektrumszeit kostet)" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:514 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:519 msgid "The hostname of the boot server" msgstr "Der Hostname des Boot-Servers" @@ -8862,9 +8914,8 @@ msgid "" "The maximum hops to be published in <abbr title=\"Router Advertisement\">RA</" "abbr> messages. Maximum is 255 hops." msgstr "" -"Die maximale Anzahl von Hops welche in <abbr title=\"Router " -"Advertisement\">RA</abbr>-Nachrichten annonciert werden. Maximum ist 255 " -"Hops." +"Die maximale Anzahl von Hops welche in <abbr title=\"Router Advertisement" +"\">RA</abbr>-Nachrichten annonciert werden. Maximum ist 255 Hops." #: modules/luci-base/htdocs/luci-static/resources/ui.js:4638 msgid "" @@ -8880,20 +8931,20 @@ msgstr "Der Netzwerkname wird bereits verwendet" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:139 msgid "" -"The network ports on this device can be combined to several <abbr " -"title=\"Virtual Local Area Network\">VLAN</abbr>s in which computers can " +"The network ports on this device can be combined to several <abbr title=" +"\"Virtual Local Area Network\">VLAN</abbr>s in which computers can " "communicate directly with each other. <abbr title=\"Virtual Local Area " "Network\">VLAN</abbr>s are often used to separate different network " "segments. Often there is by default one Uplink port for a connection to the " "next greater network like the internet and other ports for a local network." msgstr "" -"Die Netzwerkanschlüsse dieses Geräts können zu mehreren <abbr " -"title=\"Virtual Local Area Network\">VLAN</abbr>s kombiniert werden, in " -"denen Computer direkt miteinander kommunizieren können. <abbr " -"title=\"Virtual Local Area Network\">VLAN</abbr>s werden häufig zur Trennung " -"verschiedener Netzwerksegmente verwendet. Oftmals gibt es standardmäßig " -"einen Uplink-Port für eine Verbindung zum nächst größeren Netzwerk wie dem " -"Internet und andere Ports für ein lokales Netzwerk." +"Die Netzwerkanschlüsse dieses Geräts können zu mehreren <abbr title=" +"\"Virtual Local Area Network\">VLAN</abbr>s kombiniert werden, in denen " +"Computer direkt miteinander kommunizieren können. <abbr title=\"Virtual " +"Local Area Network\">VLAN</abbr>s werden häufig zur Trennung verschiedener " +"Netzwerksegmente verwendet. Oftmals gibt es standardmäßig einen Uplink-Port " +"für eine Verbindung zum nächst größeren Netzwerk wie dem Internet und andere " +"Ports für ein lokales Netzwerk." #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:759 msgid "" @@ -8955,7 +9006,7 @@ msgstr "" "Der ausgewählte \"%s\" Betriebsmodus ist nicht kompatibel mit %s-" "Verschlüsselung" -#: modules/luci-base/luasrc/view/csrftoken.htm:11 +#: modules/luci-base/ucode/template/csrftoken.ut:11 msgid "The submitted security token is invalid or already expired!" msgstr "" "Das mitgesendete Sicherheits-Token ist ungültig oder bereits abgelaufen!" @@ -9048,8 +9099,8 @@ msgstr "" "iptables und nftables-Regeln wird nicht empfohlen und könnte zur " "unvollständigen Filterung von Netzwerkverkehr führen." -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:746 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:778 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:817 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:849 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:130 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:179 msgid "There are no active leases" @@ -9059,8 +9110,8 @@ msgstr "Es gibt keine aktiven Leases" msgid "There are no changes to apply" msgstr "Es gibt keine anzuwendenden Änderungen" -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:70 -#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:62 +#: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/header.ut:58 +#: themes/luci-theme-openwrt-2020/ucode/template/themes/openwrt2020/header.ut:55 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:80 msgid "" "There is no password set on this router. Please configure a root password to " @@ -9085,7 +9136,6 @@ msgid "This does not look like a valid PEM file" msgstr "Dies scheint keine gültige PEM-Datei zu sein" #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:454 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:16 msgid "" "This is a list of shell glob patterns for matching files and directories to " "include during sysupgrade. Modified files in /etc/config/ and certain other " @@ -9139,11 +9189,11 @@ msgstr "" "Dies ist die lokale, vom Broker zugewiesene IPv6-Adresse, sie endet " "üblicherweise mit <code>...:2/64</code>" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:266 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:268 msgid "This is the only DHCP server in the local network." msgstr "" -"Dies ist der einzige <abbr title=\"Dynamic Host Configuration " -"Protocol\">DHCP</abbr>-Server im lokalen Netzwerk" +"Dies ist der einzige <abbr title=\"Dynamic Host Configuration Protocol" +"\">DHCP</abbr>-Server im lokalen Netzwerk" #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6in4.js:73 msgid "This is the plain username for logging into the account" @@ -9235,8 +9285,8 @@ msgstr "Zeitzone" #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:440 msgid "" "To fully configure the local WireGuard interface from an existing (e.g. " -"provider supplied) configuration file, use the <strong><a class=\"full-" -"import\" href=\"#\">configuration import</a></strong> instead." +"provider supplied) configuration file, use the <strong><a class=\"full-import" +"\" href=\"#\">configuration import</a></strong> instead." msgstr "" #: modules/luci-base/htdocs/luci-static/resources/luci.js:2674 @@ -9403,7 +9453,7 @@ msgstr "Externe IP-Adresse konnte nicht bestimmt werden" msgid "Unable to determine upstream interface" msgstr "Upstream-Netzwerkadapter konnte nicht bestimmt werden" -#: modules/luci-base/luasrc/view/error404.htm:11 +#: modules/luci-base/ucode/template/error404.ut:12 msgid "Unable to dispatch" msgstr "Kann Anfrage nicht zustellen" @@ -9458,7 +9508,7 @@ msgstr "Inhalt kann nicht gespeichert werden: %s" msgid "Unable to verify PIN" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:32 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:33 msgid "Unavailable Seconds (UAS)" msgstr "Nicht verfügbare Sekunden (UAS)" @@ -9615,7 +9665,7 @@ msgstr "" "Beim Fortfahren werden \"ifname\"-Option umbenannt und das Netzwerk neu " "gestartet um die Veränderungen anzuwenden." -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:423 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:428 msgid "Upstream resolvers will be queried in the order of the resolv file." msgstr "" "<abbr title=\"Domain Name System\">DNS</abbr>-Server in der Reihenfolge der " @@ -9626,7 +9676,7 @@ msgstr "" msgid "Uptime" msgstr "Laufzeit" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:344 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:349 msgid "Use <code>/etc/ethers</code>" msgstr "Verwende <code>/etc/ethers</code>" @@ -9742,7 +9792,7 @@ msgstr "Benutze Systemzertifikate" msgid "Use system certificates for inner-tunnel" msgstr "Benutze Systemzertifikate für inneren Tunnel" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:599 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:670 msgid "" "Use the <em>Add</em> Button to add a new lease entry. The <em>MAC address</" "em> identifies the host, the <em>IPv4 address</em> specifies the fixed " @@ -9803,11 +9853,11 @@ msgstr "Benutzerkennung" msgid "User key (PEM encoded)" msgstr "PEM-kodierter Benutzerschlüssel" -#: modules/luci-base/luasrc/view/sysauth.htm:23 +#: modules/luci-base/ucode/template/sysauth.ut:23 #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:112 #: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:101 #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:56 -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/sysauth.htm:18 +#: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/sysauth.ut:13 msgid "Username" msgstr "Benutzername" @@ -9905,7 +9955,7 @@ msgstr "VXLAN-Netzwerkkennung" msgid "VXLANv6 (RFC7348)" msgstr "VXLANv6 (RFC7348)" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:398 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:403 msgid "" "Validate DNS replies and cache DNSSEC data, requires upstream to support " "DNSSEC." @@ -9942,7 +9992,7 @@ msgstr "Hersteller" msgid "Vendor Class to send when requesting DHCP" msgstr "Bei DHCP-Anfragen gesendete Vendor-Klasse" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:403 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:408 msgid "Verify unsigned domain responses really come from unsigned domains." msgstr "" "Prüfen das nicht signierte Domain-Antworten tatsächlich von unsignierten " @@ -10023,6 +10073,10 @@ msgstr "" msgid "Weak" msgstr "Schwach" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:589 +msgid "Weight" +msgstr "" + #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1029 msgid "" "When delegating prefixes to multiple downstreams, interfaces with a higher " @@ -10163,7 +10217,7 @@ msgstr "Das WLAN-Netzwerk ist deaktiviert" msgid "Wireless network is enabled" msgstr "Das WLAN-Netzwerk ist aktiviert" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:278 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:280 msgid "Write received DNS queries to syslog." msgstr "Empfangene DNS-Anfragen in das Systemprotokoll schreiben" @@ -10204,8 +10258,16 @@ msgstr "" "><strong>Warnung: Wenn essentielle Startscripte wie \"network\" deaktiviert " "werden könnte das Gerät unerreichbar werden!</strong>" -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:90 -#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:97 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:559 +msgid "You may add multiple records for the same Target." +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:596 +msgid "You may add multiple records for the same domain." +msgstr "" + +#: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/header.ut:78 +#: themes/luci-theme-material/ucode/template/themes/material/header.ut:92 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:73 msgid "" "You must enable JavaScript in your browser or LuCI will not work properly." @@ -10240,7 +10302,17 @@ msgstr "ZRAM Einstellungen" msgid "ZRam Size" msgstr "ZRAM Größe" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:449 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:558 +msgid "_proto: _tcp, _udp, _sctp, _quic, … ." +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:557 +msgid "" +"_service: _sip, _ldap, _imap, _stun, _xmpp-client, … . (Note: while _http is " +"possible, no browsers support SRV records.)" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:454 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:152 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:163 msgid "any" @@ -10351,8 +10423,8 @@ msgstr "Beispiel: --proxy 10.10.10.10" msgid "e.g: dump" msgstr "z.B.: abwerfen" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:726 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:756 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:797 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:827 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:101 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:148 msgid "expired" @@ -10569,9 +10641,9 @@ msgstr "eindeutigen Wert" msgid "unknown" msgstr "unbekannt" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:456 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:724 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:754 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:461 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:795 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:825 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:99 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:146 msgid "unlimited" @@ -10787,6 +10859,22 @@ msgstr "ja" msgid "« Back" msgstr "« Zurück" +#~ msgid "Back to configuration" +#~ msgstr "Zurück zur Konfiguration" + +#~ msgid "Close list..." +#~ msgstr "Schließe Liste..." + +#~ msgid "Internal Server Error" +#~ msgstr "Interner Serverfehler" + +#~ msgid "No files found" +#~ msgstr "Keine Dateien gefunden" + +#~ msgid "Sorry, the server encountered an unexpected error." +#~ msgstr "" +#~ "Entschuldigung, auf dem Server ist ein unerwarteter Fehler aufgetreten." + #~ msgid "Do not forward queries that cannot be answered by public resolvers." #~ msgstr "" #~ "Keine Anfragen weiterleiten welche nicht durch öffentliche Server " @@ -11203,8 +11291,8 @@ msgstr "« Zurück" #~ msgid "" #~ "The filesystem that was used to format the memory (<abbr title=\"for " -#~ "example\">e.g.</abbr> <samp><abbr title=\"Third Extended " -#~ "Filesystem\">ext3</abbr></samp>)" +#~ "example\">e.g.</abbr> <samp><abbr title=\"Third Extended Filesystem" +#~ "\">ext3</abbr></samp>)" #~ msgstr "Das Dateisystem mit dem der Speicher formatiert ist (z.B.: ext3)" #~ msgid "" @@ -11306,11 +11394,11 @@ msgstr "« Zurück" #~ msgstr "Frame Bursting" #~ msgid "" -#~ "Further information about WireGuard interfaces and peers at <a " -#~ "href=\"http://wireguard.com\">wireguard.com</a>." +#~ "Further information about WireGuard interfaces and peers at <a href=" +#~ "\"http://wireguard.com\">wireguard.com</a>." #~ msgstr "" -#~ "Weitere Informationen zu WireGuard-Schnittstellen und Peers unter <a " -#~ "href=\"http://wireguard.com\">wireguard.com</a>." +#~ "Weitere Informationen zu WireGuard-Schnittstellen und Peers unter <a href=" +#~ "\"http://wireguard.com\">wireguard.com</a>." #~ msgid "Generic 802.11%s Wireless Controller" #~ msgstr "Generischer 802.11%s WLAN Adapter" diff --git a/modules/luci-base/po/el/base.po b/modules/luci-base/po/el/base.po index e8a698ef3f..6aeb55c353 100644 --- a/modules/luci-base/po/el/base.po +++ b/modules/luci-base/po/el/base.po @@ -191,23 +191,24 @@ msgstr "Χρονικό όριο επανάληψης 802.11w" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1020 msgid "<abbr title=\"Basic Service Set Identifier\">BSSID</abbr>" -msgstr "<abbr title=\"Basic Service Set Identifier\">BSSID</abbr>" +msgstr "<abbr title=\"Αναγνωριστικό βασικού συνόλου υπηρεσιών\">BSSID</abbr>" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1009 msgid "<abbr title=\"Extended Service Set Identifier\">ESSID</abbr>" -msgstr "<abbr title=\"Extended Service Set Identifier\">ESSID</abbr>" +msgstr "" +"<abbr title=\"Αναγνωριστικό εκτεταμένου συνόλου υπηρεσιών\">ESSID</abbr>" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:691 msgid "<abbr title=\"Internet Protocol Version 4\">IPv4</abbr>-Netmask" -msgstr "Μάσκα <abbr title=\"Internet Protocol Version 4\">IPv4</abbr>" +msgstr "Μάσκα <abbr title=\"Πρωτόκολλο Διαδικτύου Έκδοση 4\">IPv4</abbr>" #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/leds.js:58 msgid "<abbr title=\"Light Emitting Diode\">LED</abbr> Configuration" -msgstr "Παραμετροποίηση <abbr title=\"Light Emitting Diode\">LED</abbr>" +msgstr "Παραμετροποίηση <abbr title=\"Δίοδος εκπομπής φωτός\">LED</abbr>" #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/leds.js:70 msgid "<abbr title=\"Light Emitting Diode\">LED</abbr> Name" -msgstr "Όνομα <abbr title=\"Light Emitting Diode\">LED</abbr>" +msgstr "Όνομα <abbr title=\"Δίοδος εκπομπής φωτός\">LED</abbr>" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:914 msgid "<abbr title=\"Neighbour Discovery Protocol\">NDP</abbr>-Proxy" @@ -233,6 +234,18 @@ msgstr "<abbr title=\"Router Advertisement\">RA</abbr> MTU" msgid "<abbr title=\"Router Advertisement\">RA</abbr>-Service" msgstr "<abbr title=\"Router Advertisement\">RA</abbr>-Υπηρεσία" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:294 +msgid "" +"<code>/#/</code> matches any domain. <code>/example.com/</code> returns " +"NXDOMAIN." +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:295 +msgid "" +"<code>/example.com/#</code> returns NULL addresses (<code>0.0.0.0</code> and " +"<code>::</code>) for example.com and its subdomains." +msgstr "" + #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:87 msgctxt "nft relational \">\" operator expression" msgid "<var>%s</var> greater than <strong>%s</strong>" @@ -398,7 +411,7 @@ msgstr "" msgid "ATM device number" msgstr "Αριθμός συσκευής ATM" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:36 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:37 msgid "ATU-C System Vendor ID" msgstr "Αναγνωριστικό προμηθευτή συστήματος ATU-C" @@ -408,7 +421,7 @@ msgstr "Αναγνωριστικό προμηθευτή συστήματος ATU msgid "Absent Interface" msgstr "Απουσία διεπαφής" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:320 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:325 msgid "Accept DNS queries only from hosts whose address is on a local subnet." msgstr "" "Αποδεχτείτε ερωτήματα DNS μόνο από κεντρικούς υπολογιστές των οποίων η " @@ -549,7 +562,7 @@ msgstr "Προσθήκη περίπτωσης" msgid "Add key" msgstr "Προσθήκη κλειδιού" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:410 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:415 msgid "Add local domain suffix to names served from hosts files." msgstr "" "Προσθήκη κατάληξης τοπικού τομέα για ονόματα εξυπηρετούμενα από αρχεία hosts" @@ -571,11 +584,11 @@ msgstr "Προσθήκη στο Blacklist" msgid "Add to Whitelist" msgstr "Προσθήκη στο Whitelist" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:367 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:372 msgid "Additional hosts files" msgstr "Επιπλέον αρχεία Hosts" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:417 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:422 msgid "Additional servers file" msgstr "Πρόσθετο αρχείο διακομιστών" @@ -605,7 +618,7 @@ msgstr "Η ρύθμιση διεύθυνσης δεν είναι έγκυρη" msgid "Address to access local relay bridge" msgstr "Διεύθυνση για πρόσβαση σε την τοπική γέφυρα αναμετάδοσης" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:289 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:291 msgid "Addresses" msgstr "Διευθύνσεις" @@ -638,7 +651,7 @@ msgstr "Χρόνος γήρανσης" msgid "Aggregate Originator Messages" msgstr "Συγκεντρωτικά μηνύματα προέλευσης" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:27 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:28 msgid "Aggregate Transmit Power (ACTATP)" msgstr "Συνολική ισχύς μετάδοσης (ACTATP)" @@ -677,11 +690,11 @@ msgstr "Διασύνδεση Alias" msgid "Alias of \"%s\"" msgstr "Ψευδώνυμο του \"%s\"," -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:427 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:432 msgid "All servers" msgstr "Όλοι οι διακομιστές" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:378 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:383 msgid "" "Allocate IP addresses sequentially, starting from the lowest available " "address." @@ -689,7 +702,7 @@ msgstr "" "Κατανομή διευθύνσεων IP διαδοχικά, ξεκινώντας από τη χαμηλότερη διαθέσιμη " "διεύθυνση." -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:377 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:382 msgid "Allocate IPs sequentially" msgstr "Διαδοχική κατανομή ip" @@ -721,7 +734,7 @@ msgstr "Να επιτρέπονται οι παλαιού τύπου συνδέ msgid "Allow listed only" msgstr "Να επιτρέπονται μόνο αυτές στην λίστα" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:306 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:311 msgid "Allow localhost" msgstr "Να επιτρέπεται το localhost" @@ -768,7 +781,7 @@ msgstr "Πάντα απενεργοποιημένο (kernel: none)" msgid "Always on (kernel: default-on)" msgstr "Πάντα ενεργό (kernel: default-on)" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:538 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:543 msgid "Always send DHCP Options. Sometimes needed, with e.g. PXELinux." msgstr "" "Να στέλνετε πάντα τις Επιλογές DHCP. Μερικές φορές χρειάζεται, με π.χ. " @@ -800,7 +813,7 @@ msgid "An optional, short description for this device" msgstr "Μια προαιρετική, σύντομη περιγραφή για αυτήν τη συσκευή" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1484 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:20 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:21 msgid "Annex" msgstr "Annex" @@ -921,7 +934,7 @@ msgstr "Οποιοδήποτε πακέτο" msgid "Any zone" msgstr "Οιαδήποτε ζώνη" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:532 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:537 msgid "Apply DHCP Options to this net. (Empty = all clients)." msgstr "" "Εφαρμόστε τις επιλογές DHCP σε αυτό το δίκτυο. (Άδειο = όλοι οι πελάτες)." @@ -1012,11 +1025,11 @@ msgstr "Εξουσιοδότηση" msgid "Authentication Type" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:265 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:267 msgid "Authoritative" msgstr "Κύριος" -#: modules/luci-base/luasrc/view/sysauth.htm:17 +#: modules/luci-base/ucode/template/sysauth.ut:17 #: themes/luci-theme-bootstrap/htdocs/luci-static/resources/view/bootstrap/sysauth.js:11 msgid "Authorization Required" msgstr "Απαιτείται Εξουσιοδότηση" @@ -1086,7 +1099,7 @@ msgstr "Μέσος Όρος:" msgid "Avoid Bridge Loops" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:388 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:393 msgid "" "Avoid uselessly triggering dial-on-demand links (filters SRV/SOA records and " "names with underscores)." @@ -1121,10 +1134,6 @@ msgstr "Πίσω" msgid "Back to Overview" msgstr "Πίσω προς Επισκόπηση" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:48 -msgid "Back to configuration" -msgstr "Πίσω προς παραμετροποίηση" - #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:826 msgid "Back to peer configuration" msgstr "" @@ -1138,7 +1147,6 @@ msgid "Backup / Flash Firmware" msgstr "Αντίγραφο ασφαλείας / Εγγραφή FLASH Υλικολογισμικό" #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:351 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:12 msgid "Backup file list" msgstr "Λίστα αρχείων για αντίγραφο ασφαλείας" @@ -1180,7 +1188,6 @@ msgid "Beacon Interval" msgstr "" #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:352 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:46 msgid "" "Below is the determined list of files to backup. It consists of changed " "configuration files marked by opkg, essential base files and the user " @@ -1195,7 +1202,7 @@ msgstr "" msgid "Bind NTP server" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:326 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:331 msgid "Bind dynamically to interfaces rather than wildcard address." msgstr "" @@ -1211,6 +1218,17 @@ msgstr "" msgid "Bind interface" msgstr "" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:595 +msgid "" +"Bind service records to a domain name: specify the location of services." +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:556 +msgid "" +"Bind service records to a domain name: specify the location of services. See " +"<a href=\"%s\">RFC2782</a>." +msgstr "" + #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:59 #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:64 #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:64 @@ -1313,6 +1331,10 @@ msgstr "" msgid "CLAT configuration failed" msgstr "" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:574 +msgid "CNAME or fqdn" +msgstr "" + #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/processes.js:72 msgid "CPU usage (%)" msgstr "Χρήση CPU (%)" @@ -1559,17 +1581,13 @@ msgstr "" "δευτερολέπτων, χρησιμοποιήστε 0 για να εξακολουθούν να υφίστανται επ' " "αόριστον" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:49 -msgid "Close list..." -msgstr "Κλείσιμο λίστας..." - #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:44 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:63 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2184 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:391 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:352 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:355 -#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:72 +#: themes/luci-theme-material/ucode/template/themes/material/header.ut:66 msgid "Collecting data..." msgstr "Συλλογή δεδομένων..." @@ -1604,6 +1622,10 @@ msgstr "" msgid "Compute outgoing checksum (optional)." msgstr "" +#: protocols/luci-proto-nebula/htdocs/luci-static/resources/protocol/nebula.js:40 +msgid "Config File" +msgstr "" + #: modules/luci-base/htdocs/luci-static/resources/ui.js:4375 #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:454 msgid "Configuration" @@ -1643,8 +1665,8 @@ msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:764 msgid "" -"Configures the operation mode of the <abbr title=\"Router " -"Advertisement\">RA</abbr> service on this interface." +"Configures the operation mode of the <abbr title=\"Router Advertisement" +"\">RA</abbr> service on this interface." msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:879 @@ -1817,8 +1839,8 @@ msgstr "" #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/leds.js:59 msgid "" -"Customizes the behaviour of the device <abbr title=\"Light Emitting " -"Diode\">LED</abbr>s if possible." +"Customizes the behaviour of the device <abbr title=\"Light Emitting Diode" +"\">LED</abbr>s if possible." msgstr "" "Ρυθμίζει, αν είναι δυνατόν, την συμπεριφορά των <abbr title=\"Light Emitting " "Diode\">LED</abbr> της συσκευής." @@ -1839,7 +1861,7 @@ msgstr "" msgid "DAE-Secret" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:525 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:530 msgid "DHCP Options" msgstr "" @@ -1879,11 +1901,11 @@ msgstr "" msgid "DNS" msgstr "DNS" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:282 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:284 msgid "DNS forwardings" msgstr "Προωθήσεις DNS" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:445 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:450 msgid "DNS query port" msgstr "Θύρα ερωτημάτων <abbr title=\"Σύστημα Ονόματος Τομέα\">DNS</abbr>" @@ -1891,7 +1913,7 @@ msgstr "Θύρα ερωτημάτων <abbr title=\"Σύστημα Ονόματ msgid "DNS search domains" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:438 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:443 msgid "DNS server port" msgstr "Θύρα εξυπηρετητή <abbr title=\"Σύστημα Ονόματος Τομέα\">DNS</abbr>" @@ -1907,11 +1929,11 @@ msgstr "" msgid "DNS-Label / FQDN" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:397 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:402 msgid "DNSSEC" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:402 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:407 msgid "DNSSEC check unsigned" msgstr "" @@ -1924,11 +1946,11 @@ msgid "DS-Lite AFTR address" msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1481 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:44 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:45 msgid "DSL" msgstr "DSL" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:14 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:15 msgid "DSL Status" msgstr "" @@ -1941,12 +1963,12 @@ msgid "DTIM Interval" msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:59 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:700 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:771 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:136 msgid "DUID" msgstr "DUID" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:21 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:22 msgid "Data Rate" msgstr "" @@ -2150,8 +2172,8 @@ msgid "" "Disable <abbr title=\"Dynamic Host Configuration Protocol\">DHCP</abbr> for " "this interface." msgstr "" -"Απενεργοποίηση <abbr title=\"Πρωτόκολλο Δυναμικής Απόδοσης " -"Διεύθυνσης\">DHCP</abbr> για αυτή τη διεπαφή." +"Απενεργοποίηση <abbr title=\"Πρωτόκολλο Δυναμικής Απόδοσης Διεύθυνσης" +"\">DHCP</abbr> για αυτή τη διεπαφή." #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:174 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:375 @@ -2193,7 +2215,7 @@ msgstr "" msgid "Disassociate On Low Acknowledgement" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:302 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:307 msgid "" "Discard upstream responses containing <a href=\"%s\">RFC1918</a> addresses." msgstr "Αγνόησε τις απαντήσεις ανοδικής ροής RFC1918." @@ -2239,7 +2261,7 @@ msgstr "Απόσταση σε μέτρα από το πιο απομακρυσμ msgid "Distributed ARP Table" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:543 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:548 msgid "" "Dnsmasq instance to which this boot section is bound. If unspecified, the " "section is valid for all dnsmasq instances." @@ -2247,16 +2269,16 @@ msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:246 msgid "" -"Dnsmasq is a lightweight <abbr title=\"Dynamic Host Configuration " -"Protocol\">DHCP</abbr> server and <abbr title=\"Domain Name System\">DNS</" -"abbr> forwarder." +"Dnsmasq is a lightweight <abbr title=\"Dynamic Host Configuration Protocol" +"\">DHCP</abbr> server and <abbr title=\"Domain Name System\">DNS</abbr> " +"forwarder." msgstr "" "Ο Dnsmasq είναι ένας συνδυασμός εξυπηρετητή <abbr title=\"Πρωτόκολλο " "Δυναμικής Απόδοσης Παραμέτρων Συστήματος\">DHCP</abbr> και προωθητή<abbr " -"title=\"Σύστημα Ονόματος Τομέα\">DNS</abbr> για τείχη προστασίας <abbr " -"title=\"Μεταφραστή Διεύθυνσης Δικτύου\">NAT</abbr>" +"title=\"Σύστημα Ονόματος Τομέα\">DNS</abbr> για τείχη προστασίας <abbr title=" +"\"Μεταφραστή Διεύθυνσης Δικτύου\">NAT</abbr>" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:414 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:419 msgid "Do not cache negative replies, e.g. for non-existent domains." msgstr "" "Να μην αποθηκεύονται στη λανθάνουσα μνήμη οι αρνητικές απαντήσεις, π.χ. για " @@ -2270,17 +2292,17 @@ msgstr "" msgid "Do not create host route to peer (optional)." msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:262 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:264 msgid "Do not forward DNS queries without dots or domain parts." msgstr "" "Να μην προωθούνται ερωτήματα <abbr title=\"Domain Name System\">DNS</abbr> " "χωρίς όνομα τομέα <abbr title=\"Domain Name System\">DNS</abbr>" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:383 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:388 msgid "Do not forward reverse lookups for local networks." msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:339 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:344 msgid "Do not listen on the specified interfaces." msgstr "" @@ -2333,15 +2355,16 @@ msgstr "" msgid "Do you want to replace the current keys?" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:593 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:606 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:664 msgid "Domain" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:261 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:263 msgid "Domain required" msgstr "Απαίτηση για όνομα τομέα" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:311 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:316 msgid "Domain whitelist" msgstr "Λευκή λίστα τομέων" @@ -2581,7 +2604,7 @@ msgstr "" msgid "Enable Single DES" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:480 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:485 msgid "Enable TFTP server" msgstr "Ενεργοποίηση εξυπηρετητή TFTP" @@ -2599,9 +2622,9 @@ msgstr "" #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/uhttpd.js:14 msgid "" -"Enable automatic redirection of <abbr title=\"Hypertext Transfer " -"Protocol\">HTTP</abbr> requests to <abbr title=\"Hypertext Transfer Protocol " -"Secure\">HTTPS</abbr> port." +"Enable automatic redirection of <abbr title=\"Hypertext Transfer Protocol" +"\">HTTP</abbr> requests to <abbr title=\"Hypertext Transfer Protocol Secure" +"\">HTTPS</abbr> port." msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:977 @@ -2664,7 +2687,7 @@ msgstr "" msgid "Enable the DF (Don't Fragment) flag of the encapsulating packets." msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:481 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:486 msgid "Enable the built-in single-instance TFTP server." msgstr "" @@ -2781,7 +2804,7 @@ msgstr "Σφάλμα" msgid "Error getting PublicKey" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:29 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:30 msgid "Errored seconds (ES)" msgstr "" @@ -2803,11 +2826,11 @@ msgstr "" msgid "Every second (fast, 1)" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:338 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:343 msgid "Exclude interfaces" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:307 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:312 msgid "" "Exempt <code>127.0.0.0/8</code> and <code>::1</code> from rebinding checks, " "e.g. for RBL services." @@ -2819,7 +2842,7 @@ msgstr "" msgid "Existing device" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:409 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:414 msgid "Expand hosts" msgstr "" @@ -2956,7 +2979,7 @@ msgstr "" msgid "File" msgstr "Αρχείο" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:418 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:423 msgid "" "File listing upstream resolvers, optionally domain-specific, e.g. " "<code>server=1.2.3.4</code>, <code>server=/domain/1.2.3.4</code>." @@ -2966,22 +2989,22 @@ msgstr "" msgid "File not accessible" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:349 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:354 msgid "File to store DHCP lease information." msgstr "" "αρχείο όπου θα αποθηκεύονται τα Leases του <abbr title=\"Dynamic Host " "Configuration Protocol\">DHCP</abbr>" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:357 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:362 msgid "File with upstream resolvers." msgstr "τοπικό αρχείο <abbr title=\"Domain Name System\">DNS</abbr>" #: modules/luci-base/htdocs/luci-static/resources/ui.js:2846 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:507 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:512 msgid "Filename" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:493 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:498 msgid "Filename of the boot image advertised to clients." msgstr "Όνομα αρχείου της εικόνας εκκίνησης που διαφημίζετε στους πελάτες" @@ -2990,11 +3013,11 @@ msgstr "Όνομα αρχείου της εικόνας εκκίνησης πο msgid "Filesystem" msgstr "Σύστημα Αρχείων" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:382 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:387 msgid "Filter private" msgstr "Φιλτράρισμα ιδιωτικών" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:387 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:392 msgid "Filter useless" msgstr "Φιλτράρισμα άχρηστων" @@ -3058,7 +3081,7 @@ msgstr "" msgid "Firmware Version" msgstr "Έκδοση υλικολογισμικού" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:446 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:451 msgid "Fixed source port for outbound DNS queries." msgstr "" @@ -3084,7 +3107,7 @@ msgstr "Λειτουργίες φλασάρισματος" msgid "Flashing…" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:537 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:542 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:686 msgid "Force" msgstr "Επιβολή" @@ -3131,16 +3154,16 @@ msgstr "" msgid "Force use of NAT-T" msgstr "" -#: modules/luci-base/luasrc/view/csrftoken.htm:8 +#: modules/luci-base/ucode/template/csrftoken.ut:8 msgid "Form token mismatch" msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:919 msgid "" -"Forward <abbr title=\"Neighbour Discovery Protocol\">NDP</abbr> <abbr " -"title=\"Neighbour Solicitation, Type 135\">NS</abbr> and <abbr " -"title=\"Neighbour Advertisement, Type 136\">NA</abbr> messages between the " -"designated master interface and downstream interfaces." +"Forward <abbr title=\"Neighbour Discovery Protocol\">NDP</abbr> <abbr title=" +"\"Neighbour Solicitation, Type 135\">NS</abbr> and <abbr title=\"Neighbour " +"Advertisement, Type 136\">NA</abbr> messages between the designated master " +"interface and downstream interfaces." msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:770 @@ -3160,7 +3183,7 @@ msgid "" "downstream interfaces." msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:28 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:29 msgid "Forward Error Correction Seconds (FECS)" msgstr "" @@ -3317,15 +3340,15 @@ msgstr "" msgid "Global network options" msgstr "" -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:82 -#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:89 -#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:74 +#: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/header.ut:70 +#: themes/luci-theme-material/ucode/template/themes/material/header.ut:84 +#: themes/luci-theme-openwrt-2020/ucode/template/themes/openwrt2020/header.ut:67 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:92 msgid "Go to firmware upgrade..." msgstr "" -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:72 -#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:64 +#: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/header.ut:60 +#: themes/luci-theme-openwrt-2020/ucode/template/themes/openwrt2020/header.ut:57 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:82 msgid "Go to password configuration..." msgstr "" @@ -3466,7 +3489,7 @@ msgstr "" msgid "Hang Up" msgstr "Κρέμασμα" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:33 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:34 msgid "Header Error Code Errors (HEC)" msgstr "" @@ -3519,7 +3542,7 @@ msgstr "" msgid "Host expiry timeout" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:508 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:513 msgid "Host requests this filename from the boot server." msgstr "" @@ -3528,8 +3551,8 @@ msgid "Host-Uniq tag content" msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:38 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:559 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:607 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:630 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:678 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/10_system.js:54 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:87 #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:135 @@ -3544,7 +3567,7 @@ msgstr "" msgid "Hostnames" msgstr "Ονόματα Υπολογιστών" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:551 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:622 msgid "" "Hostnames are used to bind a domain name to an IP address. This setting is " "redundant for hostnames already configured with static leases, but it can be " @@ -3608,7 +3631,7 @@ msgstr "" msgid "IP Protocol" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:258 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:260 msgid "IP Sets" msgstr "" @@ -3616,7 +3639,7 @@ msgstr "" msgid "IP Type" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:563 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:634 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:178 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:204 msgid "IP address" @@ -3642,15 +3665,15 @@ msgctxt "nft meta l4proto" msgid "IP protocol" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:589 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:660 msgid "IP set" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:295 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:300 msgid "IP sets" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:432 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:437 msgid "IPs to override with NXDOMAIN" msgstr "Παράκαμψη Ψευδούς Τομέα NX" @@ -3691,7 +3714,7 @@ msgstr "" #: modules/luci-base/htdocs/luci-static/resources/protocol/static.js:178 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:39 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:665 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:736 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:88 #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:164 msgid "IPv4 address" @@ -3862,7 +3885,7 @@ msgstr "" msgid "IPv6 suffix" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:706 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:777 msgid "IPv6 suffix (hex)" msgstr "" @@ -3958,10 +3981,10 @@ msgstr "" #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:340 msgid "" "If your physical memory is insufficient unused data can be temporarily " -"swapped to a swap-device resulting in a higher amount of usable <abbr " -"title=\"Random Access Memory\">RAM</abbr>. Be aware that swapping data is a " -"very slow process as the swap-device cannot be accessed with the high " -"datarates of the <abbr title=\"Random Access Memory\">RAM</abbr>." +"swapped to a swap-device resulting in a higher amount of usable <abbr title=" +"\"Random Access Memory\">RAM</abbr>. Be aware that swapping data is a very " +"slow process as the swap-device cannot be accessed with the high datarates " +"of the <abbr title=\"Random Access Memory\">RAM</abbr>." msgstr "" "Αν η φυσική μνήμη δεν είναι αρκετή, μη-χρησιμοποιούμενα δεδομένα μπορούν " "προσωρινά να εναλλάσσονται σε μία συσκευή swap με αποτέλεσμα περισσότερη " @@ -3970,7 +3993,7 @@ msgstr "" "προσπελαστεί με τους υψηλούς ρυθμούς μεταφοράς δεδομένων που διαθέτει η " "<abbr title=\"Random Access Memory\">RAM</abbr>." -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:363 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:368 msgid "Ignore <code>/etc/hosts</code>" msgstr "Αγνόησε <code>/etc/hosts</code>" @@ -3978,7 +4001,7 @@ msgstr "Αγνόησε <code>/etc/hosts</code>" msgid "Ignore interface" msgstr "Αγνόησε διεπαφή" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:352 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:357 msgid "Ignore resolv file" msgstr "Αγνόησε αρχείο resolve" @@ -4026,7 +4049,7 @@ msgid "" "order to avoid broadcast loops that can bring the entire LAN to a standstill." msgstr "" -#: modules/luci-base/luasrc/view/csrftoken.htm:13 +#: modules/luci-base/ucode/template/csrftoken.ut:13 msgid "" "In order to prevent unauthorized access to the system, your request has been " "blocked. Click \"Continue »\" below to return to the previous page." @@ -4135,7 +4158,7 @@ msgstr "" msgid "Install protocol extensions..." msgstr "Εγκατάσταση επεκτάσεων πρωτοκόλλου..." -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:542 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:547 msgid "Instance" msgstr "" @@ -4222,10 +4245,6 @@ msgstr "Διεπαφές" msgid "Internal" msgstr "" -#: modules/luci-base/luasrc/view/error500.htm:8 -msgid "Internal Server Error" -msgstr "" - #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:285 msgid "Interval For Sending Learning Packets" msgstr "" @@ -4294,8 +4313,8 @@ msgstr "" msgid "Invalid hexadecimal value" msgstr "" -#: modules/luci-base/luasrc/view/sysauth.htm:12 -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/sysauth.htm:37 +#: modules/luci-base/ucode/template/sysauth.ut:12 +#: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/sysauth.ut:32 msgid "Invalid username and/or password! Please try again." msgstr "Άκυρο όνομα χρήστη και/ή κωδικός πρόσβασης! Παρακαλώ προσπαθήστε ξανά." @@ -4320,8 +4339,8 @@ msgstr "" "Φαίνεται πως προσπαθείτε να φλασάρετε μια εικόνα που δεν χωράει στην μνήμη " "flash, παρακαλώ επιβεβαιώστε το αρχείο εικόνας!" -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:89 -#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:96 +#: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/header.ut:77 +#: themes/luci-theme-material/ucode/template/themes/material/header.ut:91 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:72 msgid "JavaScript required!" msgstr "Απαιτείται JavaScript!" @@ -4453,11 +4472,17 @@ msgstr "Γλώσσα" msgid "Language and Style" msgstr "" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:560 +msgid "" +"Larger weights (of the same prio) are given a proportionately higher " +"probability of being selected." +msgstr "" + #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:575 msgid "Last member interval" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:23 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:24 msgid "Latency" msgstr "" @@ -4473,11 +4498,11 @@ msgstr "" msgid "Learn routes" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:348 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:353 msgid "Lease file" msgstr "Αρχείο Leases" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:697 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:768 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:679 msgid "Lease time" msgstr "" @@ -4521,19 +4546,19 @@ msgstr "Υπόμνημα:" msgid "Limit" msgstr "Όριο" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:24 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:25 msgid "Line Attenuation (LATN)" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:18 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:19 msgid "Line Mode" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:17 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:18 msgid "Line State" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:19 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:20 msgid "Line Uptime" msgstr "" @@ -4554,12 +4579,12 @@ msgctxt "nft @ll,off,len" msgid "Link layer header bits %d-%d" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:433 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:438 msgid "List of IP addresses to convert into NXDOMAIN responses." msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:296 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:581 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:301 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:652 msgid "List of IP sets to populate with the specified domain IPs." msgstr "" @@ -4585,15 +4610,11 @@ msgstr "" msgid "List of SSH key files for auth" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:312 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:317 msgid "List of domains to allow RFC1918 responses for." msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:290 -msgid "List of domains to force to an IP address." -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:283 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:285 msgid "List of upstream resolvers to forward queries to." msgstr "" @@ -4601,7 +4622,7 @@ msgstr "" msgid "Listen Port" msgstr "Θύρα ακρόασης" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:332 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:337 msgid "Listen interfaces" msgstr "" @@ -4609,7 +4630,7 @@ msgstr "" msgid "Listen only on the given interface or, if unspecified, on all" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:333 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:338 msgid "" "Listen only on the specified interfaces, and loopback if not excluded " "explicitly." @@ -4619,7 +4640,7 @@ msgstr "" msgid "ListenPort setting is invalid" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:439 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:444 msgid "Listening port for inbound DNS queries." msgstr "" @@ -4646,9 +4667,9 @@ msgid "Loading directory contents…" msgstr "" #: modules/luci-base/htdocs/luci-static/resources/luci.js:1942 -#: modules/luci-base/luasrc/view/view.htm:4 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:12 -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/sysauth.htm:45 +#: modules/luci-base/ucode/template/view.ut:4 +#: modules/luci-mod-status/ucode/template/admin_status/index.ut:12 +#: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/sysauth.ut:40 msgid "Loading view…" msgstr "" @@ -4706,19 +4727,19 @@ msgstr "Τοπική ώρα" msgid "Local ULA" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:273 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:275 msgid "Local domain" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:274 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:276 msgid "Local domain suffix appended to DHCP names and hosts file entries." msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:269 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:271 msgid "Local server" msgstr "Τοπικός εξυπηρετητής" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:319 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:324 msgid "Local service only" msgstr "" @@ -4726,7 +4747,7 @@ msgstr "" msgid "Local wireguard key" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:392 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:397 msgid "Localise queries" msgstr "Τοπικά ερωτήματα" @@ -4738,7 +4759,7 @@ msgstr "" msgid "Log output level" msgstr "Επίπεδο εξόδου αρχείων καταγραφής" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:277 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:279 msgid "Log queries" msgstr "Καταγραφή ερωτημάτων" @@ -4762,8 +4783,8 @@ msgstr "" msgid "Logical network to which the tunnel will be added (bridged) (optional)." msgstr "" -#: modules/luci-base/luasrc/view/sysauth.htm:38 -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/sysauth.htm:41 +#: modules/luci-base/ucode/template/sysauth.ut:38 +#: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/sysauth.ut:36 msgid "Login" msgstr "Σύνδεση" @@ -4775,7 +4796,7 @@ msgstr "Αποσύνδεση" msgid "Loose filtering" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:31 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:32 msgid "Loss of Signal Seconds (LOSS)" msgstr "" @@ -4783,6 +4804,10 @@ msgstr "" msgid "Lowest leased address as offset from the network address." msgstr "" +#: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/footer.ut:12 +msgid "Lua compatibility mode active" +msgstr "" + #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:48 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:83 msgid "MAC" @@ -4807,7 +4832,7 @@ msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:591 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:40 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:619 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:690 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1164 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2177 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:56 @@ -4866,6 +4891,10 @@ msgstr "" msgid "MTU" msgstr "MTU" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:259 +msgid "MX" +msgstr "" + #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:303 msgid "" "Make sure to clone the root filesystem using something like the commands " @@ -4890,23 +4919,23 @@ msgstr "" msgid "Max <abbr title=\"Router Advertisement\">RA</abbr> interval" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:22 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:23 msgid "Max. Attainable Data Rate (ATTNDR)" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:452 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:457 msgid "Max. DHCP leases" msgstr "" "<abbr title=\"μέγιστο\">Μεγ.</abbr> πλήθος <abbr title=\"Πρωτόκολλο " "Παραμετροποίησης Δυναμικού Συστήματος\">DHCP</abbr> leases" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:459 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:464 msgid "Max. EDNS0 packet size" msgstr "" "<abbr title=\"μέγιστο\">Μεγ.</abbr> μέγεθος πακέτου <abbr title=\"Μηχανισμοί " "επεκτάσεων για Συστήματα Ονόματος Τομέα\">EDNS0</abbr>" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:466 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:471 msgid "Max. concurrent queries" msgstr "<abbr title=\"μέγιστο\">Μεγ.</abbr> πλήθος ταυτόχρονων ερωτηματων" @@ -4918,15 +4947,15 @@ msgstr "" msgid "Maximum allowed Listen Interval" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:453 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:458 msgid "Maximum allowed number of active DHCP leases." msgstr "Μέγιστος επιτρεπόμενος αριθμός ενεργών DHCP leases" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:467 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:472 msgid "Maximum allowed number of concurrent DNS queries." msgstr "Μέγιστος επιτρεπόμενος αριθμός ταυτόχρονων ερωτημάτων DNS" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:460 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:465 msgid "Maximum allowed size of EDNS0 UDP packets." msgstr "Μέγιστο επιτρεπόμενο μέγεθος EDNS.0 UDP πακέτων" @@ -4954,7 +4983,7 @@ msgstr "" msgid "Maximum transmit power" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:389 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:394 msgid "May prevent VoIP or other services from working." msgstr "" @@ -5270,11 +5299,15 @@ msgstr "Όνομα νέου δικτύου" msgid "Name of the tunnel device" msgstr "" -#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:46 +#: themes/luci-theme-openwrt-2020/ucode/template/themes/openwrt2020/header.ut:39 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:50 msgid "Navigation" msgstr "Πλοήγηση" +#: protocols/luci-proto-nebula/htdocs/luci-static/resources/protocol/nebula.js:10 +msgid "Nebula Network" +msgstr "" + #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:653 msgid "Neighbour cache validity" msgstr "" @@ -5310,7 +5343,7 @@ msgstr "Εργαλεία Δικτύου" msgid "Network address" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:492 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:497 msgid "Network boot image" msgstr "" @@ -5350,7 +5383,7 @@ msgstr "" msgid "Network interface" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:531 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:536 msgid "Network-ID" msgstr "" @@ -5358,7 +5391,7 @@ msgstr "" msgid "Never" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:270 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:272 msgid "" "Never forward matching domains and subdomains, resolve from DHCP or hosts " "files only." @@ -5406,9 +5439,9 @@ msgstr "" msgid "No RX signal" msgstr "" -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:80 -#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:87 -#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:72 +#: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/header.ut:68 +#: themes/luci-theme-material/ucode/template/themes/material/header.ut:82 +#: themes/luci-theme-openwrt-2020/ucode/template/themes/openwrt2020/header.ut:65 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:90 msgid "" "No changes to settings will be stored and are lost after rebooting. This " @@ -5450,10 +5483,6 @@ msgstr "" msgid "No entries in this directory" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:82 -msgid "No files found" -msgstr "Δε βρέθηκαν αρχεία" - #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:833 msgid "" "No fixed interface listening port defined, peers might not be able to " @@ -5489,7 +5518,7 @@ msgstr "" msgid "No more slaves available, can not save interface" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:413 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:418 msgid "No negative cache" msgstr "" @@ -5497,8 +5526,8 @@ msgstr "" msgid "No nftables ruleset loaded." msgstr "" -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:69 -#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:61 +#: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/header.ut:57 +#: themes/luci-theme-openwrt-2020/ucode/template/themes/openwrt2020/header.ut:54 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:79 msgid "No password set!" msgstr "Δεν έχει οριστεί κωδικός πρόσβασης!" @@ -5538,7 +5567,7 @@ msgstr "Δεν έχει ανατεθεί ζώνη" msgid "Noise" msgstr "Θόρυβος" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:26 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:27 msgid "Noise Margin (SNR)" msgstr "" @@ -5546,11 +5575,11 @@ msgstr "" msgid "Noise:" msgstr "Θόρυβος:" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:34 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:35 msgid "Non Pre-emptive CRC errors (CRC_P)" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:325 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:330 msgid "Non-wildcard" msgstr "" @@ -5565,7 +5594,7 @@ msgstr "Κανένα" msgid "Normal" msgstr "Φυσιολογικό" -#: modules/luci-base/luasrc/view/error404.htm:8 +#: modules/luci-base/ucode/template/error404.ut:9 msgid "Not Found" msgstr "" @@ -5615,7 +5644,7 @@ msgstr "" msgid "Number of IGMP membership reports" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:474 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:479 msgid "Number of cached DNS entries, 10000 is maximum, 0 is no caching." msgstr "" @@ -5664,7 +5693,7 @@ msgstr "" msgid "On-link" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:672 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:743 msgid "One of hostname or MAC address must be specified!" msgstr "" @@ -5700,7 +5729,6 @@ msgid "Open iptables rules overview…" msgstr "" #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:472 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:19 msgid "Open list..." msgstr "" @@ -5844,18 +5872,23 @@ msgstr "" msgid "Options" msgstr "Επιλογές" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:526 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:531 msgid "" "Options for the Network-ID. (Note: needs also Network-ID.) E.g. " -"\"<code>42,192.168.1.4</code>\" for NTP server, \"<code>3,192.168.4.4</" -"code>\" for default route. <code>0.0.0.0</code> means \"the address of the " -"system running dnsmasq\"." +"\"<code>42,192.168.1.4</code>\" for NTP server, \"<code>3,192.168.4.4</code>" +"\" for default route. <code>0.0.0.0</code> means \"the address of the system " +"running dnsmasq\"." msgstr "" #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:125 msgid "Options:" msgstr "" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:584 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:616 +msgid "Ordinal: lower comes first." +msgstr "" + #: protocols/luci-proto-batman-adv/htdocs/luci-static/resources/protocol/batadv.js:55 msgid "Originator Interval" msgstr "" @@ -6127,13 +6160,13 @@ msgctxt "MACVLAN mode" msgid "Pass-through (Mirror physical device to single MAC VLAN)" msgstr "" -#: modules/luci-base/luasrc/view/sysauth.htm:29 +#: modules/luci-base/ucode/template/sysauth.ut:29 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1690 #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:51 #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:114 #: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:103 #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:58 -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/sysauth.htm:24 +#: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/sysauth.ut:19 msgid "Password" msgstr "Κωδικός Πρόσβασης" @@ -6304,7 +6337,7 @@ msgstr "" msgid "Pkts." msgstr "Πκτ." -#: modules/luci-base/luasrc/view/sysauth.htm:19 +#: modules/luci-base/ucode/template/sysauth.ut:19 msgid "Please enter your username and password." msgstr "Παρακαλώ εισάγετε όνομα χρήστη και κωδικό πρόσβασης." @@ -6321,6 +6354,7 @@ msgctxt "Chain hook policy" msgid "Policy: <strong>%h</strong> (%h)" msgstr "" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:579 #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/dropbear.js:21 msgid "Port" msgstr "Θύρα" @@ -6337,11 +6371,11 @@ msgstr "" msgid "Potential negation of: %s" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:37 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:38 msgid "Power Management Mode" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:35 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:36 msgid "Pre-emptive CRC errors (CRCP_P)" msgstr "" @@ -6415,6 +6449,8 @@ msgid "Primary becomes active slave whenever it comes back up (always, 0)" msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:508 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:584 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:616 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:129 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:197 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:223 @@ -6530,7 +6566,7 @@ msgstr "" msgid "Quality" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:428 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:433 msgid "Query all available upstream resolvers." msgstr "" @@ -6612,7 +6648,7 @@ msgstr "" msgid "Raw hex-encoded bytes. Leave empty unless your ISP require this" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:345 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:350 msgid "Read <code>/etc/ethers</code> to configure the DHCP server." msgstr "" "Διάβασμα του <code>/etc/ethers</code> για την παραμετροποίηση του " @@ -6630,7 +6666,7 @@ msgstr "Γραφήματα πραγματικού χρόνου" msgid "Reassociation Deadline" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:301 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:306 msgid "Rebind protection" msgstr "" @@ -6715,6 +6751,7 @@ msgid "" msgstr "" #: modules/luci-compat/luasrc/model/network/proto_relay.lua:153 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:611 #: protocols/luci-proto-relay/htdocs/luci-static/resources/protocol/relay.js:39 msgid "Relay" msgstr "" @@ -6805,6 +6842,10 @@ msgstr "" msgid "Required. Base64-encoded private key for this interface." msgstr "" +#: protocols/luci-proto-nebula/htdocs/luci-static/resources/protocol/nebula.js:40 +msgid "Required. Path to the .yml config file for this interface." +msgstr "" + #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:587 msgid "Required. Public key of the WireGuard peer." msgstr "" @@ -6886,7 +6927,7 @@ msgid "Reselection policy for primary slave" msgstr "" #: modules/luci-base/htdocs/luci-static/resources/luci.js:2197 -#: modules/luci-base/luasrc/view/sysauth.htm:39 +#: modules/luci-base/ucode/template/sysauth.ut:39 #: modules/luci-compat/luasrc/view/cbi/delegator.htm:17 #: modules/luci-compat/luasrc/view/cbi/footer.htm:30 #: modules/luci-compat/luasrc/view/cbi/simpleform.htm:66 @@ -6905,10 +6946,14 @@ msgstr "Αρχικοποίηση στις προεπιλεγμένες τιμέ msgid "Resolv and Hosts Files" msgstr "Αρχεία Resolv και Hosts" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:356 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:361 msgid "Resolv file" msgstr "Αρχείο Resolve" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:292 +msgid "Resolve specified FQDNs to an IP." +msgstr "" + #: modules/luci-base/htdocs/luci-static/resources/rpc.js:405 msgid "Resource not found" msgstr "" @@ -6935,7 +6980,7 @@ msgstr "Επαναφορά Αντίγραφου Ασφαλείας" msgid "Restore backup" msgstr "Επαναφορά αντιγράφου ασφαλείας" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:393 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:398 msgid "" "Return answers to DNS queries matching the subnet from which the query was " "received if multiple IPs are available." @@ -7021,7 +7066,7 @@ msgstr "" msgid "Robustness" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:486 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:491 msgid "" "Root directory for files served via TFTP. <em>Enable TFTP server</em> and " "<em>TFTP server root</em> turn on the TFTP server and serve files from " @@ -7126,6 +7171,11 @@ msgstr "" msgid "SNR" msgstr "" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:258 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:569 +msgid "SRV" +msgstr "" + #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/dropbear.js:10 #: modules/luci-mod-system/root/usr/share/luci/menu.d/luci-mod-system.json:38 msgid "SSH Access" @@ -7263,11 +7313,11 @@ msgstr "" msgid "Server" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:519 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:524 msgid "Server address" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:513 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:518 msgid "Server name" msgstr "" @@ -7355,7 +7405,7 @@ msgstr "Ρυθμίσεις" msgid "Setup routes for proxied IPv6 neighbours." msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:30 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:31 msgid "Severely Errored Seconds (SES)" msgstr "" @@ -7369,7 +7419,6 @@ msgid "Short Preamble" msgstr "" #: 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 msgid "Show current backup file list" msgstr "" @@ -7403,7 +7452,7 @@ msgstr "Σήμα" msgid "Signal / Noise" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:25 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:26 msgid "Signal Attenuation (SATN)" msgstr "" @@ -7420,7 +7469,7 @@ msgstr "Σήμα:" msgid "Size" msgstr "Μέγεθος" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:473 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:478 msgid "Size of DNS query cache" msgstr "" @@ -7437,12 +7486,12 @@ msgstr "Παράκαμψη" msgid "Skip from backup files that are equal to those in /rom" msgstr "" -#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:42 +#: themes/luci-theme-openwrt-2020/ucode/template/themes/openwrt2020/header.ut:35 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:46 msgid "Skip to content" msgstr "Παράκαμψη σε περιεχόμενο" -#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:41 +#: themes/luci-theme-openwrt-2020/ucode/template/themes/openwrt2020/header.ut:34 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:45 msgid "Skip to navigation" msgstr "Παράκαμψη σε πλοήγηση" @@ -7460,14 +7509,10 @@ msgstr "" msgid "Some fields are invalid, cannot save values!" msgstr "Κάποια πεδία δεν είναι έγκυρα, δεν μπορούν να αποθηκευτούν οι τιμές!" -#: modules/luci-base/luasrc/view/error404.htm:9 +#: modules/luci-base/ucode/template/error404.ut:10 msgid "Sorry, the object you requested was not found." msgstr "" -#: modules/luci-base/luasrc/view/error500.htm:9 -msgid "Sorry, the server encountered an unexpected error." -msgstr "" - #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:442 msgid "" "Sorry, there is no sysupgrade support present; a new firmware image must be " @@ -7503,7 +7548,7 @@ msgctxt "nft ip sport" msgid "Source port" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:500 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:505 msgid "" "Special <abbr title=\"Preboot eXecution Environment\">PXE</abbr> boot " "options for Dnsmasq." @@ -7871,7 +7916,7 @@ msgstr "Στατικά Leases" msgid "Static address" msgstr "Στατική διεύθυνση" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:598 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:669 msgid "" "Static leases are used to assign fixed IP addresses and symbolic hostnames " "to DHCP clients. They are also required for non-dynamic interface " @@ -7885,7 +7930,7 @@ msgstr "" #: modules/luci-base/root/usr/share/luci/menu.d/luci-base.json:16 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:541 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:929 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:9 +#: modules/luci-mod-status/ucode/template/admin_status/index.ut:9 msgid "Status" msgstr "Κατάσταση" @@ -7911,7 +7956,7 @@ msgstr "" msgid "Strict filtering" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:422 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:427 msgid "Strict order" msgstr "Αυστηρή σειρά" @@ -7924,11 +7969,11 @@ msgstr "" msgid "Submit" msgstr "Υποβολή" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:372 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:377 msgid "Suppress logging" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:373 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:378 msgid "Suppress logging of the routine operation for the DHCP protocol." msgstr "" @@ -7981,6 +8026,14 @@ msgstr "" msgid "Sync with browser" msgstr "" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:293 +msgid "Syntax: <code>/fqdn[/fqdn…]/[ipaddr]</code>." +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:569 +msgid "Syntax: <code>_service._proto.example.com</code>." +msgstr "" + #: modules/luci-base/root/usr/share/luci/menu.d/luci-base.json:26 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/10_system.js:17 #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:113 @@ -8006,9 +8059,9 @@ msgstr "Ιδιότητες Συστήματος" msgid "System log buffer size" msgstr "" -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:79 -#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:86 -#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:71 +#: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/header.ut:67 +#: themes/luci-theme-material/ucode/template/themes/material/header.ut:81 +#: themes/luci-theme-openwrt-2020/ucode/template/themes/openwrt2020/header.ut:64 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:89 msgid "System running in recovery (initramfs) mode." msgstr "" @@ -8037,7 +8090,7 @@ msgstr "" msgid "TCP:" msgstr "TCP:" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:485 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:490 msgid "TFTP server root" msgstr "" @@ -8062,6 +8115,7 @@ msgstr "" msgid "Table" msgstr "Πίνακας" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:574 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:56 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:66 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:187 @@ -8132,15 +8186,15 @@ msgid "" "username instead of the user ID!" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:681 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:752 msgid "The IP address %h is already used by another static lease" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:690 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:761 msgid "The IP address is outside of any DHCP pool address range" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:520 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:525 msgid "The IP address of the boot server" msgstr "" @@ -8246,8 +8300,8 @@ msgid "" "The device file of the memory or partition (<abbr title=\"for example\">e.g." "</abbr> <code>/dev/sda1</code>)" msgstr "" -"Το αρχείο συσκευής της μνήμης ή του διαμέρισματος (<abbr " -"title=\"παραδείγματος χάρην\">π.χ.</abbr> <code>/dev/sda1</code>)" +"Το αρχείο συσκευής της μνήμης ή του διαμέρισματος (<abbr title=" +"\"παραδείγματος χάρην\">π.χ.</abbr> <code>/dev/sda1</code>)" #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:450 msgid "The device name \"%s\" is already taken" @@ -8309,7 +8363,7 @@ msgid "" "to be received and retransmitted which costs airtime)" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:514 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:519 msgid "The hostname of the boot server" msgstr "" @@ -8394,8 +8448,8 @@ msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:139 msgid "" -"The network ports on this device can be combined to several <abbr " -"title=\"Virtual Local Area Network\">VLAN</abbr>s in which computers can " +"The network ports on this device can be combined to several <abbr title=" +"\"Virtual Local Area Network\">VLAN</abbr>s in which computers can " "communicate directly with each other. <abbr title=\"Virtual Local Area " "Network\">VLAN</abbr>s are often used to separate different network " "segments. Often there is by default one Uplink port for a connection to the " @@ -8446,7 +8500,7 @@ msgstr "" msgid "The selected %s mode is incompatible with %s encryption" msgstr "" -#: modules/luci-base/luasrc/view/csrftoken.htm:11 +#: modules/luci-base/ucode/template/csrftoken.ut:11 msgid "The submitted security token is invalid or already expired!" msgstr "" @@ -8523,8 +8577,8 @@ msgid "" "nftables rules is discouraged and may lead to incomplete traffic filtering." msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:746 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:778 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:817 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:849 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:130 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:179 msgid "There are no active leases" @@ -8534,8 +8588,8 @@ msgstr "" msgid "There are no changes to apply" msgstr "" -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:70 -#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:62 +#: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/header.ut:58 +#: themes/luci-theme-openwrt-2020/ucode/template/themes/openwrt2020/header.ut:55 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:80 msgid "" "There is no password set on this router. Please configure a root password to " @@ -8556,7 +8610,6 @@ msgid "This does not look like a valid PEM file" msgstr "" #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:454 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:16 msgid "" "This is a list of shell glob patterns for matching files and directories to " "include during sysupgrade. Modified files in /etc/config/ and certain other " @@ -8592,11 +8645,11 @@ msgid "" "ends with <code>...:2/64</code>" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:266 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:268 msgid "This is the only DHCP server in the local network." msgstr "" -"Αυτός είναι ο μόνος <abbr title=\"Dynamic Host Configuration " -"Protocol\">DHCP</abbr> στο τοπικό δίκτυο" +"Αυτός είναι ο μόνος <abbr title=\"Dynamic Host Configuration Protocol" +"\">DHCP</abbr> στο τοπικό δίκτυο" #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6in4.js:73 msgid "This is the plain username for logging into the account" @@ -8677,8 +8730,8 @@ msgstr "Ζώνη ώρας" #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:440 msgid "" "To fully configure the local WireGuard interface from an existing (e.g. " -"provider supplied) configuration file, use the <strong><a class=\"full-" -"import\" href=\"#\">configuration import</a></strong> instead." +"provider supplied) configuration file, use the <strong><a class=\"full-import" +"\" href=\"#\">configuration import</a></strong> instead." msgstr "" #: modules/luci-base/htdocs/luci-static/resources/luci.js:2674 @@ -8844,7 +8897,7 @@ msgstr "" msgid "Unable to determine upstream interface" msgstr "" -#: modules/luci-base/luasrc/view/error404.htm:11 +#: modules/luci-base/ucode/template/error404.ut:12 msgid "Unable to dispatch" msgstr "" @@ -8899,7 +8952,7 @@ msgstr "" msgid "Unable to verify PIN" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:32 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:33 msgid "Unavailable Seconds (UAS)" msgstr "" @@ -9043,7 +9096,7 @@ msgid "" "will be restarted to apply the updated configuration." msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:423 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:428 msgid "Upstream resolvers will be queried in the order of the resolv file." msgstr "" "Οι <abbr title=\"Σύστημα Ονόματος Τομέα\">DNS</abbr> εξυπηρετητές θα " @@ -9054,7 +9107,7 @@ msgstr "" msgid "Uptime" msgstr "Χρόνος λειτουργίας" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:344 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:349 msgid "Use <code>/etc/ethers</code>" msgstr "Χρήση <code>/etc/ethers</code>" @@ -9165,7 +9218,7 @@ msgstr "" msgid "Use system certificates for inner-tunnel" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:599 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:670 msgid "" "Use the <em>Add</em> Button to add a new lease entry. The <em>MAC address</" "em> identifies the host, the <em>IPv4 address</em> specifies the fixed " @@ -9216,11 +9269,11 @@ msgstr "" msgid "User key (PEM encoded)" msgstr "" -#: modules/luci-base/luasrc/view/sysauth.htm:23 +#: modules/luci-base/ucode/template/sysauth.ut:23 #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:112 #: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:101 #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:56 -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/sysauth.htm:18 +#: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/sysauth.ut:13 msgid "Username" msgstr "Όνομα Χρήστη" @@ -9318,7 +9371,7 @@ msgstr "" msgid "VXLANv6 (RFC7348)" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:398 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:403 msgid "" "Validate DNS replies and cache DNSSEC data, requires upstream to support " "DNSSEC." @@ -9351,7 +9404,7 @@ msgstr "" msgid "Vendor Class to send when requesting DHCP" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:403 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:408 msgid "Verify unsigned domain responses really come from unsigned domains." msgstr "" @@ -9426,6 +9479,10 @@ msgstr "Προσοχή: Οι μη αποθηκευμένες αλλαγές θα msgid "Weak" msgstr "" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:589 +msgid "Weight" +msgstr "" + #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1029 msgid "" "When delegating prefixes to multiple downstreams, interfaces with a higher " @@ -9546,7 +9603,7 @@ msgstr "Το ασύρματο δίκτυο είναι ανενεργό" msgid "Wireless network is enabled" msgstr "Το ασύρματο δίκτυο είναι ενεργό" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:278 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:280 msgid "Write received DNS queries to syslog." msgstr "Καταγραφή των ληφθέντων DNS αιτήσεων στο syslog" @@ -9585,8 +9642,16 @@ msgstr "" "><strong>Προειδοποίηση: Αν απενεργοποιήσετε απαραίτητα σενάρια εκκίνησης " "όπως το \"network\", η συσκευή σας μπορεί να καταστεί μη-προσβάσιμη!</strong>" -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:90 -#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:97 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:559 +msgid "You may add multiple records for the same Target." +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:596 +msgid "You may add multiple records for the same domain." +msgstr "" + +#: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/header.ut:78 +#: themes/luci-theme-material/ucode/template/themes/material/header.ut:92 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:73 msgid "" "You must enable JavaScript in your browser or LuCI will not work properly." @@ -9615,7 +9680,17 @@ msgstr "" msgid "ZRam Size" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:449 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:558 +msgid "_proto: _tcp, _udp, _sctp, _quic, … ." +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:557 +msgid "" +"_service: _sip, _ldap, _imap, _stun, _xmpp-client, … . (Note: while _http is " +"possible, no browsers support SRV records.)" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:454 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:152 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:163 msgid "any" @@ -9727,8 +9802,8 @@ msgstr "" msgid "e.g: dump" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:726 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:756 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:797 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:827 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:101 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:148 msgid "expired" @@ -9939,9 +10014,9 @@ msgstr "" msgid "unknown" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:456 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:724 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:754 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:461 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:795 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:825 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:99 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:146 msgid "unlimited" @@ -10157,6 +10232,15 @@ msgstr "ναί" msgid "« Back" msgstr "« Πίσω" +#~ msgid "Back to configuration" +#~ msgstr "Πίσω προς παραμετροποίηση" + +#~ msgid "Close list..." +#~ msgstr "Κλείσιμο λίστας..." + +#~ msgid "No files found" +#~ msgstr "Δε βρέθηκαν αρχεία" + #~ msgid "Do not forward queries that cannot be answered by public resolvers." #~ msgstr "" #~ "Να μην προωθούνται αιτήματα τα οποία δεν μπορούν να απαντηθούν από " @@ -10269,12 +10353,12 @@ msgstr "« Πίσω" #~ msgid "" #~ "The filesystem that was used to format the memory (<abbr title=\"for " -#~ "example\">e.g.</abbr> <samp><abbr title=\"Third Extended " -#~ "Filesystem\">ext3</abbr></samp>)" +#~ "example\">e.g.</abbr> <samp><abbr title=\"Third Extended Filesystem" +#~ "\">ext3</abbr></samp>)" #~ msgstr "" -#~ "Το σύστημα αρχείων που χρησιμοποιήθηκε για διαμόρφωση (<abbr " -#~ "title=\"παραδείγματος χάρην\">π.χ.</abbr> <samp><abbr title=\"Third " -#~ "Extended Filesystem\">ext3</abbr></samp>)" +#~ "Το σύστημα αρχείων που χρησιμοποιήθηκε για διαμόρφωση (<abbr title=" +#~ "\"παραδείγματος χάρην\">π.χ.</abbr> <samp><abbr title=\"Third Extended " +#~ "Filesystem\">ext3</abbr></samp>)" #, fuzzy #~ msgid "Specifies the listening port of this <em>Dropbear</em> instance" diff --git a/modules/luci-base/po/en/base.po b/modules/luci-base/po/en/base.po index b389a8bee1..f5aca0613b 100644 --- a/modules/luci-base/po/en/base.po +++ b/modules/luci-base/po/en/base.po @@ -230,6 +230,18 @@ msgstr "" msgid "<abbr title=\"Router Advertisement\">RA</abbr>-Service" msgstr "" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:294 +msgid "" +"<code>/#/</code> matches any domain. <code>/example.com/</code> returns " +"NXDOMAIN." +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:295 +msgid "" +"<code>/example.com/#</code> returns NULL addresses (<code>0.0.0.0</code> and " +"<code>::</code>) for example.com and its subdomains." +msgstr "" + #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:87 msgctxt "nft relational \">\" operator expression" msgid "<var>%s</var> greater than <strong>%s</strong>" @@ -387,7 +399,7 @@ msgstr "" msgid "ATM device number" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:36 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:37 msgid "ATU-C System Vendor ID" msgstr "" @@ -397,7 +409,7 @@ msgstr "" msgid "Absent Interface" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:320 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:325 msgid "Accept DNS queries only from hosts whose address is on a local subnet." msgstr "" @@ -536,7 +548,7 @@ msgstr "" msgid "Add key" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:410 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:415 msgid "Add local domain suffix to names served from hosts files." msgstr "" @@ -557,11 +569,11 @@ msgstr "" msgid "Add to Whitelist" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:367 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:372 msgid "Additional hosts files" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:417 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:422 msgid "Additional servers file" msgstr "" @@ -591,7 +603,7 @@ msgstr "" msgid "Address to access local relay bridge" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:289 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:291 msgid "Addresses" msgstr "" @@ -624,7 +636,7 @@ msgstr "" msgid "Aggregate Originator Messages" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:27 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:28 msgid "Aggregate Transmit Power (ACTATP)" msgstr "" @@ -660,17 +672,17 @@ msgstr "" msgid "Alias of \"%s\"" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:427 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:432 msgid "All servers" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:378 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:383 msgid "" "Allocate IP addresses sequentially, starting from the lowest available " "address." msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:377 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:382 msgid "Allocate IPs sequentially" msgstr "" @@ -698,7 +710,7 @@ msgstr "" msgid "Allow listed only" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:306 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:311 msgid "Allow localhost" msgstr "" @@ -742,7 +754,7 @@ msgstr "" msgid "Always on (kernel: default-on)" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:538 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:543 msgid "Always send DHCP Options. Sometimes needed, with e.g. PXELinux." msgstr "" @@ -769,7 +781,7 @@ msgid "An optional, short description for this device" msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1484 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:20 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:21 msgid "Annex" msgstr "" @@ -883,7 +895,7 @@ msgstr "" msgid "Any zone" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:532 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:537 msgid "Apply DHCP Options to this net. (Empty = all clients)." msgstr "" @@ -973,11 +985,11 @@ msgstr "" msgid "Authentication Type" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:265 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:267 msgid "Authoritative" msgstr "" -#: modules/luci-base/luasrc/view/sysauth.htm:17 +#: modules/luci-base/ucode/template/sysauth.ut:17 #: themes/luci-theme-bootstrap/htdocs/luci-static/resources/view/bootstrap/sysauth.js:11 msgid "Authorization Required" msgstr "" @@ -1047,7 +1059,7 @@ msgstr "" msgid "Avoid Bridge Loops" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:388 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:393 msgid "" "Avoid uselessly triggering dial-on-demand links (filters SRV/SOA records and " "names with underscores)." @@ -1082,10 +1094,6 @@ msgstr "" msgid "Back to Overview" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:48 -msgid "Back to configuration" -msgstr "" - #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:826 msgid "Back to peer configuration" msgstr "" @@ -1099,7 +1107,6 @@ msgid "Backup / Flash Firmware" msgstr "" #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:351 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:12 msgid "Backup file list" msgstr "" @@ -1141,7 +1148,6 @@ msgid "Beacon Interval" msgstr "" #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:352 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:46 msgid "" "Below is the determined list of files to backup. It consists of changed " "configuration files marked by opkg, essential base files and the user " @@ -1152,7 +1158,7 @@ msgstr "" msgid "Bind NTP server" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:326 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:331 msgid "Bind dynamically to interfaces rather than wildcard address." msgstr "" @@ -1168,6 +1174,17 @@ msgstr "" msgid "Bind interface" msgstr "" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:595 +msgid "" +"Bind service records to a domain name: specify the location of services." +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:556 +msgid "" +"Bind service records to a domain name: specify the location of services. See " +"<a href=\"%s\">RFC2782</a>." +msgstr "" + #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:59 #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:64 #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:64 @@ -1270,6 +1287,10 @@ msgstr "" msgid "CLAT configuration failed" msgstr "" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:574 +msgid "CNAME or fqdn" +msgstr "" + #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/processes.js:72 msgid "CPU usage (%)" msgstr "" @@ -1507,17 +1528,13 @@ msgid "" "persist connection" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:49 -msgid "Close list..." -msgstr "" - #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:44 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:63 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2184 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:391 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:352 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:355 -#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:72 +#: themes/luci-theme-material/ucode/template/themes/material/header.ut:66 msgid "Collecting data..." msgstr "" @@ -1552,6 +1569,10 @@ msgstr "" msgid "Compute outgoing checksum (optional)." msgstr "" +#: protocols/luci-proto-nebula/htdocs/luci-static/resources/protocol/nebula.js:40 +msgid "Config File" +msgstr "" + #: modules/luci-base/htdocs/luci-static/resources/ui.js:4375 #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:454 msgid "Configuration" @@ -1591,8 +1612,8 @@ msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:764 msgid "" -"Configures the operation mode of the <abbr title=\"Router " -"Advertisement\">RA</abbr> service on this interface." +"Configures the operation mode of the <abbr title=\"Router Advertisement" +"\">RA</abbr> service on this interface." msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:879 @@ -1765,8 +1786,8 @@ msgstr "" #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/leds.js:59 msgid "" -"Customizes the behaviour of the device <abbr title=\"Light Emitting " -"Diode\">LED</abbr>s if possible." +"Customizes the behaviour of the device <abbr title=\"Light Emitting Diode" +"\">LED</abbr>s if possible." msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:673 @@ -1785,7 +1806,7 @@ msgstr "" msgid "DAE-Secret" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:525 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:530 msgid "DHCP Options" msgstr "" @@ -1825,11 +1846,11 @@ msgstr "" msgid "DNS" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:282 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:284 msgid "DNS forwardings" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:445 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:450 msgid "DNS query port" msgstr "" @@ -1837,7 +1858,7 @@ msgstr "" msgid "DNS search domains" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:438 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:443 msgid "DNS server port" msgstr "" @@ -1853,11 +1874,11 @@ msgstr "" msgid "DNS-Label / FQDN" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:397 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:402 msgid "DNSSEC" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:402 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:407 msgid "DNSSEC check unsigned" msgstr "" @@ -1870,11 +1891,11 @@ msgid "DS-Lite AFTR address" msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1481 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:44 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:45 msgid "DSL" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:14 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:15 msgid "DSL Status" msgstr "" @@ -1887,12 +1908,12 @@ msgid "DTIM Interval" msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:59 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:700 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:771 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:136 msgid "DUID" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:21 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:22 msgid "Data Rate" msgstr "" @@ -2135,7 +2156,7 @@ msgstr "" msgid "Disassociate On Low Acknowledgement" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:302 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:307 msgid "" "Discard upstream responses containing <a href=\"%s\">RFC1918</a> addresses." msgstr "" @@ -2181,7 +2202,7 @@ msgstr "" msgid "Distributed ARP Table" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:543 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:548 msgid "" "Dnsmasq instance to which this boot section is bound. If unspecified, the " "section is valid for all dnsmasq instances." @@ -2189,12 +2210,12 @@ msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:246 msgid "" -"Dnsmasq is a lightweight <abbr title=\"Dynamic Host Configuration " -"Protocol\">DHCP</abbr> server and <abbr title=\"Domain Name System\">DNS</" -"abbr> forwarder." +"Dnsmasq is a lightweight <abbr title=\"Dynamic Host Configuration Protocol" +"\">DHCP</abbr> server and <abbr title=\"Domain Name System\">DNS</abbr> " +"forwarder." msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:414 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:419 msgid "Do not cache negative replies, e.g. for non-existent domains." msgstr "" @@ -2206,15 +2227,15 @@ msgstr "" msgid "Do not create host route to peer (optional)." msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:262 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:264 msgid "Do not forward DNS queries without dots or domain parts." msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:383 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:388 msgid "Do not forward reverse lookups for local networks." msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:339 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:344 msgid "Do not listen on the specified interfaces." msgstr "" @@ -2267,15 +2288,16 @@ msgstr "" msgid "Do you want to replace the current keys?" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:593 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:606 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:664 msgid "Domain" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:261 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:263 msgid "Domain required" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:311 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:316 msgid "Domain whitelist" msgstr "" @@ -2509,7 +2531,7 @@ msgstr "" msgid "Enable Single DES" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:480 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:485 msgid "Enable TFTP server" msgstr "" @@ -2527,9 +2549,9 @@ msgstr "" #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/uhttpd.js:14 msgid "" -"Enable automatic redirection of <abbr title=\"Hypertext Transfer " -"Protocol\">HTTP</abbr> requests to <abbr title=\"Hypertext Transfer Protocol " -"Secure\">HTTPS</abbr> port." +"Enable automatic redirection of <abbr title=\"Hypertext Transfer Protocol" +"\">HTTP</abbr> requests to <abbr title=\"Hypertext Transfer Protocol Secure" +"\">HTTPS</abbr> port." msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:977 @@ -2592,7 +2614,7 @@ msgstr "" msgid "Enable the DF (Don't Fragment) flag of the encapsulating packets." msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:481 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:486 msgid "Enable the built-in single-instance TFTP server." msgstr "" @@ -2709,7 +2731,7 @@ msgstr "" msgid "Error getting PublicKey" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:29 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:30 msgid "Errored seconds (ES)" msgstr "" @@ -2731,11 +2753,11 @@ msgstr "" msgid "Every second (fast, 1)" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:338 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:343 msgid "Exclude interfaces" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:307 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:312 msgid "" "Exempt <code>127.0.0.0/8</code> and <code>::1</code> from rebinding checks, " "e.g. for RBL services." @@ -2745,7 +2767,7 @@ msgstr "" msgid "Existing device" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:409 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:414 msgid "Expand hosts" msgstr "" @@ -2879,7 +2901,7 @@ msgstr "" msgid "File" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:418 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:423 msgid "" "File listing upstream resolvers, optionally domain-specific, e.g. " "<code>server=1.2.3.4</code>, <code>server=/domain/1.2.3.4</code>." @@ -2889,20 +2911,20 @@ msgstr "" msgid "File not accessible" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:349 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:354 msgid "File to store DHCP lease information." msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:357 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:362 msgid "File with upstream resolvers." msgstr "" #: modules/luci-base/htdocs/luci-static/resources/ui.js:2846 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:507 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:512 msgid "Filename" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:493 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:498 msgid "Filename of the boot image advertised to clients." msgstr "" @@ -2911,11 +2933,11 @@ msgstr "" msgid "Filesystem" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:382 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:387 msgid "Filter private" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:387 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:392 msgid "Filter useless" msgstr "" @@ -2979,7 +3001,7 @@ msgstr "" msgid "Firmware Version" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:446 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:451 msgid "Fixed source port for outbound DNS queries." msgstr "" @@ -3005,7 +3027,7 @@ msgstr "" msgid "Flashing…" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:537 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:542 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:686 msgid "Force" msgstr "" @@ -3050,16 +3072,16 @@ msgstr "" msgid "Force use of NAT-T" msgstr "" -#: modules/luci-base/luasrc/view/csrftoken.htm:8 +#: modules/luci-base/ucode/template/csrftoken.ut:8 msgid "Form token mismatch" msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:919 msgid "" -"Forward <abbr title=\"Neighbour Discovery Protocol\">NDP</abbr> <abbr " -"title=\"Neighbour Solicitation, Type 135\">NS</abbr> and <abbr " -"title=\"Neighbour Advertisement, Type 136\">NA</abbr> messages between the " -"designated master interface and downstream interfaces." +"Forward <abbr title=\"Neighbour Discovery Protocol\">NDP</abbr> <abbr title=" +"\"Neighbour Solicitation, Type 135\">NS</abbr> and <abbr title=\"Neighbour " +"Advertisement, Type 136\">NA</abbr> messages between the designated master " +"interface and downstream interfaces." msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:770 @@ -3079,7 +3101,7 @@ msgid "" "downstream interfaces." msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:28 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:29 msgid "Forward Error Correction Seconds (FECS)" msgstr "" @@ -3236,15 +3258,15 @@ msgstr "" msgid "Global network options" msgstr "" -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:82 -#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:89 -#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:74 +#: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/header.ut:70 +#: themes/luci-theme-material/ucode/template/themes/material/header.ut:84 +#: themes/luci-theme-openwrt-2020/ucode/template/themes/openwrt2020/header.ut:67 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:92 msgid "Go to firmware upgrade..." msgstr "" -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:72 -#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:64 +#: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/header.ut:60 +#: themes/luci-theme-openwrt-2020/ucode/template/themes/openwrt2020/header.ut:57 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:82 msgid "Go to password configuration..." msgstr "" @@ -3385,7 +3407,7 @@ msgstr "" msgid "Hang Up" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:33 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:34 msgid "Header Error Code Errors (HEC)" msgstr "" @@ -3436,7 +3458,7 @@ msgstr "" msgid "Host expiry timeout" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:508 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:513 msgid "Host requests this filename from the boot server." msgstr "" @@ -3445,8 +3467,8 @@ msgid "Host-Uniq tag content" msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:38 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:559 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:607 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:630 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:678 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/10_system.js:54 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:87 #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:135 @@ -3461,7 +3483,7 @@ msgstr "" msgid "Hostnames" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:551 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:622 msgid "" "Hostnames are used to bind a domain name to an IP address. This setting is " "redundant for hostnames already configured with static leases, but it can be " @@ -3525,7 +3547,7 @@ msgstr "" msgid "IP Protocol" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:258 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:260 msgid "IP Sets" msgstr "" @@ -3533,7 +3555,7 @@ msgstr "" msgid "IP Type" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:563 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:634 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:178 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:204 msgid "IP address" @@ -3559,15 +3581,15 @@ msgctxt "nft meta l4proto" msgid "IP protocol" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:589 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:660 msgid "IP set" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:295 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:300 msgid "IP sets" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:432 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:437 msgid "IPs to override with NXDOMAIN" msgstr "" @@ -3608,7 +3630,7 @@ msgstr "" #: modules/luci-base/htdocs/luci-static/resources/protocol/static.js:178 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:39 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:665 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:736 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:88 #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:164 msgid "IPv4 address" @@ -3779,7 +3801,7 @@ msgstr "" msgid "IPv6 suffix" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:706 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:777 msgid "IPv6 suffix (hex)" msgstr "" @@ -3871,13 +3893,13 @@ msgstr "" #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:340 msgid "" "If your physical memory is insufficient unused data can be temporarily " -"swapped to a swap-device resulting in a higher amount of usable <abbr " -"title=\"Random Access Memory\">RAM</abbr>. Be aware that swapping data is a " -"very slow process as the swap-device cannot be accessed with the high " -"datarates of the <abbr title=\"Random Access Memory\">RAM</abbr>." +"swapped to a swap-device resulting in a higher amount of usable <abbr title=" +"\"Random Access Memory\">RAM</abbr>. Be aware that swapping data is a very " +"slow process as the swap-device cannot be accessed with the high datarates " +"of the <abbr title=\"Random Access Memory\">RAM</abbr>." msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:363 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:368 msgid "Ignore <code>/etc/hosts</code>" msgstr "" @@ -3885,7 +3907,7 @@ msgstr "" msgid "Ignore interface" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:352 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:357 msgid "Ignore resolv file" msgstr "" @@ -3933,7 +3955,7 @@ msgid "" "order to avoid broadcast loops that can bring the entire LAN to a standstill." msgstr "" -#: modules/luci-base/luasrc/view/csrftoken.htm:13 +#: modules/luci-base/ucode/template/csrftoken.ut:13 msgid "" "In order to prevent unauthorized access to the system, your request has been " "blocked. Click \"Continue »\" below to return to the previous page." @@ -4042,7 +4064,7 @@ msgstr "" msgid "Install protocol extensions..." msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:542 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:547 msgid "Instance" msgstr "" @@ -4129,10 +4151,6 @@ msgstr "" msgid "Internal" msgstr "" -#: modules/luci-base/luasrc/view/error500.htm:8 -msgid "Internal Server Error" -msgstr "" - #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:285 msgid "Interval For Sending Learning Packets" msgstr "" @@ -4201,8 +4219,8 @@ msgstr "" msgid "Invalid hexadecimal value" msgstr "" -#: modules/luci-base/luasrc/view/sysauth.htm:12 -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/sysauth.htm:37 +#: modules/luci-base/ucode/template/sysauth.ut:12 +#: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/sysauth.ut:32 msgid "Invalid username and/or password! Please try again." msgstr "" @@ -4224,8 +4242,8 @@ msgid "" "flash memory, please verify the image file!" msgstr "" -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:89 -#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:96 +#: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/header.ut:77 +#: themes/luci-theme-material/ucode/template/themes/material/header.ut:91 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:72 msgid "JavaScript required!" msgstr "" @@ -4357,11 +4375,17 @@ msgstr "" msgid "Language and Style" msgstr "" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:560 +msgid "" +"Larger weights (of the same prio) are given a proportionately higher " +"probability of being selected." +msgstr "" + #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:575 msgid "Last member interval" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:23 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:24 msgid "Latency" msgstr "" @@ -4377,11 +4401,11 @@ msgstr "" msgid "Learn routes" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:348 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:353 msgid "Lease file" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:697 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:768 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:679 msgid "Lease time" msgstr "" @@ -4425,19 +4449,19 @@ msgstr "" msgid "Limit" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:24 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:25 msgid "Line Attenuation (LATN)" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:18 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:19 msgid "Line Mode" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:17 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:18 msgid "Line State" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:19 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:20 msgid "Line Uptime" msgstr "" @@ -4458,12 +4482,12 @@ msgctxt "nft @ll,off,len" msgid "Link layer header bits %d-%d" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:433 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:438 msgid "List of IP addresses to convert into NXDOMAIN responses." msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:296 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:581 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:301 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:652 msgid "List of IP sets to populate with the specified domain IPs." msgstr "" @@ -4489,15 +4513,11 @@ msgstr "" msgid "List of SSH key files for auth" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:312 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:317 msgid "List of domains to allow RFC1918 responses for." msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:290 -msgid "List of domains to force to an IP address." -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:283 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:285 msgid "List of upstream resolvers to forward queries to." msgstr "" @@ -4505,7 +4525,7 @@ msgstr "" msgid "Listen Port" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:332 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:337 msgid "Listen interfaces" msgstr "" @@ -4513,7 +4533,7 @@ msgstr "" msgid "Listen only on the given interface or, if unspecified, on all" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:333 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:338 msgid "" "Listen only on the specified interfaces, and loopback if not excluded " "explicitly." @@ -4523,7 +4543,7 @@ msgstr "" msgid "ListenPort setting is invalid" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:439 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:444 msgid "Listening port for inbound DNS queries." msgstr "" @@ -4550,9 +4570,9 @@ msgid "Loading directory contents…" msgstr "" #: modules/luci-base/htdocs/luci-static/resources/luci.js:1942 -#: modules/luci-base/luasrc/view/view.htm:4 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:12 -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/sysauth.htm:45 +#: modules/luci-base/ucode/template/view.ut:4 +#: modules/luci-mod-status/ucode/template/admin_status/index.ut:12 +#: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/sysauth.ut:40 msgid "Loading view…" msgstr "" @@ -4610,19 +4630,19 @@ msgstr "" msgid "Local ULA" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:273 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:275 msgid "Local domain" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:274 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:276 msgid "Local domain suffix appended to DHCP names and hosts file entries." msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:269 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:271 msgid "Local server" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:319 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:324 msgid "Local service only" msgstr "" @@ -4630,7 +4650,7 @@ msgstr "" msgid "Local wireguard key" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:392 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:397 msgid "Localise queries" msgstr "" @@ -4642,7 +4662,7 @@ msgstr "" msgid "Log output level" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:277 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:279 msgid "Log queries" msgstr "" @@ -4666,8 +4686,8 @@ msgstr "" msgid "Logical network to which the tunnel will be added (bridged) (optional)." msgstr "" -#: modules/luci-base/luasrc/view/sysauth.htm:38 -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/sysauth.htm:41 +#: modules/luci-base/ucode/template/sysauth.ut:38 +#: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/sysauth.ut:36 msgid "Login" msgstr "" @@ -4679,7 +4699,7 @@ msgstr "" msgid "Loose filtering" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:31 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:32 msgid "Loss of Signal Seconds (LOSS)" msgstr "" @@ -4687,6 +4707,10 @@ msgstr "" msgid "Lowest leased address as offset from the network address." msgstr "" +#: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/footer.ut:12 +msgid "Lua compatibility mode active" +msgstr "" + #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:48 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:83 msgid "MAC" @@ -4711,7 +4735,7 @@ msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:591 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:40 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:619 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:690 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1164 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2177 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:56 @@ -4770,6 +4794,10 @@ msgstr "" msgid "MTU" msgstr "" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:259 +msgid "MX" +msgstr "" + #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:303 msgid "" "Make sure to clone the root filesystem using something like the commands " @@ -4794,19 +4822,19 @@ msgstr "" msgid "Max <abbr title=\"Router Advertisement\">RA</abbr> interval" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:22 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:23 msgid "Max. Attainable Data Rate (ATTNDR)" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:452 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:457 msgid "Max. DHCP leases" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:459 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:464 msgid "Max. EDNS0 packet size" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:466 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:471 msgid "Max. concurrent queries" msgstr "" @@ -4818,15 +4846,15 @@ msgstr "" msgid "Maximum allowed Listen Interval" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:453 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:458 msgid "Maximum allowed number of active DHCP leases." msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:467 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:472 msgid "Maximum allowed number of concurrent DNS queries." msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:460 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:465 msgid "Maximum allowed size of EDNS0 UDP packets." msgstr "" @@ -4853,7 +4881,7 @@ msgstr "" msgid "Maximum transmit power" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:389 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:394 msgid "May prevent VoIP or other services from working." msgstr "" @@ -5167,11 +5195,15 @@ msgstr "" msgid "Name of the tunnel device" msgstr "" -#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:46 +#: themes/luci-theme-openwrt-2020/ucode/template/themes/openwrt2020/header.ut:39 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:50 msgid "Navigation" msgstr "" +#: protocols/luci-proto-nebula/htdocs/luci-static/resources/protocol/nebula.js:10 +msgid "Nebula Network" +msgstr "" + #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:653 msgid "Neighbour cache validity" msgstr "" @@ -5207,7 +5239,7 @@ msgstr "" msgid "Network address" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:492 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:497 msgid "Network boot image" msgstr "" @@ -5247,7 +5279,7 @@ msgstr "" msgid "Network interface" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:531 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:536 msgid "Network-ID" msgstr "" @@ -5255,7 +5287,7 @@ msgstr "" msgid "Never" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:270 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:272 msgid "" "Never forward matching domains and subdomains, resolve from DHCP or hosts " "files only." @@ -5303,9 +5335,9 @@ msgstr "" msgid "No RX signal" msgstr "" -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:80 -#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:87 -#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:72 +#: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/header.ut:68 +#: themes/luci-theme-material/ucode/template/themes/material/header.ut:82 +#: themes/luci-theme-openwrt-2020/ucode/template/themes/openwrt2020/header.ut:65 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:90 msgid "" "No changes to settings will be stored and are lost after rebooting. This " @@ -5347,10 +5379,6 @@ msgstr "" msgid "No entries in this directory" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:82 -msgid "No files found" -msgstr "" - #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:833 msgid "" "No fixed interface listening port defined, peers might not be able to " @@ -5386,7 +5414,7 @@ msgstr "" msgid "No more slaves available, can not save interface" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:413 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:418 msgid "No negative cache" msgstr "" @@ -5394,8 +5422,8 @@ msgstr "" msgid "No nftables ruleset loaded." msgstr "" -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:69 -#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:61 +#: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/header.ut:57 +#: themes/luci-theme-openwrt-2020/ucode/template/themes/openwrt2020/header.ut:54 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:79 msgid "No password set!" msgstr "" @@ -5435,7 +5463,7 @@ msgstr "" msgid "Noise" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:26 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:27 msgid "Noise Margin (SNR)" msgstr "" @@ -5443,11 +5471,11 @@ msgstr "" msgid "Noise:" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:34 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:35 msgid "Non Pre-emptive CRC errors (CRC_P)" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:325 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:330 msgid "Non-wildcard" msgstr "" @@ -5462,7 +5490,7 @@ msgstr "" msgid "Normal" msgstr "" -#: modules/luci-base/luasrc/view/error404.htm:8 +#: modules/luci-base/ucode/template/error404.ut:9 msgid "Not Found" msgstr "" @@ -5512,7 +5540,7 @@ msgstr "" msgid "Number of IGMP membership reports" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:474 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:479 msgid "Number of cached DNS entries, 10000 is maximum, 0 is no caching." msgstr "" @@ -5561,7 +5589,7 @@ msgstr "" msgid "On-link" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:672 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:743 msgid "One of hostname or MAC address must be specified!" msgstr "" @@ -5597,7 +5625,6 @@ msgid "Open iptables rules overview…" msgstr "" #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:472 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:19 msgid "Open list..." msgstr "" @@ -5741,18 +5768,23 @@ msgstr "" msgid "Options" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:526 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:531 msgid "" "Options for the Network-ID. (Note: needs also Network-ID.) E.g. " -"\"<code>42,192.168.1.4</code>\" for NTP server, \"<code>3,192.168.4.4</" -"code>\" for default route. <code>0.0.0.0</code> means \"the address of the " -"system running dnsmasq\"." +"\"<code>42,192.168.1.4</code>\" for NTP server, \"<code>3,192.168.4.4</code>" +"\" for default route. <code>0.0.0.0</code> means \"the address of the system " +"running dnsmasq\"." msgstr "" #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:125 msgid "Options:" msgstr "" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:584 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:616 +msgid "Ordinal: lower comes first." +msgstr "" + #: protocols/luci-proto-batman-adv/htdocs/luci-static/resources/protocol/batadv.js:55 msgid "Originator Interval" msgstr "" @@ -6024,13 +6056,13 @@ msgctxt "MACVLAN mode" msgid "Pass-through (Mirror physical device to single MAC VLAN)" msgstr "" -#: modules/luci-base/luasrc/view/sysauth.htm:29 +#: modules/luci-base/ucode/template/sysauth.ut:29 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1690 #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:51 #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:114 #: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:103 #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:58 -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/sysauth.htm:24 +#: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/sysauth.ut:19 msgid "Password" msgstr "" @@ -6201,7 +6233,7 @@ msgstr "" msgid "Pkts." msgstr "" -#: modules/luci-base/luasrc/view/sysauth.htm:19 +#: modules/luci-base/ucode/template/sysauth.ut:19 msgid "Please enter your username and password." msgstr "" @@ -6218,6 +6250,7 @@ msgctxt "Chain hook policy" msgid "Policy: <strong>%h</strong> (%h)" msgstr "" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:579 #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/dropbear.js:21 msgid "Port" msgstr "" @@ -6234,11 +6267,11 @@ msgstr "" msgid "Potential negation of: %s" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:37 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:38 msgid "Power Management Mode" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:35 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:36 msgid "Pre-emptive CRC errors (CRCP_P)" msgstr "" @@ -6311,6 +6344,8 @@ msgid "Primary becomes active slave whenever it comes back up (always, 0)" msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:508 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:584 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:616 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:129 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:197 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:223 @@ -6426,7 +6461,7 @@ msgstr "" msgid "Quality" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:428 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:433 msgid "Query all available upstream resolvers." msgstr "" @@ -6508,7 +6543,7 @@ msgstr "" msgid "Raw hex-encoded bytes. Leave empty unless your ISP require this" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:345 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:350 msgid "Read <code>/etc/ethers</code> to configure the DHCP server." msgstr "" @@ -6524,7 +6559,7 @@ msgstr "" msgid "Reassociation Deadline" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:301 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:306 msgid "Rebind protection" msgstr "" @@ -6609,6 +6644,7 @@ msgid "" msgstr "" #: modules/luci-compat/luasrc/model/network/proto_relay.lua:153 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:611 #: protocols/luci-proto-relay/htdocs/luci-static/resources/protocol/relay.js:39 msgid "Relay" msgstr "" @@ -6699,6 +6735,10 @@ msgstr "" msgid "Required. Base64-encoded private key for this interface." msgstr "" +#: protocols/luci-proto-nebula/htdocs/luci-static/resources/protocol/nebula.js:40 +msgid "Required. Path to the .yml config file for this interface." +msgstr "" + #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:587 msgid "Required. Public key of the WireGuard peer." msgstr "" @@ -6780,7 +6820,7 @@ msgid "Reselection policy for primary slave" msgstr "" #: modules/luci-base/htdocs/luci-static/resources/luci.js:2197 -#: modules/luci-base/luasrc/view/sysauth.htm:39 +#: modules/luci-base/ucode/template/sysauth.ut:39 #: modules/luci-compat/luasrc/view/cbi/delegator.htm:17 #: modules/luci-compat/luasrc/view/cbi/footer.htm:30 #: modules/luci-compat/luasrc/view/cbi/simpleform.htm:66 @@ -6799,10 +6839,14 @@ msgstr "" msgid "Resolv and Hosts Files" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:356 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:361 msgid "Resolv file" msgstr "" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:292 +msgid "Resolve specified FQDNs to an IP." +msgstr "" + #: modules/luci-base/htdocs/luci-static/resources/rpc.js:405 msgid "Resource not found" msgstr "" @@ -6829,7 +6873,7 @@ msgstr "" msgid "Restore backup" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:393 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:398 msgid "" "Return answers to DNS queries matching the subnet from which the query was " "received if multiple IPs are available." @@ -6915,7 +6959,7 @@ msgstr "" msgid "Robustness" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:486 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:491 msgid "" "Root directory for files served via TFTP. <em>Enable TFTP server</em> and " "<em>TFTP server root</em> turn on the TFTP server and serve files from " @@ -7018,6 +7062,11 @@ msgstr "" msgid "SNR" msgstr "" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:258 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:569 +msgid "SRV" +msgstr "" + #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/dropbear.js:10 #: modules/luci-mod-system/root/usr/share/luci/menu.d/luci-mod-system.json:38 msgid "SSH Access" @@ -7155,11 +7204,11 @@ msgstr "" msgid "Server" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:519 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:524 msgid "Server address" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:513 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:518 msgid "Server name" msgstr "" @@ -7247,7 +7296,7 @@ msgstr "" msgid "Setup routes for proxied IPv6 neighbours." msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:30 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:31 msgid "Severely Errored Seconds (SES)" msgstr "" @@ -7261,7 +7310,6 @@ msgid "Short Preamble" msgstr "" #: 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 msgid "Show current backup file list" msgstr "" @@ -7295,7 +7343,7 @@ msgstr "" msgid "Signal / Noise" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:25 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:26 msgid "Signal Attenuation (SATN)" msgstr "" @@ -7312,7 +7360,7 @@ msgstr "" msgid "Size" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:473 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:478 msgid "Size of DNS query cache" msgstr "" @@ -7329,12 +7377,12 @@ msgstr "" msgid "Skip from backup files that are equal to those in /rom" msgstr "" -#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:42 +#: themes/luci-theme-openwrt-2020/ucode/template/themes/openwrt2020/header.ut:35 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:46 msgid "Skip to content" msgstr "" -#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:41 +#: themes/luci-theme-openwrt-2020/ucode/template/themes/openwrt2020/header.ut:34 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:45 msgid "Skip to navigation" msgstr "" @@ -7352,14 +7400,10 @@ msgstr "" msgid "Some fields are invalid, cannot save values!" msgstr "" -#: modules/luci-base/luasrc/view/error404.htm:9 +#: modules/luci-base/ucode/template/error404.ut:10 msgid "Sorry, the object you requested was not found." msgstr "" -#: modules/luci-base/luasrc/view/error500.htm:9 -msgid "Sorry, the server encountered an unexpected error." -msgstr "" - #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:442 msgid "" "Sorry, there is no sysupgrade support present; a new firmware image must be " @@ -7395,7 +7439,7 @@ msgctxt "nft ip sport" msgid "Source port" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:500 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:505 msgid "" "Special <abbr title=\"Preboot eXecution Environment\">PXE</abbr> boot " "options for Dnsmasq." @@ -7763,7 +7807,7 @@ msgstr "" msgid "Static address" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:598 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:669 msgid "" "Static leases are used to assign fixed IP addresses and symbolic hostnames " "to DHCP clients. They are also required for non-dynamic interface " @@ -7777,7 +7821,7 @@ msgstr "" #: modules/luci-base/root/usr/share/luci/menu.d/luci-base.json:16 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:541 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:929 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:9 +#: modules/luci-mod-status/ucode/template/admin_status/index.ut:9 msgid "Status" msgstr "" @@ -7803,7 +7847,7 @@ msgstr "" msgid "Strict filtering" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:422 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:427 msgid "Strict order" msgstr "" @@ -7816,11 +7860,11 @@ msgstr "" msgid "Submit" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:372 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:377 msgid "Suppress logging" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:373 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:378 msgid "Suppress logging of the routine operation for the DHCP protocol." msgstr "" @@ -7873,6 +7917,14 @@ msgstr "" msgid "Sync with browser" msgstr "" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:293 +msgid "Syntax: <code>/fqdn[/fqdn…]/[ipaddr]</code>." +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:569 +msgid "Syntax: <code>_service._proto.example.com</code>." +msgstr "" + #: modules/luci-base/root/usr/share/luci/menu.d/luci-base.json:26 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/10_system.js:17 #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:113 @@ -7898,9 +7950,9 @@ msgstr "" msgid "System log buffer size" msgstr "" -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:79 -#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:86 -#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:71 +#: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/header.ut:67 +#: themes/luci-theme-material/ucode/template/themes/material/header.ut:81 +#: themes/luci-theme-openwrt-2020/ucode/template/themes/openwrt2020/header.ut:64 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:89 msgid "System running in recovery (initramfs) mode." msgstr "" @@ -7929,7 +7981,7 @@ msgstr "" msgid "TCP:" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:485 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:490 msgid "TFTP server root" msgstr "" @@ -7954,6 +8006,7 @@ msgstr "" msgid "Table" msgstr "" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:574 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:56 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:66 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:187 @@ -8024,15 +8077,15 @@ msgid "" "username instead of the user ID!" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:681 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:752 msgid "The IP address %h is already used by another static lease" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:690 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:761 msgid "The IP address is outside of any DHCP pool address range" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:520 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:525 msgid "The IP address of the boot server" msgstr "" @@ -8197,7 +8250,7 @@ msgid "" "to be received and retransmitted which costs airtime)" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:514 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:519 msgid "The hostname of the boot server" msgstr "" @@ -8282,8 +8335,8 @@ msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:139 msgid "" -"The network ports on this device can be combined to several <abbr " -"title=\"Virtual Local Area Network\">VLAN</abbr>s in which computers can " +"The network ports on this device can be combined to several <abbr title=" +"\"Virtual Local Area Network\">VLAN</abbr>s in which computers can " "communicate directly with each other. <abbr title=\"Virtual Local Area " "Network\">VLAN</abbr>s are often used to separate different network " "segments. Often there is by default one Uplink port for a connection to the " @@ -8334,7 +8387,7 @@ msgstr "" msgid "The selected %s mode is incompatible with %s encryption" msgstr "" -#: modules/luci-base/luasrc/view/csrftoken.htm:11 +#: modules/luci-base/ucode/template/csrftoken.ut:11 msgid "The submitted security token is invalid or already expired!" msgstr "" @@ -8404,8 +8457,8 @@ msgid "" "nftables rules is discouraged and may lead to incomplete traffic filtering." msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:746 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:778 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:817 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:849 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:130 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:179 msgid "There are no active leases" @@ -8415,8 +8468,8 @@ msgstr "" msgid "There are no changes to apply" msgstr "" -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:70 -#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:62 +#: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/header.ut:58 +#: themes/luci-theme-openwrt-2020/ucode/template/themes/openwrt2020/header.ut:55 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:80 msgid "" "There is no password set on this router. Please configure a root password to " @@ -8437,7 +8490,6 @@ msgid "This does not look like a valid PEM file" msgstr "" #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:454 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:16 msgid "" "This is a list of shell glob patterns for matching files and directories to " "include during sysupgrade. Modified files in /etc/config/ and certain other " @@ -8473,7 +8525,7 @@ msgid "" "ends with <code>...:2/64</code>" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:266 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:268 msgid "This is the only DHCP server in the local network." msgstr "" @@ -8552,8 +8604,8 @@ msgstr "" #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:440 msgid "" "To fully configure the local WireGuard interface from an existing (e.g. " -"provider supplied) configuration file, use the <strong><a class=\"full-" -"import\" href=\"#\">configuration import</a></strong> instead." +"provider supplied) configuration file, use the <strong><a class=\"full-import" +"\" href=\"#\">configuration import</a></strong> instead." msgstr "" #: modules/luci-base/htdocs/luci-static/resources/luci.js:2674 @@ -8715,7 +8767,7 @@ msgstr "" msgid "Unable to determine upstream interface" msgstr "" -#: modules/luci-base/luasrc/view/error404.htm:11 +#: modules/luci-base/ucode/template/error404.ut:12 msgid "Unable to dispatch" msgstr "" @@ -8770,7 +8822,7 @@ msgstr "" msgid "Unable to verify PIN" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:32 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:33 msgid "Unavailable Seconds (UAS)" msgstr "" @@ -8914,7 +8966,7 @@ msgid "" "will be restarted to apply the updated configuration." msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:423 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:428 msgid "Upstream resolvers will be queried in the order of the resolv file." msgstr "" @@ -8923,7 +8975,7 @@ msgstr "" msgid "Uptime" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:344 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:349 msgid "Use <code>/etc/ethers</code>" msgstr "" @@ -9034,7 +9086,7 @@ msgstr "" msgid "Use system certificates for inner-tunnel" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:599 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:670 msgid "" "Use the <em>Add</em> Button to add a new lease entry. The <em>MAC address</" "em> identifies the host, the <em>IPv4 address</em> specifies the fixed " @@ -9085,11 +9137,11 @@ msgstr "" msgid "User key (PEM encoded)" msgstr "" -#: modules/luci-base/luasrc/view/sysauth.htm:23 +#: modules/luci-base/ucode/template/sysauth.ut:23 #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:112 #: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:101 #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:56 -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/sysauth.htm:18 +#: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/sysauth.ut:13 msgid "Username" msgstr "" @@ -9187,7 +9239,7 @@ msgstr "" msgid "VXLANv6 (RFC7348)" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:398 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:403 msgid "" "Validate DNS replies and cache DNSSEC data, requires upstream to support " "DNSSEC." @@ -9220,7 +9272,7 @@ msgstr "" msgid "Vendor Class to send when requesting DHCP" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:403 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:408 msgid "Verify unsigned domain responses really come from unsigned domains." msgstr "" @@ -9295,6 +9347,10 @@ msgstr "" msgid "Weak" msgstr "" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:589 +msgid "Weight" +msgstr "" + #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1029 msgid "" "When delegating prefixes to multiple downstreams, interfaces with a higher " @@ -9415,7 +9471,7 @@ msgstr "" msgid "Wireless network is enabled" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:278 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:280 msgid "Write received DNS queries to syslog." msgstr "" @@ -9450,8 +9506,16 @@ msgid "" "scripts like \"network\", your device might become inaccessible!</strong>" msgstr "" -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:90 -#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:97 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:559 +msgid "You may add multiple records for the same Target." +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:596 +msgid "You may add multiple records for the same domain." +msgstr "" + +#: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/header.ut:78 +#: themes/luci-theme-material/ucode/template/themes/material/header.ut:92 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:73 msgid "" "You must enable JavaScript in your browser or LuCI will not work properly." @@ -9480,7 +9544,17 @@ msgstr "" msgid "ZRam Size" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:449 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:558 +msgid "_proto: _tcp, _udp, _sctp, _quic, … ." +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:557 +msgid "" +"_service: _sip, _ldap, _imap, _stun, _xmpp-client, … . (Note: while _http is " +"possible, no browsers support SRV records.)" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:454 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:152 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:163 msgid "any" @@ -9591,8 +9665,8 @@ msgstr "" msgid "e.g: dump" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:726 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:756 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:797 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:827 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:101 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:148 msgid "expired" @@ -9803,9 +9877,9 @@ msgstr "" msgid "unknown" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:456 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:724 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:754 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:461 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:795 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:825 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:99 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:146 msgid "unlimited" @@ -10076,12 +10150,12 @@ msgstr "" #~ msgid "" #~ "The filesystem that was used to format the memory (<abbr title=\"for " -#~ "example\">e.g.</abbr> <samp><abbr title=\"Third Extended " -#~ "Filesystem\">ext3</abbr></samp>)" +#~ "example\">e.g.</abbr> <samp><abbr title=\"Third Extended Filesystem" +#~ "\">ext3</abbr></samp>)" #~ msgstr "" #~ "The filesystem that was used to format the memory (<abbr title=\"for " -#~ "example\">e.g.</abbr> <samp><abbr title=\"Third Extended " -#~ "Filesystem\">ext3</abbr></samp>)" +#~ "example\">e.g.</abbr> <samp><abbr title=\"Third Extended Filesystem" +#~ "\">ext3</abbr></samp>)" #~ msgid "Antenna 1" #~ msgstr "Antenna 1" diff --git a/modules/luci-base/po/es/base.po b/modules/luci-base/po/es/base.po index 13f726d860..0885b1454c 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-10-05 06:41+0000\n" +"PO-Revision-Date: 2022-10-25 10:20+0000\n" "Last-Translator: Franco Castillo <castillofrancodamian@gmail.com>\n" "Language-Team: Spanish <https://hosted.weblate.org/projects/openwrt/luci/es/>" "\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.14.1\n" +"X-Generator: Weblate 4.14.2-dev\n" #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:643 #, fuzzy @@ -236,6 +236,22 @@ msgstr "MTU <abbr title=\"Router Advertisement\">RA</abbr>" msgid "<abbr title=\"Router Advertisement\">RA</abbr>-Service" msgstr "Servicio <abbr title=\"Router Advertisement\">RA</abbr>" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:294 +msgid "" +"<code>/#/</code> matches any domain. <code>/example.com/</code> returns " +"NXDOMAIN." +msgstr "" +"<code>/#/</code> coincide con cualquier dominio. <code>/example.com/</code> " +"devuelve NXDOMAIN." + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:295 +msgid "" +"<code>/example.com/#</code> returns NULL addresses (<code>0.0.0.0</code> and " +"<code>::</code>) for example.com and its subdomains." +msgstr "" +"<code>/example.com/#</code> devuelve direcciones NULL (<code>0.0.0.0</code> " +"y <code>::</code>) para example.com y sus subdominios." + #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:87 msgctxt "nft relational \">\" operator expression" msgid "<var>%s</var> greater than <strong>%s</strong>" @@ -409,7 +425,7 @@ msgstr "" msgid "ATM device number" msgstr "Número de dispositivo ATM" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:36 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:37 msgid "ATU-C System Vendor ID" msgstr "ID del proveedor del sistema ATU-C" @@ -419,7 +435,7 @@ msgstr "ID del proveedor del sistema ATU-C" msgid "Absent Interface" msgstr "Interfaz ausente" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:320 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:325 msgid "Accept DNS queries only from hosts whose address is on a local subnet." msgstr "" "Aceptar consultas de DNS solo de hosts cuya dirección se encuentre en una " @@ -560,7 +576,7 @@ msgstr "Añadir instancia" msgid "Add key" msgstr "Añadir clave" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:410 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:415 msgid "Add local domain suffix to names served from hosts files." msgstr "" "Añadir el sufijo de dominio local a los nombres servidos desde el archivo de " @@ -583,11 +599,11 @@ msgstr "Añadir a la lista negra" msgid "Add to Whitelist" msgstr "Añadir a la lista blanca" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:367 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:372 msgid "Additional hosts files" msgstr "Archivos de hosts adicionales" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:417 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:422 msgid "Additional servers file" msgstr "Archivo de servidores adicionales" @@ -617,7 +633,7 @@ msgstr "La configuración de la dirección no es válida" msgid "Address to access local relay bridge" msgstr "Dirección para acceder al puente de relé local" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:289 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:291 msgid "Addresses" msgstr "Direcciones" @@ -650,7 +666,7 @@ msgstr "Tiempo de envejecimiento" msgid "Aggregate Originator Messages" msgstr "Mensajes de originador agregados" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:27 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:28 msgid "Aggregate Transmit Power (ACTATP)" msgstr "Potencia de transmisión agregada (ACTATP)" @@ -689,11 +705,11 @@ msgstr "Apodo de interfaz" msgid "Alias of \"%s\"" msgstr "Apodo de \"%s\"" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:427 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:432 msgid "All servers" msgstr "Todos los servidores" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:378 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:383 msgid "" "Allocate IP addresses sequentially, starting from the lowest available " "address." @@ -701,7 +717,7 @@ msgstr "" "Asigna direcciones IP secuencialmente, comenzando desde la dirección más " "baja disponible." -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:377 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:382 msgid "Allocate IPs sequentially" msgstr "Asignar IPs secuencialmente" @@ -732,7 +748,7 @@ msgstr "Permitir tasas de 802.11b heredadas" msgid "Allow listed only" msgstr "Permitir a los pertenecientes en la lista" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:306 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:311 msgid "Allow localhost" msgstr "Permitir host local" @@ -778,7 +794,7 @@ msgstr "Siempre apagado (kernel: ninguno)" msgid "Always on (kernel: default-on)" msgstr "Siempre encendido (kernel: predeterminado)" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:538 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:543 msgid "Always send DHCP Options. Sometimes needed, with e.g. PXELinux." msgstr "Envía siempre las Opciones DHCP. A veces es necesario, eje. PXELinux." @@ -807,7 +823,7 @@ msgid "An optional, short description for this device" msgstr "Una breve descripción opcional de este dispositivo" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1484 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:20 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:21 msgid "Annex" msgstr "Anexo" @@ -928,7 +944,7 @@ msgstr "Cualquier paquete" msgid "Any zone" msgstr "Cualquier zona" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:532 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:537 msgid "Apply DHCP Options to this net. (Empty = all clients)." msgstr "Aplica las Opciones DHCP a esta red. (Vacío = todos los clientes)." @@ -1007,8 +1023,8 @@ msgid "" "At most <strong>%h</strong> per <strong>%h</strong>, burst of <strong>%h</" "strong>" msgstr "" -"Como máximo <strong>%h</strong> por <strong>%h</strong>, ráfaga de " -"<strong>%h</strong>" +"Como máximo <strong>%h</strong> por <strong>%h</strong>, ráfaga de <strong>" +"%h</strong>" #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:154 msgid "Attempt to enable configured mount points for attached devices" @@ -1030,11 +1046,11 @@ msgstr "Autenticación" msgid "Authentication Type" msgstr "Tipo de autenticación" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:265 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:267 msgid "Authoritative" msgstr "Autorizado" -#: modules/luci-base/luasrc/view/sysauth.htm:17 +#: modules/luci-base/ucode/template/sysauth.ut:17 #: themes/luci-theme-bootstrap/htdocs/luci-static/resources/view/bootstrap/sysauth.js:11 msgid "Authorization Required" msgstr "Autorización requerida" @@ -1108,7 +1124,7 @@ msgstr "Media:" msgid "Avoid Bridge Loops" msgstr "Evitar bucles de puente" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:388 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:393 #, fuzzy msgid "" "Avoid uselessly triggering dial-on-demand links (filters SRV/SOA records and " @@ -1146,10 +1162,6 @@ msgstr "Volver" msgid "Back to Overview" msgstr "Volver al resumen" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:48 -msgid "Back to configuration" -msgstr "Volver a la configuración" - #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:826 msgid "Back to peer configuration" msgstr "Volver a la configuración de pares" @@ -1163,7 +1175,6 @@ msgid "Backup / Flash Firmware" msgstr "Respaldo / Grabar firmware" #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:351 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:12 msgid "Backup file list" msgstr "Copia de seguridad de la lista de archivos" @@ -1214,7 +1225,6 @@ msgid "Beacon Interval" msgstr "Intervalo de baliza" #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:352 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:46 msgid "" "Below is the determined list of files to backup. It consists of changed " "configuration files marked by opkg, essential base files and the user " @@ -1230,7 +1240,7 @@ msgstr "" msgid "Bind NTP server" msgstr "Vincular servidor NTP" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:326 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:331 msgid "Bind dynamically to interfaces rather than wildcard address." msgstr "" "Enlaza dinámicamente a las interfaces en lugar de a la dirección comodín." @@ -1247,6 +1257,23 @@ msgstr "" msgid "Bind interface" msgstr "Interfaz de enlace" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:595 +#, fuzzy +msgid "" +"Bind service records to a domain name: specify the location of services." +msgstr "" +"Vincular los registros de servicios a un nombre de dominio: especifique la " +"ubicación de los servicios." + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:556 +#, fuzzy +msgid "" +"Bind service records to a domain name: specify the location of services. See " +"<a href=\"%s\">RFC2782</a>." +msgstr "" +"Vincular los registros de servicios a un nombre de dominio: especifique la " +"ubicación de los servicios. Consulte <a href=\"%s\">RFC2782</a>." + #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:59 #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:64 #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:64 @@ -1356,6 +1383,10 @@ msgstr "" msgid "CLAT configuration failed" msgstr "Configuración CLAT fallida" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:574 +msgid "CNAME or fqdn" +msgstr "CNAME o fqdn" + #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/processes.js:72 msgid "CPU usage (%)" msgstr "Uso de CPU (%)" @@ -1618,17 +1649,13 @@ msgstr "" "Cerrar las conexiones inactivas tras los segundos dados. Use 0 para una " "conexión permanente" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:49 -msgid "Close list..." -msgstr "Cerrar lista..." - #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:44 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:63 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2184 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:391 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:352 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:355 -#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:72 +#: themes/luci-theme-material/ucode/template/themes/material/header.ut:66 msgid "Collecting data..." msgstr "Recolectando datos…" @@ -1668,6 +1695,10 @@ msgstr "" msgid "Compute outgoing checksum (optional)." msgstr "Calcular la suma de verificación saliente (opcional)." +#: protocols/luci-proto-nebula/htdocs/luci-static/resources/protocol/nebula.js:40 +msgid "Config File" +msgstr "Archivo de configuración" + #: modules/luci-base/htdocs/luci-static/resources/ui.js:4375 #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:454 msgid "Configuration" @@ -1711,13 +1742,13 @@ msgid "" "Configures the default router advertisement in <abbr title=\"Router " "Advertisement\">RA</abbr> messages." msgstr "" -"Configura el anuncio de enrutador predeterminado en los mensajes <abbr " -"title=\"Router Advertisement\">RA</abbr>." +"Configura el anuncio de enrutador predeterminado en los mensajes <abbr title=" +"\"Router Advertisement\">RA</abbr>." #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:764 msgid "" -"Configures the operation mode of the <abbr title=\"Router " -"Advertisement\">RA</abbr> service on this interface." +"Configures the operation mode of the <abbr title=\"Router Advertisement" +"\">RA</abbr> service on this interface." msgstr "" "Configura el modo de operación del servicio <abbr title=\"Router " "Advertisement\">RA</abbr> en esta interfaz." @@ -1907,11 +1938,11 @@ msgstr "Intervalo de flash personalizado (kernel: temporizador)" #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/leds.js:59 msgid "" -"Customizes the behaviour of the device <abbr title=\"Light Emitting " -"Diode\">LED</abbr>s if possible." +"Customizes the behaviour of the device <abbr title=\"Light Emitting Diode" +"\">LED</abbr>s if possible." msgstr "" -"Personaliza el comportamiento de los <abbr title=\"Light Emitting " -"Diode\">LED</abbr>s del dispositivo, si es posible." +"Personaliza el comportamiento de los <abbr title=\"Light Emitting Diode" +"\">LED</abbr>s del dispositivo, si es posible." #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:673 #, fuzzy @@ -1930,7 +1961,7 @@ msgstr "Puerto DAE" msgid "DAE-Secret" msgstr "Secreto DAE" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:525 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:530 msgid "DHCP Options" msgstr "Opciones DHCP" @@ -1970,11 +2001,11 @@ msgstr "Servicio DHCPv6" msgid "DNS" msgstr "DNS" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:282 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:284 msgid "DNS forwardings" msgstr "Reenvíos de DNS" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:445 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:450 msgid "DNS query port" msgstr "Puerto de consultas DNS" @@ -1982,7 +2013,7 @@ msgstr "Puerto de consultas DNS" msgid "DNS search domains" msgstr "Dominios de búsqueda de DNS" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:438 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:443 msgid "DNS server port" msgstr "Puerto del servidor DNS" @@ -1998,11 +2029,11 @@ msgstr "Peso de DNS" msgid "DNS-Label / FQDN" msgstr "Etiqueta DNS / FQDN" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:397 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:402 msgid "DNSSEC" msgstr "DNSSEC" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:402 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:407 msgid "DNSSEC check unsigned" msgstr "Comprobación DNSSEC sin firmar" @@ -2015,11 +2046,11 @@ msgid "DS-Lite AFTR address" msgstr "Dirección DS-Lite AFTR" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1481 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:44 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:45 msgid "DSL" msgstr "DSL" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:14 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:15 msgid "DSL Status" msgstr "Estado DSL" @@ -2032,12 +2063,12 @@ msgid "DTIM Interval" msgstr "Intervalo DTIM" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:59 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:700 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:771 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:136 msgid "DUID" msgstr "DUID" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:21 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:22 msgid "Data Rate" msgstr "Velocidad de datos" @@ -2289,12 +2320,12 @@ msgstr "Desactivado" msgid "Disassociate On Low Acknowledgement" msgstr "Desasociarse en un reconocimiento bajo" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:302 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:307 msgid "" "Discard upstream responses containing <a href=\"%s\">RFC1918</a> addresses." msgstr "" -"Descarta respuestas ascendentes que contengan direcciones <a " -"href=\"%s\">RFC1918</a>." +"Descarta respuestas ascendentes que contengan direcciones <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 @@ -2337,7 +2368,7 @@ msgstr "Distancia en metros al miembro mas lejano de la red." msgid "Distributed ARP Table" msgstr "Tabla ARP distribuida" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:543 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:548 msgid "" "Dnsmasq instance to which this boot section is bound. If unspecified, the " "section is valid for all dnsmasq instances." @@ -2347,15 +2378,15 @@ msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:246 msgid "" -"Dnsmasq is a lightweight <abbr title=\"Dynamic Host Configuration " -"Protocol\">DHCP</abbr> server and <abbr title=\"Domain Name System\">DNS</" -"abbr> forwarder." +"Dnsmasq is a lightweight <abbr title=\"Dynamic Host Configuration Protocol" +"\">DHCP</abbr> server and <abbr title=\"Domain Name System\">DNS</abbr> " +"forwarder." msgstr "" -"Dnsmasq es un servidor <abbr title=\"Dynamic Host Configuration " -"Protocol\">DHCP</abbr> ligero y un reenviador <abbr title=\"Domain Name " -"System\">DNS</abbr>." +"Dnsmasq es un servidor <abbr title=\"Dynamic Host Configuration Protocol" +"\">DHCP</abbr> ligero y un reenviador <abbr title=\"Domain Name System" +"\">DNS</abbr>." -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:414 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:419 msgid "Do not cache negative replies, e.g. for non-existent domains." msgstr "" "No almacene en caché las respuestas negativas, p. e. para dominios " @@ -2369,15 +2400,15 @@ msgstr "" msgid "Do not create host route to peer (optional)." msgstr "No crear una ruta de host al par (opcional)." -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:262 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:264 msgid "Do not forward DNS queries without dots or domain parts." msgstr "No reenviar consultas de DNS sin puntos o partes de dominio." -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:383 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:388 msgid "Do not forward reverse lookups for local networks." msgstr "No reenviar búsquedas inversas para redes locales" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:339 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:344 msgid "Do not listen on the specified interfaces." msgstr "No escuchar en las interfaces especificadas." @@ -2395,8 +2426,8 @@ msgid "" "Do not proxy any <abbr title=\"Neighbour Discovery Protocol\">NDP</abbr> " "packets." msgstr "" -"No haga proxy de ningún paquete <abbr title=\"Neighbour Discovery " -"Protocol\">NDP</abbr>." +"No haga proxy de ningún paquete <abbr title=\"Neighbour Discovery Protocol" +"\">NDP</abbr>." #: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:25 msgid "Do not send a hostname" @@ -2434,15 +2465,16 @@ msgstr "¿Quieres reemplazar el PSK actual?" msgid "Do you want to replace the current keys?" msgstr "¿Quieres reemplazar las claves actuales?" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:593 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:606 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:664 msgid "Domain" msgstr "Dominio" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:261 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:263 msgid "Domain required" msgstr "Requerir dominio" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:311 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:316 msgid "Domain whitelist" msgstr "Lista blanca de dominios" @@ -2692,7 +2724,7 @@ msgstr "Activar cliente NTP" msgid "Enable Single DES" msgstr "Activar sólo DES" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:480 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:485 msgid "Enable TFTP server" msgstr "Activar servidor TFTP" @@ -2710,9 +2742,9 @@ msgstr "Activar botón WPS, requiere WPA(2)-PSK/WPA3-SAE" #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/uhttpd.js:14 msgid "" -"Enable automatic redirection of <abbr title=\"Hypertext Transfer " -"Protocol\">HTTP</abbr> requests to <abbr title=\"Hypertext Transfer Protocol " -"Secure\">HTTPS</abbr> port." +"Enable automatic redirection of <abbr title=\"Hypertext Transfer Protocol" +"\">HTTP</abbr> requests to <abbr title=\"Hypertext Transfer Protocol Secure" +"\">HTTPS</abbr> port." msgstr "" "Activar la redirección automática de peticiones <abbr title=\"Hypertext " "Transfer Protocol\">HTTP</abbr> al puerto <abbr title=\"Hypertext Transfer " @@ -2783,7 +2815,7 @@ msgid "Enable the DF (Don't Fragment) flag of the encapsulating packets." msgstr "" "Activar el indicador DF (No fragmentar) de los paquetes de encapsulación." -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:481 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:486 msgid "Enable the built-in single-instance TFTP server." msgstr "Activa el servidor TFTP de instancia única integrado." @@ -2904,7 +2936,7 @@ msgstr "Error" msgid "Error getting PublicKey" msgstr "Error al obtener PublicKey" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:29 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:30 msgid "Errored seconds (ES)" msgstr "Segundos errados (ES)" @@ -2926,11 +2958,11 @@ msgstr "Cada 30 segundos (lento, 0)" msgid "Every second (fast, 1)" msgstr "Cada segundo (rápido, 1)" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:338 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:343 msgid "Exclude interfaces" msgstr "Excluir interfaces" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:307 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:312 msgid "" "Exempt <code>127.0.0.0/8</code> and <code>::1</code> from rebinding checks, " "e.g. for RBL services." @@ -2942,7 +2974,7 @@ msgstr "" msgid "Existing device" msgstr "Dispositivo existente" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:409 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:414 msgid "Expand hosts" msgstr "Expandir hosts" @@ -3080,7 +3112,7 @@ msgstr "No se pudo establecer el modo de funcionamiento" msgid "File" msgstr "Archivo" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:418 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:423 msgid "" "File listing upstream resolvers, optionally domain-specific, e.g. " "<code>server=1.2.3.4</code>, <code>server=/domain/1.2.3.4</code>." @@ -3093,20 +3125,20 @@ msgstr "" msgid "File not accessible" msgstr "Archivo no accesible" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:349 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:354 msgid "File to store DHCP lease information." msgstr "Archivo para almacenar información de asignaciones de DHCP." -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:357 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:362 msgid "File with upstream resolvers." msgstr "Archivo con resolutores ascendentes." #: modules/luci-base/htdocs/luci-static/resources/ui.js:2846 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:507 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:512 msgid "Filename" msgstr "Nombre de archivo" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:493 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:498 msgid "Filename of the boot image advertised to clients." msgstr "Nombre del archivo de la imagen de inicio anunciada a los clientes." @@ -3115,11 +3147,11 @@ msgstr "Nombre del archivo de la imagen de inicio anunciada a los clientes." msgid "Filesystem" msgstr "Sistema de archivos" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:382 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:387 msgid "Filter private" msgstr "Filtro privado" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:387 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:392 msgid "Filter useless" msgstr "Filtro inútil" @@ -3189,7 +3221,7 @@ msgstr "Archivo de firmware" msgid "Firmware Version" msgstr "Versión del firmware" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:446 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:451 msgid "Fixed source port for outbound DNS queries." msgstr "Puerto origen fijo para peticiones de DNS salientes" @@ -3215,7 +3247,7 @@ msgstr "Operaciones de instalación" msgid "Flashing…" msgstr "Instalando…" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:537 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:542 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:686 msgid "Force" msgstr "Forzar" @@ -3260,20 +3292,20 @@ msgstr "Forzar actualización" msgid "Force use of NAT-T" msgstr "Forzar uso de NAT-T" -#: modules/luci-base/luasrc/view/csrftoken.htm:8 +#: modules/luci-base/ucode/template/csrftoken.ut:8 msgid "Form token mismatch" msgstr "No coincide el token del formulario" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:919 #, fuzzy msgid "" -"Forward <abbr title=\"Neighbour Discovery Protocol\">NDP</abbr> <abbr " -"title=\"Neighbour Solicitation, Type 135\">NS</abbr> and <abbr " -"title=\"Neighbour Advertisement, Type 136\">NA</abbr> messages between the " -"designated master interface and downstream interfaces." +"Forward <abbr title=\"Neighbour Discovery Protocol\">NDP</abbr> <abbr title=" +"\"Neighbour Solicitation, Type 135\">NS</abbr> and <abbr title=\"Neighbour " +"Advertisement, Type 136\">NA</abbr> messages between the designated master " +"interface and downstream interfaces." msgstr "" -"Reenviar <abbr title=\"Neighbour Discovery Protocol\">NDP</abbr> <abbr " -"title=\"Neighbour Solicitation, Type 135\">NS</abbr> y mensajes \n" +"Reenviar <abbr title=\"Neighbour Discovery Protocol\">NDP</abbr> <abbr title=" +"\"Neighbour Solicitation, Type 135\">NS</abbr> y mensajes \n" "<abbr title=\"Neighbour Advertisement, Type 136\">NA</abbr> entre la " "interfaz maestra designada y las interfaces posteriores." @@ -3299,7 +3331,7 @@ msgstr "" "Reenvíe mensajes DHCPv6 entre la interfaz maestra designada y las interfaces " "descendentes." -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:28 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:29 msgid "Forward Error Correction Seconds (FECS)" msgstr "Segundos de corrección de errores de reenvío (FECS)" @@ -3464,15 +3496,15 @@ msgstr "Configuración global" msgid "Global network options" msgstr "Opciones globales de red" -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:82 -#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:89 -#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:74 +#: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/header.ut:70 +#: themes/luci-theme-material/ucode/template/themes/material/header.ut:84 +#: themes/luci-theme-openwrt-2020/ucode/template/themes/openwrt2020/header.ut:67 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:92 msgid "Go to firmware upgrade..." msgstr "Ir a actualización de firmware..." -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:72 -#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:64 +#: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/header.ut:60 +#: themes/luci-theme-openwrt-2020/ucode/template/themes/openwrt2020/header.ut:57 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:82 msgid "Go to password configuration..." msgstr "Ir a la configuración de la contraseña..." @@ -3614,7 +3646,7 @@ msgstr "Acceso HTTP(S)" msgid "Hang Up" msgstr "Suspender" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:33 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:34 msgid "Header Error Code Errors (HEC)" msgstr "Errores de código de error de encabezado (HEC)" @@ -3668,7 +3700,7 @@ msgstr "Host" msgid "Host expiry timeout" msgstr "Tiempo de espera de expiración del host" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:508 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:513 #, fuzzy msgid "Host requests this filename from the boot server." msgstr "El host solicita este nombre de archivo al servidor de arranque." @@ -3678,8 +3710,8 @@ msgid "Host-Uniq tag content" msgstr "Contenido de la etiqueta Host-Uniq" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:38 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:559 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:607 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:630 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:678 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/10_system.js:54 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:87 #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:135 @@ -3694,7 +3726,7 @@ msgstr "Nombre del host a enviar cuando se solicite una IP" msgid "Hostnames" msgstr "Nombres de host" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:551 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:622 msgid "" "Hostnames are used to bind a domain name to an IP address. This setting is " "redundant for hostnames already configured with static leases, but it can be " @@ -3762,7 +3794,7 @@ msgstr "Direcciones IP" msgid "IP Protocol" msgstr "Protocolo IP" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:258 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:260 msgid "IP Sets" msgstr "Conjuntos de IP" @@ -3770,7 +3802,7 @@ msgstr "Conjuntos de IP" msgid "IP Type" msgstr "Tipo de IP" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:563 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:634 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:178 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:204 msgid "IP address" @@ -3796,15 +3828,15 @@ msgctxt "nft meta l4proto" msgid "IP protocol" msgstr "Protocolo IP" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:589 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:660 msgid "IP set" msgstr "Conjunto de IP" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:295 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:300 msgid "IP sets" msgstr "Conjuntos de IP" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:432 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:437 msgid "IPs to override with NXDOMAIN" msgstr "IPs a anular con NXDOMAIN" @@ -3845,7 +3877,7 @@ msgstr "Conexión IPv4 ascendente" #: modules/luci-base/htdocs/luci-static/resources/protocol/static.js:178 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:39 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:665 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:736 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:88 #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:164 msgid "IPv4 address" @@ -4017,7 +4049,7 @@ msgstr "Enrutamiento de origen IPv6" msgid "IPv6 suffix" msgstr "Sufijo IPv6" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:706 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:777 msgid "IPv6 suffix (hex)" msgstr "Sufijo IPv6 (hex)" @@ -4121,10 +4153,10 @@ msgstr "" #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:340 msgid "" "If your physical memory is insufficient unused data can be temporarily " -"swapped to a swap-device resulting in a higher amount of usable <abbr " -"title=\"Random Access Memory\">RAM</abbr>. Be aware that swapping data is a " -"very slow process as the swap-device cannot be accessed with the high " -"datarates of the <abbr title=\"Random Access Memory\">RAM</abbr>." +"swapped to a swap-device resulting in a higher amount of usable <abbr title=" +"\"Random Access Memory\">RAM</abbr>. Be aware that swapping data is a very " +"slow process as the swap-device cannot be accessed with the high datarates " +"of the <abbr title=\"Random Access Memory\">RAM</abbr>." msgstr "" "Si su dispositivo no tiene <abbr title=\"Random Access Memory\">RAM</abbr> " "suficiente, los datos no utilizados pueden ser guardados temporalmente en un " @@ -4133,7 +4165,7 @@ msgstr "" "puede transferir volúmenes de información a alta velocidad tal y como hace " "la <abbr title=\"Random Access Memory\">RAM</abbr>." -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:363 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:368 msgid "Ignore <code>/etc/hosts</code>" msgstr "Ignorar <code>/etc/hosts</code>" @@ -4141,7 +4173,7 @@ msgstr "Ignorar <code>/etc/hosts</code>" msgid "Ignore interface" msgstr "Desactivar DHCP" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:352 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:357 msgid "Ignore resolv file" msgstr "Ignorar el archivo resolve" @@ -4195,7 +4227,7 @@ msgstr "" "prevención de bucles de puente para evitar bucles de difusión que pueden " "paralizar toda la LAN." -#: modules/luci-base/luasrc/view/csrftoken.htm:13 +#: modules/luci-base/ucode/template/csrftoken.ut:13 msgid "" "In order to prevent unauthorized access to the system, your request has been " "blocked. Click \"Continue »\" below to return to the previous page." @@ -4309,7 +4341,7 @@ msgstr "Restricción de certificado interno (Comodín)" msgid "Install protocol extensions..." msgstr "Instalar extensiones de protocolo..." -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:542 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:547 msgid "Instance" msgstr "Instancia" @@ -4398,10 +4430,6 @@ msgstr "Interfaces" msgid "Internal" msgstr "Interno" -#: modules/luci-base/luasrc/view/error500.htm:8 -msgid "Internal Server Error" -msgstr "Error interno del servidor" - #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:285 msgid "Interval For Sending Learning Packets" msgstr "Intervalo para enviar paquetes de aprendizaje" @@ -4476,8 +4504,8 @@ msgstr "Comando inválido" msgid "Invalid hexadecimal value" msgstr "Valor hexadecimal inválido" -#: modules/luci-base/luasrc/view/sysauth.htm:12 -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/sysauth.htm:37 +#: modules/luci-base/ucode/template/sysauth.ut:12 +#: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/sysauth.ut:32 msgid "Invalid username and/or password! Please try again." msgstr "¡Nombre de usuario y/o contraseña no válidos! Por favor reintente." @@ -4501,8 +4529,8 @@ msgstr "" "Parece que está intentando grabar una imagen de firmware mayor que la " "memoria flash de su equipo. ¡Por favor, verifique el archivo!" -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:89 -#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:96 +#: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/header.ut:77 +#: themes/luci-theme-material/ucode/template/themes/material/header.ut:91 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:72 msgid "JavaScript required!" msgstr "¡Se necesita JavaScript!" @@ -4634,11 +4662,19 @@ msgstr "Idioma" msgid "Language and Style" msgstr "Idioma y Estilo" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:560 +msgid "" +"Larger weights (of the same prio) are given a proportionately higher " +"probability of being selected." +msgstr "" +"Los pesos más grandes (del mismo prio) tienen una probabilidad " +"proporcionalmente mayor de ser seleccionados." + #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:575 msgid "Last member interval" msgstr "Intervalo del último miembro" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:23 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:24 msgid "Latency" msgstr "Latencia" @@ -4654,11 +4690,11 @@ msgstr "Aprender" msgid "Learn routes" msgstr "Aprender rutas" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:348 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:353 msgid "Lease file" msgstr "Archivo de asignación" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:697 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:768 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:679 msgid "Lease time" msgstr "Tiempo de asignación" @@ -4706,19 +4742,19 @@ msgstr "Registro de cambios:" msgid "Limit" msgstr "Límite" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:24 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:25 msgid "Line Attenuation (LATN)" msgstr "Atenuación de línea (LATN)" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:18 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:19 msgid "Line Mode" msgstr "Modo de línea" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:17 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:18 msgid "Line State" msgstr "Estado de línea" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:19 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:20 msgid "Line Uptime" msgstr "Tiempo de actividad de línea" @@ -4739,12 +4775,12 @@ msgctxt "nft @ll,off,len" msgid "Link layer header bits %d-%d" msgstr "Bits de encabezado de capa de enlace %d-%d" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:433 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:438 msgid "List of IP addresses to convert into NXDOMAIN responses." msgstr "Lista de direcciones IP para convertir en respuestas NXDOMAIN." -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:296 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:581 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:301 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:652 msgid "List of IP sets to populate with the specified domain IPs." msgstr "" "Lista de conjuntos de IP para completar con las IP de dominio especificadas." @@ -4782,15 +4818,11 @@ msgstr "" msgid "List of SSH key files for auth" msgstr "Lista de archivos de claves SSH para autenticación" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:312 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:317 msgid "List of domains to allow RFC1918 responses for." msgstr "Lista de dominios para permitir respuestas RFC1918." -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:290 -msgid "List of domains to force to an IP address." -msgstr "Lista de dominios para forzar a una dirección IP." - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:283 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:285 msgid "List of upstream resolvers to forward queries to." msgstr "Lista de resolutores ascendentes a los que reenviar consultas." @@ -4798,7 +4830,7 @@ msgstr "Lista de resolutores ascendentes a los que reenviar consultas." msgid "Listen Port" msgstr "Puerto de escucha" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:332 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:337 msgid "Listen interfaces" msgstr "Interfaces de escucha" @@ -4806,7 +4838,7 @@ msgstr "Interfaces de escucha" msgid "Listen only on the given interface or, if unspecified, on all" msgstr "Escucha solo en la interfaz dada o, si no se especifica, en todas" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:333 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:338 msgid "" "Listen only on the specified interfaces, and loopback if not excluded " "explicitly." @@ -4818,7 +4850,7 @@ msgstr "" msgid "ListenPort setting is invalid" msgstr "La configuración de ListenPort no es válida" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:439 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:444 msgid "Listening port for inbound DNS queries." msgstr "Puerto de escucha para consultas DNS entrantes" @@ -4845,9 +4877,9 @@ msgid "Loading directory contents…" msgstr "Cargando el contenido del directorio…" #: modules/luci-base/htdocs/luci-static/resources/luci.js:1942 -#: modules/luci-base/luasrc/view/view.htm:4 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:12 -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/sysauth.htm:45 +#: modules/luci-base/ucode/template/view.ut:4 +#: modules/luci-mod-status/ucode/template/admin_status/index.ut:12 +#: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/sysauth.ut:40 msgid "Loading view…" msgstr "Cargando vista…" @@ -4905,21 +4937,21 @@ msgstr "Hora local" msgid "Local ULA" msgstr "ULA local" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:273 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:275 msgid "Local domain" msgstr "Dominio local" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:274 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:276 msgid "Local domain suffix appended to DHCP names and hosts file entries." msgstr "" "Sufijo de dominio local que se añade a los nombres de DHCP y a las entradas " "del archivo de hosts" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:269 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:271 msgid "Local server" msgstr "Servidor local" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:319 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:324 msgid "Local service only" msgstr "Solo servicio local" @@ -4927,7 +4959,7 @@ msgstr "Solo servicio local" msgid "Local wireguard key" msgstr "Clave local de WireGuard" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:392 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:397 msgid "Localise queries" msgstr "Localizar consultas" @@ -4939,7 +4971,7 @@ msgstr "Bloquear a BSSID" msgid "Log output level" msgstr "Nivel de registro" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:277 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:279 msgid "Log queries" msgstr "Registrar consultas" @@ -4965,8 +4997,8 @@ msgstr "" msgid "Logical network to which the tunnel will be added (bridged) (optional)." msgstr "Red lógica a la que se agregará al túnel (puenteado) (opcional)." -#: modules/luci-base/luasrc/view/sysauth.htm:38 -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/sysauth.htm:41 +#: modules/luci-base/ucode/template/sysauth.ut:38 +#: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/sysauth.ut:36 msgid "Login" msgstr "Iniciar sesión" @@ -4978,7 +5010,7 @@ msgstr "Cerrar sesión" msgid "Loose filtering" msgstr "Filtrado suelto" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:31 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:32 msgid "Loss of Signal Seconds (LOSS)" msgstr "Pérdida de segundos de señal (LOSS)" @@ -4986,6 +5018,10 @@ msgstr "Pérdida de segundos de señal (LOSS)" msgid "Lowest leased address as offset from the network address." msgstr "Dirección asignada más baja como compensación de la dirección de red." +#: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/footer.ut:12 +msgid "Lua compatibility mode active" +msgstr "Modo de compatibilidad de Lua activo" + #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:48 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:83 msgid "MAC" @@ -5010,7 +5046,7 @@ msgstr "MAC VLAN" #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:591 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:40 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:619 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:690 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1164 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2177 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:56 @@ -5069,6 +5105,10 @@ msgstr "Intervalo MII" msgid "MTU" msgstr "MTU" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:259 +msgid "MX" +msgstr "MX" + #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:303 msgid "" "Make sure to clone the root filesystem using something like the commands " @@ -5095,19 +5135,19 @@ msgstr "AP" msgid "Max <abbr title=\"Router Advertisement\">RA</abbr> interval" msgstr "Intervalo máximo de <abbr title=\"Router Advertisement\">RA</abbr>" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:22 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:23 msgid "Max. Attainable Data Rate (ATTNDR)" msgstr "Max. velocidad de datos alcanzable (ATTNDR)" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:452 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:457 msgid "Max. DHCP leases" msgstr "Máx. de asignaciones de DHCP" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:459 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:464 msgid "Max. EDNS0 packet size" msgstr "Máx. tamaño de paquete EDNS0" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:466 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:471 msgid "Max. concurrent queries" msgstr "Máx. consultas simultáneas" @@ -5119,15 +5159,15 @@ msgstr "Período máximo" msgid "Maximum allowed Listen Interval" msgstr "Intervalo de escucha máximo permitido" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:453 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:458 msgid "Maximum allowed number of active DHCP leases." msgstr "Número máximo permitido de asignaciones DHCP activas" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:467 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:472 msgid "Maximum allowed number of concurrent DNS queries." msgstr "Número máximo permitido de consultas de DNS simultáneas." -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:460 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:465 msgid "Maximum allowed size of EDNS0 UDP packets." msgstr "Tamaño máximo permitido de paquetes UDP EDNS0." @@ -5157,7 +5197,7 @@ msgstr "" msgid "Maximum transmit power" msgstr "Potencia máxima de transmisión" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:389 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:394 msgid "May prevent VoIP or other services from working." msgstr "Puede impedir que VoIP u otros servicios funcionen." @@ -5481,11 +5521,16 @@ msgstr "Nombre de la nueva red" msgid "Name of the tunnel device" msgstr "Nombre del dispositivo de túnel" -#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:46 +#: themes/luci-theme-openwrt-2020/ucode/template/themes/openwrt2020/header.ut:39 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:50 msgid "Navigation" msgstr "Navegación" +#: protocols/luci-proto-nebula/htdocs/luci-static/resources/protocol/nebula.js:10 +#, fuzzy +msgid "Nebula Network" +msgstr "Red Nebula" + #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:653 msgid "Neighbour cache validity" msgstr "Validez de la caché de vecinos" @@ -5521,7 +5566,7 @@ msgstr "Utilidades de red" msgid "Network address" msgstr "Dirección de red" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:492 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:497 msgid "Network boot image" msgstr "Imagen de arranque en red" @@ -5562,7 +5607,7 @@ msgstr "Migración de configuración de ifname de red" msgid "Network interface" msgstr "Interfaz de red" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:531 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:536 msgid "Network-ID" msgstr "ID de red" @@ -5570,7 +5615,7 @@ msgstr "ID de red" msgid "Never" msgstr "Nunca" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:270 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:272 msgid "" "Never forward matching domains and subdomains, resolve from DHCP or hosts " "files only." @@ -5620,9 +5665,9 @@ msgstr "Sin NAT-T" msgid "No RX signal" msgstr "No hay señal RX" -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:80 -#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:87 -#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:72 +#: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/header.ut:68 +#: themes/luci-theme-material/ucode/template/themes/material/header.ut:82 +#: themes/luci-theme-openwrt-2020/ucode/template/themes/openwrt2020/header.ut:65 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:90 msgid "" "No changes to settings will be stored and are lost after rebooting. This " @@ -5668,10 +5713,6 @@ msgstr "No hay entradas disponibles" msgid "No entries in this directory" msgstr "No hay entradas en este directorio" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:82 -msgid "No files found" -msgstr "No se han encontrado archivos" - #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:833 #, fuzzy msgid "" @@ -5710,7 +5751,7 @@ msgstr "No hay más esclavos disponibles" msgid "No more slaves available, can not save interface" msgstr "No hay más esclavos disponibles, no se puede guardar la interfaz" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:413 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:418 msgid "No negative cache" msgstr "Sin caché negativa" @@ -5719,8 +5760,8 @@ msgstr "Sin caché negativa" msgid "No nftables ruleset loaded." msgstr "No se ha cargado ningún conjunto de reglas de nftables." -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:69 -#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:61 +#: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/header.ut:57 +#: themes/luci-theme-openwrt-2020/ucode/template/themes/openwrt2020/header.ut:54 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:79 msgid "No password set!" msgstr "¡Sin contraseña!" @@ -5760,7 +5801,7 @@ msgstr "Sin zona asignada" msgid "Noise" msgstr "Ruido" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:26 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:27 msgid "Noise Margin (SNR)" msgstr "Margen de ruido (SNR)" @@ -5768,11 +5809,11 @@ msgstr "Margen de ruido (SNR)" msgid "Noise:" msgstr "Ruido:" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:34 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:35 msgid "Non Pre-emptive CRC errors (CRC_P)" msgstr "Errores de CRC no preventivos (CRC P)" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:325 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:330 msgid "Non-wildcard" msgstr "Sin comodín" @@ -5787,7 +5828,7 @@ msgstr "Ninguno" msgid "Normal" msgstr "Normal" -#: modules/luci-base/luasrc/view/error404.htm:8 +#: modules/luci-base/ucode/template/error404.ut:9 msgid "Not Found" msgstr "No encontrado" @@ -5839,7 +5880,7 @@ msgstr "NSLookup" msgid "Number of IGMP membership reports" msgstr "Número de informes de membresía IGMP" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:474 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:479 msgid "Number of cached DNS entries, 10000 is maximum, 0 is no caching." msgstr "" "Número de entradas de DNS en caché, 10000 es el máximo, 0 es sin " @@ -5892,7 +5933,7 @@ msgstr "Retraso de activación" msgid "On-link" msgstr "En enlace" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:672 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:743 msgid "One of hostname or MAC address must be specified!" msgstr "¡Debe especificar al menos un nombre de host o dirección MAC!" @@ -5933,7 +5974,6 @@ msgid "Open iptables rules overview…" msgstr "Abra la descripción general de las reglas de iptables…" #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:472 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:19 msgid "Open list..." msgstr "Abrir lista..." @@ -5953,8 +5993,8 @@ msgid "" "Protocol\">NDP</abbr> proxying." msgstr "" "Opere en <em>modo relé</em> si una interfaz maestra designada está " -"configurada y activa; de lo contrario, desactive el proxy de <abbr " -"title=\"Neighbour Discovery Protocol\">NDP</abbr>." +"configurada y activa; de lo contrario, desactive el proxy de <abbr title=" +"\"Neighbour Discovery Protocol\">NDP</abbr>." #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:723 msgid "" @@ -6107,13 +6147,13 @@ msgstr "Opcional. Puerto UDP utilizado para paquetes salientes y entrantes." msgid "Options" msgstr "Opciones" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:526 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:531 #, fuzzy msgid "" "Options for the Network-ID. (Note: needs also Network-ID.) E.g. " -"\"<code>42,192.168.1.4</code>\" for NTP server, \"<code>3,192.168.4.4</" -"code>\" for default route. <code>0.0.0.0</code> means \"the address of the " -"system running dnsmasq\"." +"\"<code>42,192.168.1.4</code>\" for NTP server, \"<code>3,192.168.4.4</code>" +"\" for default route. <code>0.0.0.0</code> means \"the address of the system " +"running dnsmasq\"." msgstr "" "Opciones para el ID de red. (Nota: también necesita ID de red) P. ej. " "\"<code>42,192.168.1.4</code>\" para el servidor NTP, \"<code>3,192.168.4.4</" @@ -6124,6 +6164,11 @@ msgstr "" msgid "Options:" msgstr "Opciones:" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:584 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:616 +msgid "Ordinal: lower comes first." +msgstr "Ordinal: el bajo va primero." + #: protocols/luci-proto-batman-adv/htdocs/luci-static/resources/protocol/batadv.js:55 msgid "Originator Interval" msgstr "Intervalo de originador" @@ -6400,13 +6445,13 @@ msgctxt "MACVLAN mode" msgid "Pass-through (Mirror physical device to single MAC VLAN)" msgstr "Traspasar (Duplicar dispositivo físico a una sola MAC VLAN)" -#: modules/luci-base/luasrc/view/sysauth.htm:29 +#: modules/luci-base/ucode/template/sysauth.ut:29 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1690 #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:51 #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:114 #: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:103 #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:58 -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/sysauth.htm:24 +#: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/sysauth.ut:19 msgid "Password" msgstr "Contraseña" @@ -6582,7 +6627,7 @@ msgstr "Ping" msgid "Pkts." msgstr "Paq." -#: modules/luci-base/luasrc/view/sysauth.htm:19 +#: modules/luci-base/ucode/template/sysauth.ut:19 msgid "Please enter your username and password." msgstr "Por favor, introduzca su nombre de usuario y contraseña." @@ -6599,6 +6644,7 @@ msgctxt "Chain hook policy" msgid "Policy: <strong>%h</strong> (%h)" msgstr "Política: <strong>%h</strong> (%h)" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:579 #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/dropbear.js:21 msgid "Port" msgstr "Puerto" @@ -6615,11 +6661,11 @@ msgstr "Estado del puerto:" msgid "Potential negation of: %s" msgstr "negación potencial de: %s" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:37 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:38 msgid "Power Management Mode" msgstr "Modo de administración de energía" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:35 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:36 msgid "Pre-emptive CRC errors (CRCP_P)" msgstr "Errores preventivos de CRC (CRC P)" @@ -6701,6 +6747,8 @@ msgstr "" "(siempre, 0)" #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:508 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:584 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:616 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:129 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:197 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:223 @@ -6827,7 +6875,7 @@ msgstr "QMI Celular" msgid "Quality" msgstr "Calidad" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:428 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:433 msgid "Query all available upstream resolvers." msgstr "Consulta todos los resolutores ascendentes disponibles." @@ -6912,7 +6960,7 @@ msgstr "" "Bytes en bruto codificados en hexadecimal. Deje en blanco a menos que su ISP " "lo requiera" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:345 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:350 msgid "Read <code>/etc/ethers</code> to configure the DHCP server." msgstr "Leer <code>/etc/ethers</code> para configurar el servidor DHCP." @@ -6928,7 +6976,7 @@ msgstr "Gráficos en tiempo real" msgid "Reassociation Deadline" msgstr "Fecha límite de reasociación" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:301 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:306 msgid "Rebind protection" msgstr "Protección contra reasociación" @@ -7016,6 +7064,7 @@ msgstr "" "o igual que el valor especificado" #: modules/luci-compat/luasrc/model/network/proto_relay.lua:153 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:611 #: protocols/luci-proto-relay/htdocs/luci-static/resources/protocol/relay.js:39 msgid "Relay" msgstr "Relé (relayd)" @@ -7107,6 +7156,10 @@ msgstr "Requerido para ciertos ISPs, por ejemplo Charter con DOCSIS 3" msgid "Required. Base64-encoded private key for this interface." msgstr "Requerido. Clave privada codificada en base64 para esta interfaz." +#: protocols/luci-proto-nebula/htdocs/luci-static/resources/protocol/nebula.js:40 +msgid "Required. Path to the .yml config file for this interface." +msgstr "Requerido. Ruta al archivo de configuración .yml para esta interfaz." + #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:587 msgid "Required. Public key of the WireGuard peer." msgstr "Requerido. Clave pública del par de WireGuard." @@ -7188,7 +7241,7 @@ msgid "Reselection policy for primary slave" msgstr "Política de reselección para esclavo primario" #: modules/luci-base/htdocs/luci-static/resources/luci.js:2197 -#: modules/luci-base/luasrc/view/sysauth.htm:39 +#: modules/luci-base/ucode/template/sysauth.ut:39 #: modules/luci-compat/luasrc/view/cbi/delegator.htm:17 #: modules/luci-compat/luasrc/view/cbi/footer.htm:30 #: modules/luci-compat/luasrc/view/cbi/simpleform.htm:66 @@ -7207,10 +7260,14 @@ msgstr "Reiniciar a configuraciones predeterminadas" msgid "Resolv and Hosts Files" msgstr "Archivos Resolv y Hosts" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:356 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:361 msgid "Resolv file" msgstr "Archivo de resolución" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:292 +msgid "Resolve specified FQDNs to an IP." +msgstr "Lista de dominios para forzar a una dirección IP." + #: modules/luci-base/htdocs/luci-static/resources/rpc.js:405 msgid "Resource not found" msgstr "Recurso no encontrado" @@ -7237,7 +7294,7 @@ msgstr "Restaurar" msgid "Restore backup" msgstr "Restaurar copia de seguridad" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:393 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:398 msgid "" "Return answers to DNS queries matching the subnet from which the query was " "received if multiple IPs are available." @@ -7335,7 +7392,7 @@ msgstr "" msgid "Robustness" msgstr "Robustez" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:486 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:491 msgid "" "Root directory for files served via TFTP. <em>Enable TFTP server</em> and " "<em>TFTP server root</em> turn on the TFTP server and serve files from " @@ -7446,6 +7503,11 @@ msgstr "SHA256" msgid "SNR" msgstr "SNR" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:258 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:569 +msgid "SRV" +msgstr "SRV" + #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/dropbear.js:10 #: modules/luci-mod-system/root/usr/share/luci/menu.d/luci-mod-system.json:38 msgid "SSH Access" @@ -7592,11 +7654,11 @@ msgstr "Enviar el nombre de host de este dispositivo" msgid "Server" msgstr "Servidor" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:519 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:524 msgid "Server address" msgstr "Dirección del servidor" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:513 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:518 msgid "Server name" msgstr "Nombre del servidor" @@ -7695,7 +7757,7 @@ msgstr "Configuraciones" msgid "Setup routes for proxied IPv6 neighbours." msgstr "Configurar rutas para vecinos IPv6 con proxy." -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:30 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:31 msgid "Severely Errored Seconds (SES)" msgstr "Segundos con errores graves (SES)" @@ -7709,7 +7771,6 @@ msgid "Short Preamble" msgstr "Preámbulo corto" #: 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 msgid "Show current backup file list" msgstr "Mostrar la lista actual de archivos a respaldar" @@ -7743,7 +7804,7 @@ msgstr "Señal" msgid "Signal / Noise" msgstr "Señal / Ruido" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:25 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:26 msgid "Signal Attenuation (SATN)" msgstr "Atenuación de señal (SATN)" @@ -7760,7 +7821,7 @@ msgstr "Señal:" msgid "Size" msgstr "Tamaño" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:473 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:478 msgid "Size of DNS query cache" msgstr "Tamaño de la caché de consultas de DNS" @@ -7778,12 +7839,12 @@ msgid "Skip from backup files that are equal to those in /rom" msgstr "" "Omitir archivos de la copia de seguridad que sean iguales a los de /rom" -#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:42 +#: themes/luci-theme-openwrt-2020/ucode/template/themes/openwrt2020/header.ut:35 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:46 msgid "Skip to content" msgstr "Saltar al contenido" -#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:41 +#: themes/luci-theme-openwrt-2020/ucode/template/themes/openwrt2020/header.ut:34 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:45 msgid "Skip to navigation" msgstr "Saltar a navegación" @@ -7801,14 +7862,10 @@ msgstr "Software VLAN" msgid "Some fields are invalid, cannot save values!" msgstr "Algunos campos son inválidos, ¡no se pueden guardar!" -#: modules/luci-base/luasrc/view/error404.htm:9 +#: modules/luci-base/ucode/template/error404.ut:10 msgid "Sorry, the object you requested was not found." msgstr "Objeto no encontrado." -#: modules/luci-base/luasrc/view/error500.htm:9 -msgid "Sorry, the server encountered an unexpected error." -msgstr "El servidor encontró un error inesperado." - #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:442 msgid "" "Sorry, there is no sysupgrade support present; a new firmware image must be " @@ -7848,7 +7905,7 @@ msgctxt "nft ip sport" msgid "Source port" msgstr "Puerto de origen" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:500 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:505 msgid "" "Special <abbr title=\"Preboot eXecution Environment\">PXE</abbr> boot " "options for Dnsmasq." @@ -8309,7 +8366,7 @@ msgstr "Asignaciones estáticas" msgid "Static address" msgstr "Dirección estática" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:598 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:669 msgid "" "Static leases are used to assign fixed IP addresses and symbolic hostnames " "to DHCP clients. They are also required for non-dynamic interface " @@ -8327,7 +8384,7 @@ msgstr "Límite de inactividad de la estación" #: modules/luci-base/root/usr/share/luci/menu.d/luci-base.json:16 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:541 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:929 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:9 +#: modules/luci-mod-status/ucode/template/admin_status/index.ut:9 msgid "Status" msgstr "Estado" @@ -8353,7 +8410,7 @@ msgstr "Uso de almacenamiento" msgid "Strict filtering" msgstr "Filtrado estricto" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:422 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:427 msgid "Strict order" msgstr "Orden estricto" @@ -8366,11 +8423,11 @@ msgstr "Fuerte" msgid "Submit" msgstr "Enviar" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:372 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:377 msgid "Suppress logging" msgstr "Suprimir registro" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:373 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:378 msgid "Suppress logging of the routine operation for the DHCP protocol." msgstr "Suprime el registro de la operación de rutina para el protocolo DHCP." @@ -8425,6 +8482,14 @@ msgstr "Sincronizar con el servidor NTP" msgid "Sync with browser" msgstr "Sincronizar con el navegador" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:293 +msgid "Syntax: <code>/fqdn[/fqdn…]/[ipaddr]</code>." +msgstr "Sintaxis: <code>/fqdn[/fqdn…]/[ipaddr]</code>." + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:569 +msgid "Syntax: <code>_service._proto.example.com</code>." +msgstr "Sintaxis: <code>_service._proto.example.com</code>." + #: modules/luci-base/root/usr/share/luci/menu.d/luci-base.json:26 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/10_system.js:17 #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:113 @@ -8450,9 +8515,9 @@ msgstr "Propiedades del sistema" msgid "System log buffer size" msgstr "Tamaño del buffer de registro del sistema" -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:79 -#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:86 -#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:71 +#: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/header.ut:67 +#: themes/luci-theme-material/ucode/template/themes/material/header.ut:81 +#: themes/luci-theme-openwrt-2020/ucode/template/themes/openwrt2020/header.ut:64 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:89 msgid "System running in recovery (initramfs) mode." msgstr "El sistema se ejecuta en modo de recuperación (initramfs)." @@ -8483,7 +8548,7 @@ msgstr "Puerto de origen TCP" msgid "TCP:" msgstr "TCP:" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:485 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:490 msgid "TFTP server root" msgstr "Raíz del servidor TFTP" @@ -8509,6 +8574,7 @@ msgid "Table" msgstr "Tabla" # Target = Meta --> Objetivo --> Destino? +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:574 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:56 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:66 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:187 @@ -8597,17 +8663,17 @@ msgstr "" "La configuración de actualización de punto final de HE.net cambió, ¡ahora " "debe usar el nombre de usuario simple en lugar de la ID de usuario!" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:681 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:752 msgid "The IP address %h is already used by another static lease" msgstr "" "La dirección IP %h ya está siendo utilizada por otra asignación estática" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:690 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:761 msgid "The IP address is outside of any DHCP pool address range" msgstr "" "La dirección IP está fuera de cualquier rango de direcciones del grupo DHCP" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:520 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:525 msgid "The IP address of the boot server" msgstr "La dirección IP del servidor de arranque" @@ -8731,8 +8797,8 @@ msgid "" "The device file of the memory or partition (<abbr title=\"for example\">e.g." "</abbr> <code>/dev/sda1</code>)" msgstr "" -"El archivo de dispositivo de memoria o partición (<abbr title=\"Por " -"ejemplo\">e.j.</abbr> <code>/dev/sda1</code>)" +"El archivo de dispositivo de memoria o partición (<abbr title=\"Por ejemplo" +"\">e.j.</abbr> <code>/dev/sda1</code>)" #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:450 msgid "The device name \"%s\" is already taken" @@ -8763,8 +8829,8 @@ msgid "" msgstr "" "Se ha subido la imagen a grabar. A continuación se muestra la suma de " "comprobación y el tamaño del archivo, compárelos con el archivo original " -"para garantizar la integridad de los datos. <br /> Haga clic en " -"\"Continuar\" a continuación para iniciar el procedimiento de instalación." +"para garantizar la integridad de los datos. <br /> Haga clic en \"Continuar" +"\" a continuación para iniciar el procedimiento de instalación." #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:249 msgid "The following rules are currently active on this system." @@ -8814,7 +8880,7 @@ msgstr "" "adicional (el paquete debe recibirse y retransmitirse, lo que cuesta tiempo " "aire)" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:514 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:519 msgid "The hostname of the boot server" msgstr "El nombre de host del servidor de arranque" @@ -8876,9 +8942,9 @@ msgstr "" "El tiempo de respuesta máximo en centisegundos insertado en consultas " "específicas de grupo enviadas en respuesta a dejar mensajes de grupo. " "También es la cantidad de tiempo entre los mensajes de consulta específicos " -"del grupo. Este valor puede ajustarse para modificar la \"latencia de " -"salida\" de la red. Un valor reducido resulta en un tiempo reducido para " -"detectar la pérdida del último miembro de un grupo" +"del grupo. Este valor puede ajustarse para modificar la \"latencia de salida" +"\" de la red. Un valor reducido resulta en un tiempo reducido para detectar " +"la pérdida del último miembro de un grupo" #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:561 msgid "" @@ -8898,8 +8964,8 @@ msgid "" "The maximum hops to be published in <abbr title=\"Router Advertisement\">RA</" "abbr> messages. Maximum is 255 hops." msgstr "" -"El número máximo de saltos que se publicarán en los mensajes <abbr " -"title=\"Router Advertisement\">RA</abbr>. El máximo es 255 saltos." +"El número máximo de saltos que se publicarán en los mensajes <abbr title=" +"\"Router Advertisement\">RA</abbr>. El máximo es 255 saltos." #: modules/luci-base/htdocs/luci-static/resources/ui.js:4638 msgid "" @@ -8915,8 +8981,8 @@ msgstr "El nombre de la red ya está en uso" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:139 msgid "" -"The network ports on this device can be combined to several <abbr " -"title=\"Virtual Local Area Network\">VLAN</abbr>s in which computers can " +"The network ports on this device can be combined to several <abbr title=" +"\"Virtual Local Area Network\">VLAN</abbr>s in which computers can " "communicate directly with each other. <abbr title=\"Virtual Local Area " "Network\">VLAN</abbr>s are often used to separate different network " "segments. Often there is by default one Uplink port for a connection to the " @@ -8988,7 +9054,7 @@ msgstr "" msgid "The selected %s mode is incompatible with %s encryption" msgstr "El modo %s seleccionado es incompatible con la encriptación %s" -#: modules/luci-base/luasrc/view/csrftoken.htm:11 +#: modules/luci-base/ucode/template/csrftoken.ut:11 msgid "The submitted security token is invalid or already expired!" msgstr "¡El token de seguridad enviado no es válido o ya está vencido!" @@ -9077,8 +9143,8 @@ msgstr "" "mezclar las reglas de iptables y nftables, ya que puede dar lugar a un " "filtrado de tráfico incompleto." -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:746 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:778 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:817 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:849 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:130 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:179 msgid "There are no active leases" @@ -9088,8 +9154,8 @@ msgstr "No hay asignaciones activas" msgid "There are no changes to apply" msgstr "No hay cambios para aplicar" -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:70 -#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:62 +#: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/header.ut:58 +#: themes/luci-theme-openwrt-2020/ucode/template/themes/openwrt2020/header.ut:55 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:80 msgid "" "There is no password set on this router. Please configure a root password to " @@ -9112,7 +9178,6 @@ msgid "This does not look like a valid PEM file" msgstr "Esto no parece un archivo PEM válido" #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:454 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:16 msgid "" "This is a list of shell glob patterns for matching files and directories to " "include during sysupgrade. Modified files in /etc/config/ and certain other " @@ -9166,7 +9231,7 @@ msgstr "" "Esta es la dirección de punto final asignada por el broker del túnel, suele " "terminar con <code>...:2/64</code>" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:266 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:268 msgid "This is the only DHCP server in the local network." msgstr "Este es el único servidor DHCP en la red local." @@ -9254,8 +9319,8 @@ msgstr "Zona horaria" #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:440 msgid "" "To fully configure the local WireGuard interface from an existing (e.g. " -"provider supplied) configuration file, use the <strong><a class=\"full-" -"import\" href=\"#\">configuration import</a></strong> instead." +"provider supplied) configuration file, use the <strong><a class=\"full-import" +"\" href=\"#\">configuration import</a></strong> instead." msgstr "" "Para configurar completamente la interfaz local de WireGuard desde un " "archivo de configuración existente (p. ej., proporcionado por el proveedor), " @@ -9425,7 +9490,7 @@ msgstr "No se puede determinar la dirección IP externa" msgid "Unable to determine upstream interface" msgstr "No se puede determinar la interfaz ascendente" -#: modules/luci-base/luasrc/view/error404.htm:11 +#: modules/luci-base/ucode/template/error404.ut:12 msgid "Unable to dispatch" msgstr "Imposible repartir" @@ -9480,7 +9545,7 @@ msgstr "No se puede guardar el contenido: %s" msgid "Unable to verify PIN" msgstr "No se puede verificar el PIN" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:32 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:33 msgid "Unavailable Seconds (UAS)" msgstr "Segundos no disponibles (UAS)" @@ -9638,7 +9703,7 @@ msgstr "" "Al presionar \"Continuar\", las opciones de ifname cambiarán de nombre y la " "red se reiniciará para aplicar la configuración actualizada." -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:423 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:428 msgid "Upstream resolvers will be queried in the order of the resolv file." msgstr "" "Los resolutores ascendentes se consultarán en el orden del archivo resolv." @@ -9648,7 +9713,7 @@ msgstr "" msgid "Uptime" msgstr "Tiempo de actividad" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:344 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:349 msgid "Use <code>/etc/ethers</code>" msgstr "Usar <code>/etc/ethers</code>" @@ -9764,7 +9829,7 @@ msgstr "Usar certificados del sistema" msgid "Use system certificates for inner-tunnel" msgstr "Usar certificados del sistema para túnel interno" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:599 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:670 msgid "" "Use the <em>Add</em> Button to add a new lease entry. The <em>MAC address</" "em> identifies the host, the <em>IPv4 address</em> specifies the fixed " @@ -9826,11 +9891,11 @@ msgstr "Identificador de usuario" msgid "User key (PEM encoded)" msgstr "Clave de usuario (codificada PEM)" -#: modules/luci-base/luasrc/view/sysauth.htm:23 +#: modules/luci-base/ucode/template/sysauth.ut:23 #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:112 #: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:101 #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:56 -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/sysauth.htm:18 +#: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/sysauth.ut:13 msgid "Username" msgstr "Nombre de usuario" @@ -9913,7 +9978,7 @@ msgstr "VPNC (CISCO 3000 (y otros) VPN)" #: protocols/luci-proto-vti/htdocs/luci-static/resources/protocol/vti.js:10 msgid "VTI" -msgstr "" +msgstr "VTI" #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:10 msgid "VXLAN (RFC7348)" @@ -9928,7 +9993,7 @@ msgstr "Identificador de red VXLAN" msgid "VXLANv6 (RFC7348)" msgstr "VXLANv6 (RFC7348)" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:398 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:403 msgid "" "Validate DNS replies and cache DNSSEC data, requires upstream to support " "DNSSEC." @@ -9965,7 +10030,7 @@ msgstr "Proveedor" msgid "Vendor Class to send when requesting DHCP" msgstr "Clase de vendedor a enviar cuando solicite DHCP" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:403 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:408 msgid "Verify unsigned domain responses really come from unsigned domains." msgstr "" "Verifique que las respuestas de dominio sin firmar realmente provengan de " @@ -10044,6 +10109,10 @@ msgstr "Advertencia: ¡Hay cambios no guardados que se perderán al reiniciar!" msgid "Weak" msgstr "Débil" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:589 +msgid "Weight" +msgstr "Peso" + #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1029 msgid "" "When delegating prefixes to multiple downstreams, interfaces with a higher " @@ -10191,7 +10260,7 @@ msgstr "Red Wi-Fi desactivada" msgid "Wireless network is enabled" msgstr "Red Wi-Fi activada" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:278 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:280 msgid "Write received DNS queries to syslog." msgstr "Escribe las peticiones de DNS recibidas en el registro del sistema" @@ -10232,8 +10301,16 @@ msgstr "" "<strong>Advertencia: Si desactivas los scripts de inicio esenciales como " "\"network\", ¡Tu dispositivo podría volverse inaccesible!</strong>" -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:90 -#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:97 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:559 +msgid "You may add multiple records for the same Target." +msgstr "Puede agregar varios registros para el mismo objetivo." + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:596 +msgid "You may add multiple records for the same domain." +msgstr "Puede agregar varios registros para el mismo dominio." + +#: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/header.ut:78 +#: themes/luci-theme-material/ucode/template/themes/material/header.ut:92 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:73 msgid "" "You must enable JavaScript in your browser or LuCI will not work properly." @@ -10267,7 +10344,19 @@ msgstr "Configuración de ZRam" msgid "ZRam Size" msgstr "Tamaño de ZRam" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:449 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:558 +msgid "_proto: _tcp, _udp, _sctp, _quic, … ." +msgstr "_proto: _tcp, _udp, _sctp, _quic, … ." + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:557 +msgid "" +"_service: _sip, _ldap, _imap, _stun, _xmpp-client, … . (Note: while _http is " +"possible, no browsers support SRV records.)" +msgstr "" +"_service: _sip, _ldap, _imap, _stun, _xmpp-client, … . (Nota: aunque _http " +"es posible, ningún navegador admite registros SRV.)" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:454 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:152 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:163 msgid "any" @@ -10378,8 +10467,8 @@ msgstr "p. ej: --proxy 10.10.10.10" msgid "e.g: dump" msgstr "p. ej: vertedero" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:726 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:756 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:797 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:827 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:101 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:148 msgid "expired" @@ -10585,9 +10674,9 @@ msgid "" "<abbr title=\"Hypertext Transfer Protocol Secure\">HTTPS</abbr> network " "access." msgstr "" -"uHTTPd ofrece acceso a la red <abbr title=\"Hypertext Transfer " -"Protocol\">HTTP</abbr> o <abbr title=\"Hypertext Transfer Protocol " -"Secure\">HTTPS</abbr>." +"uHTTPd ofrece acceso a la red <abbr title=\"Hypertext Transfer Protocol" +"\">HTTP</abbr> o <abbr title=\"Hypertext Transfer Protocol Secure\">HTTPS</" +"abbr>." #: modules/luci-base/htdocs/luci-static/resources/validation.js:574 msgid "unique value" @@ -10597,9 +10686,9 @@ msgstr "valor único" msgid "unknown" msgstr "desconocido" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:456 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:724 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:754 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:461 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:795 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:825 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:99 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:146 msgid "unlimited" @@ -10815,6 +10904,21 @@ msgstr "sí" msgid "« Back" msgstr "« Volver" +#~ msgid "Back to configuration" +#~ msgstr "Volver a la configuración" + +#~ msgid "Close list..." +#~ msgstr "Cerrar lista..." + +#~ msgid "Internal Server Error" +#~ msgstr "Error interno del servidor" + +#~ msgid "No files found" +#~ msgstr "No se han encontrado archivos" + +#~ msgid "Sorry, the server encountered an unexpected error." +#~ msgstr "El servidor encontró un error inesperado." + #~ msgid "Do not forward queries that cannot be answered by public resolvers." #~ msgstr "" #~ "No reenviar consultas que no puedan ser respondidas por resolutores " @@ -10988,8 +11092,8 @@ msgstr "« Volver" #, fuzzy #~ msgid "" #~ "<ul style=\"list-style-type:none;\"> <li><strong>server mode</strong>: " -#~ "Router advertises itself as the default IPv6 gateway via <abbr " -#~ "title=\"Router Advertisement, ICMPv6 Type 134\">RA</abbr> messages (to " +#~ "Router advertises itself as the default IPv6 gateway via <abbr title=" +#~ "\"Router Advertisement, ICMPv6 Type 134\">RA</abbr> messages (to " #~ "<code>ff02::1</code>) and provides <abbr title=\"Prefix Delegation\">PD</" #~ "abbr> to downstream devices.</li> <li><strong>relay mode</strong>: Router " #~ "relays <abbr title=\"Router Advertisement, ICMPv6 Type 134\">RA</abbr> " @@ -11004,27 +11108,27 @@ msgstr "« Volver" #~ "predeterminada a través de mensajes <abbr title=\"Router Advertisement, " #~ "ICMPv6 Type 134\">RA</abbr> (to <code>ff02::1</code>) y proporciona <abbr " #~ "title=\"Prefix Delegation\">PD</abbr> a los dispositivos descendentes.</" -#~ "li> <li><strong>Modo relé</strong>: El enrutador reenvía <abbr " -#~ "title=\"Prefix Delegation\">PD</abbr> desde el flujo ascendente y " -#~ "extiende la configuración de la interfaz ascendente (p. Ej., WAN) y el " -#~ "prefijo a las interfaces descendentes (p. e., LAN).</li> <li><strong>Modo " -#~ "híbrido</strong>: El enrutador hace tanto servidor + retransmisión; " -#~ "extiende la configuración ascendente y el prefijo descendente, y usa " -#~ "<abbr title=\"Prefix Delegation\">PD</abbr> localmente.</li></ul>" +#~ "li> <li><strong>Modo relé</strong>: El enrutador reenvía <abbr title=" +#~ "\"Prefix Delegation\">PD</abbr> desde el flujo ascendente y extiende la " +#~ "configuración de la interfaz ascendente (p. Ej., WAN) y el prefijo a las " +#~ "interfaces descendentes (p. e., LAN).</li> <li><strong>Modo híbrido</" +#~ "strong>: El enrutador hace tanto servidor + retransmisión; extiende la " +#~ "configuración ascendente y el prefijo descendente, y usa <abbr title=" +#~ "\"Prefix Delegation\">PD</abbr> localmente.</li></ul>" #, fuzzy #~ msgid "" #~ "<ul style=\"list-style-type:none;\"> <li><strong>server mode</strong>: " -#~ "Router assigns IPs and delegates prefixes (<abbr title=\"Prefix " -#~ "Delegation\">PD</abbr>) to downstream interfaces.</li> <li><strong>relay " -#~ "mode</strong>: Router relays WAN interface config downstream. Helps " -#~ "support upstream links that lack <abbr title=\"Prefix Delegation\">PD</" -#~ "abbr>.</li> <li><strong>hybrid mode</strong>: Router does combination of " -#~ "server+relay.</li></ul>" +#~ "Router assigns IPs and delegates prefixes (<abbr title=\"Prefix Delegation" +#~ "\">PD</abbr>) to downstream interfaces.</li> <li><strong>relay mode</" +#~ "strong>: Router relays WAN interface config downstream. Helps support " +#~ "upstream links that lack <abbr title=\"Prefix Delegation\">PD</abbr>.</" +#~ "li> <li><strong>hybrid mode</strong>: Router does combination of server" +#~ "+relay.</li></ul>" #~ msgstr "" #~ "<ul style=\"list-style-type:none;\"> <li><strong>Modo servidor</strong>: " -#~ "El enrutador asigna direcciones IP y delega prefijos (<abbr " -#~ "title=\"Prefix Delegation\">PD</abbr>) a interfaces descendentes.</li> " +#~ "El enrutador asigna direcciones IP y delega prefijos (<abbr title=" +#~ "\"Prefix Delegation\">PD</abbr>) a interfaces descendentes.</li> " #~ "<li><strong>Modo relé</strong>: El enrutador retransmite la configuración " #~ "de la interfaz WAN en sentido descendente. Ayuda a soportar enlaces " #~ "ascendentes que carecen <abbr title=\"Prefix Delegation\">PD</abbr>.</li> " @@ -11059,10 +11163,10 @@ msgstr "« Volver" #~ msgstr "" #~ "El valor predeterminado es Sin estado + Con estado<br /> <ul style=\"list-" #~ "style-type:none;\"> <li><strong>Sin estado</strong>: El enrutador anuncia " -#~ "prefijos, el host usa <abbr title=\"Stateless Address Auto " -#~ "Config\">SLAAC</abbr> para autoasignar su propia dirección. Sin DHCPv6.</" -#~ "li> <li><strong>Sin estado + Con estado</strong>: SLAAC. Además, el " -#~ "enrutador asigna una dirección IPv6 a un host a través de DHCPv6.</li> " +#~ "prefijos, el host usa <abbr title=\"Stateless Address Auto Config" +#~ "\">SLAAC</abbr> para autoasignar su propia dirección. Sin DHCPv6.</li> " +#~ "<li><strong>Sin estado + Con estado</strong>: SLAAC. Además, el enrutador " +#~ "asigna una dirección IPv6 a un host a través de DHCPv6.</li> " #~ "<li><strong>Con estado solamente</strong>: Sin SLAAC. El enrutador asigna " #~ "una dirección IPv6 a un host a través de DHCPv6.</li></ul>" @@ -11117,9 +11221,9 @@ msgstr "« Volver" #~ "abbr>. El valor predeterminado es 0 (<code>0</code>). Mínimo 1280." #~ msgid "" -#~ "The maximum hops to be published in <abbr title=\"Router " -#~ "Advertisement\">RA</abbr> messages.<br />Default is 0 (<code>0</code>), " -#~ "meaning unspecified. Max 255." +#~ "The maximum hops to be published in <abbr title=\"Router Advertisement" +#~ "\">RA</abbr> messages.<br />Default is 0 (<code>0</code>), meaning " +#~ "unspecified. Max 255." #~ msgstr "" #~ "Los saltos máximos que se publicarán en los mensajes <abbr title=\"Router " #~ "Advertisement\">RA</abbr>.<br /> El valor predeterminado es 0 (<code>0</" @@ -11142,12 +11246,12 @@ msgstr "« Volver" #, fuzzy #~ msgid "" -#~ "The maximum hops to be published in <abbr title=\"Router " -#~ "Advertisement\">RA</abbr> messages.<br>Default is 0 (<code>0</code>), " -#~ "meaning unspecified. Max 255." +#~ "The maximum hops to be published in <abbr title=\"Router Advertisement" +#~ "\">RA</abbr> messages.<br>Default is 0 (<code>0</code>), meaning " +#~ "unspecified. Max 255." #~ msgstr "" -#~ "El número máximo de saltos que se publicarán en los mensajes <abbr " -#~ "title=\"Router Advertisement\">RA</abbr>.<br>El valor predeterminado es 0 " +#~ "El número máximo de saltos que se publicarán en los mensajes <abbr title=" +#~ "\"Router Advertisement\">RA</abbr>.<br>El valor predeterminado es 0 " #~ "(<code>0</code>), es decir, no especificado. Máximo 255." #~ msgid "Always announce default router" @@ -11418,8 +11522,8 @@ msgstr "« Volver" #~ msgid "" #~ "The filesystem that was used to format the memory (<abbr title=\"for " -#~ "example\">e.g.</abbr> <samp><abbr title=\"Third Extended " -#~ "Filesystem\">ext3</abbr></samp>)" +#~ "example\">e.g.</abbr> <samp><abbr title=\"Third Extended Filesystem" +#~ "\">ext3</abbr></samp>)" #~ msgstr "" #~ "El sistema de archivo que fue utilizado para dar formato a la memoria " #~ "(<abbr title=\"por ejemplo\">Ej.</abbr> <samp><abbr title=\"Third " @@ -11525,11 +11629,11 @@ msgstr "« Volver" #~ msgstr "Estallido del marco" #~ msgid "" -#~ "Further information about WireGuard interfaces and peers at <a " -#~ "href=\"http://wireguard.com\">wireguard.com</a>." +#~ "Further information about WireGuard interfaces and peers at <a href=" +#~ "\"http://wireguard.com\">wireguard.com</a>." #~ msgstr "" -#~ "Más información sobre las interfaces y los pares de WireGuard en <a " -#~ "href=\"http://wireguard.com\">wireguard.com</a>." +#~ "Más información sobre las interfaces y los pares de WireGuard en <a href=" +#~ "\"http://wireguard.com\">wireguard.com</a>." #~ msgid "Generic 802.11%s Wireless Controller" #~ msgstr "Controlador WiFi 802.11%s genérico" diff --git a/modules/luci-base/po/fi/base.po b/modules/luci-base/po/fi/base.po index ac4938af4f..8ad13b093f 100644 --- a/modules/luci-base/po/fi/base.po +++ b/modules/luci-base/po/fi/base.po @@ -227,6 +227,18 @@ msgstr "<abbr title=\"Router Advertisement\">RA</abbr> MTU" msgid "<abbr title=\"Router Advertisement\">RA</abbr>-Service" msgstr "<abbr title=\"Router Advertisement\">RA</abbr>-palvelu" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:294 +msgid "" +"<code>/#/</code> matches any domain. <code>/example.com/</code> returns " +"NXDOMAIN." +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:295 +msgid "" +"<code>/example.com/#</code> returns NULL addresses (<code>0.0.0.0</code> and " +"<code>::</code>) for example.com and its subdomains." +msgstr "" + #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:87 msgctxt "nft relational \">\" operator expression" msgid "<var>%s</var> greater than <strong>%s</strong>" @@ -387,7 +399,7 @@ msgstr "" msgid "ATM device number" msgstr "ATM-laitteen numero" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:36 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:37 msgid "ATU-C System Vendor ID" msgstr "ATU-C-järjestelmän toimittajan tunnus" @@ -397,7 +409,7 @@ msgstr "ATU-C-järjestelmän toimittajan tunnus" msgid "Absent Interface" msgstr "Puuttuva sovitin" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:320 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:325 msgid "Accept DNS queries only from hosts whose address is on a local subnet." msgstr "Rajoita DNS-palvelu aliverkkoihin joille tarjoamme DNS:ää." @@ -536,7 +548,7 @@ msgstr "Lisää esiintymä" msgid "Add key" msgstr "Lisää avain" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:410 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:415 msgid "Add local domain suffix to names served from hosts files." msgstr "" "Lisää paikallisen verkkotunnuksen pääte nimiin, jotka tarjotaan hosts-" @@ -559,11 +571,11 @@ msgstr "Lisää estolistalle" msgid "Add to Whitelist" msgstr "Lisää sallittujen listalle" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:367 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:372 msgid "Additional hosts files" msgstr "Hosts-tiedostot" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:417 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:422 msgid "Additional servers file" msgstr "Lisäpalvelimien tiedosto" @@ -593,7 +605,7 @@ msgstr "" msgid "Address to access local relay bridge" msgstr "Paikallisen välityssillan osoite" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:289 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:291 msgid "Addresses" msgstr "Osoitteet" @@ -626,7 +638,7 @@ msgstr "Elinaika" msgid "Aggregate Originator Messages" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:27 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:28 msgid "Aggregate Transmit Power (ACTATP)" msgstr "Yhteenlaskettu lähetysteho (ACTATP)" @@ -665,18 +677,18 @@ msgstr "Sovittimen alias" msgid "Alias of \"%s\"" msgstr "Kohteen %s alias" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:427 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:432 msgid "All servers" msgstr "Kaikki palvelimet" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:378 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:383 msgid "" "Allocate IP addresses sequentially, starting from the lowest available " "address." msgstr "" "Varaa IP-osoitteet alkaen pienimmästä käytettävissä olevasta osoitteesta" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:377 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:382 msgid "Allocate IPs sequentially" msgstr "Jaa IP:t järjestyksessä" @@ -705,7 +717,7 @@ msgstr "Salli vanhat 802.11b-nopeudet" msgid "Allow listed only" msgstr "Salli vain luetellut" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:306 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:311 msgid "Allow localhost" msgstr "Salli localhost" @@ -751,7 +763,7 @@ msgstr "Aina pois päältä (ydin: ei mitään)" msgid "Always on (kernel: default-on)" msgstr "Aina päällä (ydin: oletus-päällä)" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:538 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:543 msgid "Always send DHCP Options. Sometimes needed, with e.g. PXELinux." msgstr "" @@ -780,7 +792,7 @@ msgid "An optional, short description for this device" msgstr "Valinnainen, lyhyt laitteen kuvaus" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1484 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:20 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:21 msgid "Annex" msgstr "Annex" @@ -894,7 +906,7 @@ msgstr "Mikä tahansa paketti" msgid "Any zone" msgstr "Mikä tahansa vyöhyke" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:532 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:537 msgid "Apply DHCP Options to this net. (Empty = all clients)." msgstr "" @@ -988,11 +1000,11 @@ msgstr "Todennus" msgid "Authentication Type" msgstr "Todennuksen tyyppi" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:265 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:267 msgid "Authoritative" msgstr "Määräävä" -#: modules/luci-base/luasrc/view/sysauth.htm:17 +#: modules/luci-base/ucode/template/sysauth.ut:17 #: themes/luci-theme-bootstrap/htdocs/luci-static/resources/view/bootstrap/sysauth.js:11 msgid "Authorization Required" msgstr "Valtuutus vaaditaan" @@ -1063,7 +1075,7 @@ msgstr "Keskiarvo:" msgid "Avoid Bridge Loops" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:388 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:393 msgid "" "Avoid uselessly triggering dial-on-demand links (filters SRV/SOA records and " "names with underscores)." @@ -1098,10 +1110,6 @@ msgstr "Takaisin" msgid "Back to Overview" msgstr "Takaisin yleiskatsaukseen" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:48 -msgid "Back to configuration" -msgstr "Takaisin määritykseen" - #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:826 msgid "Back to peer configuration" msgstr "" @@ -1115,7 +1123,6 @@ msgid "Backup / Flash Firmware" msgstr "Varmuuskopioi / Kirjoita laiteohjelmisto" #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:351 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:12 msgid "Backup file list" msgstr "Varmuuskopioitavat tiedostot" @@ -1157,7 +1164,6 @@ msgid "Beacon Interval" msgstr "Merkkikehysten väli" #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:352 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:46 msgid "" "Below is the determined list of files to backup. It consists of changed " "configuration files marked by opkg, essential base files and the user " @@ -1172,7 +1178,7 @@ msgstr "" msgid "Bind NTP server" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:326 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:331 msgid "Bind dynamically to interfaces rather than wildcard address." msgstr "" "Yhdistä dynaamisesti sovittimiin yleisosoitteen sijasta (suositellaan linux-" @@ -1190,6 +1196,17 @@ msgstr "" msgid "Bind interface" msgstr "Yhdistä sovitin" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:595 +msgid "" +"Bind service records to a domain name: specify the location of services." +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:556 +msgid "" +"Bind service records to a domain name: specify the location of services. See " +"<a href=\"%s\">RFC2782</a>." +msgstr "" + #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:59 #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:64 #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:64 @@ -1292,6 +1309,10 @@ msgstr "CA-varmenne; jos tyhjä, se tallennetaan ensimmäisen yhteyden jälkeen. msgid "CLAT configuration failed" msgstr "CLAT-määritys epäonnistui" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:574 +msgid "CNAME or fqdn" +msgstr "" + #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/processes.js:72 msgid "CPU usage (%)" msgstr "Suorittimen käyttö (%)" @@ -1549,17 +1570,13 @@ msgstr "" "Sulje passiivinen yhteys määritetyn ajan kuluttua, käytä 0 pysyvän yhteyden " "luomiseen" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:49 -msgid "Close list..." -msgstr "Sulje luettelo ..." - #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:44 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:63 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2184 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:391 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:352 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:355 -#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:72 +#: themes/luci-theme-material/ucode/template/themes/material/header.ut:66 msgid "Collecting data..." msgstr "Kerätään tietoja…" @@ -1599,6 +1616,10 @@ msgstr "" msgid "Compute outgoing checksum (optional)." msgstr "Laske lähtevä tarkistussumma (valinnainen)." +#: protocols/luci-proto-nebula/htdocs/luci-static/resources/protocol/nebula.js:40 +msgid "Config File" +msgstr "" + #: modules/luci-base/htdocs/luci-static/resources/ui.js:4375 #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:454 msgid "Configuration" @@ -1638,8 +1659,8 @@ msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:764 msgid "" -"Configures the operation mode of the <abbr title=\"Router " -"Advertisement\">RA</abbr> service on this interface." +"Configures the operation mode of the <abbr title=\"Router Advertisement" +"\">RA</abbr> service on this interface." msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:879 @@ -1821,8 +1842,8 @@ msgstr "Mukautettu vilkkumisväli (ydin: ajastin)" #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/leds.js:59 msgid "" -"Customizes the behaviour of the device <abbr title=\"Light Emitting " -"Diode\">LED</abbr>s if possible." +"Customizes the behaviour of the device <abbr title=\"Light Emitting Diode" +"\">LED</abbr>s if possible." msgstr "" "Mukauta <abbr title = \"Light Emitting Diode\"> LED</abbr>-valojen " "toimintaa, jos mahdollista." @@ -1843,7 +1864,7 @@ msgstr "DAE-portti" msgid "DAE-Secret" msgstr "Dae-salaisuus" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:525 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:530 msgid "DHCP Options" msgstr "DHCP-asetukset" @@ -1883,11 +1904,11 @@ msgstr "DHCPv6-palvelu" msgid "DNS" msgstr "DNS" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:282 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:284 msgid "DNS forwardings" msgstr "DNS-edelleenvälitys" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:445 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:450 msgid "DNS query port" msgstr "" "<abbr title = \"Verkkotunnusten nimijärjestelmä\">DNS</abbr>-kyselyportti" @@ -1896,7 +1917,7 @@ msgstr "" msgid "DNS search domains" msgstr "DNS-hakutoimialueet" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:438 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:443 msgid "DNS server port" msgstr "" "<abbr title = \"Verkkotunnusten nimijärjestelmä\">DNS</abbr>-palvelinportti" @@ -1913,11 +1934,11 @@ msgstr "DNS-paino" msgid "DNS-Label / FQDN" msgstr "DNS-nimi / FQDN" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:397 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:402 msgid "DNSSEC" msgstr "DNSSEC" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:402 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:407 msgid "DNSSEC check unsigned" msgstr "DNSSEC tarkista allekirjoittamaton" @@ -1930,11 +1951,11 @@ msgid "DS-Lite AFTR address" msgstr "DS-Lite AFTR -osoite" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1481 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:44 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:45 msgid "DSL" msgstr "DSL" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:14 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:15 msgid "DSL Status" msgstr "DSL-tila" @@ -1947,12 +1968,12 @@ msgid "DTIM Interval" msgstr "DTIM-aikaväli" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:59 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:700 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:771 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:136 msgid "DUID" msgstr "DUID" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:21 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:22 msgid "Data Rate" msgstr "Tiedonsiirtonopeus" @@ -2156,8 +2177,8 @@ msgid "" "Disable <abbr title=\"Dynamic Host Configuration Protocol\">DHCP</abbr> for " "this interface." msgstr "" -"Poista tämän sovittimen <abbr title=\"Dynamic Host Configuration " -"Protocol\">DHCP</abbr> käytöstä." +"Poista tämän sovittimen <abbr title=\"Dynamic Host Configuration Protocol" +"\">DHCP</abbr> käytöstä." #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:174 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:375 @@ -2199,7 +2220,7 @@ msgstr "" msgid "Disassociate On Low Acknowledgement" msgstr "Poista heikon kuittauksen yhteydet" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:302 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:307 msgid "" "Discard upstream responses containing <a href=\"%s\">RFC1918</a> addresses." msgstr "Hylkää ulkoverkosta tulevat RFC1918-vastaukset." @@ -2245,7 +2266,7 @@ msgstr "Etäisyys kauimpaan verkon jäseneen metreinä." msgid "Distributed ARP Table" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:543 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:548 msgid "" "Dnsmasq instance to which this boot section is bound. If unspecified, the " "section is valid for all dnsmasq instances." @@ -2253,15 +2274,15 @@ msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:246 msgid "" -"Dnsmasq is a lightweight <abbr title=\"Dynamic Host Configuration " -"Protocol\">DHCP</abbr> server and <abbr title=\"Domain Name System\">DNS</" -"abbr> forwarder." +"Dnsmasq is a lightweight <abbr title=\"Dynamic Host Configuration Protocol" +"\">DHCP</abbr> server and <abbr title=\"Domain Name System\">DNS</abbr> " +"forwarder." msgstr "" -"Dnsmasq on yhdistetty <abbr title=\"Dynamic Host Configuration " -"Protocol\">DHCP</abbr>-palvelin ja <abbr title=\"Domain Name System\">DNS</" -"abbr>-välittäjä" +"Dnsmasq on yhdistetty <abbr title=\"Dynamic Host Configuration Protocol" +"\">DHCP</abbr>-palvelin ja <abbr title=\"Domain Name System\">DNS</abbr>-" +"välittäjä" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:414 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:419 msgid "Do not cache negative replies, e.g. for non-existent domains." msgstr "" "Älä tallenna välimuistiin negatiivisia vastauksia, esim. olemattomien " @@ -2275,17 +2296,17 @@ msgstr "" msgid "Do not create host route to peer (optional)." msgstr "Älä luo reittiä kohteelle (valinnainen)." -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:262 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:264 msgid "Do not forward DNS queries without dots or domain parts." msgstr "" "Älä lähetä <abbr title=\"Domain Name System\">DNS</abbr>-kyselyitä ilman " "<abbr title=\"Domain Name System\">DNS</abbr>-verkkotunnusta" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:383 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:388 msgid "Do not forward reverse lookups for local networks." msgstr "Älä välitä käänteisiä hakuja paikallisille verkoille" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:339 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:344 msgid "Do not listen on the specified interfaces." msgstr "Estä näiden sovittimien kuuntelu." @@ -2338,15 +2359,16 @@ msgstr "" msgid "Do you want to replace the current keys?" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:593 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:606 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:664 msgid "Domain" msgstr "Verkkotunnus" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:261 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:263 msgid "Domain required" msgstr "Vaadi verkkotunnus" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:311 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:316 msgid "Domain whitelist" msgstr "Sallitut verkkotunnukset" @@ -2591,7 +2613,7 @@ msgstr "Ota NTP-asiakas käyttöön" msgid "Enable Single DES" msgstr "Ota käyttöön yksittäinen DES" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:480 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:485 msgid "Enable TFTP server" msgstr "TFTP-palvelin käytössä" @@ -2609,9 +2631,9 @@ msgstr "Ota WPS-painike käyttöön, vaatii WPA(2)-PSK/WPA3-SAE" #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/uhttpd.js:14 msgid "" -"Enable automatic redirection of <abbr title=\"Hypertext Transfer " -"Protocol\">HTTP</abbr> requests to <abbr title=\"Hypertext Transfer Protocol " -"Secure\">HTTPS</abbr> port." +"Enable automatic redirection of <abbr title=\"Hypertext Transfer Protocol" +"\">HTTP</abbr> requests to <abbr title=\"Hypertext Transfer Protocol Secure" +"\">HTTPS</abbr> port." msgstr "" "Käytä automaattista uudelleenohjausta <abbr title=\"Hypertext Transfer " "Protocol\">HTTP</abbr>-pyynnöille <abbr title=\"Hypertext Transfer Protocol " @@ -2679,7 +2701,7 @@ msgstr "Lisää tuki multicast -liikenteelle (valinnainen)" msgid "Enable the DF (Don't Fragment) flag of the encapsulating packets." msgstr "Ota käyttöön kapselointipakettien DF (Don't Fragment) -lippu." -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:481 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:486 msgid "Enable the built-in single-instance TFTP server." msgstr "" @@ -2798,7 +2820,7 @@ msgstr "Virhe" msgid "Error getting PublicKey" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:29 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:30 msgid "Errored seconds (ES)" msgstr "Virheelliset sekunnit (ES)" @@ -2820,11 +2842,11 @@ msgstr "30 sekunnin välein (hidas, 0)" msgid "Every second (fast, 1)" msgstr "Joka sekunti (nopea, 1)" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:338 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:343 msgid "Exclude interfaces" msgstr "Älä huomioi sovittimia" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:307 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:312 msgid "" "Exempt <code>127.0.0.0/8</code> and <code>::1</code> from rebinding checks, " "e.g. for RBL services." @@ -2834,7 +2856,7 @@ msgstr "Salli ylävirran vastaukset alueella 127.0.0.0/8, esim. RBL-palveluille" msgid "Existing device" msgstr "Olemassa oleva laite" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:409 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:414 msgid "Expand hosts" msgstr "Laajenna palvelimet" @@ -2972,7 +2994,7 @@ msgstr "" msgid "File" msgstr "Tiedosto" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:418 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:423 msgid "" "File listing upstream resolvers, optionally domain-specific, e.g. " "<code>server=1.2.3.4</code>, <code>server=/domain/1.2.3.4</code>." @@ -2985,24 +3007,24 @@ msgstr "" msgid "File not accessible" msgstr "Tiedostoa ei voida lukea" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:349 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:354 msgid "File to store DHCP lease information." msgstr "" -"tiedosto, johon annetut <abbr title = \"Dynamic Host Configuration " -"Protocol\"> DHCP </abbr> -lainat tallennetaan" +"tiedosto, johon annetut <abbr title = \"Dynamic Host Configuration Protocol" +"\"> DHCP </abbr> -lainat tallennetaan" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:357 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:362 msgid "File with upstream resolvers." msgstr "" "paikallinen <abbr title = \"Verkkotunnusten nimijärjestelmä\">DNS</abbr>-" "tiedosto" #: modules/luci-base/htdocs/luci-static/resources/ui.js:2846 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:507 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:512 msgid "Filename" msgstr "Tiedostonimi" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:493 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:498 msgid "Filename of the boot image advertised to clients." msgstr "Asiakkaille mainostetun käynnistysnäköistiedoston tiedostonimi" @@ -3011,11 +3033,11 @@ msgstr "Asiakkaille mainostetun käynnistysnäköistiedoston tiedostonimi" msgid "Filesystem" msgstr "Tiedostojärjestelmä" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:382 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:387 msgid "Filter private" msgstr "Suodata yksityinen" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:387 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:392 msgid "Filter useless" msgstr "Suodata hyödytön" @@ -3081,7 +3103,7 @@ msgstr "Laiteohjelmisto-tiedosto" msgid "Firmware Version" msgstr "Laiteohjelmiston versio" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:446 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:451 msgid "Fixed source port for outbound DNS queries." msgstr "Kiinteä lähdeportti lähteville DNS-kyselyille." @@ -3107,7 +3129,7 @@ msgstr "Flash-toiminnot" msgid "Flashing…" msgstr "Kirjoitetaan laiteohjelmistoa…" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:537 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:542 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:686 msgid "Force" msgstr "Pakota" @@ -3152,16 +3174,16 @@ msgstr "Pakota päivitys" msgid "Force use of NAT-T" msgstr "Pakoita NAT-T käyttöön" -#: modules/luci-base/luasrc/view/csrftoken.htm:8 +#: modules/luci-base/ucode/template/csrftoken.ut:8 msgid "Form token mismatch" msgstr "Lomakkeen tunnussanoman ristiriita" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:919 msgid "" -"Forward <abbr title=\"Neighbour Discovery Protocol\">NDP</abbr> <abbr " -"title=\"Neighbour Solicitation, Type 135\">NS</abbr> and <abbr " -"title=\"Neighbour Advertisement, Type 136\">NA</abbr> messages between the " -"designated master interface and downstream interfaces." +"Forward <abbr title=\"Neighbour Discovery Protocol\">NDP</abbr> <abbr title=" +"\"Neighbour Solicitation, Type 135\">NS</abbr> and <abbr title=\"Neighbour " +"Advertisement, Type 136\">NA</abbr> messages between the designated master " +"interface and downstream interfaces." msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:770 @@ -3181,7 +3203,7 @@ msgid "" "downstream interfaces." msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:28 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:29 msgid "Forward Error Correction Seconds (FECS)" msgstr "Välitettävien virheenkorjaus sekunnit (FECS)" @@ -3340,15 +3362,15 @@ msgstr "Yleiset asetukset" msgid "Global network options" msgstr "Yleiset verkkoasetukset" -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:82 -#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:89 -#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:74 +#: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/header.ut:70 +#: themes/luci-theme-material/ucode/template/themes/material/header.ut:84 +#: themes/luci-theme-openwrt-2020/ucode/template/themes/openwrt2020/header.ut:67 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:92 msgid "Go to firmware upgrade..." msgstr "Siirry laiteohjelmiston päivitykseen..." -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:72 -#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:64 +#: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/header.ut:60 +#: themes/luci-theme-openwrt-2020/ucode/template/themes/openwrt2020/header.ut:57 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:82 msgid "Go to password configuration..." msgstr "Siirry salasanan määritykseen ..." @@ -3489,7 +3511,7 @@ msgstr "HTTP(S)-pääsy" msgid "Hang Up" msgstr "Katkaise" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:33 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:34 msgid "Header Error Code Errors (HEC)" msgstr "Otsikon virhekoodit (HEC)" @@ -3542,7 +3564,7 @@ msgstr "Palvelin" msgid "Host expiry timeout" msgstr "Palvelimen vanhenemisaika" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:508 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:513 msgid "Host requests this filename from the boot server." msgstr "Isäntä pyytää tätä tiedostonimeä käynnistyspalvelimelta." @@ -3551,8 +3573,8 @@ msgid "Host-Uniq tag content" msgstr "Host-Uniq-tunnisteen sisältö" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:38 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:559 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:607 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:630 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:678 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/10_system.js:54 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:87 #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:135 @@ -3567,7 +3589,7 @@ msgstr "Asiakastunnus, joka lähetetään DHCP:tä pyydettäessä" msgid "Hostnames" msgstr "Isäntänimet" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:551 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:622 msgid "" "Hostnames are used to bind a domain name to an IP address. This setting is " "redundant for hostnames already configured with static leases, but it can be " @@ -3631,7 +3653,7 @@ msgstr "IP-osoitteet" msgid "IP Protocol" msgstr "IP-protokolla" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:258 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:260 msgid "IP Sets" msgstr "" @@ -3639,7 +3661,7 @@ msgstr "" msgid "IP Type" msgstr "IP-tyyppi" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:563 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:634 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:178 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:204 msgid "IP address" @@ -3665,15 +3687,15 @@ msgctxt "nft meta l4proto" msgid "IP protocol" msgstr "IP-protokolla" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:589 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:660 msgid "IP set" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:295 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:300 msgid "IP sets" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:432 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:437 msgid "IPs to override with NXDOMAIN" msgstr "Väärän NX-alueen ohitus" @@ -3714,7 +3736,7 @@ msgstr "IPv4-ylävirta" #: modules/luci-base/htdocs/luci-static/resources/protocol/static.js:178 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:39 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:665 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:736 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:88 #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:164 msgid "IPv4 address" @@ -3885,7 +3907,7 @@ msgstr "IPv6-lähdereititys" msgid "IPv6 suffix" msgstr "IPv6-pääte" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:706 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:777 msgid "IPv6 suffix (hex)" msgstr "" "<abbr title=\"Internet Protocol Version 6\"> IPv6</abbr>-jälkiliite (heksa)" @@ -3978,19 +4000,19 @@ msgstr "Jos valitsematta, mainostettuja DNS-palvelinosoitteita ei huomioida" #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:340 msgid "" "If your physical memory is insufficient unused data can be temporarily " -"swapped to a swap-device resulting in a higher amount of usable <abbr " -"title=\"Random Access Memory\">RAM</abbr>. Be aware that swapping data is a " -"very slow process as the swap-device cannot be accessed with the high " -"datarates of the <abbr title=\"Random Access Memory\">RAM</abbr>." +"swapped to a swap-device resulting in a higher amount of usable <abbr title=" +"\"Random Access Memory\">RAM</abbr>. Be aware that swapping data is a very " +"slow process as the swap-device cannot be accessed with the high datarates " +"of the <abbr title=\"Random Access Memory\">RAM</abbr>." msgstr "" "Jos fyysistä muistia ei ole riittävästi vapaana, käyttämättömiä " "muistialueita voidaan väliaikaisesti siirtää swap-vaihtolaitteeseen, jolloin " "näennäisesti saadaan enemmän käytettävissä olevaa <abbr title=\"Random " "Access Memory\">RAM</abbr>-muistia. Huomaa, että datanvaihto on erittäin " -"hidas prosessi, koska vaihtolaite ei toimi <abbr title=\"Random Access " -"Memory\">RAM</abbr>-muistin nopeudella." +"hidas prosessi, koska vaihtolaite ei toimi <abbr title=\"Random Access Memory" +"\">RAM</abbr>-muistin nopeudella." -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:363 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:368 msgid "Ignore <code>/etc/hosts</code>" msgstr "Ohita <code>/etc/hosts</code>" @@ -3998,7 +4020,7 @@ msgstr "Ohita <code>/etc/hosts</code>" msgid "Ignore interface" msgstr "Älä huomioi sovitinta" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:352 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:357 msgid "Ignore resolv file" msgstr "Ohita resolv-tiedosto" @@ -4046,7 +4068,7 @@ msgid "" "order to avoid broadcast loops that can bring the entire LAN to a standstill." msgstr "" -#: modules/luci-base/luasrc/view/csrftoken.htm:13 +#: modules/luci-base/ucode/template/csrftoken.ut:13 msgid "" "In order to prevent unauthorized access to the system, your request has been " "blocked. Click \"Continue »\" below to return to the previous page." @@ -4157,7 +4179,7 @@ msgstr "Sisäinen varmennerajoitus (jokerimerkki)" msgid "Install protocol extensions..." msgstr "Asenna protokollalaajennukset..." -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:542 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:547 msgid "Instance" msgstr "Instanssi" @@ -4246,10 +4268,6 @@ msgstr "Sovittimet" msgid "Internal" msgstr "Sisäinen" -#: modules/luci-base/luasrc/view/error500.htm:8 -msgid "Internal Server Error" -msgstr "Sisäinen palvelinvirhe" - #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:285 msgid "Interval For Sending Learning Packets" msgstr "Oppimispakettien lähetysväli" @@ -4321,8 +4339,8 @@ msgstr "Virheellinen komento" msgid "Invalid hexadecimal value" msgstr "Virheellinen heksadesimaaliarvo" -#: modules/luci-base/luasrc/view/sysauth.htm:12 -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/sysauth.htm:37 +#: modules/luci-base/ucode/template/sysauth.ut:12 +#: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/sysauth.ut:32 msgid "Invalid username and/or password! Please try again." msgstr "Virheellinen käyttäjätunnus tai salasana! Yritä uudelleen." @@ -4346,8 +4364,8 @@ msgstr "" "Näyttää siltä, että yrität kirjoittaa levykuvaa, joka ei sovi flash-" "muistiin, tarkista levykuvatiedosto!" -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:89 -#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:96 +#: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/header.ut:77 +#: themes/luci-theme-material/ucode/template/themes/material/header.ut:91 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:72 msgid "JavaScript required!" msgstr "JavaScript vaaditaan!" @@ -4479,11 +4497,17 @@ msgstr "Kieli" msgid "Language and Style" msgstr "Kieli ja tyyli" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:560 +msgid "" +"Larger weights (of the same prio) are given a proportionately higher " +"probability of being selected." +msgstr "" + #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:575 msgid "Last member interval" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:23 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:24 msgid "Latency" msgstr "Viive" @@ -4499,11 +4523,11 @@ msgstr "" msgid "Learn routes" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:348 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:353 msgid "Lease file" msgstr "Lainatiedosto" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:697 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:768 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:679 msgid "Lease time" msgstr "Laina-aika" @@ -4550,19 +4574,19 @@ msgstr "Tietoja:" msgid "Limit" msgstr "Raja" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:24 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:25 msgid "Line Attenuation (LATN)" msgstr "Linjan vaimennus (LATN)" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:18 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:19 msgid "Line Mode" msgstr "Linja-tila" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:17 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:18 msgid "Line State" msgstr "Linjatila" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:19 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:20 msgid "Line Uptime" msgstr "Linjan käyttöaika" @@ -4583,13 +4607,13 @@ msgctxt "nft @ll,off,len" msgid "Link layer header bits %d-%d" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:433 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:438 msgid "List of IP addresses to convert into NXDOMAIN responses." msgstr "" "Luettelo palvelimista, jotka toimittavat vääriä NX-verkkotunnuksen tuloksia" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:296 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:581 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:301 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:652 msgid "List of IP sets to populate with the specified domain IPs." msgstr "" @@ -4626,15 +4650,11 @@ msgstr "" msgid "List of SSH key files for auth" msgstr "Luettelo autentikoinnin SSH-avaintiedostoista" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:312 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:317 msgid "List of domains to allow RFC1918 responses for." msgstr "Luettelo verkkotunnuksista, joille sallitaan RFC1918-vastaukset" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:290 -msgid "List of domains to force to an IP address." -msgstr "Lista verkkoalueista sekä käytettävistä IP-osoitteista." - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:283 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:285 msgid "List of upstream resolvers to forward queries to." msgstr "" "Luettelo <abbr title=\"Domain Name System\"> DNS </abbr> -palvelimista, " @@ -4644,7 +4664,7 @@ msgstr "" msgid "Listen Port" msgstr "Kuunteluportti" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:332 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:337 msgid "Listen interfaces" msgstr "Kuuntelevat sovittimet" @@ -4653,7 +4673,7 @@ msgid "Listen only on the given interface or, if unspecified, on all" msgstr "" "Kuuntele vain määritetyissä sovittimissa tai kaikissa jos määrittelemättä" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:333 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:338 msgid "" "Listen only on the specified interfaces, and loopback if not excluded " "explicitly." @@ -4663,7 +4683,7 @@ msgstr "Rajoita kuuntelu näihin sovittimiin ja sisäiseen sovittimeen." msgid "ListenPort setting is invalid" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:439 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:444 msgid "Listening port for inbound DNS queries." msgstr "Saapuvien DNS-kyselyiden kuunteluportti" @@ -4690,9 +4710,9 @@ msgid "Loading directory contents…" msgstr "Ladataan hakemiston sisältöä…" #: modules/luci-base/htdocs/luci-static/resources/luci.js:1942 -#: modules/luci-base/luasrc/view/view.htm:4 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:12 -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/sysauth.htm:45 +#: modules/luci-base/ucode/template/view.ut:4 +#: modules/luci-mod-status/ucode/template/admin_status/index.ut:12 +#: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/sysauth.ut:40 msgid "Loading view…" msgstr "Ladataan näkymää…" @@ -4750,20 +4770,20 @@ msgstr "Paikallinen aika" msgid "Local ULA" msgstr "Paikallinen ULA" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:273 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:275 msgid "Local domain" msgstr "Paikallinen verkkotunnus" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:274 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:276 msgid "Local domain suffix appended to DHCP names and hosts file entries." msgstr "" "DHCP-nimiin ja hosts-tiedoston kohteisiin liitettävä paikallinen verkkotunnus" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:269 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:271 msgid "Local server" msgstr "Paikallinen palvelin" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:319 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:324 msgid "Local service only" msgstr "Palvele vain paikallisesti" @@ -4771,7 +4791,7 @@ msgstr "Palvele vain paikallisesti" msgid "Local wireguard key" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:392 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:397 msgid "Localise queries" msgstr "Lokalisoi kyselyt" @@ -4783,7 +4803,7 @@ msgstr "Lukitse BSSID:hen" msgid "Log output level" msgstr "Lokin tulostustaso" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:277 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:279 msgid "Log queries" msgstr "Lokikyselyt" @@ -4809,8 +4829,8 @@ msgstr "" msgid "Logical network to which the tunnel will be added (bridged) (optional)." msgstr "Looginen verkko, johon tunneli lisätään (sillataan) (valinnainen)." -#: modules/luci-base/luasrc/view/sysauth.htm:38 -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/sysauth.htm:41 +#: modules/luci-base/ucode/template/sysauth.ut:38 +#: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/sysauth.ut:36 msgid "Login" msgstr "Kirjaudu sisään" @@ -4822,7 +4842,7 @@ msgstr "Kirjaudu ulos" msgid "Loose filtering" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:31 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:32 msgid "Loss of Signal Seconds (LOSS)" msgstr "Signaalin menetys sekuntia (LOSS)" @@ -4830,6 +4850,10 @@ msgstr "Signaalin menetys sekuntia (LOSS)" msgid "Lowest leased address as offset from the network address." msgstr "Alin lainattu osoite verkko-osoitteesta laskettuna." +#: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/footer.ut:12 +msgid "Lua compatibility mode active" +msgstr "" + #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:48 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:83 msgid "MAC" @@ -4854,7 +4878,7 @@ msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:591 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:40 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:619 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:690 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1164 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2177 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:56 @@ -4913,6 +4937,10 @@ msgstr "MII-väli" msgid "MTU" msgstr "MTU" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:259 +msgid "MX" +msgstr "" + #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:303 msgid "" "Make sure to clone the root filesystem using something like the commands " @@ -4939,23 +4967,23 @@ msgstr "Master" msgid "Max <abbr title=\"Router Advertisement\">RA</abbr> interval" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:22 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:23 msgid "Max. Attainable Data Rate (ATTNDR)" msgstr "Maks. Saavutettavissa oleva tiedonsiirtonopeus (ATTNDR)" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:452 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:457 msgid "Max. DHCP leases" msgstr "" "<abbr title = \"maximal\"> Max. </abbr> <abbr title = \"Dynamic Host " "Configuration Protocol\"> DHCP </abbr> laina" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:459 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:464 msgid "Max. EDNS0 packet size" msgstr "" "<abbr title = \"maximal\"> Max. </abbr> <abbr title = \"Domain Name System -" "laajennusmekanismit\"> EDNS0 </abbr> paketin koko" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:466 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:471 msgid "Max. concurrent queries" msgstr "<abbr title = \"maximal\"> Max. </abbr> samanaikaiset kyselyt" @@ -4967,15 +4995,15 @@ msgstr "Enimmäisikä" msgid "Maximum allowed Listen Interval" msgstr "Suurin sallittu kuunteluväli" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:453 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:458 msgid "Maximum allowed number of active DHCP leases." msgstr "Aktiivisten DHCP-lainojen sallittu enimmäismäärä" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:467 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:472 msgid "Maximum allowed number of concurrent DNS queries." msgstr "Samanaikaisten DNS-kyselyiden suurin sallittu määrä" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:460 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:465 msgid "Maximum allowed size of EDNS0 UDP packets." msgstr "EDNS.0 UDP -pakettien suurin sallittu koko" @@ -5002,7 +5030,7 @@ msgstr "" msgid "Maximum transmit power" msgstr "Suurin lähetysteho" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:389 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:394 msgid "May prevent VoIP or other services from working." msgstr "" @@ -5320,11 +5348,15 @@ msgstr "Uuden verkon nimi" msgid "Name of the tunnel device" msgstr "" -#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:46 +#: themes/luci-theme-openwrt-2020/ucode/template/themes/openwrt2020/header.ut:39 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:50 msgid "Navigation" msgstr "Siirtyminen" +#: protocols/luci-proto-nebula/htdocs/luci-static/resources/protocol/nebula.js:10 +msgid "Nebula Network" +msgstr "" + #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:653 msgid "Neighbour cache validity" msgstr "" @@ -5360,7 +5392,7 @@ msgstr "Verkon apuohjelmat" msgid "Network address" msgstr "Verkon osoite" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:492 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:497 msgid "Network boot image" msgstr "Verkon käynnistyskuva" @@ -5400,7 +5432,7 @@ msgstr "" msgid "Network interface" msgstr "Sovitin" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:531 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:536 msgid "Network-ID" msgstr "" @@ -5408,7 +5440,7 @@ msgstr "" msgid "Never" msgstr "Ei ikinä" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:270 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:272 msgid "" "Never forward matching domains and subdomains, resolve from DHCP or hosts " "files only." @@ -5458,9 +5490,9 @@ msgstr "Ei NAT-T:tä" msgid "No RX signal" msgstr "Ei RX-signaalia" -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:80 -#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:87 -#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:72 +#: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/header.ut:68 +#: themes/luci-theme-material/ucode/template/themes/material/header.ut:82 +#: themes/luci-theme-openwrt-2020/ucode/template/themes/openwrt2020/header.ut:65 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:90 msgid "" "No changes to settings will be stored and are lost after rebooting. This " @@ -5502,10 +5534,6 @@ msgstr "" msgid "No entries in this directory" msgstr "Tässä hakemistossa ei ole merkintöjä" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:82 -msgid "No files found" -msgstr "Tiedostoja ei löytynyt" - #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:833 msgid "" "No fixed interface listening port defined, peers might not be able to " @@ -5541,7 +5569,7 @@ msgstr "Enempää orjia ei ole saatavilla" msgid "No more slaves available, can not save interface" msgstr "Ei enempää orjia saatavilla, sovitinta ei voi tallentaa" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:413 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:418 msgid "No negative cache" msgstr "Ei negatiivista välimuistia" @@ -5549,8 +5577,8 @@ msgstr "Ei negatiivista välimuistia" msgid "No nftables ruleset loaded." msgstr "" -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:69 -#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:61 +#: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/header.ut:57 +#: themes/luci-theme-openwrt-2020/ucode/template/themes/openwrt2020/header.ut:54 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:79 msgid "No password set!" msgstr "Salasanaa ei ole asetettu!" @@ -5590,7 +5618,7 @@ msgstr "Vyöhykettä ei ole määritetty" msgid "Noise" msgstr "Kohina" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:26 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:27 msgid "Noise Margin (SNR)" msgstr "Kohinasuhde (SNR)" @@ -5598,11 +5626,11 @@ msgstr "Kohinasuhde (SNR)" msgid "Noise:" msgstr "Kohina:" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:34 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:35 msgid "Non Pre-emptive CRC errors (CRC_P)" msgstr "Keskeytyksettömät CRC-virheet (CRC_P)" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:325 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:330 msgid "Non-wildcard" msgstr "Ei-yleismerkki" @@ -5617,7 +5645,7 @@ msgstr "Ei mikään" msgid "Normal" msgstr "Normaali" -#: modules/luci-base/luasrc/view/error404.htm:8 +#: modules/luci-base/ucode/template/error404.ut:9 msgid "Not Found" msgstr "Ei löydy" @@ -5669,7 +5697,7 @@ msgstr "Nslookup" msgid "Number of IGMP membership reports" msgstr "IGMP-jäsenraporttien määrä" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:474 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:479 msgid "Number of cached DNS entries, 10000 is maximum, 0 is no caching." msgstr "" "Välimuistissa olevien DNS-merkintöjen määrä (max on 10000, 0 poistaa " @@ -5720,7 +5748,7 @@ msgstr "Ylöstulon viive" msgid "On-link" msgstr "Reitti aina ylhäällä" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:672 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:743 msgid "One of hostname or MAC address must be specified!" msgstr "Palvelinnimi tai MAC-osoite on määritettävä!" @@ -5758,7 +5786,6 @@ msgid "Open iptables rules overview…" msgstr "" #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:472 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:19 msgid "Open list..." msgstr "Avaa lista..." @@ -5914,18 +5941,23 @@ msgstr "Valinnainen. Lähtevien ja saapuvien pakettien UDP-portti." msgid "Options" msgstr "Valinnat" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:526 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:531 msgid "" "Options for the Network-ID. (Note: needs also Network-ID.) E.g. " -"\"<code>42,192.168.1.4</code>\" for NTP server, \"<code>3,192.168.4.4</" -"code>\" for default route. <code>0.0.0.0</code> means \"the address of the " -"system running dnsmasq\"." +"\"<code>42,192.168.1.4</code>\" for NTP server, \"<code>3,192.168.4.4</code>" +"\" for default route. <code>0.0.0.0</code> means \"the address of the system " +"running dnsmasq\"." msgstr "" #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:125 msgid "Options:" msgstr "Valinnat:" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:584 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:616 +msgid "Ordinal: lower comes first." +msgstr "" + #: protocols/luci-proto-batman-adv/htdocs/luci-static/resources/protocol/batadv.js:55 msgid "Originator Interval" msgstr "" @@ -6199,13 +6231,13 @@ msgctxt "MACVLAN mode" msgid "Pass-through (Mirror physical device to single MAC VLAN)" msgstr "" -#: modules/luci-base/luasrc/view/sysauth.htm:29 +#: modules/luci-base/ucode/template/sysauth.ut:29 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1690 #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:51 #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:114 #: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:103 #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:58 -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/sysauth.htm:24 +#: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/sysauth.ut:19 msgid "Password" msgstr "Salasana" @@ -6376,7 +6408,7 @@ msgstr "Latenssi" msgid "Pkts." msgstr "Paket." -#: modules/luci-base/luasrc/view/sysauth.htm:19 +#: modules/luci-base/ucode/template/sysauth.ut:19 msgid "Please enter your username and password." msgstr "Anna käyttäjätunnus ja salasana." @@ -6393,6 +6425,7 @@ msgctxt "Chain hook policy" msgid "Policy: <strong>%h</strong> (%h)" msgstr "Käytäntö: <strong>%h</strong> (%h)" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:579 #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/dropbear.js:21 msgid "Port" msgstr "Portti" @@ -6409,11 +6442,11 @@ msgstr "Portin tila:" msgid "Potential negation of: %s" msgstr "Mahdollinen kieltäytyminen:%s" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:37 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:38 msgid "Power Management Mode" msgstr "Virranhallintatila" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:35 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:36 msgid "Pre-emptive CRC errors (CRCP_P)" msgstr "Keskeyttävät CRC-virheet (CRC_P)" @@ -6492,6 +6525,8 @@ msgstr "" "(aina, 0)" #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:508 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:584 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:616 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:129 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:197 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:223 @@ -6612,7 +6647,7 @@ msgstr "QMI Cellular" msgid "Quality" msgstr "Laatu" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:428 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:433 msgid "Query all available upstream resolvers." msgstr "" "Käytä kaikkia määriteltyjä<abbr title=\"Domain Name System\">DNS</abbr> -" @@ -6698,7 +6733,7 @@ msgstr "" "Raa'at heksakoodatut tavut. Jätä tyhjäksi, ellei palveluntarjoajasi vaadi " "tätä" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:345 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:350 msgid "Read <code>/etc/ethers</code> to configure the DHCP server." msgstr "Lue <code>/etc/ethers</code> määrittääksesi DHCP-palvelin" @@ -6714,7 +6749,7 @@ msgstr "Reaaliaikaiset kaaviot" msgid "Reassociation Deadline" msgstr "Uudelleenyhdistämisen määräaika" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:301 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:306 msgid "Rebind protection" msgstr "Rebind-suoja" @@ -6799,6 +6834,7 @@ msgid "" msgstr "" #: modules/luci-compat/luasrc/model/network/proto_relay.lua:153 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:611 #: protocols/luci-proto-relay/htdocs/luci-static/resources/protocol/relay.js:39 msgid "Relay" msgstr "Välitys" @@ -6890,6 +6926,10 @@ msgstr "" msgid "Required. Base64-encoded private key for this interface." msgstr "Tarvitaan. Tämän liittymän Base64-koodattu yksityinen avain." +#: protocols/luci-proto-nebula/htdocs/luci-static/resources/protocol/nebula.js:40 +msgid "Required. Path to the .yml config file for this interface." +msgstr "" + #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:587 msgid "Required. Public key of the WireGuard peer." msgstr "" @@ -6971,7 +7011,7 @@ msgid "Reselection policy for primary slave" msgstr "Ensisijaisen orjan uudelleenvalintakäytäntö" #: modules/luci-base/htdocs/luci-static/resources/luci.js:2197 -#: modules/luci-base/luasrc/view/sysauth.htm:39 +#: modules/luci-base/ucode/template/sysauth.ut:39 #: modules/luci-compat/luasrc/view/cbi/delegator.htm:17 #: modules/luci-compat/luasrc/view/cbi/footer.htm:30 #: modules/luci-compat/luasrc/view/cbi/simpleform.htm:66 @@ -6990,10 +7030,14 @@ msgstr "Palauta oletusasetuksiin" msgid "Resolv and Hosts Files" msgstr "Resolv- ja Hosts-tiedostot" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:356 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:361 msgid "Resolv file" msgstr "Resolve-tiedosto" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:292 +msgid "Resolve specified FQDNs to an IP." +msgstr "Lista verkkoalueista sekä käytettävistä IP-osoitteista." + #: modules/luci-base/htdocs/luci-static/resources/rpc.js:405 msgid "Resource not found" msgstr "Resurssia ei löytynyt" @@ -7020,7 +7064,7 @@ msgstr "Palauta" msgid "Restore backup" msgstr "Palauta varmuuskopio" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:393 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:398 msgid "" "Return answers to DNS queries matching the subnet from which the query was " "received if multiple IPs are available." @@ -7108,7 +7152,7 @@ msgstr "" msgid "Robustness" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:486 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:491 msgid "" "Root directory for files served via TFTP. <em>Enable TFTP server</em> and " "<em>TFTP server root</em> turn on the TFTP server and serve files from " @@ -7213,6 +7257,11 @@ msgstr "SHA256" msgid "SNR" msgstr "SNR" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:258 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:569 +msgid "SRV" +msgstr "" + #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/dropbear.js:10 #: modules/luci-mod-system/root/usr/share/luci/menu.d/luci-mod-system.json:38 msgid "SSH Access" @@ -7357,11 +7406,11 @@ msgstr "Lähetä tämän laitteen nimi" msgid "Server" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:519 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:524 msgid "Server address" msgstr "Palvelimen osoite" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:513 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:518 msgid "Server name" msgstr "Palvelimen nimi" @@ -7449,7 +7498,7 @@ msgstr "Asetukset" msgid "Setup routes for proxied IPv6 neighbours." msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:30 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:31 msgid "Severely Errored Seconds (SES)" msgstr "Severely Errored Seconds (SES)" @@ -7463,7 +7512,6 @@ msgid "Short Preamble" msgstr "Lyhyt johdanto-osa" #: 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 msgid "Show current backup file list" msgstr "Näytä nykyinen varmuuskopiotiedostoluettelo" @@ -7497,7 +7545,7 @@ msgstr "Signaali" msgid "Signal / Noise" msgstr "Signaali / Kohina" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:25 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:26 msgid "Signal Attenuation (SATN)" msgstr "Signaalin vaimennus (SATN)" @@ -7514,7 +7562,7 @@ msgstr "Signaali:" msgid "Size" msgstr "Koko" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:473 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:478 msgid "Size of DNS query cache" msgstr "DNS-kyselyvälimuistin koko" @@ -7531,12 +7579,12 @@ msgstr "Ohita" msgid "Skip from backup files that are equal to those in /rom" msgstr "" -#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:42 +#: themes/luci-theme-openwrt-2020/ucode/template/themes/openwrt2020/header.ut:35 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:46 msgid "Skip to content" msgstr "Siirry sisältöön" -#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:41 +#: themes/luci-theme-openwrt-2020/ucode/template/themes/openwrt2020/header.ut:34 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:45 msgid "Skip to navigation" msgstr "Siirry navigointiin" @@ -7554,14 +7602,10 @@ msgstr "Ohjelmisto-VLAN" msgid "Some fields are invalid, cannot save values!" msgstr "Jotkin kentät eivät kelpaa, arvoja ei voi tallentaa!" -#: modules/luci-base/luasrc/view/error404.htm:9 +#: modules/luci-base/ucode/template/error404.ut:10 msgid "Sorry, the object you requested was not found." msgstr "Pahus, pyytämääsi objektia ei löytynyt." -#: modules/luci-base/luasrc/view/error500.htm:9 -msgid "Sorry, the server encountered an unexpected error." -msgstr "Pahus, palvelin kohtasi odottamattoman virheen." - #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:442 msgid "" "Sorry, there is no sysupgrade support present; a new firmware image must be " @@ -7599,7 +7643,7 @@ msgctxt "nft ip sport" msgid "Source port" msgstr "Lähdeportti" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:500 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:505 msgid "" "Special <abbr title=\"Preboot eXecution Environment\">PXE</abbr> boot " "options for Dnsmasq." @@ -8018,7 +8062,7 @@ msgstr "Pysyvät lainat" msgid "Static address" msgstr "Staattinen osoite" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:598 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:669 msgid "" "Static leases are used to assign fixed IP addresses and symbolic hostnames " "to DHCP clients. They are also required for non-dynamic interface " @@ -8034,7 +8078,7 @@ msgstr "Aseman käyttämättömyysraja" #: modules/luci-base/root/usr/share/luci/menu.d/luci-base.json:16 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:541 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:929 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:9 +#: modules/luci-mod-status/ucode/template/admin_status/index.ut:9 msgid "Status" msgstr "Tila" @@ -8060,7 +8104,7 @@ msgstr "Tallennustila" msgid "Strict filtering" msgstr "Tiukka suodatus" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:422 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:427 msgid "Strict order" msgstr "Tiukka järjestys" @@ -8073,11 +8117,11 @@ msgstr "Vahva" msgid "Submit" msgstr "Lähetä" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:372 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:377 msgid "Suppress logging" msgstr "Estä kirjaaminen" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:373 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:378 msgid "Suppress logging of the routine operation for the DHCP protocol." msgstr "Estä näiden protokollien rutiinitoimintojen kirjaaminen" @@ -8131,6 +8175,14 @@ msgstr "Synkronoi NTP-palvelimen kanssa" msgid "Sync with browser" msgstr "Synkronoi selaimen kanssa" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:293 +msgid "Syntax: <code>/fqdn[/fqdn…]/[ipaddr]</code>." +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:569 +msgid "Syntax: <code>_service._proto.example.com</code>." +msgstr "" + #: modules/luci-base/root/usr/share/luci/menu.d/luci-base.json:26 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/10_system.js:17 #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:113 @@ -8156,9 +8208,9 @@ msgstr "Järjestelmän ominaisuudet" msgid "System log buffer size" msgstr "Järjestelmälokin puskurin koko" -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:79 -#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:86 -#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:71 +#: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/header.ut:67 +#: themes/luci-theme-material/ucode/template/themes/material/header.ut:81 +#: themes/luci-theme-openwrt-2020/ucode/template/themes/openwrt2020/header.ut:64 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:89 msgid "System running in recovery (initramfs) mode." msgstr "Järjestelmä toimii palautustilassa (initramfs)." @@ -8187,7 +8239,7 @@ msgstr "TCP-lähdeportti" msgid "TCP:" msgstr "TCP:" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:485 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:490 msgid "TFTP server root" msgstr "TFTP-palvelimen pääkansio" @@ -8212,6 +8264,7 @@ msgstr "TX-jonon pituus" msgid "Table" msgstr "Taulukko" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:574 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:56 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:66 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:187 @@ -8287,15 +8340,15 @@ msgstr "" "HE.net-päätepisteen määritys on muuttunut, sinun on nyt käytettävä " "käyttäjätunnusta käyttäjä-ID:n sijaan!" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:681 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:752 msgid "The IP address %h is already used by another static lease" msgstr "IP-osoite %h on jo toisen pysyvän lainan käytössä" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:690 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:761 msgid "The IP address is outside of any DHCP pool address range" msgstr "IP-osoite ei ole minkään DHCP-varannon osoitealueen sisällä" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:520 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:525 msgid "The IP address of the boot server" msgstr "" @@ -8483,7 +8536,7 @@ msgid "" "to be received and retransmitted which costs airtime)" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:514 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:519 msgid "The hostname of the boot server" msgstr "" @@ -8570,8 +8623,8 @@ msgstr "Verkon nimi on jo käytössä" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:139 msgid "" -"The network ports on this device can be combined to several <abbr " -"title=\"Virtual Local Area Network\">VLAN</abbr>s in which computers can " +"The network ports on this device can be combined to several <abbr title=" +"\"Virtual Local Area Network\">VLAN</abbr>s in which computers can " "communicate directly with each other. <abbr title=\"Virtual Local Area " "Network\">VLAN</abbr>s are often used to separate different network " "segments. Often there is by default one Uplink port for a connection to the " @@ -8628,7 +8681,7 @@ msgstr "" msgid "The selected %s mode is incompatible with %s encryption" msgstr "Valittu %s tila ei ole yhteensopiva salauksen %s kanssa" -#: modules/luci-base/luasrc/view/csrftoken.htm:11 +#: modules/luci-base/ucode/template/csrftoken.ut:11 msgid "The submitted security token is invalid or already expired!" msgstr "Lähetetty suojaustunnus on virheellinen tai vanhentunut!" @@ -8711,8 +8764,8 @@ msgid "" "nftables rules is discouraged and may lead to incomplete traffic filtering." msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:746 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:778 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:817 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:849 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:130 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:179 msgid "There are no active leases" @@ -8722,8 +8775,8 @@ msgstr "Aktiivisia lainoja ei ole" msgid "There are no changes to apply" msgstr "Ei muutoksia käyttöönotettavaksi" -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:70 -#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:62 +#: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/header.ut:58 +#: themes/luci-theme-openwrt-2020/ucode/template/themes/openwrt2020/header.ut:55 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:80 msgid "" "There is no password set on this router. Please configure a root password to " @@ -8746,7 +8799,6 @@ msgid "This does not look like a valid PEM file" msgstr "Tämä ei näytä kelvolliselta PEM-tiedostolta" #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:454 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:16 msgid "" "This is a list of shell glob patterns for matching files and directories to " "include during sysupgrade. Modified files in /etc/config/ and certain other " @@ -8792,7 +8844,7 @@ msgstr "" "Tämä on tunnelin välittäjän määrittämä paikallinen päätepisteosoite, joka " "päättyy yleensä <code>... :2/64</code>" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:266 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:268 msgid "This is the only DHCP server in the local network." msgstr "Tämä on paikallisen verkon ainoa DHCP-palvelin." @@ -8876,8 +8928,8 @@ msgstr "Aikavyöhyke" #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:440 msgid "" "To fully configure the local WireGuard interface from an existing (e.g. " -"provider supplied) configuration file, use the <strong><a class=\"full-" -"import\" href=\"#\">configuration import</a></strong> instead." +"provider supplied) configuration file, use the <strong><a class=\"full-import" +"\" href=\"#\">configuration import</a></strong> instead." msgstr "" #: modules/luci-base/htdocs/luci-static/resources/luci.js:2674 @@ -9042,7 +9094,7 @@ msgstr "Ulkoista IP-osoitetta ei voitu selvittää" msgid "Unable to determine upstream interface" msgstr "Ylävirran sovitinta ei voitu selvittää" -#: modules/luci-base/luasrc/view/error404.htm:11 +#: modules/luci-base/ucode/template/error404.ut:12 msgid "Unable to dispatch" msgstr "Ei voida lähettää" @@ -9097,7 +9149,7 @@ msgstr "Sisältöä ei voi tallentaa: %s" msgid "Unable to verify PIN" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:32 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:33 msgid "Unavailable Seconds (UAS)" msgstr "Saavuttamattomissa (UAS)" @@ -9246,7 +9298,7 @@ msgid "" "will be restarted to apply the updated configuration." msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:423 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:428 msgid "Upstream resolvers will be queried in the order of the resolv file." msgstr "" "<abbr title = \"Verkkotunnusten nimijärjestelmä\"> DNS </abbr> -palvelimet " @@ -9257,7 +9309,7 @@ msgstr "" msgid "Uptime" msgstr "Toiminta-aika" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:344 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:349 msgid "Use <code>/etc/ethers</code>" msgstr "Käytä <code>/etc/ethers</code>" @@ -9370,7 +9422,7 @@ msgstr "Käytä järjestelmävarmenteita" msgid "Use system certificates for inner-tunnel" msgstr "Käytä järjestelmävarmenteita sisätunneliin" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:599 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:670 msgid "" "Use the <em>Add</em> Button to add a new lease entry. The <em>MAC address</" "em> identifies the host, the <em>IPv4 address</em> specifies the fixed " @@ -9431,11 +9483,11 @@ msgstr "Käyttäjätunniste" msgid "User key (PEM encoded)" msgstr "Käyttäjäavain (PEM-koodattu)" -#: modules/luci-base/luasrc/view/sysauth.htm:23 +#: modules/luci-base/ucode/template/sysauth.ut:23 #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:112 #: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:101 #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:56 -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/sysauth.htm:18 +#: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/sysauth.ut:13 msgid "Username" msgstr "Käyttäjätunnus" @@ -9533,7 +9585,7 @@ msgstr "VXLAN-verkon tunnus" msgid "VXLANv6 (RFC7348)" msgstr "VXLANv6 (RFC7348)" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:398 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:403 msgid "" "Validate DNS replies and cache DNSSEC data, requires upstream to support " "DNSSEC." @@ -9570,7 +9622,7 @@ msgstr "Toimittaja" msgid "Vendor Class to send when requesting DHCP" msgstr "Toimittajaluokka, joka lähetetään DHCP-pyynnössä" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:403 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:408 msgid "Verify unsigned domain responses really come from unsigned domains." msgstr "" @@ -9648,6 +9700,10 @@ msgstr "" msgid "Weak" msgstr "Heikko" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:589 +msgid "Weight" +msgstr "" + #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1029 msgid "" "When delegating prefixes to multiple downstreams, interfaces with a higher " @@ -9777,7 +9833,7 @@ msgstr "Langaton verkko on poistettu käytöstä" msgid "Wireless network is enabled" msgstr "Langaton verkko on käytössä" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:278 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:280 msgid "Write received DNS queries to syslog." msgstr "Kirjoita vastaanotetut DNS-pyynnöt syslogiin." @@ -9818,8 +9874,16 @@ msgstr "" "<strong> Varoitus: Jos poistat käytöstä välttämättömät aloituskomentosarjat, " "kuten \"verkko\", saatat kadottaa pääsyn laitteeseesi! </strong>" -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:90 -#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:97 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:559 +msgid "You may add multiple records for the same Target." +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:596 +msgid "You may add multiple records for the same domain." +msgstr "" + +#: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/header.ut:78 +#: themes/luci-theme-material/ucode/template/themes/material/header.ut:92 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:73 msgid "" "You must enable JavaScript in your browser or LuCI will not work properly." @@ -9850,7 +9914,17 @@ msgstr "ZRam-asetukset" msgid "ZRam Size" msgstr "ZRam-koko" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:449 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:558 +msgid "_proto: _tcp, _udp, _sctp, _quic, … ." +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:557 +msgid "" +"_service: _sip, _ldap, _imap, _stun, _xmpp-client, … . (Note: while _http is " +"possible, no browsers support SRV records.)" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:454 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:152 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:163 msgid "any" @@ -9961,8 +10035,8 @@ msgstr "esim: --proxy 10.10.10.10" msgid "e.g: dump" msgstr "esim. dump" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:726 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:756 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:797 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:827 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:101 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:148 msgid "expired" @@ -10164,9 +10238,9 @@ msgid "" "<abbr title=\"Hypertext Transfer Protocol Secure\">HTTPS</abbr> network " "access." msgstr "" -"uHTTPd mahdollistaa verkkoyhteyden <abbr title=\"Hypertext Transfer " -"Protocol\">HTTP:llä</abbr> tai <abbr title=\"Hypertext Transfer Protocol " -"Secure\">HTTPS:llä</abbr>." +"uHTTPd mahdollistaa verkkoyhteyden <abbr title=\"Hypertext Transfer Protocol" +"\">HTTP:llä</abbr> tai <abbr title=\"Hypertext Transfer Protocol Secure" +"\">HTTPS:llä</abbr>." #: modules/luci-base/htdocs/luci-static/resources/validation.js:574 msgid "unique value" @@ -10176,9 +10250,9 @@ msgstr "ainutlaatuinen arvo" msgid "unknown" msgstr "tuntematon" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:456 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:724 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:754 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:461 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:795 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:825 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:99 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:146 msgid "unlimited" @@ -10394,6 +10468,21 @@ msgstr "kyllä" msgid "« Back" msgstr "«Takaisin" +#~ msgid "Back to configuration" +#~ msgstr "Takaisin määritykseen" + +#~ msgid "Close list..." +#~ msgstr "Sulje luettelo ..." + +#~ msgid "Internal Server Error" +#~ msgstr "Sisäinen palvelinvirhe" + +#~ msgid "No files found" +#~ msgstr "Tiedostoja ei löytynyt" + +#~ msgid "Sorry, the server encountered an unexpected error." +#~ msgstr "Pahus, palvelin kohtasi odottamattoman virheen." + #~ msgid "Do not forward queries that cannot be answered by public resolvers." #~ msgstr "" #~ "Älä välitä eteenpäin kyselyitä, joihin julkiset nimipalvelimet eivät voi " diff --git a/modules/luci-base/po/fr/base.po b/modules/luci-base/po/fr/base.po index e9b099b415..532ca59ed8 100644 --- a/modules/luci-base/po/fr/base.po +++ b/modules/luci-base/po/fr/base.po @@ -238,6 +238,18 @@ msgstr "" msgid "<abbr title=\"Router Advertisement\">RA</abbr>-Service" msgstr "Service <abbr title=\"Annonce de routeur\"> RA</abbr>" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:294 +msgid "" +"<code>/#/</code> matches any domain. <code>/example.com/</code> returns " +"NXDOMAIN." +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:295 +msgid "" +"<code>/example.com/#</code> returns NULL addresses (<code>0.0.0.0</code> and " +"<code>::</code>) for example.com and its subdomains." +msgstr "" + #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:87 msgctxt "nft relational \">\" operator expression" msgid "<var>%s</var> greater than <strong>%s</strong>" @@ -384,8 +396,8 @@ msgstr "Ponts ATM" #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:66 msgid "ATM Virtual Channel Identifier (VCI)" msgstr "" -"Identifiant de canal virtuel (<abbr title=\"Identifiant de canal " -"virtuel\">VCI</abbr>) ATM" +"Identifiant de canal virtuel (<abbr title=\"Identifiant de canal virtuel" +"\">VCI</abbr>) ATM" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1565 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:70 @@ -409,7 +421,7 @@ msgstr "" msgid "ATM device number" msgstr "Numéro de périphérique ATM" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:36 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:37 msgid "ATU-C System Vendor ID" msgstr "ATU-C System Vendor ID" @@ -419,7 +431,7 @@ msgstr "ATU-C System Vendor ID" msgid "Absent Interface" msgstr "Interface manquante" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:320 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:325 msgid "Accept DNS queries only from hosts whose address is on a local subnet." msgstr "" "Limiter le service DNS aux interfaces des sous-réseaux sur lesquels nous " @@ -560,7 +572,7 @@ msgstr "Ajouter une instance" msgid "Add key" msgstr "Ajouter une clé" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:410 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:415 msgid "Add local domain suffix to names served from hosts files." msgstr "Ajouter un suffixe de domaine locale aux noms tirés du fichier hôtes." @@ -581,11 +593,11 @@ msgstr "Ajouter à la liste noire" msgid "Add to Whitelist" msgstr "Ajouter à la liste blanche" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:367 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:372 msgid "Additional hosts files" msgstr "Fichiers hosts supplémentaires" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:417 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:422 msgid "Additional servers file" msgstr "Fichier de serveurs additionnels" @@ -615,7 +627,7 @@ msgstr "Le paramètre d’adresse n’est pas valide" msgid "Address to access local relay bridge" msgstr "Adresse pour accéder au pont-relais local" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:289 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:291 msgid "Addresses" msgstr "Adresses" @@ -648,7 +660,7 @@ msgstr "âge limite" msgid "Aggregate Originator Messages" msgstr "Agréger les messages de l'expéditeur" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:27 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:28 msgid "Aggregate Transmit Power (ACTATP)" msgstr "Puissance d'émission globale (ACTATP)" @@ -687,11 +699,11 @@ msgstr "Alias de l'interface" msgid "Alias of \"%s\"" msgstr "Alias de \"%s\"" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:427 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:432 msgid "All servers" msgstr "Tous les serveurs" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:378 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:383 msgid "" "Allocate IP addresses sequentially, starting from the lowest available " "address." @@ -699,7 +711,7 @@ msgstr "" "Allouer les adresses IP de manière séquentielle en commençant par les plus " "petites." -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:377 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:382 msgid "Allocate IPs sequentially" msgstr "Allouer les IP de manière séquentielle" @@ -731,7 +743,7 @@ msgstr "Autoriser les débits 802.11b obsolètes" msgid "Allow listed only" msgstr "Autoriser uniquement ce qui est listé" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:306 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:311 msgid "Allow localhost" msgstr "Autoriser l'hôte local" @@ -778,7 +790,7 @@ msgstr "Toujours éteint (noyau : aucun)" msgid "Always on (kernel: default-on)" msgstr "Toujours actif (noyau : implicite-actif)" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:538 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:543 msgid "Always send DHCP Options. Sometimes needed, with e.g. PXELinux." msgstr "" "Toujours envoyer les options DHCP. Parfois nécessaire, par exemple avec " @@ -811,7 +823,7 @@ msgid "An optional, short description for this device" msgstr "Une courte description, optionnelle, pour cet appareil" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1484 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:20 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:21 msgid "Annex" msgstr "Annexe" @@ -931,7 +943,7 @@ msgstr "Tout paquet" msgid "Any zone" msgstr "N'importe quelle zone" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:532 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:537 msgid "Apply DHCP Options to this net. (Empty = all clients)." msgstr "Appliquer les options DHCP à ce réseau. (Vide = tous les clients)." @@ -1008,8 +1020,8 @@ msgid "" "At most <strong>%h</strong> per <strong>%h</strong>, burst of <strong>%h</" "strong>" msgstr "" -"Au maximum <strong>%h</strong> par <strong>%h</strong>, rafale de " -"<strong>%h</strong>" +"Au maximum <strong>%h</strong> par <strong>%h</strong>, rafale de <strong>" +"%h</strong>" #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:154 msgid "Attempt to enable configured mount points for attached devices" @@ -1031,11 +1043,11 @@ msgstr "Authentification" msgid "Authentication Type" msgstr "Type d'authentification" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:265 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:267 msgid "Authoritative" msgstr "Autoritaire" -#: modules/luci-base/luasrc/view/sysauth.htm:17 +#: modules/luci-base/ucode/template/sysauth.ut:17 #: themes/luci-theme-bootstrap/htdocs/luci-static/resources/view/bootstrap/sysauth.js:11 msgid "Authorization Required" msgstr "Autorisation requise" @@ -1108,7 +1120,7 @@ msgstr "Moyenne :" msgid "Avoid Bridge Loops" msgstr "Éviter les boucles de pont" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:388 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:393 msgid "" "Avoid uselessly triggering dial-on-demand links (filters SRV/SOA records and " "names with underscores)." @@ -1143,10 +1155,6 @@ msgstr "Retour" msgid "Back to Overview" msgstr "Retour à la vue générale" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:48 -msgid "Back to configuration" -msgstr "Retour à la configuration" - #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:826 msgid "Back to peer configuration" msgstr "Retour à la configuration des pairs" @@ -1160,7 +1168,6 @@ msgid "Backup / Flash Firmware" msgstr "Sauvegarde / Mise à jour du micrologiciel" #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:351 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:12 msgid "Backup file list" msgstr "Liste des fichiers de sauvegarde" @@ -1210,7 +1217,6 @@ msgid "Beacon Interval" msgstr "Intervalle entre les balises" #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:352 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:46 msgid "" "Below is the determined list of files to backup. It consists of changed " "configuration files marked by opkg, essential base files and the user " @@ -1224,7 +1230,7 @@ msgstr "" msgid "Bind NTP server" msgstr "Lier le serveur NTP" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:326 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:331 msgid "Bind dynamically to interfaces rather than wildcard address." msgstr "" "Lier dynamiquement aux interfaces au lieu d’utiliser la méta-adresse " @@ -1242,6 +1248,17 @@ msgstr "" msgid "Bind interface" msgstr "Lier à l’interface" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:595 +msgid "" +"Bind service records to a domain name: specify the location of services." +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:556 +msgid "" +"Bind service records to a domain name: specify the location of services. See " +"<a href=\"%s\">RFC2782</a>." +msgstr "" + #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:59 #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:64 #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:64 @@ -1347,6 +1364,10 @@ msgstr "" msgid "CLAT configuration failed" msgstr "La configuration de CLAT a échoué" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:574 +msgid "CNAME or fqdn" +msgstr "" + #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/processes.js:72 msgid "CPU usage (%)" msgstr "Utilisation CPU (%)" @@ -1609,17 +1630,13 @@ msgstr "" "Fermer une connexion inactive après le délai donné en secondes, mettre 0 " "pour garder les connexions" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:49 -msgid "Close list..." -msgstr "Fermer la liste…" - #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:44 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:63 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2184 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:391 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:352 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:355 -#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:72 +#: themes/luci-theme-material/ucode/template/themes/material/header.ut:66 msgid "Collecting data..." msgstr "Récupération des données…" @@ -1659,6 +1676,10 @@ msgstr "" msgid "Compute outgoing checksum (optional)." msgstr "Calculer la somme de contrôle sortante (facultatif)." +#: protocols/luci-proto-nebula/htdocs/luci-static/resources/protocol/nebula.js:40 +msgid "Config File" +msgstr "" + #: modules/luci-base/htdocs/luci-static/resources/ui.js:4375 #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:454 msgid "Configuration" @@ -1702,13 +1723,13 @@ msgid "" "Configures the default router advertisement in <abbr title=\"Router " "Advertisement\">RA</abbr> messages." msgstr "" -"Configure l'annonce de routeur par défaut dans les messages <abbr " -"title=\"Annonce de routeur\">RA</abbr>." +"Configure l'annonce de routeur par défaut dans les messages <abbr title=" +"\"Annonce de routeur\">RA</abbr>." #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:764 msgid "" -"Configures the operation mode of the <abbr title=\"Router " -"Advertisement\">RA</abbr> service on this interface." +"Configures the operation mode of the <abbr title=\"Router Advertisement" +"\">RA</abbr> service on this interface." msgstr "" "Configure le mode de fonctionnement du service <abbr title=\"Annonce de " "routeur\">RA</abbr> sur cette interface." @@ -1895,8 +1916,8 @@ msgstr "Interval de clignotement personnalisé (noyau : minuterie)" #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/leds.js:59 msgid "" -"Customizes the behaviour of the device <abbr title=\"Light Emitting " -"Diode\">LED</abbr>s if possible." +"Customizes the behaviour of the device <abbr title=\"Light Emitting Diode" +"\">LED</abbr>s if possible." msgstr "" "Permet de personnaliser le comportement des <abbr title=\"Diode Électro-" "Luminescente\">DEL</abbr>s lorsque le matériel le permet." @@ -1917,7 +1938,7 @@ msgstr "Port DAE" msgid "DAE-Secret" msgstr "Secret DAE" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:525 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:530 msgid "DHCP Options" msgstr "Options DHCP" @@ -1957,11 +1978,11 @@ msgstr "Service DHCPv6" msgid "DNS" msgstr "DNS" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:282 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:284 msgid "DNS forwardings" msgstr "transmissions DNS" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:445 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:450 msgid "DNS query port" msgstr "" "Port des requêtes <abbr title=\"Système de noms de domaines\">DNS</abbr>" @@ -1970,7 +1991,7 @@ msgstr "" msgid "DNS search domains" msgstr "Domaines de recherche DNS" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:438 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:443 msgid "DNS server port" msgstr "Port du serveur <abbr title=\"Système de noms de domaines\">DNS</abbr>" @@ -1986,11 +2007,11 @@ msgstr "Poids DNS" msgid "DNS-Label / FQDN" msgstr "Label DNS / FQDN" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:397 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:402 msgid "DNSSEC" msgstr "DNSSEC" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:402 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:407 msgid "DNSSEC check unsigned" msgstr "Vérification DNSSEC non signée" @@ -2003,11 +2024,11 @@ msgid "DS-Lite AFTR address" msgstr "Adresse du DS-Lite AFTR" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1481 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:44 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:45 msgid "DSL" msgstr "DSL" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:14 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:15 msgid "DSL Status" msgstr "Statut DSL" @@ -2020,12 +2041,12 @@ msgid "DTIM Interval" msgstr "Intervalle DTIM" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:59 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:700 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:771 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:136 msgid "DUID" msgstr "DUID" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:21 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:22 msgid "Data Rate" msgstr "Débit de données" @@ -2278,7 +2299,7 @@ msgstr "Désactivé" msgid "Disassociate On Low Acknowledgement" msgstr "Désassossier sur la reconnaissance basse (Low Acknowledgement)" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:302 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:307 msgid "" "Discard upstream responses containing <a href=\"%s\">RFC1918</a> addresses." msgstr "" @@ -2326,7 +2347,7 @@ msgstr "Distance au membre du réseau le plus éloigné, en mètres." msgid "Distributed ARP Table" msgstr "Table ARP distribuée" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:543 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:548 msgid "" "Dnsmasq instance to which this boot section is bound. If unspecified, the " "section is valid for all dnsmasq instances." @@ -2336,15 +2357,15 @@ msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:246 msgid "" -"Dnsmasq is a lightweight <abbr title=\"Dynamic Host Configuration " -"Protocol\">DHCP</abbr> server and <abbr title=\"Domain Name System\">DNS</" -"abbr> forwarder." +"Dnsmasq is a lightweight <abbr title=\"Dynamic Host Configuration Protocol" +"\">DHCP</abbr> server and <abbr title=\"Domain Name System\">DNS</abbr> " +"forwarder." msgstr "" -"Dnsmasq est un serveur <abbr title=\"Dynamic Host Configuration " -"Protocol\">DHCP</abbr> léger et un redirecteur<abbr title=\"Domain Name " -"System\">DNS</abbr>." +"Dnsmasq est un serveur <abbr title=\"Dynamic Host Configuration Protocol" +"\">DHCP</abbr> léger et un redirecteur<abbr title=\"Domain Name System" +"\">DNS</abbr>." -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:414 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:419 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 " @@ -2358,16 +2379,16 @@ msgstr "" msgid "Do not create host route to peer (optional)." msgstr "Ne pas créer de route hôte vers le pair (facultatif)." -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:262 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:264 msgid "Do not forward DNS queries without dots or domain parts." msgstr "Ne pas transmettre les requêtes DNS sans points ou parties de domaine." -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:383 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:388 msgid "Do not forward reverse lookups for local networks." msgstr "" "Ne pas transmettre les requêtes de recherche inverse pour les réseaux locaux." -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:339 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:344 msgid "Do not listen on the specified interfaces." msgstr "Empêcher l'écoute sur ces interfaces." @@ -2385,8 +2406,8 @@ msgid "" "Do not proxy any <abbr title=\"Neighbour Discovery Protocol\">NDP</abbr> " "packets." msgstr "" -"Ne pas acheminer des paquets <abbr title=\"Neighbour Discovery " -"Protocol\">NDP</abbr>." +"Ne pas acheminer des paquets <abbr title=\"Neighbour Discovery Protocol" +"\">NDP</abbr>." #: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:25 msgid "Do not send a hostname" @@ -2424,15 +2445,16 @@ msgstr "Voulez-vous remplacer le PSK actuel ?" msgid "Do you want to replace the current keys?" msgstr "Voulez-vous remplacer les clés actuelles ?" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:593 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:606 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:664 msgid "Domain" msgstr "Domaine" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:261 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:263 msgid "Domain required" msgstr "Domaine nécessaire" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:311 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:316 msgid "Domain whitelist" msgstr "Liste blanche de domaines" @@ -2679,7 +2701,7 @@ msgstr "Activer client NTP" msgid "Enable Single DES" msgstr "Activer le DES unique" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:480 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:485 msgid "Enable TFTP server" msgstr "Activer le serveur TFTP" @@ -2697,9 +2719,9 @@ msgstr "Activer le bouton poussoir WPS, nécessite WPA(2)-PSK/WPA3-SAE" #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/uhttpd.js:14 msgid "" -"Enable automatic redirection of <abbr title=\"Hypertext Transfer " -"Protocol\">HTTP</abbr> requests to <abbr title=\"Hypertext Transfer Protocol " -"Secure\">HTTPS</abbr> port." +"Enable automatic redirection of <abbr title=\"Hypertext Transfer Protocol" +"\">HTTP</abbr> requests to <abbr title=\"Hypertext Transfer Protocol Secure" +"\">HTTPS</abbr> port." msgstr "" "Active la redirection automatique des requêtes <abbr title=\"Hypertext " "Transfer Protocol\">HTTP</abbr> vers le port <abbr title=\"Hypertext " @@ -2769,7 +2791,7 @@ msgstr "Activez la prise en charge du trafic multicast (facultatif)." msgid "Enable the DF (Don't Fragment) flag of the encapsulating packets." msgstr "Activez le drapeau DF (Don’t Fragment) des paquets encapsulants." -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:481 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:486 msgid "Enable the built-in single-instance TFTP server." msgstr "Activez le serveur TFTP à instance unique intégré." @@ -2892,7 +2914,7 @@ msgstr "Erreur" msgid "Error getting PublicKey" 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 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:30 msgid "Errored seconds (ES)" msgstr "Erreurs de secondes (ES)" @@ -2914,11 +2936,11 @@ msgstr "Toutes les 30 secondes (slow, 0)" msgid "Every second (fast, 1)" msgstr "Chaque seconde (fast, 1)" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:338 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:343 msgid "Exclude interfaces" msgstr "Exclure les interfaces" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:307 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:312 msgid "" "Exempt <code>127.0.0.0/8</code> and <code>::1</code> from rebinding checks, " "e.g. for RBL services." @@ -2930,7 +2952,7 @@ msgstr "" msgid "Existing device" msgstr "Périphérique existant" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:409 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:414 msgid "Expand hosts" msgstr "Étendre le nom d'hôte" @@ -3068,7 +3090,7 @@ msgstr "" msgid "File" msgstr "Fichier" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:418 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:423 msgid "" "File listing upstream resolvers, optionally domain-specific, e.g. " "<code>server=1.2.3.4</code>, <code>server=/domain/1.2.3.4</code>." @@ -3081,22 +3103,22 @@ msgstr "" msgid "File not accessible" msgstr "Fichier non accessible" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:349 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:354 msgid "File to store DHCP lease information." msgstr "" "Fichier dans lequel les baux <abbr title=\"Dynamic Host Configuration " "Protocol\">DHCP</abbr> seront stockés." -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:357 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:362 msgid "File with upstream resolvers." msgstr "Fichier contenant les résolveurs en amont." #: modules/luci-base/htdocs/luci-static/resources/ui.js:2846 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:507 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:512 msgid "Filename" msgstr "Nom de fichier" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:493 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:498 msgid "Filename of the boot image advertised to clients." msgstr "Nom de fichier de l'image de démarrage publiée aux clients." @@ -3105,11 +3127,11 @@ msgstr "Nom de fichier de l'image de démarrage publiée aux clients." msgid "Filesystem" msgstr "Système de fichiers" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:382 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:387 msgid "Filter private" msgstr "Filtrer les requêtes privées" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:387 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:392 msgid "Filter useless" msgstr "Filtrer les requêtes inutiles" @@ -3179,7 +3201,7 @@ msgstr "Fichier de micrologiciel" msgid "Firmware Version" msgstr "Version du micrologiciel" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:446 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:451 msgid "Fixed source port for outbound DNS queries." msgstr "Port source fixe pour les requêtes DNS sortantes." @@ -3205,7 +3227,7 @@ msgstr "Opérations d'écriture" msgid "Flashing…" msgstr "Écriture en cours…" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:537 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:542 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:686 msgid "Force" msgstr "Forcer" @@ -3250,16 +3272,16 @@ msgstr "Forcer la mise à niveau" msgid "Force use of NAT-T" msgstr "Forcer l'utilisation de NAT-T" -#: modules/luci-base/luasrc/view/csrftoken.htm:8 +#: modules/luci-base/ucode/template/csrftoken.ut:8 msgid "Form token mismatch" msgstr "Non-correspondance des jetons de formulaire" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:919 msgid "" -"Forward <abbr title=\"Neighbour Discovery Protocol\">NDP</abbr> <abbr " -"title=\"Neighbour Solicitation, Type 135\">NS</abbr> and <abbr " -"title=\"Neighbour Advertisement, Type 136\">NA</abbr> messages between the " -"designated master interface and downstream interfaces." +"Forward <abbr title=\"Neighbour Discovery Protocol\">NDP</abbr> <abbr title=" +"\"Neighbour Solicitation, Type 135\">NS</abbr> and <abbr title=\"Neighbour " +"Advertisement, Type 136\">NA</abbr> messages between the designated master " +"interface and downstream interfaces." msgstr "" "Transférer les messages <abbr title=\"Neighbour Discovery Protocol\">NDP</" "abbr> <abbr title=\"Neighbour Solicitation, Type 135\">NS</abbr> et <abbr " @@ -3287,7 +3309,7 @@ msgstr "" "Transférer les messages DHCPv6 entre l'interface maître désignée et les " "interfaces en aval." -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:28 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:29 msgid "Forward Error Correction Seconds (FECS)" msgstr "Forward Error Correction Secondes (FECS)" @@ -3450,15 +3472,15 @@ msgstr "Paramètres généraux" msgid "Global network options" msgstr "Options globales de réseau" -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:82 -#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:89 -#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:74 +#: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/header.ut:70 +#: themes/luci-theme-material/ucode/template/themes/material/header.ut:84 +#: themes/luci-theme-openwrt-2020/ucode/template/themes/openwrt2020/header.ut:67 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:92 msgid "Go to firmware upgrade..." 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:64 +#: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/header.ut:60 +#: themes/luci-theme-openwrt-2020/ucode/template/themes/openwrt2020/header.ut:57 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:82 msgid "Go to password configuration..." msgstr "Aller à la configuration du mot de passe…" @@ -3599,7 +3621,7 @@ msgstr "Accès HTTP(S)" msgid "Hang Up" msgstr "Signal (HUP)" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:33 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:34 msgid "Header Error Code Errors (HEC)" msgstr "Erreurs de code d'erreur d'en-tête (HEC)" @@ -3652,7 +3674,7 @@ msgstr "Hôte" msgid "Host expiry timeout" msgstr "Délai d'expiration pour les hôtes" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:508 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:513 msgid "Host requests this filename from the boot server." msgstr "L’hôte demande ce nom de fichier au serveur d’amorçage." @@ -3661,8 +3683,8 @@ msgid "Host-Uniq tag content" msgstr "Contenu du tag Host-Uniq" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:38 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:559 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:607 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:630 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:678 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/10_system.js:54 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:87 #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:135 @@ -3677,7 +3699,7 @@ msgstr "Nom d'hôte à envoyer dans une requête DHCP" msgid "Hostnames" msgstr "Noms d'hôtes" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:551 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:622 msgid "" "Hostnames are used to bind a domain name to an IP address. This setting is " "redundant for hostnames already configured with static leases, but it can be " @@ -3744,7 +3766,7 @@ msgstr "Adresses IP" msgid "IP Protocol" msgstr "Protocole IP" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:258 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:260 msgid "IP Sets" msgstr "Ensembles d’adresses IP" @@ -3752,7 +3774,7 @@ msgstr "Ensembles d’adresses IP" msgid "IP Type" msgstr "Type IP" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:563 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:634 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:178 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:204 msgid "IP address" @@ -3778,15 +3800,15 @@ msgctxt "nft meta l4proto" msgid "IP protocol" msgstr "Protocole IP" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:589 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:660 msgid "IP set" msgstr "Ensemble d’adresses IP" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:295 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:300 msgid "IP sets" msgstr "Ensembles d’adresses IP" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:432 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:437 msgid "IPs to override with NXDOMAIN" msgstr "Contourne les « NX Domain » bogués" @@ -3827,7 +3849,7 @@ msgstr "IPv4 en amont" #: modules/luci-base/htdocs/luci-static/resources/protocol/static.js:178 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:39 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:665 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:736 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:88 #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:164 msgid "IPv4 address" @@ -3998,7 +4020,7 @@ msgstr "Routage source IPv6" msgid "IPv6 suffix" msgstr "Suffixe IPv6" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:706 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:777 msgid "IPv6 suffix (hex)" msgstr "" "Suffixe <abbr title=\"Internet Protocol Version 6\">IPv6</abbr> (en " @@ -4102,10 +4124,10 @@ msgstr "Les serveurs DNS annoncés seront ignorés si cette case est décochée" #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:340 msgid "" "If your physical memory is insufficient unused data can be temporarily " -"swapped to a swap-device resulting in a higher amount of usable <abbr " -"title=\"Random Access Memory\">RAM</abbr>. Be aware that swapping data is a " -"very slow process as the swap-device cannot be accessed with the high " -"datarates of the <abbr title=\"Random Access Memory\">RAM</abbr>." +"swapped to a swap-device resulting in a higher amount of usable <abbr title=" +"\"Random Access Memory\">RAM</abbr>. Be aware that swapping data is a very " +"slow process as the swap-device cannot be accessed with the high datarates " +"of the <abbr title=\"Random Access Memory\">RAM</abbr>." msgstr "" "Si votre mémoire physique est insuffisante, les données inutilisées peuvent " "être temporairement échangées vers un périphérique d'échange, ce qui " @@ -4114,7 +4136,7 @@ msgstr "" "très lent car le périphérique d'échange n'est pas accessible avec les taux " "de données élevés de la <abbr title=\"Random Access Memory\">RAM</abbr>." -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:363 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:368 msgid "Ignore <code>/etc/hosts</code>" msgstr "Ignorer <code>/etc/hosts</code>" @@ -4122,7 +4144,7 @@ msgstr "Ignorer <code>/etc/hosts</code>" msgid "Ignore interface" msgstr "Ignorer l'interface" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:352 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:357 msgid "Ignore resolv file" msgstr "Ignorer le fichier de résolution" @@ -4174,7 +4196,7 @@ msgstr "" "la fonction de prévention des boucles de pont afin d'éviter les boucles de " "diffusion qui peuvent paralyser l'ensemble du réseau local." -#: modules/luci-base/luasrc/view/csrftoken.htm:13 +#: modules/luci-base/ucode/template/csrftoken.ut:13 msgid "" "In order to prevent unauthorized access to the system, your request has been " "blocked. Click \"Continue »\" below to return to the previous page." @@ -4288,7 +4310,7 @@ msgstr "Contrainte du certificat interne (Wildcard)" msgid "Install protocol extensions..." msgstr "Installation des extensions de protocole…" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:542 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:547 msgid "Instance" msgstr "Occurrence" @@ -4377,10 +4399,6 @@ msgstr "Interfaces" msgid "Internal" msgstr "Interne" -#: modules/luci-base/luasrc/view/error500.htm:8 -msgid "Internal Server Error" -msgstr "Erreur Serveur Interne" - #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:285 msgid "Interval For Sending Learning Packets" msgstr "Intervalle d'envoi des paquets d'apprentissage" @@ -4458,8 +4476,8 @@ msgstr "Commande invalide" msgid "Invalid hexadecimal value" msgstr "Valeur hexadécimale invalide" -#: modules/luci-base/luasrc/view/sysauth.htm:12 -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/sysauth.htm:37 +#: modules/luci-base/ucode/template/sysauth.ut:12 +#: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/sysauth.ut:32 msgid "Invalid username and/or password! Please try again." msgstr "Nom d'utilisateur et/ou mot de passe invalides ! Réessayez." @@ -4483,8 +4501,8 @@ msgstr "" "L'image que vous essayez de flasher est vraisemblablement trop grosse pour " "tenir dans la mémoire flash, merci de vérifier le fichier !" -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:89 -#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:96 +#: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/header.ut:77 +#: themes/luci-theme-material/ucode/template/themes/material/header.ut:91 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:72 msgid "JavaScript required!" msgstr "Nécessite JavaScript !" @@ -4616,11 +4634,17 @@ msgstr "Langue" msgid "Language and Style" msgstr "Langue et apparence" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:560 +msgid "" +"Larger weights (of the same prio) are given a proportionately higher " +"probability of being selected." +msgstr "" + #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:575 msgid "Last member interval" msgstr "Intervalle du dernier membre" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:23 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:24 msgid "Latency" msgstr "Latence" @@ -4636,11 +4660,11 @@ msgstr "Apprendre" msgid "Learn routes" msgstr "Apprentissage des itinéraires" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:348 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:353 msgid "Lease file" msgstr "Fichier de baux" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:697 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:768 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:679 msgid "Lease time" msgstr "Durée du bail" @@ -4688,19 +4712,19 @@ msgstr "Légende :" msgid "Limit" msgstr "Limite" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:24 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:25 msgid "Line Attenuation (LATN)" msgstr "Atténuation de la ligne (LATN)" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:18 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:19 msgid "Line Mode" msgstr "Mode ligne" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:17 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:18 msgid "Line State" msgstr "État de la ligne" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:19 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:20 msgid "Line Uptime" msgstr "Temps de fonctionnement de la ligne" @@ -4721,12 +4745,12 @@ msgctxt "nft @ll,off,len" msgid "Link layer header bits %d-%d" msgstr "Bits d'en-tête de la couche de liaison %d-%d" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:433 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:438 msgid "List of IP addresses to convert into NXDOMAIN responses." msgstr "Liste des adresses IP à convertir en réponses NXDOMAIN." -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:296 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:581 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:301 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:652 msgid "List of IP sets to populate with the specified domain IPs." msgstr "" "Liste des ensembles d'adresses IP à remplir avec les adresses IP de domaine " @@ -4766,15 +4790,11 @@ msgstr "" msgid "List of SSH key files for auth" msgstr "Liste des fichiers de clés SSH pour l'authentification" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:312 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:317 msgid "List of domains to allow RFC1918 responses for." msgstr "Liste des domaines où sont permises les réponses de type RFC1918." -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:290 -msgid "List of domains to force to an IP address." -msgstr "Liste des domaines à forcer à une adresse IP." - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:283 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:285 msgid "List of upstream resolvers to forward queries to." msgstr "" "Liste des serveurs auquels sont transmis les requêtes <abbr title=\"Domain " @@ -4784,7 +4804,7 @@ msgstr "" msgid "Listen Port" msgstr "Port d'écoute" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:332 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:337 msgid "Listen interfaces" msgstr "Interfaces d'écoute" @@ -4792,7 +4812,7 @@ msgstr "Interfaces d'écoute" msgid "Listen only on the given interface or, if unspecified, on all" msgstr "Écouter seulement sur l'interface spécifié, sinon sur toutes" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:333 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:338 msgid "" "Listen only on the specified interfaces, and loopback if not excluded " "explicitly." @@ -4802,7 +4822,7 @@ msgstr "Limiter l'écoute à ces interfaces, et le loopback." msgid "ListenPort setting is invalid" msgstr "Le paramètre du port d'écoute n’est pas valide" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:439 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:444 msgid "Listening port for inbound DNS queries." msgstr "Port d'écoute pour les requêtes DNS entrantes." @@ -4829,9 +4849,9 @@ msgid "Loading directory contents…" msgstr "Chargement du contenu des répertoires…" #: modules/luci-base/htdocs/luci-static/resources/luci.js:1942 -#: modules/luci-base/luasrc/view/view.htm:4 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:12 -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/sysauth.htm:45 +#: modules/luci-base/ucode/template/view.ut:4 +#: modules/luci-mod-status/ucode/template/admin_status/index.ut:12 +#: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/sysauth.ut:40 msgid "Loading view…" msgstr "Chargement de la vue…" @@ -4889,20 +4909,20 @@ msgstr "Heure locale" msgid "Local ULA" msgstr "ULA locale" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:273 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:275 msgid "Local domain" msgstr "Domaine local" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:274 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:276 msgid "Local domain suffix appended to DHCP names and hosts file entries." msgstr "" "Suffixe du domaine local ajouté aux noms du serveur DHCP et du fichier Hosts." -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:269 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:271 msgid "Local server" msgstr "Serveur local" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:319 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:324 msgid "Local service only" msgstr "Service local uniquement" @@ -4910,7 +4930,7 @@ msgstr "Service local uniquement" msgid "Local wireguard key" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:392 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:397 msgid "Localise queries" msgstr "Localiser les requêtes" @@ -4922,7 +4942,7 @@ msgstr "Verrouiller sur BSSID" msgid "Log output level" msgstr "Niveau de journalisation" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:277 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:279 msgid "Log queries" msgstr "Journaliser les requêtes" @@ -4949,8 +4969,8 @@ msgstr "" msgid "Logical network to which the tunnel will be added (bridged) (optional)." msgstr "Réseau logique auquel le tunnel sera ajouté (ponté) (facultatif)." -#: modules/luci-base/luasrc/view/sysauth.htm:38 -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/sysauth.htm:41 +#: modules/luci-base/ucode/template/sysauth.ut:38 +#: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/sysauth.ut:36 msgid "Login" msgstr "Connexion" @@ -4962,7 +4982,7 @@ msgstr "Déconnexion" msgid "Loose filtering" msgstr "Filtrage perdu" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:31 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:32 msgid "Loss of Signal Seconds (LOSS)" msgstr "Perte de secondes de signal (LOSS)" @@ -4972,6 +4992,10 @@ msgstr "" "Adresse allouée la plus basse, spécifiée par un décalage à partir de " "l'adresse réseau." +#: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/footer.ut:12 +msgid "Lua compatibility mode active" +msgstr "" + #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:48 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:83 msgid "MAC" @@ -4996,7 +5020,7 @@ msgstr "Adresse MAC du Réseau Virtuel (VLAN)" #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:591 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:40 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:619 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:690 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1164 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2177 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:56 @@ -5055,6 +5079,10 @@ msgstr "MII Intervalle" msgid "MTU" msgstr "MTU" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:259 +msgid "MX" +msgstr "" + #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:303 msgid "" "Make sure to clone the root filesystem using something like the commands " @@ -5081,23 +5109,23 @@ msgstr "Maître" msgid "Max <abbr title=\"Router Advertisement\">RA</abbr> interval" msgstr "Intervalle maximal <abbr title=\"Annonce de routeur\">RA</abbr>" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:22 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:23 msgid "Max. Attainable Data Rate (ATTNDR)" msgstr "Débit de données max. atteignable (ATTNDR)" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:452 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:457 msgid "Max. DHCP leases" msgstr "" -"Nombre maximal de baux <abbr title=\"Dynamic Host Configuration " -"Protocol\">DHCP</abbr>" +"Nombre maximal de baux <abbr title=\"Dynamic Host Configuration Protocol" +"\">DHCP</abbr>" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:459 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:464 msgid "Max. EDNS0 packet size" msgstr "" "Taille maximale des paquets <abbr title=\"Extension Mechanisms for Domain " "Name System\">EDNS0</abbr>" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:466 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:471 msgid "Max. concurrent queries" msgstr "Nombre maximal de requêtes concurrentes" @@ -5109,15 +5137,15 @@ msgstr "Âge maximal" msgid "Maximum allowed Listen Interval" msgstr "Intervalle d'écoute maximum autorisé" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:453 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:458 msgid "Maximum allowed number of active DHCP leases." msgstr "Nombre maximum de baux DHCP actifs." -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:467 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:472 msgid "Maximum allowed number of concurrent DNS queries." msgstr "Nombre maximum autorisé de requêtes DNS simultanées." -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:460 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:465 msgid "Maximum allowed size of EDNS0 UDP packets." msgstr "Taille maximale autorisée des paquets UDP de l'EDNS0." @@ -5139,15 +5167,15 @@ msgid "" "Maximum time allowed between sending unsolicited <abbr title=\"Router " "Advertisement, ICMPv6 Type 134\">RA</abbr>. Default is 600 seconds." msgstr "" -"Délai maximal autorisé entre l'envoi de messages non sollicités <abbr " -"title=\"Annonce de routeur, ICMPv6 Type 134\">RA</abbr>. La valeur par " -"défaut est de 600 secondes." +"Délai maximal autorisé entre l'envoi de messages non sollicités <abbr title=" +"\"Annonce de routeur, ICMPv6 Type 134\">RA</abbr>. La valeur par défaut est " +"de 600 secondes." #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:947 msgid "Maximum transmit power" msgstr "Puissance d'émission maximale" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:389 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:394 msgid "May prevent VoIP or other services from working." msgstr "" @@ -5245,9 +5273,9 @@ msgid "" "Minimum time allowed between sending unsolicited <abbr title=\"Router " "Advertisement, ICMPv6 Type 134\">RA</abbr>. Default is 200 seconds." msgstr "" -"Délai minimum autorisé entre l'envoi de messages non sollicités <abbr " -"title=\"Annonce de routeur, ICMPv6 Type 134\">RA</abbr>. La valeur par " -"défaut est de 200 secondes." +"Délai minimum autorisé entre l'envoi de messages non sollicités <abbr title=" +"\"Annonce de routeur, ICMPv6 Type 134\">RA</abbr>. La valeur par défaut est " +"de 200 secondes." #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:204 msgid "Mirror monitor port" @@ -5470,11 +5498,15 @@ msgstr "Nom du nouveau réseau" msgid "Name of the tunnel device" msgstr "" -#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:46 +#: themes/luci-theme-openwrt-2020/ucode/template/themes/openwrt2020/header.ut:39 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:50 msgid "Navigation" msgstr "Navigation" +#: protocols/luci-proto-nebula/htdocs/luci-static/resources/protocol/nebula.js:10 +msgid "Nebula Network" +msgstr "" + #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:653 msgid "Neighbour cache validity" msgstr "Validité du cache voisin" @@ -5510,7 +5542,7 @@ msgstr "Utilitaires réseau" msgid "Network address" msgstr "Adresse du réseau" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:492 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:497 msgid "Network boot image" msgstr "Image de démarrage réseau" @@ -5550,7 +5582,7 @@ msgstr "Migration de la configuration du réseau ifname" msgid "Network interface" msgstr "Interface réseau" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:531 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:536 msgid "Network-ID" msgstr "Identité du réseau" @@ -5558,7 +5590,7 @@ msgstr "Identité du réseau" msgid "Never" msgstr "Jamais" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:270 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:272 msgid "" "Never forward matching domains and subdomains, resolve from DHCP or hosts " "files only." @@ -5609,9 +5641,9 @@ msgstr "Pas de NAT-T" msgid "No RX signal" msgstr "Pas de signal RX" -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:80 -#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:87 -#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:72 +#: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/header.ut:68 +#: themes/luci-theme-material/ucode/template/themes/material/header.ut:82 +#: themes/luci-theme-openwrt-2020/ucode/template/themes/openwrt2020/header.ut:65 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:90 msgid "" "No changes to settings will be stored and are lost after rebooting. This " @@ -5656,10 +5688,6 @@ msgstr "Aucune entrée disponible" msgid "No entries in this directory" msgstr "Aucune entrée dans ce répertoire" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:82 -msgid "No files found" -msgstr "Aucun fichier trouvé" - #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:833 msgid "" "No fixed interface listening port defined, peers might not be able to " @@ -5697,7 +5725,7 @@ msgstr "Plus d'esclaves disponibles" msgid "No more slaves available, can not save interface" msgstr "Plus d'esclaves disponibles, ne peut pas sauver l'interface" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:413 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:418 msgid "No negative cache" msgstr "Pas de cache négatif" @@ -5705,8 +5733,8 @@ msgstr "Pas de cache négatif" msgid "No nftables ruleset loaded." msgstr "Aucun jeu de règles nftables n'est chargé." -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:69 -#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:61 +#: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/header.ut:57 +#: themes/luci-theme-openwrt-2020/ucode/template/themes/openwrt2020/header.ut:54 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:79 msgid "No password set!" msgstr "Pas de mot de passe positionné !" @@ -5746,7 +5774,7 @@ msgstr "Aucune zone attribuée" msgid "Noise" msgstr "Bruit" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:26 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:27 msgid "Noise Margin (SNR)" msgstr "Rapport signal sur bruit (SNR)" @@ -5754,11 +5782,11 @@ msgstr "Rapport signal sur bruit (SNR)" msgid "Noise:" msgstr "Bruit :" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:34 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:35 msgid "Non Pre-emptive CRC errors (CRC_P)" msgstr "Erreurs CRC non préemptives (CRC_P)" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:325 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:330 msgid "Non-wildcard" msgstr "Non-wildcard" @@ -5773,7 +5801,7 @@ msgstr "Rien" msgid "Normal" msgstr "Normal" -#: modules/luci-base/luasrc/view/error404.htm:8 +#: modules/luci-base/ucode/template/error404.ut:9 msgid "Not Found" msgstr "Pas trouvé" @@ -5825,7 +5853,7 @@ msgstr "Nslookup" msgid "Number of IGMP membership reports" msgstr "Nombre de rapports d'adhésion à l'IGMP" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:474 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:479 msgid "Number of cached DNS entries, 10000 is maximum, 0 is no caching." msgstr "" "Nombre d'entrées DNS gardées en cache (maximum 10000 ; entrez \"0\" pour " @@ -5876,7 +5904,7 @@ msgstr "Durée allumée" msgid "On-link" msgstr "Route On-Link" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:672 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:743 msgid "One of hostname or MAC address must be specified!" msgstr "Il faut indiquer un nom d'hôte ou une adresse MAC !" @@ -5916,7 +5944,6 @@ msgid "Open iptables rules overview…" msgstr "Ouvrir l'aperçu des règles iptables…" #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:472 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:19 msgid "Open list..." msgstr "Ouvrir la liste…" @@ -6088,12 +6115,12 @@ msgstr "Facultatif. Port UDP utilisé pour les paquets sortants et entrants." msgid "Options" msgstr "Options" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:526 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:531 msgid "" "Options for the Network-ID. (Note: needs also Network-ID.) E.g. " -"\"<code>42,192.168.1.4</code>\" for NTP server, \"<code>3,192.168.4.4</" -"code>\" for default route. <code>0.0.0.0</code> means \"the address of the " -"system running dnsmasq\"." +"\"<code>42,192.168.1.4</code>\" for NTP server, \"<code>3,192.168.4.4</code>" +"\" for default route. <code>0.0.0.0</code> means \"the address of the system " +"running dnsmasq\"." msgstr "" "Options pour le Network-ID. (Note : nécessite également Network-ID.) Par " "exemple, \"<code>42,192.168.1.4</code>\" pour le serveur NTP, " @@ -6104,6 +6131,11 @@ msgstr "" msgid "Options:" msgstr "Options :" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:584 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:616 +msgid "Ordinal: lower comes first." +msgstr "" + #: protocols/luci-proto-batman-adv/htdocs/luci-static/resources/protocol/batadv.js:55 msgid "Originator Interval" msgstr "Intervalle d'origine" @@ -6380,13 +6412,13 @@ msgid "Pass-through (Mirror physical device to single MAC VLAN)" msgstr "" "Pass-through (Mise en miroir du périphérique physique sur un seul VLAN MAC)" -#: modules/luci-base/luasrc/view/sysauth.htm:29 +#: modules/luci-base/ucode/template/sysauth.ut:29 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1690 #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:51 #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:114 #: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:103 #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:58 -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/sysauth.htm:24 +#: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/sysauth.ut:19 msgid "Password" msgstr "Mot de passe" @@ -6563,7 +6595,7 @@ msgstr "Ping" msgid "Pkts." msgstr "Pqts." -#: modules/luci-base/luasrc/view/sysauth.htm:19 +#: modules/luci-base/ucode/template/sysauth.ut:19 msgid "Please enter your username and password." msgstr "Saisissez votre nom d'utilisateur et mot de passe." @@ -6580,6 +6612,7 @@ msgctxt "Chain hook policy" msgid "Policy: <strong>%h</strong> (%h)" msgstr "Politique : <strong>%h</strong> (%h)" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:579 #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/dropbear.js:21 msgid "Port" msgstr "Port" @@ -6596,11 +6629,11 @@ msgstr "Statut du port :" msgid "Potential negation of: %s" msgstr "Négation potentielle de : %s" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:37 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:38 msgid "Power Management Mode" msgstr "Mode de gestion de l'énergie" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:35 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:36 msgid "Pre-emptive CRC errors (CRCP_P)" msgstr "Erreurs CRC préventives (CRCP_P)" @@ -6679,6 +6712,8 @@ msgid "Primary becomes active slave whenever it comes back up (always, 0)" msgstr "Le primaire devient un esclave actif dès qu'il revient (toujours, 0)" #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:508 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:584 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:616 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:129 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:197 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:223 @@ -6804,7 +6839,7 @@ msgstr "QMI Cellulaire" msgid "Quality" msgstr "Qualité" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:428 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:433 msgid "Query all available upstream resolvers." msgstr "" "Interroger tous les serveurs <abbr title=\"Système de noms de domaine\">DNS</" @@ -6890,7 +6925,7 @@ msgstr "" "Octets bruts codés en hexadécimal. Laissez le champ vide, sauf si votre FAI " "l'exige" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:345 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:350 msgid "Read <code>/etc/ethers</code> to configure the DHCP server." msgstr "Lisez <code>/etc/ethers</code> pour configurer le serveur DHCP." @@ -6906,7 +6941,7 @@ msgstr "Graphiques temps-réel" msgid "Reassociation Deadline" msgstr "Date limite de réassociation" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:301 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:306 msgid "Rebind protection" msgstr "Protection contre l'attaque « rebind »" @@ -6993,6 +7028,7 @@ msgstr "" "ou égale à la valeur spécifiée" #: modules/luci-compat/luasrc/model/network/proto_relay.lua:153 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:611 #: protocols/luci-proto-relay/htdocs/luci-static/resources/protocol/relay.js:39 msgid "Relay" msgstr "Relais" @@ -7083,6 +7119,10 @@ msgstr "Nécessaire avec certains FAIs, par ex. : Charter avec DOCSIS 3" msgid "Required. Base64-encoded private key for this interface." msgstr "Obligatoire. Clé privée encodée en Base64 pour cette interface." +#: protocols/luci-proto-nebula/htdocs/luci-static/resources/protocol/nebula.js:40 +msgid "Required. Path to the .yml config file for this interface." +msgstr "" + #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:587 msgid "Required. Public key of the WireGuard peer." msgstr "Obligatoire. Clé publique de l’homologue WireGuard." @@ -7164,7 +7204,7 @@ msgid "Reselection policy for primary slave" msgstr "Reselection politique pour esclave primaire" #: modules/luci-base/htdocs/luci-static/resources/luci.js:2197 -#: modules/luci-base/luasrc/view/sysauth.htm:39 +#: modules/luci-base/ucode/template/sysauth.ut:39 #: modules/luci-compat/luasrc/view/cbi/delegator.htm:17 #: modules/luci-compat/luasrc/view/cbi/footer.htm:30 #: modules/luci-compat/luasrc/view/cbi/simpleform.htm:66 @@ -7183,10 +7223,14 @@ msgstr "Ré-initialisation" msgid "Resolv and Hosts Files" msgstr "Fichiers Resolv et Hosts" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:356 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:361 msgid "Resolv file" msgstr "Fichier de résolution des noms" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:292 +msgid "Resolve specified FQDNs to an IP." +msgstr "Liste des domaines à forcer à une adresse IP." + #: modules/luci-base/htdocs/luci-static/resources/rpc.js:405 msgid "Resource not found" msgstr "Ressource non trouvée" @@ -7213,7 +7257,7 @@ msgstr "Restaurer" msgid "Restore backup" msgstr "Restaurer une sauvegarde" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:393 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:398 msgid "" "Return answers to DNS queries matching the subnet from which the query was " "received if multiple IPs are available." @@ -7305,7 +7349,7 @@ msgstr "" msgid "Robustness" msgstr "Robustesse" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:486 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:491 msgid "" "Root directory for files served via TFTP. <em>Enable TFTP server</em> and " "<em>TFTP server root</em> turn on the TFTP server and serve files from " @@ -7416,6 +7460,11 @@ msgstr "SHA256" msgid "SNR" msgstr "SNR" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:258 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:569 +msgid "SRV" +msgstr "" + #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/dropbear.js:10 #: modules/luci-mod-system/root/usr/share/luci/menu.d/luci-mod-system.json:38 msgid "SSH Access" @@ -7562,11 +7611,11 @@ msgstr "Envoyer le nom d'hôte de cet appareil" msgid "Server" msgstr "Serveur" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:519 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:524 msgid "Server address" msgstr "Adresse du serveur" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:513 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:518 msgid "Server name" msgstr "Nom du serveur" @@ -7621,8 +7670,8 @@ msgid "" "When enabled, clients will perform stateless IPv6 address autoconfiguration." msgstr "" "Définir l'indicateur de configuration d'adresse autonome dans les options " -"d'information sur les préfixes des messages envoyés par <abbr " -"title=\"Annonce de routeur\">RA</abbr>. Lorsqu'il est activé, les clients " +"d'information sur les préfixes des messages envoyés par <abbr title=" +"\"Annonce de routeur\">RA</abbr>. Lorsqu'il est activé, les clients " "effectueront une autoconfiguration d'adresse IPv6 sans état." #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:719 @@ -7664,7 +7713,7 @@ msgstr "Paramètres" msgid "Setup routes for proxied IPv6 neighbours." msgstr "Configurez les itinéraires pour les proxysIPv6 voisins." -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:30 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:31 msgid "Severely Errored Seconds (SES)" msgstr "Secondes gravement erronées (SES)" @@ -7678,7 +7727,6 @@ msgid "Short Preamble" msgstr "Préambule court" #: 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 msgid "Show current backup file list" msgstr "Afficher la liste des fichiers de la sauvegarde actuelle" @@ -7712,7 +7760,7 @@ msgstr "Signal" msgid "Signal / Noise" msgstr "Signal / bruit" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:25 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:26 msgid "Signal Attenuation (SATN)" msgstr "Atténuation du signal (SATN)" @@ -7729,7 +7777,7 @@ msgstr "Signal :" msgid "Size" msgstr "Taille" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:473 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:478 msgid "Size of DNS query cache" msgstr "Taille du cache de requête DNS" @@ -7747,12 +7795,12 @@ msgid "Skip from backup files that are equal to those in /rom" msgstr "" "Ignorer les fichiers de sauvegarde qui sont égaux à ceux présents dans /rom" -#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:42 +#: themes/luci-theme-openwrt-2020/ucode/template/themes/openwrt2020/header.ut:35 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:46 msgid "Skip to content" msgstr "Passer au contenu" -#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:41 +#: themes/luci-theme-openwrt-2020/ucode/template/themes/openwrt2020/header.ut:34 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:45 msgid "Skip to navigation" msgstr "Passer à la navigation" @@ -7770,14 +7818,10 @@ msgstr "VLAN logiciel" msgid "Some fields are invalid, cannot save values!" msgstr "Certains champs sont invalides, ne peut sauvegarder les valeurs !" -#: modules/luci-base/luasrc/view/error404.htm:9 +#: modules/luci-base/ucode/template/error404.ut:10 msgid "Sorry, the object you requested was not found." msgstr "Désolé, l'objet que vous avez demandé n'as pas été trouvé." -#: modules/luci-base/luasrc/view/error500.htm:9 -msgid "Sorry, the server encountered an unexpected error." -msgstr "Désolé, le serveur à rencontré une erreur inattendue." - #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:442 msgid "" "Sorry, there is no sysupgrade support present; a new firmware image must be " @@ -7817,13 +7861,13 @@ msgctxt "nft ip sport" msgid "Source port" msgstr "Port source" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:500 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:505 msgid "" "Special <abbr title=\"Preboot eXecution Environment\">PXE</abbr> boot " "options for Dnsmasq." msgstr "" -"Options de démarrage spéciales <abbr title=\"Preboot eXecution " -"Environment\">PXE</abbr> pour Dnsmasq." +"Options de démarrage spéciales <abbr title=\"Preboot eXecution Environment" +"\">PXE</abbr> pour Dnsmasq." #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:906 msgid "" @@ -8269,7 +8313,7 @@ msgstr "Baux Statiques" msgid "Static address" msgstr "Adresse statique" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:598 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:669 msgid "" "Static leases are used to assign fixed IP addresses and symbolic hostnames " "to DHCP clients. They are also required for non-dynamic interface " @@ -8287,7 +8331,7 @@ msgstr "Limite d'inactivité de la station" #: modules/luci-base/root/usr/share/luci/menu.d/luci-base.json:16 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:541 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:929 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:9 +#: modules/luci-mod-status/ucode/template/admin_status/index.ut:9 msgid "Status" msgstr "État" @@ -8313,7 +8357,7 @@ msgstr "Stockage" msgid "Strict filtering" msgstr "Filtrage strict" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:422 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:427 msgid "Strict order" msgstr "Ordre strict" @@ -8326,11 +8370,11 @@ msgstr "Forte" msgid "Submit" msgstr "Soumettre" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:372 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:377 msgid "Suppress logging" msgstr "Supprimer la journalisation" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:373 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:378 msgid "Suppress logging of the routine operation for the DHCP protocol." msgstr "" "Supprimer la journalisation du fonctionnement de routine pour le protocole " @@ -8387,6 +8431,14 @@ msgstr "Synchroniser avec le serveur NTP" msgid "Sync with browser" msgstr "Synchroniser avec le navigateur" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:293 +msgid "Syntax: <code>/fqdn[/fqdn…]/[ipaddr]</code>." +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:569 +msgid "Syntax: <code>_service._proto.example.com</code>." +msgstr "" + #: modules/luci-base/root/usr/share/luci/menu.d/luci-base.json:26 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/10_system.js:17 #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:113 @@ -8412,9 +8464,9 @@ msgstr "Propriétés système" msgid "System log buffer size" msgstr "Taille du tampon du journal système" -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:79 -#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:86 -#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:71 +#: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/header.ut:67 +#: themes/luci-theme-material/ucode/template/themes/material/header.ut:81 +#: themes/luci-theme-openwrt-2020/ucode/template/themes/openwrt2020/header.ut:64 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:89 msgid "System running in recovery (initramfs) mode." msgstr "Le système fonctionne en mode de récupération (initramfs)." @@ -8443,7 +8495,7 @@ msgstr "Port source TCP" msgid "TCP:" msgstr "TCP :" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:485 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:490 msgid "TFTP server root" msgstr "Racine du serveur TFTP" @@ -8468,6 +8520,7 @@ msgstr "Longueur de la file d'attente TX" msgid "Table" msgstr "Table" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:574 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:56 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:66 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:187 @@ -8554,15 +8607,15 @@ msgstr "" "vous devez maintenant utiliser le nom d'utilisateur brut au lieu de l'ID " "utilisateur!" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:681 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:752 msgid "The IP address %h is already used by another static lease" msgstr "L'adresse IP %h est déjà utilisée par un autre bail statique" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:690 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:761 msgid "The IP address is outside of any DHCP pool address range" msgstr "L’adresse IP est en dehors de toute plage d’adresses du pool DHCP" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:520 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:525 msgid "The IP address of the boot server" msgstr "Adresse IP du serveur de démarrage" @@ -8690,8 +8743,8 @@ msgid "" "The device file of the memory or partition (<abbr title=\"for example\">e.g." "</abbr> <code>/dev/sda1</code>)" msgstr "" -"Le fichier de périphérique de la mémoire ou de la partition (<abbr " -"title=\"par exemple\">par exemple.</abbr> <code>/dev/sda1</code>)" +"Le fichier de périphérique de la mémoire ou de la partition (<abbr title=" +"\"par exemple\">par exemple.</abbr> <code>/dev/sda1</code>)" #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:450 msgid "The device name \"%s\" is already taken" @@ -8772,7 +8825,7 @@ msgstr "" "d’un saut supplémentaire (le paquet doit être reçu et retransmis, ce qui " "coûte du temps d’antenne)" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:514 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:519 msgid "The hostname of the boot server" msgstr "Nom d’hôte du serveur d’amorçage" @@ -8874,8 +8927,8 @@ msgstr "Le nom du réseau est déjà utilisé" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:139 msgid "" -"The network ports on this device can be combined to several <abbr " -"title=\"Virtual Local Area Network\">VLAN</abbr>s in which computers can " +"The network ports on this device can be combined to several <abbr title=" +"\"Virtual Local Area Network\">VLAN</abbr>s in which computers can " "communicate directly with each other. <abbr title=\"Virtual Local Area " "Network\">VLAN</abbr>s are often used to separate different network " "segments. Often there is by default one Uplink port for a connection to the " @@ -8948,7 +9001,7 @@ msgstr "" msgid "The selected %s mode is incompatible with %s encryption" msgstr "Le mode %s sélectionné n'est pas compatible avec le chiffrement %s" -#: modules/luci-base/luasrc/view/csrftoken.htm:11 +#: modules/luci-base/ucode/template/csrftoken.ut:11 msgid "The submitted security token is invalid or already expired!" msgstr "Le jeton de sécurité soumis n'est pas valide ou a expiré !" @@ -9038,8 +9091,8 @@ msgstr "" "de règles iptables et nftables est déconseillé et peut entraîner un filtrage " "incomplet du trafic." -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:746 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:778 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:817 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:849 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:130 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:179 msgid "There are no active leases" @@ -9049,8 +9102,8 @@ msgstr "Aucun bail actif" msgid "There are no changes to apply" msgstr "Il n'y a aucun changement à appliquer" -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:70 -#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:62 +#: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/header.ut:58 +#: themes/luci-theme-openwrt-2020/ucode/template/themes/openwrt2020/header.ut:55 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:80 msgid "" "There is no password set on this router. Please configure a root password to " @@ -9075,7 +9128,6 @@ msgid "This does not look like a valid PEM file" msgstr "Cela ne ressemble pas à un fichier PEM valide" #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:454 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:16 msgid "" "This is a list of shell glob patterns for matching files and directories to " "include during sysupgrade. Modified files in /etc/config/ and certain other " @@ -9129,7 +9181,7 @@ msgstr "" "Il s'agit de l'adresse de l'extrémité locale attribuée par le fournisseur de " "tunnels, elle se termine habituellement avec <code>...:2/64</code>" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:266 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:268 msgid "This is the only DHCP server in the local network." msgstr "" "C'est le seul serveur <abbr title=\"Protocole de Configuration Dynamique des " @@ -9223,8 +9275,8 @@ msgstr "Fuseau horaire" #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:440 msgid "" "To fully configure the local WireGuard interface from an existing (e.g. " -"provider supplied) configuration file, use the <strong><a class=\"full-" -"import\" href=\"#\">configuration import</a></strong> instead." +"provider supplied) configuration file, use the <strong><a class=\"full-import" +"\" href=\"#\">configuration import</a></strong> instead." msgstr "" "Pour configurer entièrement l'interface WireGuard locale à partir d'un " "fichier de configuration existant (par exemple, fourni par le fournisseur), " @@ -9394,7 +9446,7 @@ msgstr "Impossible de déterminer l'adresse IP externe" msgid "Unable to determine upstream interface" msgstr "Impossible de déterminer l'interface en amont" -#: modules/luci-base/luasrc/view/error404.htm:11 +#: modules/luci-base/ucode/template/error404.ut:12 msgid "Unable to dispatch" msgstr "Impossible d'envoyer" @@ -9449,7 +9501,7 @@ msgstr "Impossible d'enregistrer le contenu : %s" msgid "Unable to verify PIN" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:32 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:33 msgid "Unavailable Seconds (UAS)" msgstr "Secondes non disponibles (UAS)" @@ -9606,7 +9658,7 @@ msgstr "" "En appuyant sur « Continuer », les options ifname seront renommées et le " "réseau sera redémarré pour appliquer la configuration mise à jour." -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:423 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:428 msgid "Upstream resolvers will be queried in the order of the resolv file." msgstr "" "Les serveurs <abbr title=\"Domain Name System\">DNS</abbr> seront interrogés " @@ -9617,7 +9669,7 @@ msgstr "" msgid "Uptime" msgstr "Durée de fonctionnement" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:344 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:349 msgid "Use <code>/etc/ethers</code>" msgstr "Utilisez <code>/etc/ethers</code>" @@ -9733,7 +9785,7 @@ msgstr "Utiliser des certificats système" msgid "Use system certificates for inner-tunnel" msgstr "Utiliser des certificats système pour le tunnel intérieur" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:599 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:670 msgid "" "Use the <em>Add</em> Button to add a new lease entry. The <em>MAC address</" "em> identifies the host, the <em>IPv4 address</em> specifies the fixed " @@ -9795,11 +9847,11 @@ msgstr "Identifiant de l'utilisateur" msgid "User key (PEM encoded)" msgstr "Clé utilisateur (codée PEM)" -#: modules/luci-base/luasrc/view/sysauth.htm:23 +#: modules/luci-base/ucode/template/sysauth.ut:23 #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:112 #: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:101 #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:56 -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/sysauth.htm:18 +#: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/sysauth.ut:13 msgid "Username" msgstr "Nom d'utilisateur" @@ -9897,7 +9949,7 @@ msgstr "Identificateur réseau VXLAN" msgid "VXLANv6 (RFC7348)" msgstr "VXLANv6 (RFC7348)" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:398 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:403 msgid "" "Validate DNS replies and cache DNSSEC data, requires upstream to support " "DNSSEC." @@ -9934,7 +9986,7 @@ msgstr "Vendeur" msgid "Vendor Class to send when requesting DHCP" msgstr "Classe de fournisseur à envoyer dans les requêtes DHCP" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:403 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:408 msgid "Verify unsigned domain responses really come from unsigned domains." msgstr "" "Vérifier que les réponses de domaines non signés proviennent réellement de " @@ -10015,6 +10067,10 @@ msgstr "" msgid "Weak" msgstr "Faible" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:589 +msgid "Weight" +msgstr "" + #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1029 msgid "" "When delegating prefixes to multiple downstreams, interfaces with a higher " @@ -10155,7 +10211,7 @@ msgstr "Le réseau Wi-Fi est désactivé" msgid "Wireless network is enabled" msgstr "Le réseau Wi-Fi est activé" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:278 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:280 msgid "Write received DNS queries to syslog." msgstr "Écrire les requêtes DNS reçues dans syslog." @@ -10193,11 +10249,19 @@ msgid "" msgstr "" "Vous pouvez activer ou désactiver les scripts d'initialisation installés " "ici. Les changements seront pris en compte après un redémarrage. <br /" -"><strong>Attention : Si vous désactivez des scripts essentiels comme " -"\"réseau\", votre équipement pourrait ne plus être accessible !</strong>" +"><strong>Attention : Si vous désactivez des scripts essentiels comme \"réseau" +"\", votre équipement pourrait ne plus être accessible !</strong>" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:559 +msgid "You may add multiple records for the same Target." +msgstr "" -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:90 -#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:97 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:596 +msgid "You may add multiple records for the same domain." +msgstr "" + +#: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/header.ut:78 +#: themes/luci-theme-material/ucode/template/themes/material/header.ut:92 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:73 msgid "" "You must enable JavaScript in your browser or LuCI will not work properly." @@ -10232,7 +10296,17 @@ msgstr "Paramètres ZRam" msgid "ZRam Size" msgstr "Taille ZRam" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:449 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:558 +msgid "_proto: _tcp, _udp, _sctp, _quic, … ." +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:557 +msgid "" +"_service: _sip, _ldap, _imap, _stun, _xmpp-client, … . (Note: while _http is " +"possible, no browsers support SRV records.)" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:454 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:152 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:163 msgid "any" @@ -10343,8 +10417,8 @@ msgstr "p. ex. : --proxy 10.10.10.10" msgid "e.g: dump" msgstr "par exemple : vidage" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:726 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:756 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:797 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:827 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:101 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:148 msgid "expired" @@ -10548,9 +10622,9 @@ msgid "" "<abbr title=\"Hypertext Transfer Protocol Secure\">HTTPS</abbr> network " "access." msgstr "" -"uHTTPd offre un accès réseau <abbr title=\"Hypertext Transfer " -"Protocol\">HTTP</abbr> ou <abbr title=\"Hypertext Transfer Protocol " -"Secure\">HTTPS</abbr>." +"uHTTPd offre un accès réseau <abbr title=\"Hypertext Transfer Protocol" +"\">HTTP</abbr> ou <abbr title=\"Hypertext Transfer Protocol Secure\">HTTPS</" +"abbr>." #: modules/luci-base/htdocs/luci-static/resources/validation.js:574 msgid "unique value" @@ -10560,9 +10634,9 @@ msgstr "valeur unique" msgid "unknown" msgstr "inconnu" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:456 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:724 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:754 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:461 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:795 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:825 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:99 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:146 msgid "unlimited" @@ -10778,6 +10852,21 @@ msgstr "oui" msgid "« Back" msgstr "« Retour" +#~ msgid "Back to configuration" +#~ msgstr "Retour à la configuration" + +#~ msgid "Close list..." +#~ msgstr "Fermer la liste…" + +#~ msgid "Internal Server Error" +#~ msgstr "Erreur Serveur Interne" + +#~ msgid "No files found" +#~ msgstr "Aucun fichier trouvé" + +#~ msgid "Sorry, the server encountered an unexpected error." +#~ msgstr "Désolé, le serveur à rencontré une erreur inattendue." + #~ msgid "Do not forward queries that cannot be answered by public resolvers." #~ msgstr "" #~ "Ne pas transmettre les requêtes qui ne peuvent être résolues par les " @@ -11090,8 +11179,8 @@ msgstr "« Retour" #~ msgid "" #~ "The filesystem that was used to format the memory (<abbr title=\"for " -#~ "example\">e.g.</abbr> <samp><abbr title=\"Third Extended " -#~ "Filesystem\">ext3</abbr></samp>)" +#~ "example\">e.g.</abbr> <samp><abbr title=\"Third Extended Filesystem" +#~ "\">ext3</abbr></samp>)" #~ msgstr "" #~ "Le système de fichiers utilisé pour formatter le support de stockage " #~ "(ex : ext3)" diff --git a/modules/luci-base/po/he/base.po b/modules/luci-base/po/he/base.po index d2089fec2b..8f90d6e198 100644 --- a/modules/luci-base/po/he/base.po +++ b/modules/luci-base/po/he/base.po @@ -228,6 +228,18 @@ msgstr "" msgid "<abbr title=\"Router Advertisement\">RA</abbr>-Service" msgstr "" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:294 +msgid "" +"<code>/#/</code> matches any domain. <code>/example.com/</code> returns " +"NXDOMAIN." +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:295 +msgid "" +"<code>/example.com/#</code> returns NULL addresses (<code>0.0.0.0</code> and " +"<code>::</code>) for example.com and its subdomains." +msgstr "" + #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:87 msgctxt "nft relational \">\" operator expression" msgid "<var>%s</var> greater than <strong>%s</strong>" @@ -387,7 +399,7 @@ msgstr "" msgid "ATM device number" msgstr "מס' התקן של ATM" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:36 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:37 msgid "ATU-C System Vendor ID" msgstr "" @@ -397,7 +409,7 @@ msgstr "" msgid "Absent Interface" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:320 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:325 msgid "Accept DNS queries only from hosts whose address is on a local subnet." msgstr "" @@ -539,7 +551,7 @@ msgstr "" msgid "Add key" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:410 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:415 msgid "Add local domain suffix to names served from hosts files." msgstr "הוסף דומיין מקומי לשמות המוגשים מהקבצים של המארח" @@ -560,11 +572,11 @@ msgstr "" msgid "Add to Whitelist" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:367 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:372 msgid "Additional hosts files" msgstr "קבצי מארח נוספים" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:417 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:422 msgid "Additional servers file" msgstr "" @@ -594,7 +606,7 @@ msgstr "" msgid "Address to access local relay bridge" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:289 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:291 msgid "Addresses" msgstr "" @@ -628,7 +640,7 @@ msgstr "" msgid "Aggregate Originator Messages" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:27 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:28 msgid "Aggregate Transmit Power (ACTATP)" msgstr "" @@ -665,17 +677,17 @@ msgstr "" msgid "Alias of \"%s\"" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:427 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:432 msgid "All servers" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:378 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:383 msgid "" "Allocate IP addresses sequentially, starting from the lowest available " "address." msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:377 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:382 msgid "Allocate IPs sequentially" msgstr "" @@ -704,7 +716,7 @@ msgstr "" msgid "Allow listed only" msgstr "אפשר רשומים בלבד" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:306 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:311 #, fuzzy msgid "Allow localhost" msgstr "אפשר localhost" @@ -749,7 +761,7 @@ msgstr "" msgid "Always on (kernel: default-on)" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:538 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:543 msgid "Always send DHCP Options. Sometimes needed, with e.g. PXELinux." msgstr "" @@ -776,7 +788,7 @@ msgid "An optional, short description for this device" msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1484 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:20 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:21 msgid "Annex" msgstr "" @@ -892,7 +904,7 @@ msgstr "" msgid "Any zone" msgstr "כל תחום" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:532 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:537 msgid "Apply DHCP Options to this net. (Empty = all clients)." msgstr "" @@ -982,11 +994,11 @@ msgstr "אימות" msgid "Authentication Type" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:265 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:267 msgid "Authoritative" msgstr "מוסמך" -#: modules/luci-base/luasrc/view/sysauth.htm:17 +#: modules/luci-base/ucode/template/sysauth.ut:17 #: themes/luci-theme-bootstrap/htdocs/luci-static/resources/view/bootstrap/sysauth.js:11 msgid "Authorization Required" msgstr "דרוש אימות" @@ -1056,7 +1068,7 @@ msgstr "ממוצע:" msgid "Avoid Bridge Loops" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:388 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:393 msgid "" "Avoid uselessly triggering dial-on-demand links (filters SRV/SOA records and " "names with underscores)." @@ -1091,10 +1103,6 @@ msgstr "חזרה" msgid "Back to Overview" msgstr "חזרה לסקירה" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:48 -msgid "Back to configuration" -msgstr "חזרה להגדרות" - #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:826 msgid "Back to peer configuration" msgstr "" @@ -1108,7 +1116,6 @@ msgid "Backup / Flash Firmware" msgstr "גיבוי / קושחת פלאש" #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:351 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:12 msgid "Backup file list" msgstr "גיבוי רשימת קבצים" @@ -1150,7 +1157,6 @@ msgid "Beacon Interval" msgstr "" #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:352 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:46 msgid "" "Below is the determined list of files to backup. It consists of changed " "configuration files marked by opkg, essential base files and the user " @@ -1164,7 +1170,7 @@ msgstr "" msgid "Bind NTP server" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:326 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:331 msgid "Bind dynamically to interfaces rather than wildcard address." msgstr "" @@ -1180,6 +1186,17 @@ msgstr "" msgid "Bind interface" msgstr "" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:595 +msgid "" +"Bind service records to a domain name: specify the location of services." +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:556 +msgid "" +"Bind service records to a domain name: specify the location of services. See " +"<a href=\"%s\">RFC2782</a>." +msgstr "" + #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:59 #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:64 #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:64 @@ -1283,6 +1300,10 @@ msgstr "" msgid "CLAT configuration failed" msgstr "" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:574 +msgid "CNAME or fqdn" +msgstr "" + #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/processes.js:72 msgid "CPU usage (%)" msgstr "שימוש מעבד (%)" @@ -1520,17 +1541,13 @@ msgid "" "persist connection" msgstr "סגור חיבורים לא פעילים אחרי מספר השניות שהוגדר, הזן 0 על-מנת לא לסגור" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:49 -msgid "Close list..." -msgstr "סגור רשימה..." - #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:44 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:63 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2184 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:391 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:352 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:355 -#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:72 +#: themes/luci-theme-material/ucode/template/themes/material/header.ut:66 msgid "Collecting data..." msgstr "נאספים נתונים…" @@ -1565,6 +1582,10 @@ msgstr "" msgid "Compute outgoing checksum (optional)." msgstr "" +#: protocols/luci-proto-nebula/htdocs/luci-static/resources/protocol/nebula.js:40 +msgid "Config File" +msgstr "" + #: modules/luci-base/htdocs/luci-static/resources/ui.js:4375 #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:454 msgid "Configuration" @@ -1604,8 +1625,8 @@ msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:764 msgid "" -"Configures the operation mode of the <abbr title=\"Router " -"Advertisement\">RA</abbr> service on this interface." +"Configures the operation mode of the <abbr title=\"Router Advertisement" +"\">RA</abbr> service on this interface." msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:879 @@ -1778,8 +1799,8 @@ msgstr "" #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/leds.js:59 msgid "" -"Customizes the behaviour of the device <abbr title=\"Light Emitting " -"Diode\">LED</abbr>s if possible." +"Customizes the behaviour of the device <abbr title=\"Light Emitting Diode" +"\">LED</abbr>s if possible." msgstr "" "מתאים את הגדרות ה-<abbr title=\"Light Emitting Diode\">LED</abbr>-ים במכשיר " "(אם אפשרי)." @@ -1800,7 +1821,7 @@ msgstr "" msgid "DAE-Secret" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:525 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:530 msgid "DHCP Options" msgstr "" @@ -1840,11 +1861,11 @@ msgstr "" msgid "DNS" msgstr "DNS" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:282 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:284 msgid "DNS forwardings" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:445 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:450 msgid "DNS query port" msgstr "<abbr title=\"Domain Name System\">DNS</abbr> יציאת שאילתא" @@ -1852,7 +1873,7 @@ msgstr "<abbr title=\"Domain Name System\">DNS</abbr> יציאת שאילתא" msgid "DNS search domains" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:438 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:443 msgid "DNS server port" msgstr "<abbr title=\"Domain Name System\">DNS</abbr> יציאת שרת" @@ -1868,11 +1889,11 @@ msgstr "" msgid "DNS-Label / FQDN" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:397 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:402 msgid "DNSSEC" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:402 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:407 msgid "DNSSEC check unsigned" msgstr "" @@ -1885,11 +1906,11 @@ msgid "DS-Lite AFTR address" msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1481 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:44 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:45 msgid "DSL" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:14 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:15 msgid "DSL Status" msgstr "" @@ -1902,12 +1923,12 @@ msgid "DTIM Interval" msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:59 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:700 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:771 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:136 msgid "DUID" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:21 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:22 msgid "Data Rate" msgstr "" @@ -2152,7 +2173,7 @@ msgstr "" msgid "Disassociate On Low Acknowledgement" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:302 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:307 msgid "" "Discard upstream responses containing <a href=\"%s\">RFC1918</a> addresses." msgstr "" @@ -2198,7 +2219,7 @@ msgstr "מרחק לנק' הרשת הרחוקה ביותר במטרים" msgid "Distributed ARP Table" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:543 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:548 msgid "" "Dnsmasq instance to which this boot section is bound. If unspecified, the " "section is valid for all dnsmasq instances." @@ -2206,12 +2227,12 @@ msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:246 msgid "" -"Dnsmasq is a lightweight <abbr title=\"Dynamic Host Configuration " -"Protocol\">DHCP</abbr> server and <abbr title=\"Domain Name System\">DNS</" -"abbr> forwarder." +"Dnsmasq is a lightweight <abbr title=\"Dynamic Host Configuration Protocol" +"\">DHCP</abbr> server and <abbr title=\"Domain Name System\">DNS</abbr> " +"forwarder." msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:414 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:419 msgid "Do not cache negative replies, e.g. for non-existent domains." msgstr "" @@ -2223,15 +2244,15 @@ msgstr "" msgid "Do not create host route to peer (optional)." msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:262 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:264 msgid "Do not forward DNS queries without dots or domain parts." msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:383 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:388 msgid "Do not forward reverse lookups for local networks." msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:339 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:344 msgid "Do not listen on the specified interfaces." msgstr "" @@ -2284,15 +2305,16 @@ msgstr "" msgid "Do you want to replace the current keys?" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:593 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:606 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:664 msgid "Domain" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:261 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:263 msgid "Domain required" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:311 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:316 msgid "Domain whitelist" msgstr "" @@ -2528,7 +2550,7 @@ msgstr "" msgid "Enable Single DES" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:480 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:485 msgid "Enable TFTP server" msgstr "אפשר שרת TFTP" @@ -2546,9 +2568,9 @@ msgstr "" #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/uhttpd.js:14 msgid "" -"Enable automatic redirection of <abbr title=\"Hypertext Transfer " -"Protocol\">HTTP</abbr> requests to <abbr title=\"Hypertext Transfer Protocol " -"Secure\">HTTPS</abbr> port." +"Enable automatic redirection of <abbr title=\"Hypertext Transfer Protocol" +"\">HTTP</abbr> requests to <abbr title=\"Hypertext Transfer Protocol Secure" +"\">HTTPS</abbr> port." msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:977 @@ -2611,7 +2633,7 @@ msgstr "" msgid "Enable the DF (Don't Fragment) flag of the encapsulating packets." msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:481 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:486 msgid "Enable the built-in single-instance TFTP server." msgstr "" @@ -2728,7 +2750,7 @@ msgstr "שגיאה" msgid "Error getting PublicKey" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:29 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:30 msgid "Errored seconds (ES)" msgstr "" @@ -2750,11 +2772,11 @@ msgstr "" msgid "Every second (fast, 1)" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:338 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:343 msgid "Exclude interfaces" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:307 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:312 msgid "" "Exempt <code>127.0.0.0/8</code> and <code>::1</code> from rebinding checks, " "e.g. for RBL services." @@ -2764,7 +2786,7 @@ msgstr "" msgid "Existing device" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:409 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:414 msgid "Expand hosts" msgstr "" @@ -2898,7 +2920,7 @@ msgstr "" msgid "File" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:418 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:423 msgid "" "File listing upstream resolvers, optionally domain-specific, e.g. " "<code>server=1.2.3.4</code>, <code>server=/domain/1.2.3.4</code>." @@ -2908,20 +2930,20 @@ msgstr "" msgid "File not accessible" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:349 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:354 msgid "File to store DHCP lease information." msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:357 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:362 msgid "File with upstream resolvers." msgstr "" #: modules/luci-base/htdocs/luci-static/resources/ui.js:2846 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:507 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:512 msgid "Filename" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:493 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:498 msgid "Filename of the boot image advertised to clients." msgstr "" @@ -2930,11 +2952,11 @@ msgstr "" msgid "Filesystem" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:382 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:387 msgid "Filter private" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:387 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:392 msgid "Filter useless" msgstr "" @@ -2998,7 +3020,7 @@ msgstr "" msgid "Firmware Version" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:446 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:451 msgid "Fixed source port for outbound DNS queries." msgstr "" @@ -3024,7 +3046,7 @@ msgstr "" msgid "Flashing…" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:537 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:542 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:686 msgid "Force" msgstr "" @@ -3069,16 +3091,16 @@ msgstr "" msgid "Force use of NAT-T" msgstr "" -#: modules/luci-base/luasrc/view/csrftoken.htm:8 +#: modules/luci-base/ucode/template/csrftoken.ut:8 msgid "Form token mismatch" msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:919 msgid "" -"Forward <abbr title=\"Neighbour Discovery Protocol\">NDP</abbr> <abbr " -"title=\"Neighbour Solicitation, Type 135\">NS</abbr> and <abbr " -"title=\"Neighbour Advertisement, Type 136\">NA</abbr> messages between the " -"designated master interface and downstream interfaces." +"Forward <abbr title=\"Neighbour Discovery Protocol\">NDP</abbr> <abbr title=" +"\"Neighbour Solicitation, Type 135\">NS</abbr> and <abbr title=\"Neighbour " +"Advertisement, Type 136\">NA</abbr> messages between the designated master " +"interface and downstream interfaces." msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:770 @@ -3098,7 +3120,7 @@ msgid "" "downstream interfaces." msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:28 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:29 msgid "Forward Error Correction Seconds (FECS)" msgstr "" @@ -3255,15 +3277,15 @@ msgstr "" msgid "Global network options" msgstr "" -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:82 -#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:89 -#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:74 +#: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/header.ut:70 +#: themes/luci-theme-material/ucode/template/themes/material/header.ut:84 +#: themes/luci-theme-openwrt-2020/ucode/template/themes/openwrt2020/header.ut:67 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:92 msgid "Go to firmware upgrade..." msgstr "" -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:72 -#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:64 +#: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/header.ut:60 +#: themes/luci-theme-openwrt-2020/ucode/template/themes/openwrt2020/header.ut:57 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:82 msgid "Go to password configuration..." msgstr "" @@ -3404,7 +3426,7 @@ msgstr "" msgid "Hang Up" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:33 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:34 msgid "Header Error Code Errors (HEC)" msgstr "" @@ -3455,7 +3477,7 @@ msgstr "" msgid "Host expiry timeout" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:508 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:513 msgid "Host requests this filename from the boot server." msgstr "" @@ -3464,8 +3486,8 @@ msgid "Host-Uniq tag content" msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:38 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:559 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:607 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:630 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:678 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/10_system.js:54 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:87 #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:135 @@ -3480,7 +3502,7 @@ msgstr "" msgid "Hostnames" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:551 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:622 msgid "" "Hostnames are used to bind a domain name to an IP address. This setting is " "redundant for hostnames already configured with static leases, but it can be " @@ -3544,7 +3566,7 @@ msgstr "" msgid "IP Protocol" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:258 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:260 msgid "IP Sets" msgstr "" @@ -3552,7 +3574,7 @@ msgstr "" msgid "IP Type" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:563 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:634 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:178 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:204 msgid "IP address" @@ -3578,15 +3600,15 @@ msgctxt "nft meta l4proto" msgid "IP protocol" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:589 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:660 msgid "IP set" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:295 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:300 msgid "IP sets" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:432 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:437 msgid "IPs to override with NXDOMAIN" msgstr "" @@ -3627,7 +3649,7 @@ msgstr "" #: modules/luci-base/htdocs/luci-static/resources/protocol/static.js:178 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:39 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:665 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:736 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:88 #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:164 msgid "IPv4 address" @@ -3798,7 +3820,7 @@ msgstr "" msgid "IPv6 suffix" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:706 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:777 msgid "IPv6 suffix (hex)" msgstr "" @@ -3890,13 +3912,13 @@ msgstr "" #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:340 msgid "" "If your physical memory is insufficient unused data can be temporarily " -"swapped to a swap-device resulting in a higher amount of usable <abbr " -"title=\"Random Access Memory\">RAM</abbr>. Be aware that swapping data is a " -"very slow process as the swap-device cannot be accessed with the high " -"datarates of the <abbr title=\"Random Access Memory\">RAM</abbr>." +"swapped to a swap-device resulting in a higher amount of usable <abbr title=" +"\"Random Access Memory\">RAM</abbr>. Be aware that swapping data is a very " +"slow process as the swap-device cannot be accessed with the high datarates " +"of the <abbr title=\"Random Access Memory\">RAM</abbr>." msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:363 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:368 msgid "Ignore <code>/etc/hosts</code>" msgstr "" @@ -3904,7 +3926,7 @@ msgstr "" msgid "Ignore interface" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:352 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:357 msgid "Ignore resolv file" msgstr "" @@ -3952,7 +3974,7 @@ msgid "" "order to avoid broadcast loops that can bring the entire LAN to a standstill." msgstr "" -#: modules/luci-base/luasrc/view/csrftoken.htm:13 +#: modules/luci-base/ucode/template/csrftoken.ut:13 msgid "" "In order to prevent unauthorized access to the system, your request has been " "blocked. Click \"Continue »\" below to return to the previous page." @@ -4061,7 +4083,7 @@ msgstr "" msgid "Install protocol extensions..." msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:542 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:547 msgid "Instance" msgstr "" @@ -4148,10 +4170,6 @@ msgstr "" msgid "Internal" msgstr "" -#: modules/luci-base/luasrc/view/error500.htm:8 -msgid "Internal Server Error" -msgstr "" - #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:285 msgid "Interval For Sending Learning Packets" msgstr "" @@ -4220,8 +4238,8 @@ msgstr "" msgid "Invalid hexadecimal value" msgstr "" -#: modules/luci-base/luasrc/view/sysauth.htm:12 -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/sysauth.htm:37 +#: modules/luci-base/ucode/template/sysauth.ut:12 +#: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/sysauth.ut:32 msgid "Invalid username and/or password! Please try again." msgstr "שם משתמש ו/או סיסמה שגויים! אנא נסה שנית." @@ -4243,8 +4261,8 @@ msgid "" "flash memory, please verify the image file!" msgstr "" -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:89 -#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:96 +#: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/header.ut:77 +#: themes/luci-theme-material/ucode/template/themes/material/header.ut:91 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:72 msgid "JavaScript required!" msgstr "" @@ -4376,11 +4394,17 @@ msgstr "" msgid "Language and Style" msgstr "" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:560 +msgid "" +"Larger weights (of the same prio) are given a proportionately higher " +"probability of being selected." +msgstr "" + #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:575 msgid "Last member interval" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:23 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:24 msgid "Latency" msgstr "" @@ -4396,11 +4420,11 @@ msgstr "" msgid "Learn routes" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:348 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:353 msgid "Lease file" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:697 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:768 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:679 msgid "Lease time" msgstr "" @@ -4444,19 +4468,19 @@ msgstr "" msgid "Limit" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:24 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:25 msgid "Line Attenuation (LATN)" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:18 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:19 msgid "Line Mode" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:17 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:18 msgid "Line State" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:19 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:20 msgid "Line Uptime" msgstr "" @@ -4477,12 +4501,12 @@ msgctxt "nft @ll,off,len" msgid "Link layer header bits %d-%d" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:433 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:438 msgid "List of IP addresses to convert into NXDOMAIN responses." msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:296 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:581 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:301 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:652 msgid "List of IP sets to populate with the specified domain IPs." msgstr "" @@ -4508,15 +4532,11 @@ msgstr "" msgid "List of SSH key files for auth" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:312 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:317 msgid "List of domains to allow RFC1918 responses for." msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:290 -msgid "List of domains to force to an IP address." -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:283 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:285 msgid "List of upstream resolvers to forward queries to." msgstr "" @@ -4524,7 +4544,7 @@ msgstr "" msgid "Listen Port" msgstr "פתחת האזנה" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:332 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:337 msgid "Listen interfaces" msgstr "" @@ -4532,7 +4552,7 @@ msgstr "" msgid "Listen only on the given interface or, if unspecified, on all" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:333 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:338 msgid "" "Listen only on the specified interfaces, and loopback if not excluded " "explicitly." @@ -4542,7 +4562,7 @@ msgstr "" msgid "ListenPort setting is invalid" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:439 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:444 msgid "Listening port for inbound DNS queries." msgstr "" @@ -4569,9 +4589,9 @@ msgid "Loading directory contents…" msgstr "" #: modules/luci-base/htdocs/luci-static/resources/luci.js:1942 -#: modules/luci-base/luasrc/view/view.htm:4 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:12 -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/sysauth.htm:45 +#: modules/luci-base/ucode/template/view.ut:4 +#: modules/luci-mod-status/ucode/template/admin_status/index.ut:12 +#: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/sysauth.ut:40 msgid "Loading view…" msgstr "" @@ -4629,19 +4649,19 @@ msgstr "" msgid "Local ULA" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:273 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:275 msgid "Local domain" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:274 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:276 msgid "Local domain suffix appended to DHCP names and hosts file entries." msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:269 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:271 msgid "Local server" msgstr "שרת מקומי" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:319 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:324 msgid "Local service only" msgstr "" @@ -4649,7 +4669,7 @@ msgstr "" msgid "Local wireguard key" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:392 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:397 msgid "Localise queries" msgstr "" @@ -4661,7 +4681,7 @@ msgstr "" msgid "Log output level" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:277 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:279 msgid "Log queries" msgstr "" @@ -4685,8 +4705,8 @@ msgstr "" msgid "Logical network to which the tunnel will be added (bridged) (optional)." msgstr "" -#: modules/luci-base/luasrc/view/sysauth.htm:38 -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/sysauth.htm:41 +#: modules/luci-base/ucode/template/sysauth.ut:38 +#: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/sysauth.ut:36 msgid "Login" msgstr "" @@ -4698,7 +4718,7 @@ msgstr "" msgid "Loose filtering" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:31 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:32 msgid "Loss of Signal Seconds (LOSS)" msgstr "" @@ -4706,6 +4726,10 @@ msgstr "" msgid "Lowest leased address as offset from the network address." msgstr "" +#: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/footer.ut:12 +msgid "Lua compatibility mode active" +msgstr "" + #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:48 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:83 msgid "MAC" @@ -4730,7 +4754,7 @@ msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:591 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:40 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:619 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:690 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1164 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2177 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:56 @@ -4789,6 +4813,10 @@ msgstr "" msgid "MTU" msgstr "" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:259 +msgid "MX" +msgstr "" + #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:303 msgid "" "Make sure to clone the root filesystem using something like the commands " @@ -4813,19 +4841,19 @@ msgstr "" msgid "Max <abbr title=\"Router Advertisement\">RA</abbr> interval" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:22 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:23 msgid "Max. Attainable Data Rate (ATTNDR)" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:452 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:457 msgid "Max. DHCP leases" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:459 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:464 msgid "Max. EDNS0 packet size" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:466 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:471 msgid "Max. concurrent queries" msgstr "" @@ -4837,15 +4865,15 @@ msgstr "" msgid "Maximum allowed Listen Interval" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:453 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:458 msgid "Maximum allowed number of active DHCP leases." msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:467 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:472 msgid "Maximum allowed number of concurrent DNS queries." msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:460 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:465 msgid "Maximum allowed size of EDNS0 UDP packets." msgstr "" @@ -4872,7 +4900,7 @@ msgstr "" msgid "Maximum transmit power" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:389 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:394 msgid "May prevent VoIP or other services from working." msgstr "" @@ -5186,11 +5214,15 @@ msgstr "" msgid "Name of the tunnel device" msgstr "" -#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:46 +#: themes/luci-theme-openwrt-2020/ucode/template/themes/openwrt2020/header.ut:39 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:50 msgid "Navigation" msgstr "" +#: protocols/luci-proto-nebula/htdocs/luci-static/resources/protocol/nebula.js:10 +msgid "Nebula Network" +msgstr "" + #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:653 msgid "Neighbour cache validity" msgstr "" @@ -5226,7 +5258,7 @@ msgstr "" msgid "Network address" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:492 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:497 msgid "Network boot image" msgstr "" @@ -5266,7 +5298,7 @@ msgstr "" msgid "Network interface" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:531 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:536 msgid "Network-ID" msgstr "" @@ -5274,7 +5306,7 @@ msgstr "" msgid "Never" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:270 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:272 msgid "" "Never forward matching domains and subdomains, resolve from DHCP or hosts " "files only." @@ -5322,9 +5354,9 @@ msgstr "" msgid "No RX signal" msgstr "" -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:80 -#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:87 -#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:72 +#: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/header.ut:68 +#: themes/luci-theme-material/ucode/template/themes/material/header.ut:82 +#: themes/luci-theme-openwrt-2020/ucode/template/themes/openwrt2020/header.ut:65 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:90 msgid "" "No changes to settings will be stored and are lost after rebooting. This " @@ -5366,10 +5398,6 @@ msgstr "" msgid "No entries in this directory" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:82 -msgid "No files found" -msgstr "" - #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:833 msgid "" "No fixed interface listening port defined, peers might not be able to " @@ -5405,7 +5433,7 @@ msgstr "" msgid "No more slaves available, can not save interface" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:413 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:418 msgid "No negative cache" msgstr "" @@ -5413,8 +5441,8 @@ msgstr "" msgid "No nftables ruleset loaded." msgstr "" -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:69 -#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:61 +#: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/header.ut:57 +#: themes/luci-theme-openwrt-2020/ucode/template/themes/openwrt2020/header.ut:54 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:79 msgid "No password set!" msgstr "לא הוגדרה סיסמה!" @@ -5454,7 +5482,7 @@ msgstr "" msgid "Noise" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:26 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:27 msgid "Noise Margin (SNR)" msgstr "" @@ -5462,11 +5490,11 @@ msgstr "" msgid "Noise:" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:34 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:35 msgid "Non Pre-emptive CRC errors (CRC_P)" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:325 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:330 msgid "Non-wildcard" msgstr "" @@ -5481,7 +5509,7 @@ msgstr "" msgid "Normal" msgstr "" -#: modules/luci-base/luasrc/view/error404.htm:8 +#: modules/luci-base/ucode/template/error404.ut:9 msgid "Not Found" msgstr "" @@ -5531,7 +5559,7 @@ msgstr "" msgid "Number of IGMP membership reports" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:474 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:479 msgid "Number of cached DNS entries, 10000 is maximum, 0 is no caching." msgstr "" @@ -5580,7 +5608,7 @@ msgstr "" msgid "On-link" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:672 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:743 msgid "One of hostname or MAC address must be specified!" msgstr "" @@ -5616,7 +5644,6 @@ msgid "Open iptables rules overview…" msgstr "" #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:472 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:19 msgid "Open list..." msgstr "" @@ -5760,18 +5787,23 @@ msgstr "" msgid "Options" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:526 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:531 msgid "" "Options for the Network-ID. (Note: needs also Network-ID.) E.g. " -"\"<code>42,192.168.1.4</code>\" for NTP server, \"<code>3,192.168.4.4</" -"code>\" for default route. <code>0.0.0.0</code> means \"the address of the " -"system running dnsmasq\"." +"\"<code>42,192.168.1.4</code>\" for NTP server, \"<code>3,192.168.4.4</code>" +"\" for default route. <code>0.0.0.0</code> means \"the address of the system " +"running dnsmasq\"." msgstr "" #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:125 msgid "Options:" msgstr "" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:584 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:616 +msgid "Ordinal: lower comes first." +msgstr "" + #: protocols/luci-proto-batman-adv/htdocs/luci-static/resources/protocol/batadv.js:55 msgid "Originator Interval" msgstr "" @@ -6043,13 +6075,13 @@ msgctxt "MACVLAN mode" msgid "Pass-through (Mirror physical device to single MAC VLAN)" msgstr "" -#: modules/luci-base/luasrc/view/sysauth.htm:29 +#: modules/luci-base/ucode/template/sysauth.ut:29 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1690 #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:51 #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:114 #: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:103 #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:58 -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/sysauth.htm:24 +#: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/sysauth.ut:19 msgid "Password" msgstr "" @@ -6220,7 +6252,7 @@ msgstr "" msgid "Pkts." msgstr "" -#: modules/luci-base/luasrc/view/sysauth.htm:19 +#: modules/luci-base/ucode/template/sysauth.ut:19 msgid "Please enter your username and password." msgstr "אנא הזן את שם המשתמש והסיסמה שלך:" @@ -6237,6 +6269,7 @@ msgctxt "Chain hook policy" msgid "Policy: <strong>%h</strong> (%h)" msgstr "" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:579 #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/dropbear.js:21 msgid "Port" msgstr "פתחה" @@ -6253,11 +6286,11 @@ msgstr "" msgid "Potential negation of: %s" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:37 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:38 msgid "Power Management Mode" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:35 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:36 msgid "Pre-emptive CRC errors (CRCP_P)" msgstr "" @@ -6330,6 +6363,8 @@ msgid "Primary becomes active slave whenever it comes back up (always, 0)" msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:508 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:584 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:616 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:129 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:197 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:223 @@ -6445,7 +6480,7 @@ msgstr "" msgid "Quality" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:428 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:433 msgid "Query all available upstream resolvers." msgstr "" @@ -6527,7 +6562,7 @@ msgstr "" msgid "Raw hex-encoded bytes. Leave empty unless your ISP require this" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:345 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:350 msgid "Read <code>/etc/ethers</code> to configure the DHCP server." msgstr "" @@ -6543,7 +6578,7 @@ msgstr "" msgid "Reassociation Deadline" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:301 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:306 msgid "Rebind protection" msgstr "" @@ -6628,6 +6663,7 @@ msgid "" msgstr "" #: modules/luci-compat/luasrc/model/network/proto_relay.lua:153 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:611 #: protocols/luci-proto-relay/htdocs/luci-static/resources/protocol/relay.js:39 msgid "Relay" msgstr "" @@ -6718,6 +6754,10 @@ msgstr "" msgid "Required. Base64-encoded private key for this interface." msgstr "" +#: protocols/luci-proto-nebula/htdocs/luci-static/resources/protocol/nebula.js:40 +msgid "Required. Path to the .yml config file for this interface." +msgstr "" + #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:587 msgid "Required. Public key of the WireGuard peer." msgstr "" @@ -6799,7 +6839,7 @@ msgid "Reselection policy for primary slave" msgstr "" #: modules/luci-base/htdocs/luci-static/resources/luci.js:2197 -#: modules/luci-base/luasrc/view/sysauth.htm:39 +#: modules/luci-base/ucode/template/sysauth.ut:39 #: modules/luci-compat/luasrc/view/cbi/delegator.htm:17 #: modules/luci-compat/luasrc/view/cbi/footer.htm:30 #: modules/luci-compat/luasrc/view/cbi/simpleform.htm:66 @@ -6818,10 +6858,14 @@ msgstr "" msgid "Resolv and Hosts Files" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:356 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:361 msgid "Resolv file" msgstr "" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:292 +msgid "Resolve specified FQDNs to an IP." +msgstr "" + #: modules/luci-base/htdocs/luci-static/resources/rpc.js:405 msgid "Resource not found" msgstr "" @@ -6848,7 +6892,7 @@ msgstr "שחזור" msgid "Restore backup" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:393 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:398 msgid "" "Return answers to DNS queries matching the subnet from which the query was " "received if multiple IPs are available." @@ -6934,7 +6978,7 @@ msgstr "" msgid "Robustness" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:486 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:491 msgid "" "Root directory for files served via TFTP. <em>Enable TFTP server</em> and " "<em>TFTP server root</em> turn on the TFTP server and serve files from " @@ -7037,6 +7081,11 @@ msgstr "" msgid "SNR" msgstr "" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:258 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:569 +msgid "SRV" +msgstr "" + #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/dropbear.js:10 #: modules/luci-mod-system/root/usr/share/luci/menu.d/luci-mod-system.json:38 msgid "SSH Access" @@ -7174,11 +7223,11 @@ msgstr "" msgid "Server" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:519 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:524 msgid "Server address" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:513 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:518 msgid "Server name" msgstr "" @@ -7266,7 +7315,7 @@ msgstr "" msgid "Setup routes for proxied IPv6 neighbours." msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:30 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:31 msgid "Severely Errored Seconds (SES)" msgstr "" @@ -7280,7 +7329,6 @@ msgid "Short Preamble" msgstr "" #: 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 msgid "Show current backup file list" msgstr "" @@ -7314,7 +7362,7 @@ msgstr "" msgid "Signal / Noise" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:25 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:26 msgid "Signal Attenuation (SATN)" msgstr "" @@ -7331,7 +7379,7 @@ msgstr "" msgid "Size" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:473 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:478 msgid "Size of DNS query cache" msgstr "" @@ -7348,12 +7396,12 @@ msgstr "" msgid "Skip from backup files that are equal to those in /rom" msgstr "" -#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:42 +#: themes/luci-theme-openwrt-2020/ucode/template/themes/openwrt2020/header.ut:35 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:46 msgid "Skip to content" msgstr "דלג אל התוכן" -#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:41 +#: themes/luci-theme-openwrt-2020/ucode/template/themes/openwrt2020/header.ut:34 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:45 msgid "Skip to navigation" msgstr "דלג אל הניווט" @@ -7371,14 +7419,10 @@ msgstr "" msgid "Some fields are invalid, cannot save values!" msgstr "חלק מהשדות אינם תקינים, אין אפשרות לשמור את הערכים!" -#: modules/luci-base/luasrc/view/error404.htm:9 +#: modules/luci-base/ucode/template/error404.ut:10 msgid "Sorry, the object you requested was not found." msgstr "סליחה, אך האובייקט שביקשת אינו נמצא." -#: modules/luci-base/luasrc/view/error500.htm:9 -msgid "Sorry, the server encountered an unexpected error." -msgstr "סליחה, השרת נתקל בשגיאה לא צפויה." - #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:442 msgid "" "Sorry, there is no sysupgrade support present; a new firmware image must be " @@ -7416,7 +7460,7 @@ msgctxt "nft ip sport" msgid "Source port" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:500 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:505 msgid "" "Special <abbr title=\"Preboot eXecution Environment\">PXE</abbr> boot " "options for Dnsmasq." @@ -7784,7 +7828,7 @@ msgstr "הקצאות סטטיות" msgid "Static address" msgstr "כתובת סטטית" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:598 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:669 msgid "" "Static leases are used to assign fixed IP addresses and symbolic hostnames " "to DHCP clients. They are also required for non-dynamic interface " @@ -7801,7 +7845,7 @@ msgstr "" #: modules/luci-base/root/usr/share/luci/menu.d/luci-base.json:16 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:541 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:929 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:9 +#: modules/luci-mod-status/ucode/template/admin_status/index.ut:9 msgid "Status" msgstr "מצב" @@ -7827,7 +7871,7 @@ msgstr "" msgid "Strict filtering" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:422 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:427 msgid "Strict order" msgstr "" @@ -7840,11 +7884,11 @@ msgstr "" msgid "Submit" msgstr "שלח" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:372 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:377 msgid "Suppress logging" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:373 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:378 msgid "Suppress logging of the routine operation for the DHCP protocol." msgstr "" @@ -7897,6 +7941,14 @@ msgstr "" msgid "Sync with browser" msgstr "" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:293 +msgid "Syntax: <code>/fqdn[/fqdn…]/[ipaddr]</code>." +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:569 +msgid "Syntax: <code>_service._proto.example.com</code>." +msgstr "" + #: modules/luci-base/root/usr/share/luci/menu.d/luci-base.json:26 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/10_system.js:17 #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:113 @@ -7922,9 +7974,9 @@ msgstr "" msgid "System log buffer size" msgstr "" -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:79 -#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:86 -#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:71 +#: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/header.ut:67 +#: themes/luci-theme-material/ucode/template/themes/material/header.ut:81 +#: themes/luci-theme-openwrt-2020/ucode/template/themes/openwrt2020/header.ut:64 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:89 msgid "System running in recovery (initramfs) mode." msgstr "" @@ -7953,7 +8005,7 @@ msgstr "" msgid "TCP:" msgstr "TCP:" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:485 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:490 msgid "TFTP server root" msgstr "" @@ -7978,6 +8030,7 @@ msgstr "" msgid "Table" msgstr "טבלה" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:574 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:56 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:66 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:187 @@ -8048,15 +8101,15 @@ msgid "" "username instead of the user ID!" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:681 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:752 msgid "The IP address %h is already used by another static lease" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:690 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:761 msgid "The IP address is outside of any DHCP pool address range" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:520 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:525 msgid "The IP address of the boot server" msgstr "" @@ -8221,7 +8274,7 @@ msgid "" "to be received and retransmitted which costs airtime)" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:514 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:519 msgid "The hostname of the boot server" msgstr "" @@ -8306,8 +8359,8 @@ msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:139 msgid "" -"The network ports on this device can be combined to several <abbr " -"title=\"Virtual Local Area Network\">VLAN</abbr>s in which computers can " +"The network ports on this device can be combined to several <abbr title=" +"\"Virtual Local Area Network\">VLAN</abbr>s in which computers can " "communicate directly with each other. <abbr title=\"Virtual Local Area " "Network\">VLAN</abbr>s are often used to separate different network " "segments. Often there is by default one Uplink port for a connection to the " @@ -8358,7 +8411,7 @@ msgstr "" msgid "The selected %s mode is incompatible with %s encryption" msgstr "" -#: modules/luci-base/luasrc/view/csrftoken.htm:11 +#: modules/luci-base/ucode/template/csrftoken.ut:11 msgid "The submitted security token is invalid or already expired!" msgstr "" @@ -8428,8 +8481,8 @@ msgid "" "nftables rules is discouraged and may lead to incomplete traffic filtering." msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:746 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:778 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:817 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:849 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:130 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:179 msgid "There are no active leases" @@ -8439,8 +8492,8 @@ msgstr "" msgid "There are no changes to apply" msgstr "" -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:70 -#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:62 +#: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/header.ut:58 +#: themes/luci-theme-openwrt-2020/ucode/template/themes/openwrt2020/header.ut:55 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:80 msgid "" "There is no password set on this router. Please configure a root password to " @@ -8461,7 +8514,6 @@ msgid "This does not look like a valid PEM file" msgstr "" #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:454 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:16 msgid "" "This is a list of shell glob patterns for matching files and directories to " "include during sysupgrade. Modified files in /etc/config/ and certain other " @@ -8497,7 +8549,7 @@ msgid "" "ends with <code>...:2/64</code>" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:266 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:268 msgid "This is the only DHCP server in the local network." msgstr "" @@ -8576,8 +8628,8 @@ msgstr "אזור זמן" #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:440 msgid "" "To fully configure the local WireGuard interface from an existing (e.g. " -"provider supplied) configuration file, use the <strong><a class=\"full-" -"import\" href=\"#\">configuration import</a></strong> instead." +"provider supplied) configuration file, use the <strong><a class=\"full-import" +"\" href=\"#\">configuration import</a></strong> instead." msgstr "" #: modules/luci-base/htdocs/luci-static/resources/luci.js:2674 @@ -8740,7 +8792,7 @@ msgstr "" msgid "Unable to determine upstream interface" msgstr "" -#: modules/luci-base/luasrc/view/error404.htm:11 +#: modules/luci-base/ucode/template/error404.ut:12 msgid "Unable to dispatch" msgstr "" @@ -8795,7 +8847,7 @@ msgstr "" msgid "Unable to verify PIN" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:32 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:33 msgid "Unavailable Seconds (UAS)" msgstr "" @@ -8939,7 +8991,7 @@ msgid "" "will be restarted to apply the updated configuration." msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:423 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:428 msgid "Upstream resolvers will be queried in the order of the resolv file." msgstr "" @@ -8948,7 +9000,7 @@ msgstr "" msgid "Uptime" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:344 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:349 msgid "Use <code>/etc/ethers</code>" msgstr "" @@ -9059,7 +9111,7 @@ msgstr "" msgid "Use system certificates for inner-tunnel" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:599 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:670 msgid "" "Use the <em>Add</em> Button to add a new lease entry. The <em>MAC address</" "em> identifies the host, the <em>IPv4 address</em> specifies the fixed " @@ -9110,11 +9162,11 @@ msgstr "" msgid "User key (PEM encoded)" msgstr "" -#: modules/luci-base/luasrc/view/sysauth.htm:23 +#: modules/luci-base/ucode/template/sysauth.ut:23 #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:112 #: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:101 #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:56 -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/sysauth.htm:18 +#: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/sysauth.ut:13 msgid "Username" msgstr "שם משתמש" @@ -9212,7 +9264,7 @@ msgstr "" msgid "VXLANv6 (RFC7348)" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:398 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:403 msgid "" "Validate DNS replies and cache DNSSEC data, requires upstream to support " "DNSSEC." @@ -9245,7 +9297,7 @@ msgstr "" msgid "Vendor Class to send when requesting DHCP" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:403 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:408 msgid "Verify unsigned domain responses really come from unsigned domains." msgstr "" @@ -9320,6 +9372,10 @@ msgstr "" msgid "Weak" msgstr "" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:589 +msgid "Weight" +msgstr "" + #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1029 msgid "" "When delegating prefixes to multiple downstreams, interfaces with a higher " @@ -9440,7 +9496,7 @@ msgstr "רשת אלחוטית מנוטרלת" msgid "Wireless network is enabled" msgstr "רשת אלחוטית מאופשרת" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:278 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:280 msgid "Write received DNS queries to syslog." msgstr "" @@ -9475,8 +9531,16 @@ msgid "" "scripts like \"network\", your device might become inaccessible!</strong>" msgstr "" -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:90 -#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:97 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:559 +msgid "You may add multiple records for the same Target." +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:596 +msgid "You may add multiple records for the same domain." +msgstr "" + +#: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/header.ut:78 +#: themes/luci-theme-material/ucode/template/themes/material/header.ut:92 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:73 msgid "" "You must enable JavaScript in your browser or LuCI will not work properly." @@ -9505,7 +9569,17 @@ msgstr "" msgid "ZRam Size" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:449 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:558 +msgid "_proto: _tcp, _udp, _sctp, _quic, … ." +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:557 +msgid "" +"_service: _sip, _ldap, _imap, _stun, _xmpp-client, … . (Note: while _http is " +"possible, no browsers support SRV records.)" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:454 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:152 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:163 msgid "any" @@ -9616,8 +9690,8 @@ msgstr "" msgid "e.g: dump" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:726 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:756 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:797 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:827 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:101 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:148 msgid "expired" @@ -9828,9 +9902,9 @@ msgstr "" msgid "unknown" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:456 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:724 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:754 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:461 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:795 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:825 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:99 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:146 msgid "unlimited" @@ -10046,6 +10120,15 @@ msgstr "כן" msgid "« Back" msgstr "<< אחורה" +#~ msgid "Back to configuration" +#~ msgstr "חזרה להגדרות" + +#~ msgid "Close list..." +#~ msgstr "סגור רשימה..." + +#~ msgid "Sorry, the server encountered an unexpected error." +#~ msgstr "סליחה, השרת נתקל בשגיאה לא צפויה." + #~ msgid "TFTP Settings" #~ msgstr "הגדרות TFTP" diff --git a/modules/luci-base/po/hi/base.po b/modules/luci-base/po/hi/base.po index 5cd3213b9c..b0ab5c2b88 100644 --- a/modules/luci-base/po/hi/base.po +++ b/modules/luci-base/po/hi/base.po @@ -225,6 +225,18 @@ msgstr "" msgid "<abbr title=\"Router Advertisement\">RA</abbr>-Service" msgstr "" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:294 +msgid "" +"<code>/#/</code> matches any domain. <code>/example.com/</code> returns " +"NXDOMAIN." +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:295 +msgid "" +"<code>/example.com/#</code> returns NULL addresses (<code>0.0.0.0</code> and " +"<code>::</code>) for example.com and its subdomains." +msgstr "" + #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:87 msgctxt "nft relational \">\" operator expression" msgid "<var>%s</var> greater than <strong>%s</strong>" @@ -385,7 +397,7 @@ msgstr "" msgid "ATM device number" msgstr "ATM यंत्र अंक" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:36 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:37 msgid "ATU-C System Vendor ID" msgstr "ATU-C सिस्टम विक्रेता पहचान (ID)" @@ -395,7 +407,7 @@ msgstr "ATU-C सिस्टम विक्रेता पहचान (ID)" msgid "Absent Interface" msgstr "अनुपस्थित इंटरफ़ेस" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:320 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:325 msgid "Accept DNS queries only from hosts whose address is on a local subnet." msgstr "" @@ -534,7 +546,7 @@ msgstr "दृष्टांत जोड़ें" msgid "Add key" msgstr "चाबी जोड़ें" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:410 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:415 msgid "Add local domain suffix to names served from hosts files." msgstr "" @@ -555,11 +567,11 @@ msgstr "" msgid "Add to Whitelist" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:367 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:372 msgid "Additional hosts files" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:417 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:422 msgid "Additional servers file" msgstr "" @@ -589,7 +601,7 @@ msgstr "" msgid "Address to access local relay bridge" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:289 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:291 msgid "Addresses" msgstr "" @@ -622,7 +634,7 @@ msgstr "" msgid "Aggregate Originator Messages" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:27 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:28 msgid "Aggregate Transmit Power (ACTATP)" msgstr "" @@ -658,17 +670,17 @@ msgstr "" msgid "Alias of \"%s\"" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:427 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:432 msgid "All servers" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:378 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:383 msgid "" "Allocate IP addresses sequentially, starting from the lowest available " "address." msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:377 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:382 msgid "Allocate IPs sequentially" msgstr "" @@ -696,7 +708,7 @@ msgstr "" msgid "Allow listed only" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:306 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:311 msgid "Allow localhost" msgstr "" @@ -740,7 +752,7 @@ msgstr "" msgid "Always on (kernel: default-on)" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:538 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:543 msgid "Always send DHCP Options. Sometimes needed, with e.g. PXELinux." msgstr "" @@ -767,7 +779,7 @@ msgid "An optional, short description for this device" msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1484 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:20 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:21 msgid "Annex" msgstr "" @@ -881,7 +893,7 @@ msgstr "" msgid "Any zone" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:532 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:537 msgid "Apply DHCP Options to this net. (Empty = all clients)." msgstr "" @@ -971,11 +983,11 @@ msgstr "" msgid "Authentication Type" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:265 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:267 msgid "Authoritative" msgstr "" -#: modules/luci-base/luasrc/view/sysauth.htm:17 +#: modules/luci-base/ucode/template/sysauth.ut:17 #: themes/luci-theme-bootstrap/htdocs/luci-static/resources/view/bootstrap/sysauth.js:11 msgid "Authorization Required" msgstr "" @@ -1045,7 +1057,7 @@ msgstr "" msgid "Avoid Bridge Loops" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:388 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:393 msgid "" "Avoid uselessly triggering dial-on-demand links (filters SRV/SOA records and " "names with underscores)." @@ -1080,10 +1092,6 @@ msgstr "" msgid "Back to Overview" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:48 -msgid "Back to configuration" -msgstr "" - #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:826 msgid "Back to peer configuration" msgstr "" @@ -1097,7 +1105,6 @@ msgid "Backup / Flash Firmware" msgstr "" #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:351 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:12 msgid "Backup file list" msgstr "" @@ -1139,7 +1146,6 @@ msgid "Beacon Interval" msgstr "" #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:352 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:46 msgid "" "Below is the determined list of files to backup. It consists of changed " "configuration files marked by opkg, essential base files and the user " @@ -1150,7 +1156,7 @@ msgstr "" msgid "Bind NTP server" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:326 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:331 msgid "Bind dynamically to interfaces rather than wildcard address." msgstr "" @@ -1166,6 +1172,17 @@ msgstr "" msgid "Bind interface" msgstr "" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:595 +msgid "" +"Bind service records to a domain name: specify the location of services." +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:556 +msgid "" +"Bind service records to a domain name: specify the location of services. See " +"<a href=\"%s\">RFC2782</a>." +msgstr "" + #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:59 #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:64 #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:64 @@ -1268,6 +1285,10 @@ msgstr "" msgid "CLAT configuration failed" msgstr "" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:574 +msgid "CNAME or fqdn" +msgstr "" + #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/processes.js:72 msgid "CPU usage (%)" msgstr "" @@ -1505,17 +1526,13 @@ msgid "" "persist connection" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:49 -msgid "Close list..." -msgstr "" - #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:44 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:63 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2184 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:391 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:352 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:355 -#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:72 +#: themes/luci-theme-material/ucode/template/themes/material/header.ut:66 msgid "Collecting data..." msgstr "" @@ -1550,6 +1567,10 @@ msgstr "" msgid "Compute outgoing checksum (optional)." msgstr "" +#: protocols/luci-proto-nebula/htdocs/luci-static/resources/protocol/nebula.js:40 +msgid "Config File" +msgstr "" + #: modules/luci-base/htdocs/luci-static/resources/ui.js:4375 #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:454 msgid "Configuration" @@ -1589,8 +1610,8 @@ msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:764 msgid "" -"Configures the operation mode of the <abbr title=\"Router " -"Advertisement\">RA</abbr> service on this interface." +"Configures the operation mode of the <abbr title=\"Router Advertisement" +"\">RA</abbr> service on this interface." msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:879 @@ -1763,8 +1784,8 @@ msgstr "" #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/leds.js:59 msgid "" -"Customizes the behaviour of the device <abbr title=\"Light Emitting " -"Diode\">LED</abbr>s if possible." +"Customizes the behaviour of the device <abbr title=\"Light Emitting Diode" +"\">LED</abbr>s if possible." msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:673 @@ -1783,7 +1804,7 @@ msgstr "" msgid "DAE-Secret" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:525 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:530 msgid "DHCP Options" msgstr "" @@ -1823,11 +1844,11 @@ msgstr "" msgid "DNS" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:282 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:284 msgid "DNS forwardings" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:445 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:450 msgid "DNS query port" msgstr "" @@ -1835,7 +1856,7 @@ msgstr "" msgid "DNS search domains" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:438 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:443 msgid "DNS server port" msgstr "" @@ -1851,11 +1872,11 @@ msgstr "" msgid "DNS-Label / FQDN" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:397 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:402 msgid "DNSSEC" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:402 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:407 msgid "DNSSEC check unsigned" msgstr "" @@ -1868,11 +1889,11 @@ msgid "DS-Lite AFTR address" msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1481 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:44 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:45 msgid "DSL" msgstr "DSL" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:14 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:15 msgid "DSL Status" msgstr "" @@ -1885,12 +1906,12 @@ msgid "DTIM Interval" msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:59 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:700 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:771 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:136 msgid "DUID" msgstr "DUID" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:21 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:22 msgid "Data Rate" msgstr "" @@ -2133,7 +2154,7 @@ msgstr "" msgid "Disassociate On Low Acknowledgement" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:302 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:307 msgid "" "Discard upstream responses containing <a href=\"%s\">RFC1918</a> addresses." msgstr "" @@ -2179,7 +2200,7 @@ msgstr "" msgid "Distributed ARP Table" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:543 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:548 msgid "" "Dnsmasq instance to which this boot section is bound. If unspecified, the " "section is valid for all dnsmasq instances." @@ -2187,12 +2208,12 @@ msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:246 msgid "" -"Dnsmasq is a lightweight <abbr title=\"Dynamic Host Configuration " -"Protocol\">DHCP</abbr> server and <abbr title=\"Domain Name System\">DNS</" -"abbr> forwarder." +"Dnsmasq is a lightweight <abbr title=\"Dynamic Host Configuration Protocol" +"\">DHCP</abbr> server and <abbr title=\"Domain Name System\">DNS</abbr> " +"forwarder." msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:414 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:419 msgid "Do not cache negative replies, e.g. for non-existent domains." msgstr "" @@ -2204,15 +2225,15 @@ msgstr "" msgid "Do not create host route to peer (optional)." msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:262 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:264 msgid "Do not forward DNS queries without dots or domain parts." msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:383 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:388 msgid "Do not forward reverse lookups for local networks." msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:339 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:344 msgid "Do not listen on the specified interfaces." msgstr "" @@ -2265,15 +2286,16 @@ msgstr "" msgid "Do you want to replace the current keys?" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:593 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:606 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:664 msgid "Domain" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:261 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:263 msgid "Domain required" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:311 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:316 msgid "Domain whitelist" msgstr "" @@ -2507,7 +2529,7 @@ msgstr "" msgid "Enable Single DES" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:480 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:485 msgid "Enable TFTP server" msgstr "" @@ -2525,9 +2547,9 @@ msgstr "" #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/uhttpd.js:14 msgid "" -"Enable automatic redirection of <abbr title=\"Hypertext Transfer " -"Protocol\">HTTP</abbr> requests to <abbr title=\"Hypertext Transfer Protocol " -"Secure\">HTTPS</abbr> port." +"Enable automatic redirection of <abbr title=\"Hypertext Transfer Protocol" +"\">HTTP</abbr> requests to <abbr title=\"Hypertext Transfer Protocol Secure" +"\">HTTPS</abbr> port." msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:977 @@ -2590,7 +2612,7 @@ msgstr "" msgid "Enable the DF (Don't Fragment) flag of the encapsulating packets." msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:481 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:486 msgid "Enable the built-in single-instance TFTP server." msgstr "" @@ -2707,7 +2729,7 @@ msgstr "" msgid "Error getting PublicKey" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:29 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:30 msgid "Errored seconds (ES)" msgstr "" @@ -2729,11 +2751,11 @@ msgstr "" msgid "Every second (fast, 1)" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:338 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:343 msgid "Exclude interfaces" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:307 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:312 msgid "" "Exempt <code>127.0.0.0/8</code> and <code>::1</code> from rebinding checks, " "e.g. for RBL services." @@ -2743,7 +2765,7 @@ msgstr "" msgid "Existing device" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:409 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:414 msgid "Expand hosts" msgstr "" @@ -2877,7 +2899,7 @@ msgstr "" msgid "File" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:418 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:423 msgid "" "File listing upstream resolvers, optionally domain-specific, e.g. " "<code>server=1.2.3.4</code>, <code>server=/domain/1.2.3.4</code>." @@ -2887,20 +2909,20 @@ msgstr "" msgid "File not accessible" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:349 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:354 msgid "File to store DHCP lease information." msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:357 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:362 msgid "File with upstream resolvers." msgstr "" #: modules/luci-base/htdocs/luci-static/resources/ui.js:2846 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:507 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:512 msgid "Filename" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:493 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:498 msgid "Filename of the boot image advertised to clients." msgstr "" @@ -2909,11 +2931,11 @@ msgstr "" msgid "Filesystem" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:382 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:387 msgid "Filter private" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:387 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:392 msgid "Filter useless" msgstr "" @@ -2977,7 +2999,7 @@ msgstr "" msgid "Firmware Version" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:446 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:451 msgid "Fixed source port for outbound DNS queries." msgstr "" @@ -3003,7 +3025,7 @@ msgstr "" msgid "Flashing…" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:537 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:542 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:686 msgid "Force" msgstr "" @@ -3048,16 +3070,16 @@ msgstr "" msgid "Force use of NAT-T" msgstr "" -#: modules/luci-base/luasrc/view/csrftoken.htm:8 +#: modules/luci-base/ucode/template/csrftoken.ut:8 msgid "Form token mismatch" msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:919 msgid "" -"Forward <abbr title=\"Neighbour Discovery Protocol\">NDP</abbr> <abbr " -"title=\"Neighbour Solicitation, Type 135\">NS</abbr> and <abbr " -"title=\"Neighbour Advertisement, Type 136\">NA</abbr> messages between the " -"designated master interface and downstream interfaces." +"Forward <abbr title=\"Neighbour Discovery Protocol\">NDP</abbr> <abbr title=" +"\"Neighbour Solicitation, Type 135\">NS</abbr> and <abbr title=\"Neighbour " +"Advertisement, Type 136\">NA</abbr> messages between the designated master " +"interface and downstream interfaces." msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:770 @@ -3077,7 +3099,7 @@ msgid "" "downstream interfaces." msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:28 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:29 msgid "Forward Error Correction Seconds (FECS)" msgstr "" @@ -3234,15 +3256,15 @@ msgstr "" msgid "Global network options" msgstr "" -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:82 -#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:89 -#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:74 +#: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/header.ut:70 +#: themes/luci-theme-material/ucode/template/themes/material/header.ut:84 +#: themes/luci-theme-openwrt-2020/ucode/template/themes/openwrt2020/header.ut:67 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:92 msgid "Go to firmware upgrade..." msgstr "" -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:72 -#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:64 +#: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/header.ut:60 +#: themes/luci-theme-openwrt-2020/ucode/template/themes/openwrt2020/header.ut:57 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:82 msgid "Go to password configuration..." msgstr "" @@ -3383,7 +3405,7 @@ msgstr "" msgid "Hang Up" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:33 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:34 msgid "Header Error Code Errors (HEC)" msgstr "" @@ -3434,7 +3456,7 @@ msgstr "" msgid "Host expiry timeout" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:508 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:513 msgid "Host requests this filename from the boot server." msgstr "" @@ -3443,8 +3465,8 @@ msgid "Host-Uniq tag content" msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:38 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:559 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:607 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:630 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:678 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/10_system.js:54 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:87 #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:135 @@ -3459,7 +3481,7 @@ msgstr "" msgid "Hostnames" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:551 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:622 msgid "" "Hostnames are used to bind a domain name to an IP address. This setting is " "redundant for hostnames already configured with static leases, but it can be " @@ -3523,7 +3545,7 @@ msgstr "" msgid "IP Protocol" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:258 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:260 msgid "IP Sets" msgstr "" @@ -3531,7 +3553,7 @@ msgstr "" msgid "IP Type" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:563 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:634 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:178 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:204 msgid "IP address" @@ -3557,15 +3579,15 @@ msgctxt "nft meta l4proto" msgid "IP protocol" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:589 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:660 msgid "IP set" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:295 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:300 msgid "IP sets" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:432 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:437 msgid "IPs to override with NXDOMAIN" msgstr "" @@ -3606,7 +3628,7 @@ msgstr "" #: modules/luci-base/htdocs/luci-static/resources/protocol/static.js:178 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:39 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:665 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:736 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:88 #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:164 msgid "IPv4 address" @@ -3777,7 +3799,7 @@ msgstr "" msgid "IPv6 suffix" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:706 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:777 msgid "IPv6 suffix (hex)" msgstr "" @@ -3869,13 +3891,13 @@ msgstr "" #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:340 msgid "" "If your physical memory is insufficient unused data can be temporarily " -"swapped to a swap-device resulting in a higher amount of usable <abbr " -"title=\"Random Access Memory\">RAM</abbr>. Be aware that swapping data is a " -"very slow process as the swap-device cannot be accessed with the high " -"datarates of the <abbr title=\"Random Access Memory\">RAM</abbr>." +"swapped to a swap-device resulting in a higher amount of usable <abbr title=" +"\"Random Access Memory\">RAM</abbr>. Be aware that swapping data is a very " +"slow process as the swap-device cannot be accessed with the high datarates " +"of the <abbr title=\"Random Access Memory\">RAM</abbr>." msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:363 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:368 msgid "Ignore <code>/etc/hosts</code>" msgstr "" @@ -3883,7 +3905,7 @@ msgstr "" msgid "Ignore interface" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:352 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:357 msgid "Ignore resolv file" msgstr "" @@ -3931,7 +3953,7 @@ msgid "" "order to avoid broadcast loops that can bring the entire LAN to a standstill." msgstr "" -#: modules/luci-base/luasrc/view/csrftoken.htm:13 +#: modules/luci-base/ucode/template/csrftoken.ut:13 msgid "" "In order to prevent unauthorized access to the system, your request has been " "blocked. Click \"Continue »\" below to return to the previous page." @@ -4040,7 +4062,7 @@ msgstr "" msgid "Install protocol extensions..." msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:542 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:547 msgid "Instance" msgstr "" @@ -4127,10 +4149,6 @@ msgstr "" msgid "Internal" msgstr "" -#: modules/luci-base/luasrc/view/error500.htm:8 -msgid "Internal Server Error" -msgstr "" - #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:285 msgid "Interval For Sending Learning Packets" msgstr "" @@ -4199,8 +4217,8 @@ msgstr "" msgid "Invalid hexadecimal value" msgstr "" -#: modules/luci-base/luasrc/view/sysauth.htm:12 -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/sysauth.htm:37 +#: modules/luci-base/ucode/template/sysauth.ut:12 +#: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/sysauth.ut:32 msgid "Invalid username and/or password! Please try again." msgstr "" @@ -4222,8 +4240,8 @@ msgid "" "flash memory, please verify the image file!" msgstr "" -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:89 -#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:96 +#: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/header.ut:77 +#: themes/luci-theme-material/ucode/template/themes/material/header.ut:91 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:72 msgid "JavaScript required!" msgstr "" @@ -4355,11 +4373,17 @@ msgstr "" msgid "Language and Style" msgstr "" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:560 +msgid "" +"Larger weights (of the same prio) are given a proportionately higher " +"probability of being selected." +msgstr "" + #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:575 msgid "Last member interval" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:23 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:24 msgid "Latency" msgstr "" @@ -4375,11 +4399,11 @@ msgstr "" msgid "Learn routes" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:348 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:353 msgid "Lease file" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:697 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:768 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:679 msgid "Lease time" msgstr "" @@ -4423,19 +4447,19 @@ msgstr "" msgid "Limit" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:24 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:25 msgid "Line Attenuation (LATN)" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:18 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:19 msgid "Line Mode" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:17 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:18 msgid "Line State" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:19 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:20 msgid "Line Uptime" msgstr "" @@ -4456,12 +4480,12 @@ msgctxt "nft @ll,off,len" msgid "Link layer header bits %d-%d" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:433 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:438 msgid "List of IP addresses to convert into NXDOMAIN responses." msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:296 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:581 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:301 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:652 msgid "List of IP sets to populate with the specified domain IPs." msgstr "" @@ -4487,15 +4511,11 @@ msgstr "" msgid "List of SSH key files for auth" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:312 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:317 msgid "List of domains to allow RFC1918 responses for." msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:290 -msgid "List of domains to force to an IP address." -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:283 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:285 msgid "List of upstream resolvers to forward queries to." msgstr "" @@ -4503,7 +4523,7 @@ msgstr "" msgid "Listen Port" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:332 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:337 msgid "Listen interfaces" msgstr "" @@ -4511,7 +4531,7 @@ msgstr "" msgid "Listen only on the given interface or, if unspecified, on all" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:333 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:338 msgid "" "Listen only on the specified interfaces, and loopback if not excluded " "explicitly." @@ -4521,7 +4541,7 @@ msgstr "" msgid "ListenPort setting is invalid" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:439 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:444 msgid "Listening port for inbound DNS queries." msgstr "" @@ -4548,9 +4568,9 @@ msgid "Loading directory contents…" msgstr "" #: modules/luci-base/htdocs/luci-static/resources/luci.js:1942 -#: modules/luci-base/luasrc/view/view.htm:4 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:12 -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/sysauth.htm:45 +#: modules/luci-base/ucode/template/view.ut:4 +#: modules/luci-mod-status/ucode/template/admin_status/index.ut:12 +#: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/sysauth.ut:40 msgid "Loading view…" msgstr "" @@ -4608,19 +4628,19 @@ msgstr "" msgid "Local ULA" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:273 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:275 msgid "Local domain" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:274 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:276 msgid "Local domain suffix appended to DHCP names and hosts file entries." msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:269 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:271 msgid "Local server" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:319 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:324 msgid "Local service only" msgstr "" @@ -4628,7 +4648,7 @@ msgstr "" msgid "Local wireguard key" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:392 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:397 msgid "Localise queries" msgstr "" @@ -4640,7 +4660,7 @@ msgstr "" msgid "Log output level" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:277 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:279 msgid "Log queries" msgstr "" @@ -4664,8 +4684,8 @@ msgstr "" msgid "Logical network to which the tunnel will be added (bridged) (optional)." msgstr "" -#: modules/luci-base/luasrc/view/sysauth.htm:38 -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/sysauth.htm:41 +#: modules/luci-base/ucode/template/sysauth.ut:38 +#: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/sysauth.ut:36 msgid "Login" msgstr "" @@ -4677,7 +4697,7 @@ msgstr "" msgid "Loose filtering" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:31 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:32 msgid "Loss of Signal Seconds (LOSS)" msgstr "" @@ -4685,6 +4705,10 @@ msgstr "" msgid "Lowest leased address as offset from the network address." msgstr "" +#: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/footer.ut:12 +msgid "Lua compatibility mode active" +msgstr "" + #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:48 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:83 msgid "MAC" @@ -4709,7 +4733,7 @@ msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:591 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:40 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:619 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:690 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1164 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2177 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:56 @@ -4768,6 +4792,10 @@ msgstr "" msgid "MTU" msgstr "MTU" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:259 +msgid "MX" +msgstr "" + #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:303 msgid "" "Make sure to clone the root filesystem using something like the commands " @@ -4792,19 +4820,19 @@ msgstr "" msgid "Max <abbr title=\"Router Advertisement\">RA</abbr> interval" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:22 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:23 msgid "Max. Attainable Data Rate (ATTNDR)" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:452 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:457 msgid "Max. DHCP leases" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:459 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:464 msgid "Max. EDNS0 packet size" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:466 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:471 msgid "Max. concurrent queries" msgstr "" @@ -4816,15 +4844,15 @@ msgstr "" msgid "Maximum allowed Listen Interval" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:453 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:458 msgid "Maximum allowed number of active DHCP leases." msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:467 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:472 msgid "Maximum allowed number of concurrent DNS queries." msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:460 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:465 msgid "Maximum allowed size of EDNS0 UDP packets." msgstr "" @@ -4851,7 +4879,7 @@ msgstr "" msgid "Maximum transmit power" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:389 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:394 msgid "May prevent VoIP or other services from working." msgstr "" @@ -5165,11 +5193,15 @@ msgstr "" msgid "Name of the tunnel device" msgstr "" -#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:46 +#: themes/luci-theme-openwrt-2020/ucode/template/themes/openwrt2020/header.ut:39 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:50 msgid "Navigation" msgstr "" +#: protocols/luci-proto-nebula/htdocs/luci-static/resources/protocol/nebula.js:10 +msgid "Nebula Network" +msgstr "" + #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:653 msgid "Neighbour cache validity" msgstr "" @@ -5205,7 +5237,7 @@ msgstr "" msgid "Network address" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:492 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:497 msgid "Network boot image" msgstr "" @@ -5245,7 +5277,7 @@ msgstr "" msgid "Network interface" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:531 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:536 msgid "Network-ID" msgstr "" @@ -5253,7 +5285,7 @@ msgstr "" msgid "Never" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:270 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:272 msgid "" "Never forward matching domains and subdomains, resolve from DHCP or hosts " "files only." @@ -5301,9 +5333,9 @@ msgstr "" msgid "No RX signal" msgstr "" -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:80 -#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:87 -#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:72 +#: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/header.ut:68 +#: themes/luci-theme-material/ucode/template/themes/material/header.ut:82 +#: themes/luci-theme-openwrt-2020/ucode/template/themes/openwrt2020/header.ut:65 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:90 msgid "" "No changes to settings will be stored and are lost after rebooting. This " @@ -5345,10 +5377,6 @@ msgstr "" msgid "No entries in this directory" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:82 -msgid "No files found" -msgstr "" - #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:833 msgid "" "No fixed interface listening port defined, peers might not be able to " @@ -5384,7 +5412,7 @@ msgstr "" msgid "No more slaves available, can not save interface" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:413 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:418 msgid "No negative cache" msgstr "" @@ -5392,8 +5420,8 @@ msgstr "" msgid "No nftables ruleset loaded." msgstr "" -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:69 -#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:61 +#: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/header.ut:57 +#: themes/luci-theme-openwrt-2020/ucode/template/themes/openwrt2020/header.ut:54 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:79 msgid "No password set!" msgstr "" @@ -5433,7 +5461,7 @@ msgstr "" msgid "Noise" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:26 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:27 msgid "Noise Margin (SNR)" msgstr "" @@ -5441,11 +5469,11 @@ msgstr "" msgid "Noise:" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:34 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:35 msgid "Non Pre-emptive CRC errors (CRC_P)" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:325 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:330 msgid "Non-wildcard" msgstr "" @@ -5460,7 +5488,7 @@ msgstr "" msgid "Normal" msgstr "" -#: modules/luci-base/luasrc/view/error404.htm:8 +#: modules/luci-base/ucode/template/error404.ut:9 msgid "Not Found" msgstr "" @@ -5510,7 +5538,7 @@ msgstr "" msgid "Number of IGMP membership reports" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:474 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:479 msgid "Number of cached DNS entries, 10000 is maximum, 0 is no caching." msgstr "" @@ -5559,7 +5587,7 @@ msgstr "" msgid "On-link" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:672 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:743 msgid "One of hostname or MAC address must be specified!" msgstr "" @@ -5595,7 +5623,6 @@ msgid "Open iptables rules overview…" msgstr "" #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:472 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:19 msgid "Open list..." msgstr "" @@ -5739,18 +5766,23 @@ msgstr "" msgid "Options" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:526 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:531 msgid "" "Options for the Network-ID. (Note: needs also Network-ID.) E.g. " -"\"<code>42,192.168.1.4</code>\" for NTP server, \"<code>3,192.168.4.4</" -"code>\" for default route. <code>0.0.0.0</code> means \"the address of the " -"system running dnsmasq\"." +"\"<code>42,192.168.1.4</code>\" for NTP server, \"<code>3,192.168.4.4</code>" +"\" for default route. <code>0.0.0.0</code> means \"the address of the system " +"running dnsmasq\"." msgstr "" #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:125 msgid "Options:" msgstr "" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:584 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:616 +msgid "Ordinal: lower comes first." +msgstr "" + #: protocols/luci-proto-batman-adv/htdocs/luci-static/resources/protocol/batadv.js:55 msgid "Originator Interval" msgstr "" @@ -6022,13 +6054,13 @@ msgctxt "MACVLAN mode" msgid "Pass-through (Mirror physical device to single MAC VLAN)" msgstr "" -#: modules/luci-base/luasrc/view/sysauth.htm:29 +#: modules/luci-base/ucode/template/sysauth.ut:29 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1690 #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:51 #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:114 #: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:103 #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:58 -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/sysauth.htm:24 +#: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/sysauth.ut:19 msgid "Password" msgstr "" @@ -6199,7 +6231,7 @@ msgstr "" msgid "Pkts." msgstr "" -#: modules/luci-base/luasrc/view/sysauth.htm:19 +#: modules/luci-base/ucode/template/sysauth.ut:19 msgid "Please enter your username and password." msgstr "" @@ -6216,6 +6248,7 @@ msgctxt "Chain hook policy" msgid "Policy: <strong>%h</strong> (%h)" msgstr "" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:579 #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/dropbear.js:21 msgid "Port" msgstr "" @@ -6232,11 +6265,11 @@ msgstr "" msgid "Potential negation of: %s" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:37 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:38 msgid "Power Management Mode" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:35 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:36 msgid "Pre-emptive CRC errors (CRCP_P)" msgstr "" @@ -6309,6 +6342,8 @@ msgid "Primary becomes active slave whenever it comes back up (always, 0)" msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:508 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:584 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:616 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:129 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:197 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:223 @@ -6424,7 +6459,7 @@ msgstr "" msgid "Quality" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:428 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:433 msgid "Query all available upstream resolvers." msgstr "" @@ -6506,7 +6541,7 @@ msgstr "" msgid "Raw hex-encoded bytes. Leave empty unless your ISP require this" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:345 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:350 msgid "Read <code>/etc/ethers</code> to configure the DHCP server." msgstr "" @@ -6522,7 +6557,7 @@ msgstr "" msgid "Reassociation Deadline" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:301 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:306 msgid "Rebind protection" msgstr "" @@ -6607,6 +6642,7 @@ msgid "" msgstr "" #: modules/luci-compat/luasrc/model/network/proto_relay.lua:153 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:611 #: protocols/luci-proto-relay/htdocs/luci-static/resources/protocol/relay.js:39 msgid "Relay" msgstr "" @@ -6697,6 +6733,10 @@ msgstr "" msgid "Required. Base64-encoded private key for this interface." msgstr "" +#: protocols/luci-proto-nebula/htdocs/luci-static/resources/protocol/nebula.js:40 +msgid "Required. Path to the .yml config file for this interface." +msgstr "" + #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:587 msgid "Required. Public key of the WireGuard peer." msgstr "" @@ -6778,7 +6818,7 @@ msgid "Reselection policy for primary slave" msgstr "" #: modules/luci-base/htdocs/luci-static/resources/luci.js:2197 -#: modules/luci-base/luasrc/view/sysauth.htm:39 +#: modules/luci-base/ucode/template/sysauth.ut:39 #: modules/luci-compat/luasrc/view/cbi/delegator.htm:17 #: modules/luci-compat/luasrc/view/cbi/footer.htm:30 #: modules/luci-compat/luasrc/view/cbi/simpleform.htm:66 @@ -6797,10 +6837,14 @@ msgstr "" msgid "Resolv and Hosts Files" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:356 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:361 msgid "Resolv file" msgstr "" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:292 +msgid "Resolve specified FQDNs to an IP." +msgstr "" + #: modules/luci-base/htdocs/luci-static/resources/rpc.js:405 msgid "Resource not found" msgstr "" @@ -6827,7 +6871,7 @@ msgstr "" msgid "Restore backup" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:393 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:398 msgid "" "Return answers to DNS queries matching the subnet from which the query was " "received if multiple IPs are available." @@ -6913,7 +6957,7 @@ msgstr "" msgid "Robustness" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:486 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:491 msgid "" "Root directory for files served via TFTP. <em>Enable TFTP server</em> and " "<em>TFTP server root</em> turn on the TFTP server and serve files from " @@ -7016,6 +7060,11 @@ msgstr "" msgid "SNR" msgstr "" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:258 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:569 +msgid "SRV" +msgstr "" + #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/dropbear.js:10 #: modules/luci-mod-system/root/usr/share/luci/menu.d/luci-mod-system.json:38 msgid "SSH Access" @@ -7153,11 +7202,11 @@ msgstr "" msgid "Server" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:519 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:524 msgid "Server address" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:513 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:518 msgid "Server name" msgstr "" @@ -7245,7 +7294,7 @@ msgstr "" msgid "Setup routes for proxied IPv6 neighbours." msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:30 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:31 msgid "Severely Errored Seconds (SES)" msgstr "" @@ -7259,7 +7308,6 @@ msgid "Short Preamble" msgstr "" #: 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 msgid "Show current backup file list" msgstr "" @@ -7293,7 +7341,7 @@ msgstr "" msgid "Signal / Noise" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:25 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:26 msgid "Signal Attenuation (SATN)" msgstr "" @@ -7310,7 +7358,7 @@ msgstr "" msgid "Size" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:473 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:478 msgid "Size of DNS query cache" msgstr "" @@ -7327,12 +7375,12 @@ msgstr "" msgid "Skip from backup files that are equal to those in /rom" msgstr "" -#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:42 +#: themes/luci-theme-openwrt-2020/ucode/template/themes/openwrt2020/header.ut:35 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:46 msgid "Skip to content" msgstr "" -#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:41 +#: themes/luci-theme-openwrt-2020/ucode/template/themes/openwrt2020/header.ut:34 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:45 msgid "Skip to navigation" msgstr "" @@ -7350,14 +7398,10 @@ msgstr "" msgid "Some fields are invalid, cannot save values!" msgstr "" -#: modules/luci-base/luasrc/view/error404.htm:9 +#: modules/luci-base/ucode/template/error404.ut:10 msgid "Sorry, the object you requested was not found." msgstr "" -#: modules/luci-base/luasrc/view/error500.htm:9 -msgid "Sorry, the server encountered an unexpected error." -msgstr "" - #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:442 msgid "" "Sorry, there is no sysupgrade support present; a new firmware image must be " @@ -7393,7 +7437,7 @@ msgctxt "nft ip sport" msgid "Source port" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:500 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:505 msgid "" "Special <abbr title=\"Preboot eXecution Environment\">PXE</abbr> boot " "options for Dnsmasq." @@ -7761,7 +7805,7 @@ msgstr "" msgid "Static address" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:598 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:669 msgid "" "Static leases are used to assign fixed IP addresses and symbolic hostnames " "to DHCP clients. They are also required for non-dynamic interface " @@ -7775,7 +7819,7 @@ msgstr "" #: modules/luci-base/root/usr/share/luci/menu.d/luci-base.json:16 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:541 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:929 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:9 +#: modules/luci-mod-status/ucode/template/admin_status/index.ut:9 msgid "Status" msgstr "" @@ -7801,7 +7845,7 @@ msgstr "" msgid "Strict filtering" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:422 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:427 msgid "Strict order" msgstr "" @@ -7814,11 +7858,11 @@ msgstr "" msgid "Submit" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:372 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:377 msgid "Suppress logging" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:373 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:378 msgid "Suppress logging of the routine operation for the DHCP protocol." msgstr "" @@ -7871,6 +7915,14 @@ msgstr "" msgid "Sync with browser" msgstr "" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:293 +msgid "Syntax: <code>/fqdn[/fqdn…]/[ipaddr]</code>." +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:569 +msgid "Syntax: <code>_service._proto.example.com</code>." +msgstr "" + #: modules/luci-base/root/usr/share/luci/menu.d/luci-base.json:26 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/10_system.js:17 #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:113 @@ -7896,9 +7948,9 @@ msgstr "" msgid "System log buffer size" msgstr "" -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:79 -#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:86 -#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:71 +#: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/header.ut:67 +#: themes/luci-theme-material/ucode/template/themes/material/header.ut:81 +#: themes/luci-theme-openwrt-2020/ucode/template/themes/openwrt2020/header.ut:64 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:89 msgid "System running in recovery (initramfs) mode." msgstr "" @@ -7927,7 +7979,7 @@ msgstr "" msgid "TCP:" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:485 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:490 msgid "TFTP server root" msgstr "" @@ -7952,6 +8004,7 @@ msgstr "" msgid "Table" msgstr "" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:574 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:56 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:66 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:187 @@ -8022,15 +8075,15 @@ msgid "" "username instead of the user ID!" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:681 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:752 msgid "The IP address %h is already used by another static lease" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:690 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:761 msgid "The IP address is outside of any DHCP pool address range" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:520 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:525 msgid "The IP address of the boot server" msgstr "" @@ -8195,7 +8248,7 @@ msgid "" "to be received and retransmitted which costs airtime)" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:514 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:519 msgid "The hostname of the boot server" msgstr "" @@ -8280,8 +8333,8 @@ msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:139 msgid "" -"The network ports on this device can be combined to several <abbr " -"title=\"Virtual Local Area Network\">VLAN</abbr>s in which computers can " +"The network ports on this device can be combined to several <abbr title=" +"\"Virtual Local Area Network\">VLAN</abbr>s in which computers can " "communicate directly with each other. <abbr title=\"Virtual Local Area " "Network\">VLAN</abbr>s are often used to separate different network " "segments. Often there is by default one Uplink port for a connection to the " @@ -8332,7 +8385,7 @@ msgstr "" msgid "The selected %s mode is incompatible with %s encryption" msgstr "" -#: modules/luci-base/luasrc/view/csrftoken.htm:11 +#: modules/luci-base/ucode/template/csrftoken.ut:11 msgid "The submitted security token is invalid or already expired!" msgstr "" @@ -8402,8 +8455,8 @@ msgid "" "nftables rules is discouraged and may lead to incomplete traffic filtering." msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:746 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:778 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:817 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:849 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:130 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:179 msgid "There are no active leases" @@ -8413,8 +8466,8 @@ msgstr "" msgid "There are no changes to apply" msgstr "" -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:70 -#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:62 +#: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/header.ut:58 +#: themes/luci-theme-openwrt-2020/ucode/template/themes/openwrt2020/header.ut:55 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:80 msgid "" "There is no password set on this router. Please configure a root password to " @@ -8435,7 +8488,6 @@ msgid "This does not look like a valid PEM file" msgstr "" #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:454 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:16 msgid "" "This is a list of shell glob patterns for matching files and directories to " "include during sysupgrade. Modified files in /etc/config/ and certain other " @@ -8471,7 +8523,7 @@ msgid "" "ends with <code>...:2/64</code>" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:266 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:268 msgid "This is the only DHCP server in the local network." msgstr "" @@ -8550,8 +8602,8 @@ msgstr "" #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:440 msgid "" "To fully configure the local WireGuard interface from an existing (e.g. " -"provider supplied) configuration file, use the <strong><a class=\"full-" -"import\" href=\"#\">configuration import</a></strong> instead." +"provider supplied) configuration file, use the <strong><a class=\"full-import" +"\" href=\"#\">configuration import</a></strong> instead." msgstr "" #: modules/luci-base/htdocs/luci-static/resources/luci.js:2674 @@ -8713,7 +8765,7 @@ msgstr "" msgid "Unable to determine upstream interface" msgstr "" -#: modules/luci-base/luasrc/view/error404.htm:11 +#: modules/luci-base/ucode/template/error404.ut:12 msgid "Unable to dispatch" msgstr "" @@ -8768,7 +8820,7 @@ msgstr "" msgid "Unable to verify PIN" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:32 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:33 msgid "Unavailable Seconds (UAS)" msgstr "" @@ -8912,7 +8964,7 @@ msgid "" "will be restarted to apply the updated configuration." msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:423 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:428 msgid "Upstream resolvers will be queried in the order of the resolv file." msgstr "" @@ -8921,7 +8973,7 @@ msgstr "" msgid "Uptime" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:344 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:349 msgid "Use <code>/etc/ethers</code>" msgstr "" @@ -9032,7 +9084,7 @@ msgstr "" msgid "Use system certificates for inner-tunnel" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:599 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:670 msgid "" "Use the <em>Add</em> Button to add a new lease entry. The <em>MAC address</" "em> identifies the host, the <em>IPv4 address</em> specifies the fixed " @@ -9083,11 +9135,11 @@ msgstr "" msgid "User key (PEM encoded)" msgstr "" -#: modules/luci-base/luasrc/view/sysauth.htm:23 +#: modules/luci-base/ucode/template/sysauth.ut:23 #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:112 #: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:101 #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:56 -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/sysauth.htm:18 +#: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/sysauth.ut:13 msgid "Username" msgstr "" @@ -9185,7 +9237,7 @@ msgstr "" msgid "VXLANv6 (RFC7348)" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:398 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:403 msgid "" "Validate DNS replies and cache DNSSEC data, requires upstream to support " "DNSSEC." @@ -9218,7 +9270,7 @@ msgstr "" msgid "Vendor Class to send when requesting DHCP" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:403 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:408 msgid "Verify unsigned domain responses really come from unsigned domains." msgstr "" @@ -9293,6 +9345,10 @@ msgstr "" msgid "Weak" msgstr "" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:589 +msgid "Weight" +msgstr "" + #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1029 msgid "" "When delegating prefixes to multiple downstreams, interfaces with a higher " @@ -9413,7 +9469,7 @@ msgstr "" msgid "Wireless network is enabled" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:278 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:280 msgid "Write received DNS queries to syslog." msgstr "" @@ -9448,8 +9504,16 @@ msgid "" "scripts like \"network\", your device might become inaccessible!</strong>" msgstr "" -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:90 -#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:97 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:559 +msgid "You may add multiple records for the same Target." +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:596 +msgid "You may add multiple records for the same domain." +msgstr "" + +#: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/header.ut:78 +#: themes/luci-theme-material/ucode/template/themes/material/header.ut:92 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:73 msgid "" "You must enable JavaScript in your browser or LuCI will not work properly." @@ -9478,7 +9542,17 @@ msgstr "" msgid "ZRam Size" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:449 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:558 +msgid "_proto: _tcp, _udp, _sctp, _quic, … ." +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:557 +msgid "" +"_service: _sip, _ldap, _imap, _stun, _xmpp-client, … . (Note: while _http is " +"possible, no browsers support SRV records.)" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:454 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:152 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:163 msgid "any" @@ -9589,8 +9663,8 @@ msgstr "" msgid "e.g: dump" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:726 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:756 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:797 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:827 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:101 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:148 msgid "expired" @@ -9801,9 +9875,9 @@ msgstr "" msgid "unknown" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:456 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:724 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:754 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:461 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:795 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:825 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:99 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:146 msgid "unlimited" diff --git a/modules/luci-base/po/hu/base.po b/modules/luci-base/po/hu/base.po index 1b5119f094..d92f3ddcdf 100644 --- a/modules/luci-base/po/hu/base.po +++ b/modules/luci-base/po/hu/base.po @@ -231,6 +231,18 @@ msgstr "" msgid "<abbr title=\"Router Advertisement\">RA</abbr>-Service" msgstr "" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:294 +msgid "" +"<code>/#/</code> matches any domain. <code>/example.com/</code> returns " +"NXDOMAIN." +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:295 +msgid "" +"<code>/example.com/#</code> returns NULL addresses (<code>0.0.0.0</code> and " +"<code>::</code>) for example.com and its subdomains." +msgstr "" + #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:87 msgctxt "nft relational \">\" operator expression" msgid "<var>%s</var> greater than <strong>%s</strong>" @@ -391,7 +403,7 @@ msgstr "" msgid "ATM device number" msgstr "ATM eszközszám" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:36 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:37 msgid "ATU-C System Vendor ID" msgstr "ATU-C rendszer gyártójának azonosítója" @@ -401,7 +413,7 @@ msgstr "ATU-C rendszer gyártójának azonosítója" msgid "Absent Interface" msgstr "Hiányzó csatoló" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:320 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:325 msgid "Accept DNS queries only from hosts whose address is on a local subnet." msgstr "" "DNS-szolgáltatás korlátozása azokra az alhálózati csatolókra, amelyeken DNS-" @@ -542,7 +554,7 @@ msgstr "Példány hozzáadása" msgid "Add key" msgstr "Kulcs hozzáadása" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:410 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:415 msgid "Add local domain suffix to names served from hosts files." msgstr "Helyi tartományutótag hozzáadása a hosts fájlokból kiszolgált nevekhez" @@ -563,11 +575,11 @@ msgstr "Hozzáadás a feketelistához" msgid "Add to Whitelist" msgstr "Hozzáadás a fehérlistához" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:367 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:372 msgid "Additional hosts files" msgstr "További gépek fájljai" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:417 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:422 msgid "Additional servers file" msgstr "További kiszolgálók fájlja" @@ -597,7 +609,7 @@ msgstr "" msgid "Address to access local relay bridge" msgstr "Cím a helyi átjátszóhíd eléréséhez" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:289 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:291 msgid "Addresses" msgstr "Címek" @@ -630,7 +642,7 @@ msgstr "" msgid "Aggregate Originator Messages" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:27 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:28 msgid "Aggregate Transmit Power (ACTATP)" msgstr "Összesített átviteli teljesítmény (ACTATP)" @@ -666,18 +678,18 @@ msgstr "Álnév csatoló" msgid "Alias of \"%s\"" msgstr "„%s” álneve" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:427 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:432 msgid "All servers" msgstr "Összes kiszolgáló" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:378 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:383 msgid "" "Allocate IP addresses sequentially, starting from the lowest available " "address." msgstr "" "IP-címek lefoglalása sorrendben, kezdve a legalacsonyabb elérhető címtől" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:377 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:382 msgid "Allocate IPs sequentially" msgstr "IP lefoglalása egymás után" @@ -708,7 +720,7 @@ msgstr "Örökölt 802.11b sebességek engedélyezése" msgid "Allow listed only" msgstr "Csak a felsoroltak engedélyezése" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:306 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:311 msgid "Allow localhost" msgstr "Localhost engedélyezése" @@ -754,7 +766,7 @@ msgstr "" msgid "Always on (kernel: default-on)" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:538 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:543 msgid "Always send DHCP Options. Sometimes needed, with e.g. PXELinux." msgstr "" @@ -784,7 +796,7 @@ msgid "An optional, short description for this device" msgstr "Opcionális, rövid leírása az eszköznek" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1484 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:20 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:21 msgid "Annex" msgstr "Melléklet" @@ -898,7 +910,7 @@ msgstr "" msgid "Any zone" msgstr "Bármely zóna" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:532 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:537 msgid "Apply DHCP Options to this net. (Empty = all clients)." msgstr "" @@ -994,11 +1006,11 @@ msgstr "Hitelesítés" msgid "Authentication Type" msgstr "Hitelesítés típusa" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:265 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:267 msgid "Authoritative" msgstr "Hiteles" -#: modules/luci-base/luasrc/view/sysauth.htm:17 +#: modules/luci-base/ucode/template/sysauth.ut:17 #: themes/luci-theme-bootstrap/htdocs/luci-static/resources/view/bootstrap/sysauth.js:11 msgid "Authorization Required" msgstr "Hitelesítés szükséges" @@ -1068,7 +1080,7 @@ msgstr "Átlag:" msgid "Avoid Bridge Loops" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:388 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:393 msgid "" "Avoid uselessly triggering dial-on-demand links (filters SRV/SOA records and " "names with underscores)." @@ -1103,10 +1115,6 @@ msgstr "Vissza" msgid "Back to Overview" msgstr "Vissza az áttekintőhöz" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:48 -msgid "Back to configuration" -msgstr "Vissza a beállításokhoz" - #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:826 msgid "Back to peer configuration" msgstr "" @@ -1120,7 +1128,6 @@ msgid "Backup / Flash Firmware" msgstr "Biztonsági mentés vagy firmware beírása" #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:351 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:12 msgid "Backup file list" msgstr "Biztonsági mentés fájllistája" @@ -1162,7 +1169,6 @@ msgid "Beacon Interval" msgstr "Alapjel időköze" #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:352 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:46 msgid "" "Below is the determined list of files to backup. It consists of changed " "configuration files marked by opkg, essential base files and the user " @@ -1177,7 +1183,7 @@ msgstr "" msgid "Bind NTP server" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:326 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:331 msgid "Bind dynamically to interfaces rather than wildcard address." msgstr "" "Kötés dinamikusan a csatolókhoz a helyettesítő címek helyett (ajánlott Linux " @@ -1195,6 +1201,17 @@ msgstr "" msgid "Bind interface" msgstr "Csatoló kötése" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:595 +msgid "" +"Bind service records to a domain name: specify the location of services." +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:556 +msgid "" +"Bind service records to a domain name: specify the location of services. See " +"<a href=\"%s\">RFC2782</a>." +msgstr "" + #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:59 #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:64 #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:64 @@ -1299,6 +1316,10 @@ msgstr "" msgid "CLAT configuration failed" msgstr "A CLAT beállítása nem sikerült" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:574 +msgid "CNAME or fqdn" +msgstr "" + #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/processes.js:72 msgid "CPU usage (%)" msgstr "Processzorhasználat (%)" @@ -1559,17 +1580,13 @@ msgstr "" "Inaktív kapcsolat lezárása a megadott másodpercek után, használjon 0-t " "állandó kapcsolathoz" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:49 -msgid "Close list..." -msgstr "Lista bezárása…" - #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:44 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:63 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2184 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:391 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:352 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:355 -#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:72 +#: themes/luci-theme-material/ucode/template/themes/material/header.ut:66 msgid "Collecting data..." msgstr "Adatok összegyűjtése…" @@ -1609,6 +1626,10 @@ msgstr "" msgid "Compute outgoing checksum (optional)." msgstr "" +#: protocols/luci-proto-nebula/htdocs/luci-static/resources/protocol/nebula.js:40 +msgid "Config File" +msgstr "" + #: modules/luci-base/htdocs/luci-static/resources/ui.js:4375 #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:454 msgid "Configuration" @@ -1648,8 +1669,8 @@ msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:764 msgid "" -"Configures the operation mode of the <abbr title=\"Router " -"Advertisement\">RA</abbr> service on this interface." +"Configures the operation mode of the <abbr title=\"Router Advertisement" +"\">RA</abbr> service on this interface." msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:879 @@ -1828,8 +1849,8 @@ msgstr "" #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/leds.js:59 msgid "" -"Customizes the behaviour of the device <abbr title=\"Light Emitting " -"Diode\">LED</abbr>s if possible." +"Customizes the behaviour of the device <abbr title=\"Light Emitting Diode" +"\">LED</abbr>s if possible." msgstr "" "Az eszköz <abbr title=\"Light Emitting Diode\">LED</abbr>-jei működésének " "személyre szabása." @@ -1850,7 +1871,7 @@ msgstr "DAE-port" msgid "DAE-Secret" msgstr "DAE-titok" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:525 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:530 msgid "DHCP Options" msgstr "" @@ -1890,11 +1911,11 @@ msgstr "DHCPv6-szolgáltatás" msgid "DNS" msgstr "DNS" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:282 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:284 msgid "DNS forwardings" msgstr "DNS továbbítások" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:445 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:450 msgid "DNS query port" msgstr "<abbr title=\"Domain Name System\">DNS</abbr> lekérdezési port" @@ -1902,7 +1923,7 @@ msgstr "<abbr title=\"Domain Name System\">DNS</abbr> lekérdezési port" msgid "DNS search domains" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:438 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:443 msgid "DNS server port" msgstr "<abbr title=\"Domain Name System\">DNS</abbr>-kiszolgáló portja" @@ -1918,11 +1939,11 @@ msgstr "" msgid "DNS-Label / FQDN" msgstr "DNS-címke / FQDN" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:397 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:402 msgid "DNSSEC" msgstr "DNSSEC" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:402 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:407 msgid "DNSSEC check unsigned" msgstr "DNSSEC ellenőrzés előjel nélkül" @@ -1935,11 +1956,11 @@ msgid "DS-Lite AFTR address" msgstr "DS-Lite AFTR cím" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1481 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:44 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:45 msgid "DSL" msgstr "DSL" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:14 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:15 msgid "DSL Status" msgstr "DSL állapota" @@ -1952,12 +1973,12 @@ msgid "DTIM Interval" msgstr "DTIM időköze" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:59 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:700 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:771 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:136 msgid "DUID" msgstr "DUID" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:21 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:22 msgid "Data Rate" msgstr "Adatsebesség" @@ -2205,7 +2226,7 @@ msgstr "" msgid "Disassociate On Low Acknowledgement" msgstr "Hozzárendelés megszüntetése alacsony nyugtázásnál" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:302 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:307 msgid "" "Discard upstream responses containing <a href=\"%s\">RFC1918</a> addresses." msgstr "Külső RFC1918 válaszok elvetése." @@ -2251,7 +2272,7 @@ msgstr "A hálózat legtávolabbi tagjának távolsága méterben." msgid "Distributed ARP Table" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:543 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:548 msgid "" "Dnsmasq instance to which this boot section is bound. If unspecified, the " "section is valid for all dnsmasq instances." @@ -2259,16 +2280,16 @@ msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:246 msgid "" -"Dnsmasq is a lightweight <abbr title=\"Dynamic Host Configuration " -"Protocol\">DHCP</abbr> server and <abbr title=\"Domain Name System\">DNS</" -"abbr> forwarder." +"Dnsmasq is a lightweight <abbr title=\"Dynamic Host Configuration Protocol" +"\">DHCP</abbr> server and <abbr title=\"Domain Name System\">DNS</abbr> " +"forwarder." msgstr "" -"A dnsmasq egy kombinált <abbr title=\"Dynamic Host Configuration " -"Protocol\">DHCP</abbr>-kiszolgáló és <abbr title=\"Domain Name System\">DNS</" -"abbr>-továbbító <abbr title=\"Network Address Translation\">NAT</abbr> " -"tűzfalak számára" +"A dnsmasq egy kombinált <abbr title=\"Dynamic Host Configuration Protocol" +"\">DHCP</abbr>-kiszolgáló és <abbr title=\"Domain Name System\">DNS</abbr>-" +"továbbító <abbr title=\"Network Address Translation\">NAT</abbr> tűzfalak " +"számára" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:414 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:419 msgid "Do not cache negative replies, e.g. for non-existent domains." msgstr "" "Ne gyorsítótárazza a negatív válaszokat, például nem létező tartományoknál" @@ -2281,17 +2302,17 @@ msgstr "" msgid "Do not create host route to peer (optional)." msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:262 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:264 msgid "Do not forward DNS queries without dots or domain parts." msgstr "" "Ne továbbítsa a <abbr title=\"Domain Name System\">DNS</abbr>-kéréseket " "<abbr title=\"Domain Name System\">DNS</abbr>-név nélkül" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:383 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:388 msgid "Do not forward reverse lookups for local networks." msgstr "Ne továbbítson fordított keresési kéréseket a helyi hálózathoz" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:339 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:344 msgid "Do not listen on the specified interfaces." msgstr "Figyelés megakadályozása ezeken a csatolókon." @@ -2344,15 +2365,16 @@ msgstr "" msgid "Do you want to replace the current keys?" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:593 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:606 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:664 msgid "Domain" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:261 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:263 msgid "Domain required" msgstr "Tartomány szükséges" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:311 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:316 msgid "Domain whitelist" msgstr "Tartomány fehérlista" @@ -2596,7 +2618,7 @@ msgstr "NTP-ügyfél engedélyezése" msgid "Enable Single DES" msgstr "Egyszeres DES engedélyezése" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:480 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:485 msgid "Enable TFTP server" msgstr "TFTP kiszolgáló engedélyezése" @@ -2614,9 +2636,9 @@ msgstr "WPS nyomógomb engedélyezése, WPA(2)-PSK/WPA3-SAE szükséges" #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/uhttpd.js:14 msgid "" -"Enable automatic redirection of <abbr title=\"Hypertext Transfer " -"Protocol\">HTTP</abbr> requests to <abbr title=\"Hypertext Transfer Protocol " -"Secure\">HTTPS</abbr> port." +"Enable automatic redirection of <abbr title=\"Hypertext Transfer Protocol" +"\">HTTP</abbr> requests to <abbr title=\"Hypertext Transfer Protocol Secure" +"\">HTTPS</abbr> port." msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:977 @@ -2679,7 +2701,7 @@ msgstr "" msgid "Enable the DF (Don't Fragment) flag of the encapsulating packets." msgstr "A beágyazott csomagok DF (ne tördeljen) jelzőjének engedélyezése." -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:481 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:486 msgid "Enable the built-in single-instance TFTP server." msgstr "" @@ -2798,7 +2820,7 @@ msgstr "Hiba" msgid "Error getting PublicKey" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:29 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:30 msgid "Errored seconds (ES)" msgstr "Hibás másodpercek (ES)" @@ -2820,11 +2842,11 @@ msgstr "" msgid "Every second (fast, 1)" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:338 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:343 msgid "Exclude interfaces" msgstr "Csatolók kizárása" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:307 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:312 msgid "" "Exempt <code>127.0.0.0/8</code> and <code>::1</code> from rebinding checks, " "e.g. for RBL services." @@ -2836,7 +2858,7 @@ msgstr "" msgid "Existing device" msgstr "Létező eszköz" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:409 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:414 msgid "Expand hosts" msgstr "Gépek kinyitása" @@ -2972,35 +2994,35 @@ msgstr "" msgid "File" msgstr "Fájl" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:418 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:423 msgid "" "File listing upstream resolvers, optionally domain-specific, e.g. " "<code>server=1.2.3.4</code>, <code>server=/domain/1.2.3.4</code>." msgstr "" "Ez a fájl olyan sorokat tartalmazhat, mint például „server=/domain/1.2.3.4” " -"vagy „server=1.2.3.4” a tartományra jellemző vagy teljesen külső <abbr " -"title=\"Domain Name System\">DNS</abbr>-kiszolgálókhoz." +"vagy „server=1.2.3.4” a tartományra jellemző vagy teljesen külső <abbr title=" +"\"Domain Name System\">DNS</abbr>-kiszolgálókhoz." #: modules/luci-base/htdocs/luci-static/resources/ui.js:2655 msgid "File not accessible" msgstr "A fájl nem érhető el" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:349 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:354 msgid "File to store DHCP lease information." msgstr "" -"a fájl, ahol a megadott <abbr title=\"Dynamic Host Configuration " -"Protocol\">DHCP</abbr> bérletek tárolásra kerülnek" +"a fájl, ahol a megadott <abbr title=\"Dynamic Host Configuration Protocol" +"\">DHCP</abbr> bérletek tárolásra kerülnek" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:357 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:362 msgid "File with upstream resolvers." msgstr "helyi <abbr title=\"Domain Name System\">DNS</abbr>-fájl" #: modules/luci-base/htdocs/luci-static/resources/ui.js:2846 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:507 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:512 msgid "Filename" msgstr "Fájlnév" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:493 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:498 msgid "Filename of the boot image advertised to clients." msgstr "Az ügyfeleknek meghirdetett rendszerindító lemezkép fájlneve" @@ -3009,11 +3031,11 @@ msgstr "Az ügyfeleknek meghirdetett rendszerindító lemezkép fájlneve" msgid "Filesystem" msgstr "Fájlrendszer" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:382 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:387 msgid "Filter private" msgstr "Személyes szűrése" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:387 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:392 msgid "Filter useless" msgstr "Használhatatlan szűrése" @@ -3079,7 +3101,7 @@ msgstr "Firmware fájl" msgid "Firmware Version" msgstr "Firmware verzió" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:446 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:451 msgid "Fixed source port for outbound DNS queries." msgstr "Rögzített forrásport a kimenő DNS-lekérdezéseknél" @@ -3105,7 +3127,7 @@ msgstr "Beírás műveletei" msgid "Flashing…" msgstr "Telepítés…" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:537 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:542 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:686 msgid "Force" msgstr "Kényszerítés" @@ -3152,16 +3174,16 @@ msgstr "Frissítés kényszerítése" msgid "Force use of NAT-T" msgstr "NAT-T használatának kényszerítése" -#: modules/luci-base/luasrc/view/csrftoken.htm:8 +#: modules/luci-base/ucode/template/csrftoken.ut:8 msgid "Form token mismatch" msgstr "Űrlaptoken eltérés" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:919 msgid "" -"Forward <abbr title=\"Neighbour Discovery Protocol\">NDP</abbr> <abbr " -"title=\"Neighbour Solicitation, Type 135\">NS</abbr> and <abbr " -"title=\"Neighbour Advertisement, Type 136\">NA</abbr> messages between the " -"designated master interface and downstream interfaces." +"Forward <abbr title=\"Neighbour Discovery Protocol\">NDP</abbr> <abbr title=" +"\"Neighbour Solicitation, Type 135\">NS</abbr> and <abbr title=\"Neighbour " +"Advertisement, Type 136\">NA</abbr> messages between the designated master " +"interface and downstream interfaces." msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:770 @@ -3181,7 +3203,7 @@ msgid "" "downstream interfaces." msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:28 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:29 msgid "Forward Error Correction Seconds (FECS)" msgstr "Továbbítási hiba javításának másodpercei (FECS)" @@ -3341,15 +3363,15 @@ msgstr "Globális beállítások" msgid "Global network options" msgstr "Globális hálózati beállítások" -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:82 -#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:89 -#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:74 +#: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/header.ut:70 +#: themes/luci-theme-material/ucode/template/themes/material/header.ut:84 +#: themes/luci-theme-openwrt-2020/ucode/template/themes/openwrt2020/header.ut:67 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:92 msgid "Go to firmware upgrade..." msgstr "" -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:72 -#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:64 +#: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/header.ut:60 +#: themes/luci-theme-openwrt-2020/ucode/template/themes/openwrt2020/header.ut:57 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:82 msgid "Go to password configuration..." msgstr "Ugrás a jelszóbeállításhoz…" @@ -3490,7 +3512,7 @@ msgstr "" msgid "Hang Up" msgstr "Befejezés" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:33 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:34 msgid "Header Error Code Errors (HEC)" msgstr "Fejléc hibakódhibák (HEC)" @@ -3543,7 +3565,7 @@ msgstr "Gép" msgid "Host expiry timeout" msgstr "Gép lejárati időkorlátja" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:508 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:513 msgid "Host requests this filename from the boot server." msgstr "" @@ -3552,8 +3574,8 @@ msgid "Host-Uniq tag content" msgstr "Egyedi gépcímketartalom" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:38 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:559 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:607 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:630 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:678 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/10_system.js:54 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:87 #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:135 @@ -3568,7 +3590,7 @@ msgstr "DHCP kérésekor küldendő gépnév" msgid "Hostnames" msgstr "Gépnevek" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:551 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:622 msgid "" "Hostnames are used to bind a domain name to an IP address. This setting is " "redundant for hostnames already configured with static leases, but it can be " @@ -3632,7 +3654,7 @@ msgstr "IP-címek" msgid "IP Protocol" msgstr "IP protokoll" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:258 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:260 msgid "IP Sets" msgstr "" @@ -3640,7 +3662,7 @@ msgstr "" msgid "IP Type" msgstr "IP típusa" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:563 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:634 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:178 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:204 msgid "IP address" @@ -3666,15 +3688,15 @@ msgctxt "nft meta l4proto" msgid "IP protocol" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:589 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:660 msgid "IP set" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:295 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:300 msgid "IP sets" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:432 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:437 msgid "IPs to override with NXDOMAIN" msgstr "Hamis NX-tartomány felülbírálása" @@ -3715,7 +3737,7 @@ msgstr "Külső IPv4" #: modules/luci-base/htdocs/luci-static/resources/protocol/static.js:178 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:39 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:665 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:736 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:88 #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:164 msgid "IPv4 address" @@ -3886,7 +3908,7 @@ msgstr "" msgid "IPv6 suffix" msgstr "IPv6-utótag" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:706 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:777 msgid "IPv6 suffix (hex)" msgstr "<abbr title=\"Internet Protocol Version 6\">IPv6</abbr>-utótag (hex)" @@ -3984,19 +4006,19 @@ msgstr "" #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:340 msgid "" "If your physical memory is insufficient unused data can be temporarily " -"swapped to a swap-device resulting in a higher amount of usable <abbr " -"title=\"Random Access Memory\">RAM</abbr>. Be aware that swapping data is a " -"very slow process as the swap-device cannot be accessed with the high " -"datarates of the <abbr title=\"Random Access Memory\">RAM</abbr>." +"swapped to a swap-device resulting in a higher amount of usable <abbr title=" +"\"Random Access Memory\">RAM</abbr>. Be aware that swapping data is a very " +"slow process as the swap-device cannot be accessed with the high datarates " +"of the <abbr title=\"Random Access Memory\">RAM</abbr>." msgstr "" "Ha a fizikai memória túl kevés, akkor a nem használt adatok átmenetileg " "áttehetők egy cserehelyeszközre, ami nagyobb mennyiségű használható <abbr " "title=\"Random Access Memory\">RAM</abbr>-ot eredményez. Legyen tudatában " "annak, hogy az adatok áttétele nagyon lassú folyamat, mivel a " -"cserehelyeszköz nem érhető el akkora adatsebességgel, mint a <abbr " -"title=\"Random Access Memory\">RAM</abbr>." +"cserehelyeszköz nem érhető el akkora adatsebességgel, mint a <abbr title=" +"\"Random Access Memory\">RAM</abbr>." -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:363 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:368 msgid "Ignore <code>/etc/hosts</code>" msgstr "Az <code>/etc/hosts</code> mellőzése" @@ -4004,7 +4026,7 @@ msgstr "Az <code>/etc/hosts</code> mellőzése" msgid "Ignore interface" msgstr "Csatoló mellőzése" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:352 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:357 msgid "Ignore resolv file" msgstr "A feloldási fájl figyelmen kívül hagyása" @@ -4052,7 +4074,7 @@ msgid "" "order to avoid broadcast loops that can bring the entire LAN to a standstill." msgstr "" -#: modules/luci-base/luasrc/view/csrftoken.htm:13 +#: modules/luci-base/ucode/template/csrftoken.ut:13 msgid "" "In order to prevent unauthorized access to the system, your request has been " "blocked. Click \"Continue »\" below to return to the previous page." @@ -4165,7 +4187,7 @@ msgstr "Belső tanúsítványkényszer (altartományokra is kibővített)" msgid "Install protocol extensions..." msgstr "Protokollkiterjesztések telepítése…" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:542 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:547 msgid "Instance" msgstr "" @@ -4254,10 +4276,6 @@ msgstr "Csatolók" msgid "Internal" msgstr "Belső" -#: modules/luci-base/luasrc/view/error500.htm:8 -msgid "Internal Server Error" -msgstr "Belső kiszolgálóhiba" - #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:285 msgid "Interval For Sending Learning Packets" msgstr "" @@ -4330,8 +4348,8 @@ msgstr "Érvénytelen parancs" msgid "Invalid hexadecimal value" msgstr "Érvénytelen hexadecimális érték" -#: modules/luci-base/luasrc/view/sysauth.htm:12 -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/sysauth.htm:37 +#: modules/luci-base/ucode/template/sysauth.ut:12 +#: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/sysauth.ut:32 msgid "Invalid username and/or password! Please try again." msgstr "Érvénytelen felhasználónév és/vagy jelszó! Próbálja újra." @@ -4355,8 +4373,8 @@ msgstr "" "Úgy tűnik, hogy olyan képfájlt próbál beírni, amely nem fér bele a flash-" "memóriába. Ellenőrizze a képfájlt!" -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:89 -#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:96 +#: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/header.ut:77 +#: themes/luci-theme-material/ucode/template/themes/material/header.ut:91 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:72 msgid "JavaScript required!" msgstr "JavaScript szükséges!" @@ -4488,11 +4506,17 @@ msgstr "Nyelv" msgid "Language and Style" msgstr "Nyelv és stílus" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:560 +msgid "" +"Larger weights (of the same prio) are given a proportionately higher " +"probability of being selected." +msgstr "" + #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:575 msgid "Last member interval" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:23 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:24 msgid "Latency" msgstr "Késleltetés" @@ -4510,11 +4534,11 @@ msgstr "Tanulás" msgid "Learn routes" msgstr "Útvonalak tanulása" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:348 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:353 msgid "Lease file" msgstr "Bérletfájl" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:697 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:768 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:679 msgid "Lease time" msgstr "Bérleti idő" @@ -4558,19 +4582,19 @@ msgstr "Jelmagyarázat:" msgid "Limit" msgstr "Korlát" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:24 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:25 msgid "Line Attenuation (LATN)" msgstr "Vonal csillapítása (LATN)" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:18 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:19 msgid "Line Mode" msgstr "Vonali mód" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:17 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:18 msgid "Line State" msgstr "Vonal állapota" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:19 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:20 msgid "Line Uptime" msgstr "Vonal működési ideje" @@ -4591,12 +4615,12 @@ msgctxt "nft @ll,off,len" msgid "Link layer header bits %d-%d" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:433 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:438 msgid "List of IP addresses to convert into NXDOMAIN responses." msgstr "Gépek listája, amelyek hamis NX-tartomány eredményeket szolgáltatnak" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:296 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:581 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:301 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:652 msgid "List of IP sets to populate with the specified domain IPs." msgstr "" @@ -4633,15 +4657,11 @@ msgstr "" msgid "List of SSH key files for auth" msgstr "SSH kulcsfájlok listája a hitelesítéshez" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:312 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:317 msgid "List of domains to allow RFC1918 responses for." msgstr "Tartományok listája, amelyeknél az RFC1918 válaszok engedélyezettek" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:290 -msgid "List of domains to force to an IP address." -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:283 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:285 msgid "List of upstream resolvers to forward queries to." msgstr "" "<abbr title=\"Domain Name System\">DNS</abbr>-kiszolgálók listája, ahová a " @@ -4651,7 +4671,7 @@ msgstr "" msgid "Listen Port" msgstr "Fogadó port" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:332 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:337 msgid "Listen interfaces" msgstr "Figyelési csatolók" @@ -4659,7 +4679,7 @@ msgstr "Figyelési csatolók" msgid "Listen only on the given interface or, if unspecified, on all" msgstr "Figyelés csak a megadott csatolón, vagy az összesen, ha nincs megadva" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:333 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:338 msgid "" "Listen only on the specified interfaces, and loopback if not excluded " "explicitly." @@ -4669,7 +4689,7 @@ msgstr "Figyelés korlátozása ezekre a csatolókra és a visszacsatolásra." msgid "ListenPort setting is invalid" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:439 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:444 msgid "Listening port for inbound DNS queries." msgstr "Port figyelése a bejövő DNS-lekérdezésekhez" @@ -4696,9 +4716,9 @@ msgid "Loading directory contents…" msgstr "Könyvtártartalmak betöltése…" #: modules/luci-base/htdocs/luci-static/resources/luci.js:1942 -#: modules/luci-base/luasrc/view/view.htm:4 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:12 -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/sysauth.htm:45 +#: modules/luci-base/ucode/template/view.ut:4 +#: modules/luci-mod-status/ucode/template/admin_status/index.ut:12 +#: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/sysauth.ut:40 msgid "Loading view…" msgstr "Nézet betöltése…" @@ -4756,21 +4776,21 @@ msgstr "Helyi idő" msgid "Local ULA" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:273 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:275 msgid "Local domain" msgstr "Helyi tartomány" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:274 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:276 msgid "Local domain suffix appended to DHCP names and hosts file entries." msgstr "" "A DHCP nevekhez és a hosts fájl bejegyzéseihez hozzáfűzött helyi " "tartományutótagok" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:269 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:271 msgid "Local server" msgstr "Helyi kiszolgáló" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:319 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:324 msgid "Local service only" msgstr "Csak helyi szolgáltatás" @@ -4778,7 +4798,7 @@ msgstr "Csak helyi szolgáltatás" msgid "Local wireguard key" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:392 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:397 msgid "Localise queries" msgstr "Lekérdezések behatárolása" @@ -4790,7 +4810,7 @@ msgstr "Zárolás a BSSID-hoz" msgid "Log output level" msgstr "Napló kimeneti szintje" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:277 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:279 msgid "Log queries" msgstr "Lekérdezések naplózása" @@ -4814,8 +4834,8 @@ msgstr "" msgid "Logical network to which the tunnel will be added (bridged) (optional)." msgstr "" -#: modules/luci-base/luasrc/view/sysauth.htm:38 -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/sysauth.htm:41 +#: modules/luci-base/ucode/template/sysauth.ut:38 +#: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/sysauth.ut:36 msgid "Login" msgstr "Bejelentkezés" @@ -4827,7 +4847,7 @@ msgstr "Kijelentkezés" msgid "Loose filtering" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:31 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:32 msgid "Loss of Signal Seconds (LOSS)" msgstr "Jel vesztésének másodpercei (LOSS)" @@ -4835,6 +4855,10 @@ msgstr "Jel vesztésének másodpercei (LOSS)" msgid "Lowest leased address as offset from the network address." msgstr "Legalacsonyabb bérelt cím a hálózati címtől való eltolásként." +#: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/footer.ut:12 +msgid "Lua compatibility mode active" +msgstr "" + #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:48 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:83 msgid "MAC" @@ -4859,7 +4883,7 @@ msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:591 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:40 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:619 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:690 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1164 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2177 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:56 @@ -4918,6 +4942,10 @@ msgstr "" msgid "MTU" msgstr "MTU" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:259 +msgid "MX" +msgstr "" + #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:303 msgid "" "Make sure to clone the root filesystem using something like the commands " @@ -4944,23 +4972,23 @@ msgstr "Mester" msgid "Max <abbr title=\"Router Advertisement\">RA</abbr> interval" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:22 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:23 msgid "Max. Attainable Data Rate (ATTNDR)" msgstr "Legnagyobb elérhető adatsebesség (ATTNDR)" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:452 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:457 msgid "Max. DHCP leases" msgstr "" "<abbr title=\"maximal\">Legnagyobb</abbr> <abbr title=\"Dynamic Host " "Configuration Protocol\">DHCP</abbr> bérletek" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:459 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:464 msgid "Max. EDNS0 packet size" msgstr "" "<abbr title=\"maximal\">Max.</abbr> <abbr title=\"Extension Mechanisms for " "Domain Name System\">EDNS0</abbr> csomagméret" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:466 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:471 msgid "Max. concurrent queries" msgstr "<abbr title=\"maximal\">Legtöbb</abbr> egyidejű lekérdezés" @@ -4972,15 +5000,15 @@ msgstr "" msgid "Maximum allowed Listen Interval" msgstr "Legnagyobb engedélyezett figyelési időköz" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:453 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:458 msgid "Maximum allowed number of active DHCP leases." msgstr "Aktív DHCP bérletek legnagyobb megengedett száma" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:467 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:472 msgid "Maximum allowed number of concurrent DNS queries." msgstr "Egyidejű DNS-lekérdezések legnagyobb megengedett száma" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:460 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:465 msgid "Maximum allowed size of EDNS0 UDP packets." msgstr "EDNS.0 UDP csomagok legnagyobb megengedett mérete" @@ -5007,7 +5035,7 @@ msgstr "" msgid "Maximum transmit power" msgstr "Legnagyobb átviteli teljesítmény" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:389 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:394 msgid "May prevent VoIP or other services from working." msgstr "" @@ -5325,11 +5353,15 @@ msgstr "Az új hálózat neve" msgid "Name of the tunnel device" msgstr "" -#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:46 +#: themes/luci-theme-openwrt-2020/ucode/template/themes/openwrt2020/header.ut:39 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:50 msgid "Navigation" msgstr "Navigáció" +#: protocols/luci-proto-nebula/htdocs/luci-static/resources/protocol/nebula.js:10 +msgid "Nebula Network" +msgstr "" + #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:653 msgid "Neighbour cache validity" msgstr "" @@ -5365,7 +5397,7 @@ msgstr "Hálózati segédprogramok" msgid "Network address" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:492 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:497 msgid "Network boot image" msgstr "Hálózati rendszerindító lemezkép" @@ -5405,7 +5437,7 @@ msgstr "" msgid "Network interface" msgstr "Hálózati csatoló" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:531 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:536 msgid "Network-ID" msgstr "" @@ -5413,7 +5445,7 @@ msgstr "" msgid "Never" msgstr "Soha" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:270 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:272 msgid "" "Never forward matching domains and subdomains, resolve from DHCP or hosts " "files only." @@ -5463,9 +5495,9 @@ msgstr "Nincs NAT-T" msgid "No RX signal" msgstr "Nincs RX jel" -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:80 -#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:87 -#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:72 +#: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/header.ut:68 +#: themes/luci-theme-material/ucode/template/themes/material/header.ut:82 +#: themes/luci-theme-openwrt-2020/ucode/template/themes/openwrt2020/header.ut:65 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:90 msgid "" "No changes to settings will be stored and are lost after rebooting. This " @@ -5508,10 +5540,6 @@ msgstr "" msgid "No entries in this directory" msgstr "Nincsenek bejegyzések ebben a könyvtárban" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:82 -msgid "No files found" -msgstr "Nem találhatók fájlok" - #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:833 msgid "" "No fixed interface listening port defined, peers might not be able to " @@ -5547,7 +5575,7 @@ msgstr "" msgid "No more slaves available, can not save interface" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:413 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:418 msgid "No negative cache" msgstr "Nincs negatív gyorsítótár" @@ -5555,8 +5583,8 @@ msgstr "Nincs negatív gyorsítótár" msgid "No nftables ruleset loaded." msgstr "" -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:69 -#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:61 +#: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/header.ut:57 +#: themes/luci-theme-openwrt-2020/ucode/template/themes/openwrt2020/header.ut:54 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:79 msgid "No password set!" msgstr "Nincs jelszó beállítva!" @@ -5597,7 +5625,7 @@ msgstr "Nincs zóna hozzárendelve" msgid "Noise" msgstr "Zaj" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:26 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:27 msgid "Noise Margin (SNR)" msgstr "Zajszint (SNR)" @@ -5605,11 +5633,11 @@ msgstr "Zajszint (SNR)" msgid "Noise:" msgstr "Zaj:" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:34 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:35 msgid "Non Pre-emptive CRC errors (CRC_P)" msgstr "Nem megelőző CRC-hibák (CRC_P)" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:325 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:330 msgid "Non-wildcard" msgstr "Nincs helyettesítő karakter" @@ -5624,7 +5652,7 @@ msgstr "Nincs" msgid "Normal" msgstr "Normál" -#: modules/luci-base/luasrc/view/error404.htm:8 +#: modules/luci-base/ucode/template/error404.ut:9 msgid "Not Found" msgstr "Nem található" @@ -5677,7 +5705,7 @@ msgstr "Nslookup" msgid "Number of IGMP membership reports" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:474 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:479 msgid "Number of cached DNS entries, 10000 is maximum, 0 is no caching." msgstr "" "Gyorsítótárazott DNS-bejegyzések száma (legfeljebb 10000, 0 megadásakor " @@ -5728,7 +5756,7 @@ msgstr "Állapotkori késleltetés" msgid "On-link" msgstr "Kapcsolatkori útválasztás" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:672 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:743 msgid "One of hostname or MAC address must be specified!" msgstr "A gépnév vagy a MAC-cím egyikét meg kell adni!" @@ -5764,7 +5792,6 @@ msgid "Open iptables rules overview…" msgstr "" #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:472 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:19 msgid "Open list..." msgstr "Lista megnyitása…" @@ -5922,18 +5949,23 @@ msgstr "Elhagyható. A kimenő és bejövő csomagokhoz használt UDP port." msgid "Options" msgstr "Beállítások" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:526 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:531 msgid "" "Options for the Network-ID. (Note: needs also Network-ID.) E.g. " -"\"<code>42,192.168.1.4</code>\" for NTP server, \"<code>3,192.168.4.4</" -"code>\" for default route. <code>0.0.0.0</code> means \"the address of the " -"system running dnsmasq\"." +"\"<code>42,192.168.1.4</code>\" for NTP server, \"<code>3,192.168.4.4</code>" +"\" for default route. <code>0.0.0.0</code> means \"the address of the system " +"running dnsmasq\"." msgstr "" #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:125 msgid "Options:" msgstr "Opciók:" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:584 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:616 +msgid "Ordinal: lower comes first." +msgstr "" + #: protocols/luci-proto-batman-adv/htdocs/luci-static/resources/protocol/batadv.js:55 msgid "Originator Interval" msgstr "" @@ -6209,13 +6241,13 @@ msgctxt "MACVLAN mode" msgid "Pass-through (Mirror physical device to single MAC VLAN)" msgstr "" -#: modules/luci-base/luasrc/view/sysauth.htm:29 +#: modules/luci-base/ucode/template/sysauth.ut:29 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1690 #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:51 #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:114 #: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:103 #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:58 -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/sysauth.htm:24 +#: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/sysauth.ut:19 msgid "Password" msgstr "Jelszó" @@ -6386,7 +6418,7 @@ msgstr "Ping" msgid "Pkts." msgstr "csom." -#: modules/luci-base/luasrc/view/sysauth.htm:19 +#: modules/luci-base/ucode/template/sysauth.ut:19 msgid "Please enter your username and password." msgstr "Adja meg a felhasználónevét és a jelszavát." @@ -6403,6 +6435,7 @@ msgctxt "Chain hook policy" msgid "Policy: <strong>%h</strong> (%h)" msgstr "" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:579 #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/dropbear.js:21 msgid "Port" msgstr "Port" @@ -6419,11 +6452,11 @@ msgstr "Port állapota:" msgid "Potential negation of: %s" msgstr "Lehetséges tagadása ennek: %s" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:37 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:38 msgid "Power Management Mode" msgstr "Energiakezelési mód" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:35 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:36 msgid "Pre-emptive CRC errors (CRCP_P)" msgstr "Megelőző CRC-hibák (CRCP_P)" @@ -6498,6 +6531,8 @@ msgid "Primary becomes active slave whenever it comes back up (always, 0)" msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:508 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:584 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:616 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:129 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:197 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:223 @@ -6620,7 +6655,7 @@ msgstr "QMI sejtes" msgid "Quality" msgstr "Minőség" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:428 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:433 msgid "Query all available upstream resolvers." msgstr "" "Az összes elérhető külső <abbr title=\"Domain Name System\">DNS</abbr>-" @@ -6706,7 +6741,7 @@ msgstr "" "Nyers hexadecimális kódolású bájtok. Hagyja üresen, hacsak az internet-" "szolgáltatója nem követelni meg" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:345 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:350 msgid "Read <code>/etc/ethers</code> to configure the DHCP server." msgstr "" "Az <code>/etc/ethers</code> fájl olvasása a <abbr title=\"Dynamic Host " @@ -6724,7 +6759,7 @@ msgstr "Valós idejű grafikonok" msgid "Reassociation Deadline" msgstr "Újratársítás határideje" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:301 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:306 msgid "Rebind protection" msgstr "Újrakötési védelem" @@ -6809,6 +6844,7 @@ msgid "" msgstr "" #: modules/luci-compat/luasrc/model/network/proto_relay.lua:153 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:611 #: protocols/luci-proto-relay/htdocs/luci-static/resources/protocol/relay.js:39 msgid "Relay" msgstr "Átjátszás" @@ -6901,6 +6937,10 @@ msgstr "" msgid "Required. Base64-encoded private key for this interface." msgstr "Kötelező. Base64 kódolású személyes kulcs ehhez a csatolóhoz." +#: protocols/luci-proto-nebula/htdocs/luci-static/resources/protocol/nebula.js:40 +msgid "Required. Path to the .yml config file for this interface." +msgstr "" + #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:587 msgid "Required. Public key of the WireGuard peer." msgstr "" @@ -6982,7 +7022,7 @@ msgid "Reselection policy for primary slave" msgstr "" #: modules/luci-base/htdocs/luci-static/resources/luci.js:2197 -#: modules/luci-base/luasrc/view/sysauth.htm:39 +#: modules/luci-base/ucode/template/sysauth.ut:39 #: modules/luci-compat/luasrc/view/cbi/delegator.htm:17 #: modules/luci-compat/luasrc/view/cbi/footer.htm:30 #: modules/luci-compat/luasrc/view/cbi/simpleform.htm:66 @@ -7001,10 +7041,14 @@ msgstr "Visszaállítás az alapértelmezettekre" msgid "Resolv and Hosts Files" msgstr "Resolv és hosts fájlok" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:356 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:361 msgid "Resolv file" msgstr "Fájl feloldása" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:292 +msgid "Resolve specified FQDNs to an IP." +msgstr "" + #: modules/luci-base/htdocs/luci-static/resources/rpc.js:405 msgid "Resource not found" msgstr "Az erőforrás nem található" @@ -7031,7 +7075,7 @@ msgstr "Visszaállítás" msgid "Restore backup" msgstr "Biztonsági mentés visszaállítása" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:393 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:398 msgid "" "Return answers to DNS queries matching the subnet from which the query was " "received if multiple IPs are available." @@ -7119,7 +7163,7 @@ msgstr "" msgid "Robustness" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:486 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:491 msgid "" "Root directory for files served via TFTP. <em>Enable TFTP server</em> and " "<em>TFTP server root</em> turn on the TFTP server and serve files from " @@ -7224,6 +7268,11 @@ msgstr "SHA256" msgid "SNR" msgstr "SNR" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:258 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:569 +msgid "SRV" +msgstr "" + #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/dropbear.js:10 #: modules/luci-mod-system/root/usr/share/luci/menu.d/luci-mod-system.json:38 msgid "SSH Access" @@ -7366,11 +7415,11 @@ msgstr "" msgid "Server" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:519 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:524 msgid "Server address" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:513 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:518 msgid "Server name" msgstr "" @@ -7461,7 +7510,7 @@ msgstr "" msgid "Setup routes for proxied IPv6 neighbours." msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:30 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:31 msgid "Severely Errored Seconds (SES)" msgstr "Súlyosan hibás másodpercek (SES)" @@ -7475,7 +7524,6 @@ msgid "Short Preamble" msgstr "Rövid előszó" #: 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 msgid "Show current backup file list" msgstr "Jelenlegi biztonsági mentés fájllista megjelenítése" @@ -7509,7 +7557,7 @@ msgstr "Jel" msgid "Signal / Noise" msgstr "Jel/zaj" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:25 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:26 msgid "Signal Attenuation (SATN)" msgstr "Jel csillapítása (SATN)" @@ -7527,7 +7575,7 @@ msgstr "Jel:" msgid "Size" msgstr "Méret" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:473 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:478 msgid "Size of DNS query cache" msgstr "A DNS lekérdezési gyorsítótár mérete" @@ -7544,12 +7592,12 @@ msgstr "Kihagyás" msgid "Skip from backup files that are equal to those in /rom" msgstr "" -#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:42 +#: themes/luci-theme-openwrt-2020/ucode/template/themes/openwrt2020/header.ut:35 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:46 msgid "Skip to content" msgstr "Ugrás a tartalomhoz" -#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:41 +#: themes/luci-theme-openwrt-2020/ucode/template/themes/openwrt2020/header.ut:34 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:45 msgid "Skip to navigation" msgstr "Ugrás a navigációhoz" @@ -7567,14 +7615,10 @@ msgstr "Szoftveres VLAN" msgid "Some fields are invalid, cannot save values!" msgstr "Néhány mező érvénytelen, nem lehet menteni az értékeket!" -#: modules/luci-base/luasrc/view/error404.htm:9 +#: modules/luci-base/ucode/template/error404.ut:10 msgid "Sorry, the object you requested was not found." msgstr "Elnézést, a kért objektum nem található." -#: modules/luci-base/luasrc/view/error500.htm:9 -msgid "Sorry, the server encountered an unexpected error." -msgstr "Elnézést, a kiszolgáló váratlan hibát észlelt." - #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:442 msgid "" "Sorry, there is no sysupgrade support present; a new firmware image must be " @@ -7614,7 +7658,7 @@ msgctxt "nft ip sport" msgid "Source port" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:500 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:505 msgid "" "Special <abbr title=\"Preboot eXecution Environment\">PXE</abbr> boot " "options for Dnsmasq." @@ -7994,7 +8038,7 @@ msgstr "Statikus bérletek" msgid "Static address" msgstr "Statikus cím" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:598 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:669 msgid "" "Static leases are used to assign fixed IP addresses and symbolic hostnames " "to DHCP clients. They are also required for non-dynamic interface " @@ -8012,7 +8056,7 @@ msgstr "Állomás tétlenségi korlátja" #: modules/luci-base/root/usr/share/luci/menu.d/luci-base.json:16 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:541 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:929 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:9 +#: modules/luci-mod-status/ucode/template/admin_status/index.ut:9 msgid "Status" msgstr "Állapot" @@ -8038,7 +8082,7 @@ msgstr "" msgid "Strict filtering" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:422 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:427 msgid "Strict order" msgstr "Szigorú sorrend" @@ -8051,11 +8095,11 @@ msgstr "Erős" msgid "Submit" msgstr "Elküldés" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:372 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:377 msgid "Suppress logging" msgstr "Naplózás elnyomása" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:373 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:378 msgid "Suppress logging of the routine operation for the DHCP protocol." msgstr "Ezen protokollok rutinműveletei naplózásának elnyomása" @@ -8110,6 +8154,14 @@ msgstr "Szinkronizálás NTP-kiszolgálóval" msgid "Sync with browser" msgstr "Szinkronizálás a böngészővel" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:293 +msgid "Syntax: <code>/fqdn[/fqdn…]/[ipaddr]</code>." +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:569 +msgid "Syntax: <code>_service._proto.example.com</code>." +msgstr "" + #: modules/luci-base/root/usr/share/luci/menu.d/luci-base.json:26 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/10_system.js:17 #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:113 @@ -8135,9 +8187,9 @@ msgstr "Rendszer tulajdonságai" msgid "System log buffer size" msgstr "Rendszernapló-puffer mérete" -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:79 -#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:86 -#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:71 +#: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/header.ut:67 +#: themes/luci-theme-material/ucode/template/themes/material/header.ut:81 +#: themes/luci-theme-openwrt-2020/ucode/template/themes/openwrt2020/header.ut:64 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:89 msgid "System running in recovery (initramfs) mode." msgstr "" @@ -8166,7 +8218,7 @@ msgstr "" msgid "TCP:" msgstr "TCP:" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:485 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:490 msgid "TFTP server root" msgstr "TFTP-kiszolgáló gyökere" @@ -8191,6 +8243,7 @@ msgstr "" msgid "Table" msgstr "Tábla" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:574 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:56 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:66 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:187 @@ -8263,15 +8316,15 @@ msgstr "" "A HE.net végpont frissítési beállítása megváltozott, most az egyszerű " "felhasználónevet kell használnia a felhasználó-azonosító helyett!" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:681 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:752 msgid "The IP address %h is already used by another static lease" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:690 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:761 msgid "The IP address is outside of any DHCP pool address range" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:520 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:525 msgid "The IP address of the boot server" msgstr "" @@ -8459,7 +8512,7 @@ msgid "" "to be received and retransmitted which costs airtime)" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:514 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:519 msgid "The hostname of the boot server" msgstr "" @@ -8545,20 +8598,20 @@ msgstr "A hálózat neve már használatban van" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:139 msgid "" -"The network ports on this device can be combined to several <abbr " -"title=\"Virtual Local Area Network\">VLAN</abbr>s in which computers can " +"The network ports on this device can be combined to several <abbr title=" +"\"Virtual Local Area Network\">VLAN</abbr>s in which computers can " "communicate directly with each other. <abbr title=\"Virtual Local Area " "Network\">VLAN</abbr>s are often used to separate different network " "segments. Often there is by default one Uplink port for a connection to the " "next greater network like the internet and other ports for a local network." msgstr "" -"Az eszközön található hálózati portok kombinálhatók több <abbr " -"title=\"Virtual Local Area Network\">VLAN</abbr>-ba, amelyekben a " -"számítógépek közvetlenül kommunikálhatnak egymással. A <abbr title=\"Virtual " -"Local Area Network\">VLAN</abbr>-okat gyakran a hálózati szegmensek " -"elkülönítésére használják. Gyakran alapértelmezetten van egy kimenő port a " -"következő nagyobb hálózathoz (például az internethez) való kapcsolódásra és " -"egyéb portok a helyi hálózathoz." +"Az eszközön található hálózati portok kombinálhatók több <abbr title=" +"\"Virtual Local Area Network\">VLAN</abbr>-ba, amelyekben a számítógépek " +"közvetlenül kommunikálhatnak egymással. A <abbr title=\"Virtual Local Area " +"Network\">VLAN</abbr>-okat gyakran a hálózati szegmensek elkülönítésére " +"használják. Gyakran alapértelmezetten van egy kimenő port a következő " +"nagyobb hálózathoz (például az internethez) való kapcsolódásra és egyéb " +"portok a helyi hálózathoz." #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:759 msgid "" @@ -8604,7 +8657,7 @@ msgstr "" 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" -#: modules/luci-base/luasrc/view/csrftoken.htm:11 +#: modules/luci-base/ucode/template/csrftoken.ut:11 msgid "The submitted security token is invalid or already expired!" msgstr "A beküldött biztonsági token érvénytelen vagy már lejárt!" @@ -8690,8 +8743,8 @@ msgid "" "nftables rules is discouraged and may lead to incomplete traffic filtering." msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:746 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:778 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:817 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:849 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:130 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:179 msgid "There are no active leases" @@ -8701,8 +8754,8 @@ msgstr "Nincsenek aktív bérletek" msgid "There are no changes to apply" msgstr "Nincsenek alkalmazandó változtatások" -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:70 -#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:62 +#: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/header.ut:58 +#: themes/luci-theme-openwrt-2020/ucode/template/themes/openwrt2020/header.ut:55 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:80 msgid "" "There is no password set on this router. Please configure a root password to " @@ -8725,7 +8778,6 @@ msgid "This does not look like a valid PEM file" msgstr "Ez nem tűnik érvényes PEM fájlnak" #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:454 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:16 msgid "" "This is a list of shell glob patterns for matching files and directories to " "include during sysupgrade. Modified files in /etc/config/ and certain other " @@ -8771,7 +8823,7 @@ msgstr "" "Ez az alagút-közvetítő által hozzárendelt helyi végpont címe, amely " "általában így végződik: <code>...:2/64</code>" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:266 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:268 msgid "This is the only DHCP server in the local network." msgstr "" "Ez az egyetlen <abbr title=\"Dynamic Host Configuration Protocol\">DHCP</" @@ -8861,8 +8913,8 @@ msgstr "Időzóna" #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:440 msgid "" "To fully configure the local WireGuard interface from an existing (e.g. " -"provider supplied) configuration file, use the <strong><a class=\"full-" -"import\" href=\"#\">configuration import</a></strong> instead." +"provider supplied) configuration file, use the <strong><a class=\"full-import" +"\" href=\"#\">configuration import</a></strong> instead." msgstr "" #: modules/luci-base/htdocs/luci-static/resources/luci.js:2674 @@ -9028,7 +9080,7 @@ msgstr "Nem lehet meghatározni a külső IP-címet" msgid "Unable to determine upstream interface" msgstr "Nem lehet meghatározni a külső csatolót" -#: modules/luci-base/luasrc/view/error404.htm:11 +#: modules/luci-base/ucode/template/error404.ut:12 msgid "Unable to dispatch" msgstr "Nem lehet elküldeni" @@ -9083,7 +9135,7 @@ msgstr "Nem lehet elmenteni a tartalmat: %s" msgid "Unable to verify PIN" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:32 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:33 msgid "Unavailable Seconds (UAS)" msgstr "Elérhetetlen másodpercek (UAS)" @@ -9232,7 +9284,7 @@ msgid "" "will be restarted to apply the updated configuration." msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:423 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:428 msgid "Upstream resolvers will be queried in the order of the resolv file." msgstr "" "A <abbr title=\"Domain Name System\">DNS</abbr>-kiszolgálók a feloldási " @@ -9243,7 +9295,7 @@ msgstr "" msgid "Uptime" msgstr "Futási idő" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:344 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:349 msgid "Use <code>/etc/ethers</code>" msgstr "<code>/etc/ethers</code> használata" @@ -9354,7 +9406,7 @@ msgstr "Rendszertanúsítványok használata" msgid "Use system certificates for inner-tunnel" msgstr "Rendszertanúsítványok használata a belső alagútnál" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:599 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:670 msgid "" "Use the <em>Add</em> Button to add a new lease entry. The <em>MAC address</" "em> identifies the host, the <em>IPv4 address</em> specifies the fixed " @@ -9413,11 +9465,11 @@ msgstr "" msgid "User key (PEM encoded)" msgstr "Felhasználói kulcs (PEM kódolású)" -#: modules/luci-base/luasrc/view/sysauth.htm:23 +#: modules/luci-base/ucode/template/sysauth.ut:23 #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:112 #: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:101 #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:56 -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/sysauth.htm:18 +#: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/sysauth.ut:13 msgid "Username" msgstr "Felhasználónév" @@ -9515,7 +9567,7 @@ msgstr "" msgid "VXLANv6 (RFC7348)" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:398 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:403 msgid "" "Validate DNS replies and cache DNSSEC data, requires upstream to support " "DNSSEC." @@ -9553,7 +9605,7 @@ msgstr "Gyártó" msgid "Vendor Class to send when requesting DHCP" msgstr "DHCP kérésekor küldendő gyártóosztály" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:403 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:408 msgid "Verify unsigned domain responses really come from unsigned domains." msgstr "" @@ -9632,6 +9684,10 @@ msgstr "" msgid "Weak" msgstr "Gyenge" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:589 +msgid "Weight" +msgstr "" + #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1029 msgid "" "When delegating prefixes to multiple downstreams, interfaces with a higher " @@ -9755,7 +9811,7 @@ msgstr "Vezeték nélküli hálózat letiltva" msgid "Wireless network is enabled" msgstr "Vezeték nélküli hálózat engedélyezve" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:278 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:280 msgid "Write received DNS queries to syslog." msgstr "Fogadott DNS-kérések írása a rendszernaplóba" @@ -9798,8 +9854,16 @@ msgstr "" "előkészítő parancsfájlokat, mint például a „network” parancsfájlt, akkor az " "eszköz elérhetetlenné válhat!</strong>" -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:90 -#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:97 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:559 +msgid "You may add multiple records for the same Target." +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:596 +msgid "You may add multiple records for the same domain." +msgstr "" + +#: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/header.ut:78 +#: themes/luci-theme-material/ucode/template/themes/material/header.ut:92 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:73 msgid "" "You must enable JavaScript in your browser or LuCI will not work properly." @@ -9830,7 +9894,17 @@ msgstr "ZRam beállítások" msgid "ZRam Size" msgstr "ZRam mérete" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:449 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:558 +msgid "_proto: _tcp, _udp, _sctp, _quic, … ." +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:557 +msgid "" +"_service: _sip, _ldap, _imap, _stun, _xmpp-client, … . (Note: while _http is " +"possible, no browsers support SRV records.)" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:454 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:152 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:163 msgid "any" @@ -9941,8 +10015,8 @@ msgstr "" msgid "e.g: dump" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:726 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:756 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:797 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:827 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:101 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:148 msgid "expired" @@ -10153,9 +10227,9 @@ msgstr "egyedi érték" msgid "unknown" msgstr "ismeretlen" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:456 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:724 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:754 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:461 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:795 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:825 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:99 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:146 msgid "unlimited" @@ -10371,6 +10445,21 @@ msgstr "igen" msgid "« Back" msgstr "« Vissza" +#~ msgid "Back to configuration" +#~ msgstr "Vissza a beállításokhoz" + +#~ msgid "Close list..." +#~ msgstr "Lista bezárása…" + +#~ msgid "Internal Server Error" +#~ msgstr "Belső kiszolgálóhiba" + +#~ msgid "No files found" +#~ msgstr "Nem találhatók fájlok" + +#~ msgid "Sorry, the server encountered an unexpected error." +#~ msgstr "Elnézést, a kiszolgáló váratlan hibát észlelt." + #~ msgid "Do not forward queries that cannot be answered by public resolvers." #~ msgstr "" #~ "Ne továbbítsa azokat a kéréseket, amelyeket nem tudnak megválaszolni a " @@ -10658,12 +10747,12 @@ msgstr "« Vissza" #~ msgid "" #~ "The filesystem that was used to format the memory (<abbr title=\"for " -#~ "example\">e.g.</abbr> <samp><abbr title=\"Third Extended " -#~ "Filesystem\">ext3</abbr></samp>)" +#~ "example\">e.g.</abbr> <samp><abbr title=\"Third Extended Filesystem" +#~ "\">ext3</abbr></samp>)" #~ msgstr "" #~ "A memória formázásához használt fájlrendszer típusa (<abbr title=\"for " -#~ "example\">pl.</abbr> <samp><abbr title=\"Third Extended " -#~ "Filesystem\">ext3</abbr></samp>)" +#~ "example\">pl.</abbr> <samp><abbr title=\"Third Extended Filesystem" +#~ "\">ext3</abbr></samp>)" #~ msgid "" #~ "The flash image was uploaded. Below is the checksum and file size listed, " diff --git a/modules/luci-base/po/it/base.po b/modules/luci-base/po/it/base.po index 761e9ef63b..a9e42200fe 100644 --- a/modules/luci-base/po/it/base.po +++ b/modules/luci-base/po/it/base.po @@ -210,8 +210,8 @@ msgstr "" #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/leds.js:70 msgid "<abbr title=\"Light Emitting Diode\">LED</abbr> Name" msgstr "" -"Nome del <abbr title=\"Light Emitting Diode - Diodo ad Emissione di " -"Luce\">LED</abbr>" +"Nome del <abbr title=\"Light Emitting Diode - Diodo ad Emissione di Luce" +"\">LED</abbr>" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:914 msgid "<abbr title=\"Neighbour Discovery Protocol\">NDP</abbr>-Proxy" @@ -237,6 +237,18 @@ msgstr "MTU <abbr title=\"Router Advertisement\"> RA</abbr>" msgid "<abbr title=\"Router Advertisement\">RA</abbr>-Service" msgstr "Servizio <abbr title=\"Router Advertisement\">RA</abbr>" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:294 +msgid "" +"<code>/#/</code> matches any domain. <code>/example.com/</code> returns " +"NXDOMAIN." +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:295 +msgid "" +"<code>/example.com/#</code> returns NULL addresses (<code>0.0.0.0</code> and " +"<code>::</code>) for example.com and its subdomains." +msgstr "" + #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:87 msgctxt "nft relational \">\" operator expression" msgid "<var>%s</var> greater than <strong>%s</strong>" @@ -398,7 +410,7 @@ msgstr "" msgid "ATM device number" msgstr "Numero dispositivo ATM" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:36 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:37 msgid "ATU-C System Vendor ID" msgstr "" @@ -408,7 +420,7 @@ msgstr "" msgid "Absent Interface" msgstr "Interfaccia assente" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:320 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:325 msgid "Accept DNS queries only from hosts whose address is on a local subnet." msgstr "" "Accetta query DNS solo da host il cui indirizzo si trova su una sottorete " @@ -549,7 +561,7 @@ msgstr "Aggiungi istanza" msgid "Add key" msgstr "Aggiungi chiave" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:410 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:415 msgid "Add local domain suffix to names served from hosts files." msgstr "Aggiungi il suffisso di dominio locale ai nomi serviti dal file hosts." @@ -570,11 +582,11 @@ msgstr "Aggiungi alla Blacklist" msgid "Add to Whitelist" msgstr "Aggiungi alla Whitelist" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:367 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:372 msgid "Additional hosts files" msgstr "File Hosts aggiuntivo" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:417 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:422 msgid "Additional servers file" msgstr "File server aggiuntivi" @@ -604,7 +616,7 @@ msgstr "" msgid "Address to access local relay bridge" msgstr "Indirizzo per accedere al bridge locale di trasmissione" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:289 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:291 msgid "Addresses" msgstr "Indirizzi" @@ -637,7 +649,7 @@ msgstr "" msgid "Aggregate Originator Messages" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:27 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:28 msgid "Aggregate Transmit Power (ACTATP)" msgstr "" @@ -673,11 +685,11 @@ msgstr "" msgid "Alias of \"%s\"" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:427 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:432 msgid "All servers" msgstr "Tutti i server" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:378 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:383 msgid "" "Allocate IP addresses sequentially, starting from the lowest available " "address." @@ -685,7 +697,7 @@ msgstr "" "Assegna gli indirizzi IP consecutivamente, a partire dall'indirizzo più " "basso disponibile." -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:377 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:382 msgid "Allocate IPs sequentially" msgstr "Assegna IP consecutivi" @@ -717,7 +729,7 @@ msgstr "Consenti velocità 802.11b legacy" msgid "Allow listed only" msgstr "Consenti solo quelli nell'elenco" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:306 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:311 msgid "Allow localhost" msgstr "Permetti localhost" @@ -762,7 +774,7 @@ msgstr "Sempre spento (kernel: none)" msgid "Always on (kernel: default-on)" msgstr "Sempre acceso (kernel: default-on)" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:538 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:543 msgid "Always send DHCP Options. Sometimes needed, with e.g. PXELinux." msgstr "" @@ -791,7 +803,7 @@ msgid "An optional, short description for this device" msgstr "Una breve descrizione facoltativa per questo dispositivo" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1484 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:20 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:21 msgid "Annex" msgstr "Annex" @@ -905,7 +917,7 @@ msgstr "" msgid "Any zone" msgstr "Qualsiasi zona" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:532 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:537 msgid "Apply DHCP Options to this net. (Empty = all clients)." msgstr "" @@ -995,11 +1007,11 @@ msgstr "Autenticazione" msgid "Authentication Type" msgstr "Tipo di autenticazione" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:265 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:267 msgid "Authoritative" msgstr "Autoritativo" -#: modules/luci-base/luasrc/view/sysauth.htm:17 +#: modules/luci-base/ucode/template/sysauth.ut:17 #: themes/luci-theme-bootstrap/htdocs/luci-static/resources/view/bootstrap/sysauth.js:11 msgid "Authorization Required" msgstr "Autorizzazione Richiesta" @@ -1071,7 +1083,7 @@ msgstr "Media:" msgid "Avoid Bridge Loops" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:388 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:393 msgid "" "Avoid uselessly triggering dial-on-demand links (filters SRV/SOA records and " "names with underscores)." @@ -1106,10 +1118,6 @@ msgstr "Indietro" msgid "Back to Overview" msgstr "Ritorna alla Panoramica" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:48 -msgid "Back to configuration" -msgstr "Torna alla configurazione" - #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:826 msgid "Back to peer configuration" msgstr "" @@ -1123,7 +1131,6 @@ msgid "Backup / Flash Firmware" msgstr "Backup / Flash Firmware" #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:351 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:12 msgid "Backup file list" msgstr "Elenco dei file di backup" @@ -1165,7 +1172,6 @@ msgid "Beacon Interval" msgstr "Intervallo Beacon" #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:352 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:46 msgid "" "Below is the determined list of files to backup. It consists of changed " "configuration files marked by opkg, essential base files and the user " @@ -1179,7 +1185,7 @@ msgstr "" msgid "Bind NTP server" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:326 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:331 msgid "Bind dynamically to interfaces rather than wildcard address." msgstr "" @@ -1195,6 +1201,17 @@ msgstr "" msgid "Bind interface" msgstr "" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:595 +msgid "" +"Bind service records to a domain name: specify the location of services." +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:556 +msgid "" +"Bind service records to a domain name: specify the location of services. See " +"<a href=\"%s\">RFC2782</a>." +msgstr "" + #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:59 #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:64 #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:64 @@ -1297,6 +1314,10 @@ msgstr "" msgid "CLAT configuration failed" msgstr "" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:574 +msgid "CNAME or fqdn" +msgstr "" + #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/processes.js:72 msgid "CPU usage (%)" msgstr "Uso CPU (%)" @@ -1547,17 +1568,13 @@ msgstr "" "Chiudi le connessioni inattive dopo un determinato numero di secondi, usa 0 " "per connessioni persistenti" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:49 -msgid "Close list..." -msgstr "Chiudi elenco..." - #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:44 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:63 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2184 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:391 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:352 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:355 -#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:72 +#: themes/luci-theme-material/ucode/template/themes/material/header.ut:66 msgid "Collecting data..." msgstr "Sto raccogliendo i dati..." @@ -1597,6 +1614,10 @@ msgstr "" msgid "Compute outgoing checksum (optional)." msgstr "Calcolare il checksum in uscita (facoltativo)." +#: protocols/luci-proto-nebula/htdocs/luci-static/resources/protocol/nebula.js:40 +msgid "Config File" +msgstr "" + #: modules/luci-base/htdocs/luci-static/resources/ui.js:4375 #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:454 msgid "Configuration" @@ -1640,13 +1661,13 @@ msgid "" "Configures the default router advertisement in <abbr title=\"Router " "Advertisement\">RA</abbr> messages." msgstr "" -"Configura il router predefinito da annunciare nei messaggi <abbr " -"title=\"Router Advertisement\">RA</abbr>." +"Configura il router predefinito da annunciare nei messaggi <abbr title=" +"\"Router Advertisement\">RA</abbr>." #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:764 msgid "" -"Configures the operation mode of the <abbr title=\"Router " -"Advertisement\">RA</abbr> service on this interface." +"Configures the operation mode of the <abbr title=\"Router Advertisement" +"\">RA</abbr> service on this interface." msgstr "" "Configura la modalità operativa del servizio <abbr title=\"Router " "Advertisement\">RA</abbr> su questa interfaccia." @@ -1831,8 +1852,8 @@ msgstr "Lampeggio personalizzato (kernel: timer)" #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/leds.js:59 msgid "" -"Customizes the behaviour of the device <abbr title=\"Light Emitting " -"Diode\">LED</abbr>s if possible." +"Customizes the behaviour of the device <abbr title=\"Light Emitting Diode" +"\">LED</abbr>s if possible." msgstr "" "Personalizza la configurazione dei <abbr title=\"Light Emitting Diode - " "Diodo ad Emissione di Luce\">LED</abbr> di sistema se possibile." @@ -1853,7 +1874,7 @@ msgstr "" msgid "DAE-Secret" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:525 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:530 msgid "DHCP Options" msgstr "" @@ -1893,11 +1914,11 @@ msgstr "" msgid "DNS" msgstr "DNS" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:282 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:284 msgid "DNS forwardings" msgstr "Inoltri DNS" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:445 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:450 msgid "DNS query port" msgstr "Porta di richiesta <abbr title=\"Domain Name System\">DNS</abbr>" @@ -1905,7 +1926,7 @@ msgstr "Porta di richiesta <abbr title=\"Domain Name System\">DNS</abbr>" msgid "DNS search domains" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:438 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:443 msgid "DNS server port" msgstr "Porta server <abbr title=\"Domain Name System\">DNS</abbr>" @@ -1921,11 +1942,11 @@ msgstr "" msgid "DNS-Label / FQDN" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:397 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:402 msgid "DNSSEC" msgstr "DNSSEC" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:402 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:407 msgid "DNSSEC check unsigned" msgstr "" @@ -1938,11 +1959,11 @@ msgid "DS-Lite AFTR address" msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1481 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:44 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:45 msgid "DSL" msgstr "DSL" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:14 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:15 msgid "DSL Status" msgstr "" @@ -1955,12 +1976,12 @@ msgid "DTIM Interval" msgstr "Intervallo DTIM" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:59 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:700 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:771 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:136 msgid "DUID" msgstr "DUID" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:21 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:22 msgid "Data Rate" msgstr "" @@ -2209,7 +2230,7 @@ msgstr "" msgid "Disassociate On Low Acknowledgement" msgstr "Disconnetti client in caso di Acknowledgement scarso" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:302 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:307 msgid "" "Discard upstream responses containing <a href=\"%s\">RFC1918</a> addresses." msgstr "Scarta risposte RFC1918 upstream." @@ -2255,7 +2276,7 @@ msgstr "Distanza dal membro più lontano della rete in metri." msgid "Distributed ARP Table" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:543 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:548 msgid "" "Dnsmasq instance to which this boot section is bound. If unspecified, the " "section is valid for all dnsmasq instances." @@ -2263,15 +2284,15 @@ msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:246 msgid "" -"Dnsmasq is a lightweight <abbr title=\"Dynamic Host Configuration " -"Protocol\">DHCP</abbr> server and <abbr title=\"Domain Name System\">DNS</" -"abbr> forwarder." +"Dnsmasq is a lightweight <abbr title=\"Dynamic Host Configuration Protocol" +"\">DHCP</abbr> server and <abbr title=\"Domain Name System\">DNS</abbr> " +"forwarder." msgstr "" -"Dnsmasq è un server <abbr title=\"Dynamic Host Configuration " -"Protocol\">DHCP</abbr> leggero e un server d'inoltro <abbr title=\"Domain " -"Name System\">DNS</abbr>." +"Dnsmasq è un server <abbr title=\"Dynamic Host Configuration Protocol" +"\">DHCP</abbr> leggero e un server d'inoltro <abbr title=\"Domain Name System" +"\">DNS</abbr>." -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:414 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:419 msgid "Do not cache negative replies, e.g. for non-existent domains." msgstr "" "Non memorizzare nella cache le risposte negative, ad es. per domini " @@ -2285,15 +2306,15 @@ msgstr "" msgid "Do not create host route to peer (optional)." msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:262 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:264 msgid "Do not forward DNS queries without dots or domain parts." msgstr "Non inoltrare query DNS senza punti o parti di dominio." -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:383 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:388 msgid "Do not forward reverse lookups for local networks." msgstr "Non inoltrare ricerche inverse per reti locali." -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:339 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:344 msgid "Do not listen on the specified interfaces." msgstr "" @@ -2350,15 +2371,16 @@ msgstr "" msgid "Do you want to replace the current keys?" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:593 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:606 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:664 msgid "Domain" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:261 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:263 msgid "Domain required" msgstr "Dominio richiesto" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:311 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:316 msgid "Domain whitelist" msgstr "Lista domini consentiti" @@ -2597,7 +2619,7 @@ msgstr "Abilita client NTP" msgid "Enable Single DES" msgstr "Abilita DES Singolo" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:480 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:485 msgid "Enable TFTP server" msgstr "Abilita server TFTP" @@ -2615,9 +2637,9 @@ msgstr "Abilita pulsante WPS, richiede WPA(2)-PSK/WPA3-SAE" #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/uhttpd.js:14 msgid "" -"Enable automatic redirection of <abbr title=\"Hypertext Transfer " -"Protocol\">HTTP</abbr> requests to <abbr title=\"Hypertext Transfer Protocol " -"Secure\">HTTPS</abbr> port." +"Enable automatic redirection of <abbr title=\"Hypertext Transfer Protocol" +"\">HTTP</abbr> requests to <abbr title=\"Hypertext Transfer Protocol Secure" +"\">HTTPS</abbr> port." msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:977 @@ -2682,7 +2704,7 @@ msgstr "" msgid "Enable the DF (Don't Fragment) flag of the encapsulating packets." msgstr "Abilita l'opzione DF (non Frammentare) dei pacchetti incapsulati." -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:481 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:486 msgid "Enable the built-in single-instance TFTP server." msgstr "" @@ -2801,7 +2823,7 @@ msgstr "Errore" msgid "Error getting PublicKey" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:29 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:30 msgid "Errored seconds (ES)" msgstr "" @@ -2823,11 +2845,11 @@ msgstr "" msgid "Every second (fast, 1)" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:338 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:343 msgid "Exclude interfaces" msgstr "Escludi interfacce" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:307 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:312 msgid "" "Exempt <code>127.0.0.0/8</code> and <code>::1</code> from rebinding checks, " "e.g. for RBL services." @@ -2839,7 +2861,7 @@ msgstr "" msgid "Existing device" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:409 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:414 msgid "Expand hosts" msgstr "Espandi gli hosts" @@ -2975,7 +2997,7 @@ msgstr "" msgid "File" msgstr "File" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:418 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:423 msgid "" "File listing upstream resolvers, optionally domain-specific, e.g. " "<code>server=1.2.3.4</code>, <code>server=/domain/1.2.3.4</code>." @@ -2985,20 +3007,20 @@ msgstr "" msgid "File not accessible" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:349 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:354 msgid "File to store DHCP lease information." msgstr "File per memorizzare i contratti DHCP." -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:357 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:362 msgid "File with upstream resolvers." msgstr "File con i name server upstream." #: modules/luci-base/htdocs/luci-static/resources/ui.js:2846 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:507 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:512 msgid "Filename" msgstr "Nome file" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:493 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:498 msgid "Filename of the boot image advertised to clients." msgstr "Nome del file dell'immagine di avvio annunciato ai client." @@ -3007,11 +3029,11 @@ msgstr "Nome del file dell'immagine di avvio annunciato ai client." msgid "Filesystem" msgstr "Filesystem" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:382 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:387 msgid "Filter private" msgstr "Filtra privati" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:387 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:392 msgid "Filter useless" msgstr "Filtra inutili" @@ -3075,7 +3097,7 @@ msgstr "" msgid "Firmware Version" msgstr "Versione del Firmware" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:446 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:451 msgid "Fixed source port for outbound DNS queries." msgstr "Porta di origine fissa per le richieste DNS in uscita." @@ -3101,7 +3123,7 @@ msgstr "Operazioni flash" msgid "Flashing…" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:537 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:542 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:686 msgid "Force" msgstr "Forza" @@ -3146,21 +3168,21 @@ msgstr "Forza aggiornamento" msgid "Force use of NAT-T" msgstr "Forza uso del NAT-T" -#: modules/luci-base/luasrc/view/csrftoken.htm:8 +#: modules/luci-base/ucode/template/csrftoken.ut:8 msgid "Form token mismatch" msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:919 msgid "" -"Forward <abbr title=\"Neighbour Discovery Protocol\">NDP</abbr> <abbr " -"title=\"Neighbour Solicitation, Type 135\">NS</abbr> and <abbr " -"title=\"Neighbour Advertisement, Type 136\">NA</abbr> messages between the " -"designated master interface and downstream interfaces." +"Forward <abbr title=\"Neighbour Discovery Protocol\">NDP</abbr> <abbr title=" +"\"Neighbour Solicitation, Type 135\">NS</abbr> and <abbr title=\"Neighbour " +"Advertisement, Type 136\">NA</abbr> messages between the designated master " +"interface and downstream interfaces." msgstr "" "Inoltra i messaggi <abbr title=\"Neighbour Discovery Protocol\">NDP</abbr> " -"<abbr title=\"Neighbour Solicitation, Type 135\">NS</abbr> e <abbr " -"title=\"Neighbour Advertisement, Type 136\">NA</abbr> tra l'interfaccia " -"master designata e le interfacce downstream." +"<abbr title=\"Neighbour Solicitation, Type 135\">NS</abbr> e <abbr title=" +"\"Neighbour Advertisement, Type 136\">NA</abbr> tra l'interfaccia master " +"designata e le interfacce downstream." #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:770 msgid "" @@ -3181,7 +3203,7 @@ msgid "" "downstream interfaces." msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:28 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:29 msgid "Forward Error Correction Seconds (FECS)" msgstr "" @@ -3338,15 +3360,15 @@ msgstr "Impostazioni globali" msgid "Global network options" msgstr "Opzioni di rete globali" -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:82 -#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:89 -#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:74 +#: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/header.ut:70 +#: themes/luci-theme-material/ucode/template/themes/material/header.ut:84 +#: themes/luci-theme-openwrt-2020/ucode/template/themes/openwrt2020/header.ut:67 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:92 msgid "Go to firmware upgrade..." msgstr "" -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:72 -#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:64 +#: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/header.ut:60 +#: themes/luci-theme-openwrt-2020/ucode/template/themes/openwrt2020/header.ut:57 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:82 msgid "Go to password configuration..." msgstr "Vai alla configurazione della password..." @@ -3487,7 +3509,7 @@ msgstr "" msgid "Hang Up" msgstr "Disconnetti (SIGHUP)" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:33 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:34 msgid "Header Error Code Errors (HEC)" msgstr "" @@ -3540,7 +3562,7 @@ msgstr "Host" msgid "Host expiry timeout" msgstr "Timeout scadenza Host" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:508 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:513 msgid "Host requests this filename from the boot server." msgstr "" @@ -3549,8 +3571,8 @@ msgid "Host-Uniq tag content" msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:38 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:559 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:607 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:630 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:678 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/10_system.js:54 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:87 #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:135 @@ -3565,7 +3587,7 @@ msgstr "Nome host da inviare al momento della richiesta DHCP" msgid "Hostnames" msgstr "Nomi host" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:551 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:622 msgid "" "Hostnames are used to bind a domain name to an IP address. This setting is " "redundant for hostnames already configured with static leases, but it can be " @@ -3629,7 +3651,7 @@ msgstr "Indirizzi IP" msgid "IP Protocol" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:258 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:260 msgid "IP Sets" msgstr "" @@ -3637,7 +3659,7 @@ msgstr "" msgid "IP Type" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:563 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:634 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:178 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:204 msgid "IP address" @@ -3663,15 +3685,15 @@ msgctxt "nft meta l4proto" msgid "IP protocol" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:589 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:660 msgid "IP set" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:295 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:300 msgid "IP sets" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:432 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:437 msgid "IPs to override with NXDOMAIN" msgstr "Ignora Dominio Bogus NX" @@ -3712,7 +3734,7 @@ msgstr "" #: modules/luci-base/htdocs/luci-static/resources/protocol/static.js:178 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:39 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:665 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:736 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:88 #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:164 msgid "IPv4 address" @@ -3883,7 +3905,7 @@ msgstr "" msgid "IPv6 suffix" msgstr "Suffisso IPv6" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:706 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:777 msgid "IPv6 suffix (hex)" msgstr "" "Suffisso <abbr title=\"Internet Protocol Version 6\">IPv6</abbr> " @@ -3982,10 +4004,10 @@ msgstr "" #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:340 msgid "" "If your physical memory is insufficient unused data can be temporarily " -"swapped to a swap-device resulting in a higher amount of usable <abbr " -"title=\"Random Access Memory\">RAM</abbr>. Be aware that swapping data is a " -"very slow process as the swap-device cannot be accessed with the high " -"datarates of the <abbr title=\"Random Access Memory\">RAM</abbr>." +"swapped to a swap-device resulting in a higher amount of usable <abbr title=" +"\"Random Access Memory\">RAM</abbr>. Be aware that swapping data is a very " +"slow process as the swap-device cannot be accessed with the high datarates " +"of the <abbr title=\"Random Access Memory\">RAM</abbr>." msgstr "" "Se la tua memoria è insufficiente i dati non usati possono venire " "temporaneamente spostati in un'area di swap risultando in un più grande " @@ -3994,7 +4016,7 @@ msgstr "" "dispositivo di swap non può essere acceduto alle alte velocità della <abbr " "title=\"Random Access Memory\">RAM</abbr>." -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:363 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:368 msgid "Ignore <code>/etc/hosts</code>" msgstr "Ignora <code>/etc/hosts</code>" @@ -4002,7 +4024,7 @@ msgstr "Ignora <code>/etc/hosts</code>" msgid "Ignore interface" msgstr "Ignora interfaccia" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:352 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:357 msgid "Ignore resolv file" msgstr "Ignora il file resolv" @@ -4050,7 +4072,7 @@ msgid "" "order to avoid broadcast loops that can bring the entire LAN to a standstill." msgstr "" -#: modules/luci-base/luasrc/view/csrftoken.htm:13 +#: modules/luci-base/ucode/template/csrftoken.ut:13 msgid "" "In order to prevent unauthorized access to the system, your request has been " "blocked. Click \"Continue »\" below to return to the previous page." @@ -4161,7 +4183,7 @@ msgstr "" msgid "Install protocol extensions..." msgstr "Installa le estensioni del protocollo..." -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:542 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:547 msgid "Instance" msgstr "" @@ -4248,10 +4270,6 @@ msgstr "Interfacce" msgid "Internal" msgstr "Interno" -#: modules/luci-base/luasrc/view/error500.htm:8 -msgid "Internal Server Error" -msgstr "Errore del Server Interno" - #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:285 msgid "Interval For Sending Learning Packets" msgstr "" @@ -4320,8 +4338,8 @@ msgstr "" msgid "Invalid hexadecimal value" msgstr "" -#: modules/luci-base/luasrc/view/sysauth.htm:12 -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/sysauth.htm:37 +#: modules/luci-base/ucode/template/sysauth.ut:12 +#: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/sysauth.ut:32 msgid "Invalid username and/or password! Please try again." msgstr "Username e/o password non validi! Per favore riprova." @@ -4345,8 +4363,8 @@ msgstr "" "Sembra tu stia provando a scrivere un'immagine più grande delle dimensioni " "della memoria flash, per favore controlla il file!" -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:89 -#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:96 +#: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/header.ut:77 +#: themes/luci-theme-material/ucode/template/themes/material/header.ut:91 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:72 msgid "JavaScript required!" msgstr "JavaScript necessario!" @@ -4478,11 +4496,17 @@ msgstr "Lingua" msgid "Language and Style" msgstr "Lingua e Stile" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:560 +msgid "" +"Larger weights (of the same prio) are given a proportionately higher " +"probability of being selected." +msgstr "" + #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:575 msgid "Last member interval" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:23 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:24 msgid "Latency" msgstr "" @@ -4498,11 +4522,11 @@ msgstr "" msgid "Learn routes" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:348 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:353 msgid "Lease file" msgstr "File di lease" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:697 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:768 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:679 msgid "Lease time" msgstr "Tempo di lease" @@ -4550,19 +4574,19 @@ msgstr "Legenda:" msgid "Limit" msgstr "Limite" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:24 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:25 msgid "Line Attenuation (LATN)" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:18 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:19 msgid "Line Mode" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:17 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:18 msgid "Line State" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:19 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:20 msgid "Line Uptime" msgstr "" @@ -4583,12 +4607,12 @@ msgctxt "nft @ll,off,len" msgid "Link layer header bits %d-%d" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:433 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:438 msgid "List of IP addresses to convert into NXDOMAIN responses." msgstr "Elenco di indirizzi IP da convertire in risposte NXDOMAIN." -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:296 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:581 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:301 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:652 msgid "List of IP sets to populate with the specified domain IPs." msgstr "" @@ -4614,15 +4638,11 @@ msgstr "" msgid "List of SSH key files for auth" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:312 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:317 msgid "List of domains to allow RFC1918 responses for." msgstr "Elenco di domini per cui consentire risposte RFC1918." -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:290 -msgid "List of domains to force to an IP address." -msgstr "Elenco di domini da forzare a un indirizzo IP." - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:283 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:285 msgid "List of upstream resolvers to forward queries to." msgstr "Elenco di name server a cui inoltrare le richieste." @@ -4630,7 +4650,7 @@ msgstr "Elenco di name server a cui inoltrare le richieste." msgid "Listen Port" msgstr "Porta in ascolto" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:332 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:337 msgid "Listen interfaces" msgstr "" @@ -4638,7 +4658,7 @@ msgstr "" msgid "Listen only on the given interface or, if unspecified, on all" msgstr "Ascolta solo sull'interfaccia data o, se non specificato, su tutte" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:333 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:338 msgid "" "Listen only on the specified interfaces, and loopback if not excluded " "explicitly." @@ -4648,7 +4668,7 @@ msgstr "" msgid "ListenPort setting is invalid" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:439 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:444 msgid "Listening port for inbound DNS queries." msgstr "Porta di ascolto per le richieste DNS in entrata." @@ -4675,9 +4695,9 @@ msgid "Loading directory contents…" msgstr "" #: modules/luci-base/htdocs/luci-static/resources/luci.js:1942 -#: modules/luci-base/luasrc/view/view.htm:4 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:12 -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/sysauth.htm:45 +#: modules/luci-base/ucode/template/view.ut:4 +#: modules/luci-mod-status/ucode/template/admin_status/index.ut:12 +#: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/sysauth.ut:40 msgid "Loading view…" msgstr "Caricamento pagina…" @@ -4735,20 +4755,20 @@ msgstr "Data/ora locale" msgid "Local ULA" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:273 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:275 msgid "Local domain" msgstr "Dominio locale" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:274 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:276 msgid "Local domain suffix appended to DHCP names and hosts file entries." msgstr "" "Suffisso di dominio locale aggiunto ai nomi DHCP e voci del file hosts." -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:269 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:271 msgid "Local server" msgstr "Server locale" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:319 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:324 msgid "Local service only" msgstr "Solo servizio locale" @@ -4756,7 +4776,7 @@ msgstr "Solo servizio locale" msgid "Local wireguard key" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:392 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:397 msgid "Localise queries" msgstr "Localizza richieste" @@ -4768,7 +4788,7 @@ msgstr "" msgid "Log output level" msgstr "Livello di dettaglio registro" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:277 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:279 msgid "Log queries" msgstr "Logga richieste" @@ -4792,8 +4812,8 @@ msgstr "" msgid "Logical network to which the tunnel will be added (bridged) (optional)." msgstr "" -#: modules/luci-base/luasrc/view/sysauth.htm:38 -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/sysauth.htm:41 +#: modules/luci-base/ucode/template/sysauth.ut:38 +#: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/sysauth.ut:36 msgid "Login" msgstr "Login" @@ -4805,7 +4825,7 @@ msgstr "Esci" msgid "Loose filtering" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:31 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:32 msgid "Loss of Signal Seconds (LOSS)" msgstr "" @@ -4813,6 +4833,10 @@ msgstr "" msgid "Lowest leased address as offset from the network address." msgstr "" +#: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/footer.ut:12 +msgid "Lua compatibility mode active" +msgstr "" + #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:48 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:83 msgid "MAC" @@ -4837,7 +4861,7 @@ msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:591 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:40 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:619 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:690 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1164 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2177 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:56 @@ -4896,6 +4920,10 @@ msgstr "" msgid "MTU" msgstr "MTU" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:259 +msgid "MX" +msgstr "" + #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:303 msgid "" "Make sure to clone the root filesystem using something like the commands " @@ -4920,23 +4948,23 @@ msgstr "" msgid "Max <abbr title=\"Router Advertisement\">RA</abbr> interval" msgstr "Intervallo massimo <abbr title=\"Router Advertisement\">RA</abbr>" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:22 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:23 msgid "Max. Attainable Data Rate (ATTNDR)" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:452 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:457 msgid "Max. DHCP leases" msgstr "" "<abbr title=\"maximal\">Max.</abbr> lease <abbr title=\"Dynamic Host " "Configuration Protocol\">DHCP</abbr>" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:459 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:464 msgid "Max. EDNS0 packet size" msgstr "" -"<abbr title=\"maximal\">Max.</abbr> dimensione pacchetti <abbr " -"title=\"Extension Mechanisms for Domain Name System\">EDNS0</abbr>" +"<abbr title=\"maximal\">Max.</abbr> dimensione pacchetti <abbr title=" +"\"Extension Mechanisms for Domain Name System\">EDNS0</abbr>" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:466 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:471 msgid "Max. concurrent queries" msgstr "Numero <abbr title=\"maximal\">max.</abbr> richieste simultanee" @@ -4948,15 +4976,15 @@ msgstr "" msgid "Maximum allowed Listen Interval" msgstr "Massimo intervallo di ascolto consentito" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:453 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:458 msgid "Maximum allowed number of active DHCP leases." msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:467 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:472 msgid "Maximum allowed number of concurrent DNS queries." msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:460 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:465 msgid "Maximum allowed size of EDNS0 UDP packets." msgstr "" @@ -4986,7 +5014,7 @@ msgstr "" msgid "Maximum transmit power" msgstr "Potenza di trasmissione massima" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:389 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:394 msgid "May prevent VoIP or other services from working." msgstr "" @@ -5305,11 +5333,15 @@ msgstr "Nome della nuova rete" msgid "Name of the tunnel device" msgstr "" -#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:46 +#: themes/luci-theme-openwrt-2020/ucode/template/themes/openwrt2020/header.ut:39 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:50 msgid "Navigation" msgstr "Navigazione" +#: protocols/luci-proto-nebula/htdocs/luci-static/resources/protocol/nebula.js:10 +msgid "Nebula Network" +msgstr "" + #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:653 msgid "Neighbour cache validity" msgstr "" @@ -5345,7 +5377,7 @@ msgstr "Utilità di Rete" msgid "Network address" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:492 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:497 msgid "Network boot image" msgstr "Immagine di avvio di rete" @@ -5385,7 +5417,7 @@ msgstr "Migrazione della configurazione ifname di rete" msgid "Network interface" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:531 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:536 msgid "Network-ID" msgstr "" @@ -5393,7 +5425,7 @@ msgstr "" msgid "Never" msgstr "Mai" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:270 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:272 msgid "" "Never forward matching domains and subdomains, resolve from DHCP or hosts " "files only." @@ -5443,9 +5475,9 @@ msgstr "" msgid "No RX signal" msgstr "" -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:80 -#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:87 -#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:72 +#: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/header.ut:68 +#: themes/luci-theme-material/ucode/template/themes/material/header.ut:82 +#: themes/luci-theme-openwrt-2020/ucode/template/themes/openwrt2020/header.ut:65 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:90 msgid "" "No changes to settings will be stored and are lost after rebooting. This " @@ -5487,10 +5519,6 @@ msgstr "" msgid "No entries in this directory" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:82 -msgid "No files found" -msgstr "Nessun file trovato" - #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:833 msgid "" "No fixed interface listening port defined, peers might not be able to " @@ -5526,7 +5554,7 @@ msgstr "" msgid "No more slaves available, can not save interface" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:413 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:418 msgid "No negative cache" msgstr "Nessuna cache negativa" @@ -5534,8 +5562,8 @@ msgstr "Nessuna cache negativa" msgid "No nftables ruleset loaded." msgstr "" -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:69 -#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:61 +#: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/header.ut:57 +#: themes/luci-theme-openwrt-2020/ucode/template/themes/openwrt2020/header.ut:54 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:79 msgid "No password set!" msgstr "Nessuna password immessa!" @@ -5575,7 +5603,7 @@ msgstr "Nessuna zona assegnata" msgid "Noise" msgstr "Rumore" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:26 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:27 msgid "Noise Margin (SNR)" msgstr "Margine di Rumore (SNR)" @@ -5583,11 +5611,11 @@ msgstr "Margine di Rumore (SNR)" msgid "Noise:" msgstr "Rumore:" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:34 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:35 msgid "Non Pre-emptive CRC errors (CRC_P)" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:325 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:330 msgid "Non-wildcard" msgstr "" @@ -5602,7 +5630,7 @@ msgstr "Nessuno" msgid "Normal" msgstr "Normale" -#: modules/luci-base/luasrc/view/error404.htm:8 +#: modules/luci-base/ucode/template/error404.ut:9 msgid "Not Found" msgstr "Non Trovato" @@ -5654,7 +5682,7 @@ msgstr "" msgid "Number of IGMP membership reports" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:474 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:479 msgid "Number of cached DNS entries, 10000 is maximum, 0 is no caching." msgstr "" @@ -5703,7 +5731,7 @@ msgstr "" msgid "On-link" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:672 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:743 msgid "One of hostname or MAC address must be specified!" msgstr "Devi specificare almeno il nome host o l'indirizzo MAC!" @@ -5739,7 +5767,6 @@ msgid "Open iptables rules overview…" msgstr "" #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:472 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:19 msgid "Open list..." msgstr "Apri lista..." @@ -5886,18 +5913,23 @@ msgstr "" msgid "Options" msgstr "Opzioni" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:526 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:531 msgid "" "Options for the Network-ID. (Note: needs also Network-ID.) E.g. " -"\"<code>42,192.168.1.4</code>\" for NTP server, \"<code>3,192.168.4.4</" -"code>\" for default route. <code>0.0.0.0</code> means \"the address of the " -"system running dnsmasq\"." +"\"<code>42,192.168.1.4</code>\" for NTP server, \"<code>3,192.168.4.4</code>" +"\" for default route. <code>0.0.0.0</code> means \"the address of the system " +"running dnsmasq\"." msgstr "" #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:125 msgid "Options:" msgstr "" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:584 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:616 +msgid "Ordinal: lower comes first." +msgstr "" + #: protocols/luci-proto-batman-adv/htdocs/luci-static/resources/protocol/batadv.js:55 msgid "Originator Interval" msgstr "" @@ -6171,13 +6203,13 @@ msgctxt "MACVLAN mode" msgid "Pass-through (Mirror physical device to single MAC VLAN)" msgstr "" -#: modules/luci-base/luasrc/view/sysauth.htm:29 +#: modules/luci-base/ucode/template/sysauth.ut:29 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1690 #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:51 #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:114 #: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:103 #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:58 -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/sysauth.htm:24 +#: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/sysauth.ut:19 msgid "Password" msgstr "Password" @@ -6348,7 +6380,7 @@ msgstr "" msgid "Pkts." msgstr "" -#: modules/luci-base/luasrc/view/sysauth.htm:19 +#: modules/luci-base/ucode/template/sysauth.ut:19 msgid "Please enter your username and password." msgstr "Per favore inserisci il tuo username e la password." @@ -6365,6 +6397,7 @@ msgctxt "Chain hook policy" msgid "Policy: <strong>%h</strong> (%h)" msgstr "" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:579 #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/dropbear.js:21 msgid "Port" msgstr "Porta" @@ -6381,11 +6414,11 @@ msgstr "Status porta:" msgid "Potential negation of: %s" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:37 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:38 msgid "Power Management Mode" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:35 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:36 msgid "Pre-emptive CRC errors (CRCP_P)" msgstr "" @@ -6458,6 +6491,8 @@ msgid "Primary becomes active slave whenever it comes back up (always, 0)" msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:508 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:584 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:616 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:129 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:197 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:223 @@ -6577,7 +6612,7 @@ msgstr "" msgid "Quality" msgstr "Qualità" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:428 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:433 msgid "Query all available upstream resolvers." msgstr "" @@ -6659,7 +6694,7 @@ msgstr "" msgid "Raw hex-encoded bytes. Leave empty unless your ISP require this" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:345 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:350 msgid "Read <code>/etc/ethers</code> to configure the DHCP server." msgstr "Leggi <code>/etc/ethers</code> per configurare il server DHCP." @@ -6675,7 +6710,7 @@ msgstr "Grafici in Tempo Reale" msgid "Reassociation Deadline" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:301 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:306 msgid "Rebind protection" msgstr "Protezione rebind" @@ -6760,6 +6795,7 @@ msgid "" msgstr "" #: modules/luci-compat/luasrc/model/network/proto_relay.lua:153 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:611 #: protocols/luci-proto-relay/htdocs/luci-static/resources/protocol/relay.js:39 msgid "Relay" msgstr "" @@ -6850,6 +6886,10 @@ msgstr "Necessario per alcuni ISP, ad esempio Charter con DOCSIS 3" msgid "Required. Base64-encoded private key for this interface." msgstr "" +#: protocols/luci-proto-nebula/htdocs/luci-static/resources/protocol/nebula.js:40 +msgid "Required. Path to the .yml config file for this interface." +msgstr "" + #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:587 msgid "Required. Public key of the WireGuard peer." msgstr "" @@ -6931,7 +6971,7 @@ msgid "Reselection policy for primary slave" msgstr "" #: modules/luci-base/htdocs/luci-static/resources/luci.js:2197 -#: modules/luci-base/luasrc/view/sysauth.htm:39 +#: modules/luci-base/ucode/template/sysauth.ut:39 #: modules/luci-compat/luasrc/view/cbi/delegator.htm:17 #: modules/luci-compat/luasrc/view/cbi/footer.htm:30 #: modules/luci-compat/luasrc/view/cbi/simpleform.htm:66 @@ -6950,10 +6990,14 @@ msgstr "Azzera a default" msgid "Resolv and Hosts Files" msgstr "File resolv e hosts" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:356 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:361 msgid "Resolv file" msgstr "File resolv" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:292 +msgid "Resolve specified FQDNs to an IP." +msgstr "Elenco di domini da forzare a un indirizzo IP." + #: modules/luci-base/htdocs/luci-static/resources/rpc.js:405 msgid "Resource not found" msgstr "Risorsa non trovata" @@ -6980,7 +7024,7 @@ msgstr "Ripristina" msgid "Restore backup" msgstr "Ripristina backup" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:393 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:398 msgid "" "Return answers to DNS queries matching the subnet from which the query was " "received if multiple IPs are available." @@ -7068,7 +7112,7 @@ msgstr "" msgid "Robustness" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:486 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:491 msgid "" "Root directory for files served via TFTP. <em>Enable TFTP server</em> and " "<em>TFTP server root</em> turn on the TFTP server and serve files from " @@ -7100,8 +7144,8 @@ msgid "" "Router Lifetime published in <abbr title=\"Router Advertisement, ICMPv6 Type " "134\">RA</abbr> messages. Maximum is 9000 seconds." msgstr "" -"Intervallo di validità del router annunciato nei messaggi <abbr " -"title=\"Router Advertisement, ICMPv6 Type 134\">RA</abbr>. Il massimo è 9000 " +"Intervallo di validità del router annunciato nei messaggi <abbr title=" +"\"Router Advertisement, ICMPv6 Type 134\">RA</abbr>. Il massimo è 9000 " "secondi." #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:46 @@ -7176,6 +7220,11 @@ msgstr "SHA256" msgid "SNR" msgstr "SNR" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:258 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:569 +msgid "SRV" +msgstr "" + #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/dropbear.js:10 #: modules/luci-mod-system/root/usr/share/luci/menu.d/luci-mod-system.json:38 msgid "SSH Access" @@ -7318,11 +7367,11 @@ msgstr "Inviare il nome host di questo dispositivo" msgid "Server" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:519 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:524 msgid "Server address" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:513 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:518 msgid "Server name" msgstr "" @@ -7373,8 +7422,8 @@ msgid "" "When enabled, clients will perform stateless IPv6 address autoconfiguration." msgstr "" "Impostare il flag di configurazione autonoma dell'indirizzo nelle \"Prefix " -"Information Option (PIO)\" dei messaggi <abbr title=\"Router " -"Advertisement\">RA</abbr> inviati. Se abilitato, i client eseguiranno " +"Information Option (PIO)\" dei messaggi <abbr title=\"Router Advertisement" +"\">RA</abbr> inviati. Se abilitato, i client eseguiranno " "l'autoconfigurazione dell'indirizzo IPv6 senza stato (stateless)." #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:719 @@ -7414,7 +7463,7 @@ msgstr "Impostazioni" msgid "Setup routes for proxied IPv6 neighbours." msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:30 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:31 msgid "Severely Errored Seconds (SES)" msgstr "Secondi con errori gravi (SES)" @@ -7428,7 +7477,6 @@ msgid "Short Preamble" msgstr "Preambolo breve" #: 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 msgid "Show current backup file list" msgstr "Mostra l'elenco dei file sottoposti a backup" @@ -7462,7 +7510,7 @@ msgstr "Segnale" msgid "Signal / Noise" msgstr "Segnale / Rumore" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:25 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:26 msgid "Signal Attenuation (SATN)" msgstr "Attenuazione del segnale (SATN)" @@ -7479,7 +7527,7 @@ msgstr "Segnale:" msgid "Size" msgstr "Dimensione" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:473 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:478 msgid "Size of DNS query cache" msgstr "Dimensione della cache delle query DNS" @@ -7496,12 +7544,12 @@ msgstr "Salta" msgid "Skip from backup files that are equal to those in /rom" msgstr "Escludi dal backup i file uguali a quelli in /rom" -#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:42 +#: themes/luci-theme-openwrt-2020/ucode/template/themes/openwrt2020/header.ut:35 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:46 msgid "Skip to content" msgstr "Salta a contenuto" -#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:41 +#: themes/luci-theme-openwrt-2020/ucode/template/themes/openwrt2020/header.ut:34 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:45 msgid "Skip to navigation" msgstr "Salta a navigazione" @@ -7519,14 +7567,10 @@ msgstr "VLAN software" msgid "Some fields are invalid, cannot save values!" msgstr "Alcuni campi non sono validi, non è possibile salvare i valori!" -#: modules/luci-base/luasrc/view/error404.htm:9 +#: modules/luci-base/ucode/template/error404.ut:10 msgid "Sorry, the object you requested was not found." msgstr "Siamo spiacenti, l'oggetto che hai richiesto non è stato trovato." -#: modules/luci-base/luasrc/view/error500.htm:9 -msgid "Sorry, the server encountered an unexpected error." -msgstr "Spiacente, il server ha rilevato un errore imprevisto." - #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:442 msgid "" "Sorry, there is no sysupgrade support present; a new firmware image must be " @@ -7566,7 +7610,7 @@ msgctxt "nft ip sport" msgid "Source port" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:500 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:505 msgid "" "Special <abbr title=\"Preboot eXecution Environment\">PXE</abbr> boot " "options for Dnsmasq." @@ -7639,9 +7683,9 @@ msgid "" "messages, for example to instruct clients to request further information via " "stateful DHCPv6." msgstr "" -"Specifica i flag inviati nei messaggi <abbr title=\"Router " -"Advertisement\">RA</abbr>, ad esempio per indicare ai client di richiedere " -"ulteriori informazioni tramite DHCPv6 con stato (stateful)." +"Specifica i flag inviati nei messaggi <abbr title=\"Router Advertisement" +"\">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 "" @@ -7955,7 +7999,7 @@ msgstr "Contratti Statici" msgid "Static address" msgstr "Indirizzo Statico" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:598 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:669 msgid "" "Static leases are used to assign fixed IP addresses and symbolic hostnames " "to DHCP clients. They are also required for non-dynamic interface " @@ -7973,7 +8017,7 @@ msgstr "Limite di inattività dei client" #: modules/luci-base/root/usr/share/luci/menu.d/luci-base.json:16 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:541 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:929 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:9 +#: modules/luci-mod-status/ucode/template/admin_status/index.ut:9 msgid "Status" msgstr "Stato" @@ -7999,7 +8043,7 @@ msgstr "" msgid "Strict filtering" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:422 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:427 msgid "Strict order" msgstr "Ordine stretto" @@ -8012,11 +8056,11 @@ msgstr "Forte" msgid "Submit" msgstr "Invia" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:372 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:377 msgid "Suppress logging" msgstr "Interrompere logging" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:373 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:378 msgid "Suppress logging of the routine operation for the DHCP protocol." msgstr "" "Interrompere il logging delle operazioni di routine per il protocollo DHCP." @@ -8070,6 +8114,14 @@ msgstr "Sincronizza con il server NTP" msgid "Sync with browser" msgstr "Sincronizza con il browser" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:293 +msgid "Syntax: <code>/fqdn[/fqdn…]/[ipaddr]</code>." +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:569 +msgid "Syntax: <code>_service._proto.example.com</code>." +msgstr "" + #: modules/luci-base/root/usr/share/luci/menu.d/luci-base.json:26 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/10_system.js:17 #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:113 @@ -8095,9 +8147,9 @@ msgstr "Proprietà di Sistema" msgid "System log buffer size" msgstr "Dimensione buffer log di sistema" -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:79 -#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:86 -#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:71 +#: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/header.ut:67 +#: themes/luci-theme-material/ucode/template/themes/material/header.ut:81 +#: themes/luci-theme-openwrt-2020/ucode/template/themes/openwrt2020/header.ut:64 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:89 msgid "System running in recovery (initramfs) mode." msgstr "Sistema in esecuzione in modalità di ripristino (initramfs)." @@ -8126,7 +8178,7 @@ msgstr "" msgid "TCP:" msgstr "TCP:" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:485 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:490 msgid "TFTP server root" msgstr "Server TFTP principale" @@ -8151,6 +8203,7 @@ msgstr "Lunghezza coda TX" msgid "Table" msgstr "Tabella" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:574 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:56 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:66 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:187 @@ -8230,17 +8283,17 @@ msgid "" "username instead of the user ID!" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:681 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:752 msgid "The IP address %h is already used by another static lease" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:690 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:761 msgid "The IP address is outside of any DHCP pool address range" msgstr "" "L'indirizzo IP è al di fuori di qualsiasi intervallo di indirizzi del pool " "DHCP" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:520 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:525 msgid "The IP address of the boot server" msgstr "" @@ -8432,7 +8485,7 @@ msgid "" "to be received and retransmitted which costs airtime)" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:514 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:519 msgid "The hostname of the boot server" msgstr "" @@ -8519,8 +8572,8 @@ msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:139 msgid "" -"The network ports on this device can be combined to several <abbr " -"title=\"Virtual Local Area Network\">VLAN</abbr>s in which computers can " +"The network ports on this device can be combined to several <abbr title=" +"\"Virtual Local Area Network\">VLAN</abbr>s in which computers can " "communicate directly with each other. <abbr title=\"Virtual Local Area " "Network\">VLAN</abbr>s are often used to separate different network " "segments. Often there is by default one Uplink port for a connection to the " @@ -8578,7 +8631,7 @@ msgstr "" msgid "The selected %s mode is incompatible with %s encryption" msgstr "La modalità %s selezionata non è compatibile con la crittografia %s" -#: modules/luci-base/luasrc/view/csrftoken.htm:11 +#: modules/luci-base/ucode/template/csrftoken.ut:11 msgid "The submitted security token is invalid or already expired!" msgstr "" @@ -8657,8 +8710,8 @@ msgid "" "nftables rules is discouraged and may lead to incomplete traffic filtering." msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:746 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:778 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:817 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:849 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:130 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:179 msgid "There are no active leases" @@ -8668,8 +8721,8 @@ msgstr "Non ci sono lease attivi" msgid "There are no changes to apply" msgstr "Non ci sono modifiche da applicare" -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:70 -#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:62 +#: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/header.ut:58 +#: themes/luci-theme-openwrt-2020/ucode/template/themes/openwrt2020/header.ut:55 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:80 msgid "" "There is no password set on this router. Please configure a root password to " @@ -8690,7 +8743,6 @@ msgid "This does not look like a valid PEM file" msgstr "" #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:454 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:16 msgid "" "This is a list of shell glob patterns for matching files and directories to " "include during sysupgrade. Modified files in /etc/config/ and certain other " @@ -8731,7 +8783,7 @@ msgid "" "ends with <code>...:2/64</code>" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:266 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:268 msgid "This is the only DHCP server in the local network." msgstr "Questo è l’unico server DHCP nella rete locale." @@ -8814,8 +8866,8 @@ msgstr "Fuso orario" #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:440 msgid "" "To fully configure the local WireGuard interface from an existing (e.g. " -"provider supplied) configuration file, use the <strong><a class=\"full-" -"import\" href=\"#\">configuration import</a></strong> instead." +"provider supplied) configuration file, use the <strong><a class=\"full-import" +"\" href=\"#\">configuration import</a></strong> instead." msgstr "" #: modules/luci-base/htdocs/luci-static/resources/luci.js:2674 @@ -8980,7 +9032,7 @@ msgstr "" msgid "Unable to determine upstream interface" msgstr "" -#: modules/luci-base/luasrc/view/error404.htm:11 +#: modules/luci-base/ucode/template/error404.ut:12 msgid "Unable to dispatch" msgstr "" @@ -9035,7 +9087,7 @@ msgstr "" msgid "Unable to verify PIN" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:32 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:33 msgid "Unavailable Seconds (UAS)" msgstr "" @@ -9193,7 +9245,7 @@ msgstr "" "Premendo \"Continua\", le opzioni ifname saranno rinominate e la rete sarà " "riavviata per applicare la nuova configurazione." -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:423 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:428 msgid "Upstream resolvers will be queried in the order of the resolv file." msgstr "" "I name server <abbr title=\"Domain Name System\">DNS</abbr> verranno " @@ -9204,7 +9256,7 @@ msgstr "" msgid "Uptime" msgstr "Uptime" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:344 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:349 msgid "Use <code>/etc/ethers</code>" msgstr "Usa <code>/etc/ethers</code>" @@ -9315,7 +9367,7 @@ msgstr "" msgid "Use system certificates for inner-tunnel" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:599 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:670 msgid "" "Use the <em>Add</em> Button to add a new lease entry. The <em>MAC address</" "em> identifies the host, the <em>IPv4 address</em> specifies the fixed " @@ -9372,11 +9424,11 @@ msgstr "" msgid "User key (PEM encoded)" msgstr "" -#: modules/luci-base/luasrc/view/sysauth.htm:23 +#: modules/luci-base/ucode/template/sysauth.ut:23 #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:112 #: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:101 #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:56 -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/sysauth.htm:18 +#: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/sysauth.ut:13 msgid "Username" msgstr "Nome utente" @@ -9474,7 +9526,7 @@ msgstr "" msgid "VXLANv6 (RFC7348)" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:398 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:403 msgid "" "Validate DNS replies and cache DNSSEC data, requires upstream to support " "DNSSEC." @@ -9507,7 +9559,7 @@ msgstr "" msgid "Vendor Class to send when requesting DHCP" msgstr "Classe del Produttore da 'inviare al momento della richiesta DHCP" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:403 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:408 msgid "Verify unsigned domain responses really come from unsigned domains." msgstr "" @@ -9586,6 +9638,10 @@ msgstr "" msgid "Weak" msgstr "" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:589 +msgid "Weight" +msgstr "" + #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1029 msgid "" "When delegating prefixes to multiple downstreams, interfaces with a higher " @@ -9710,7 +9766,7 @@ msgstr "La rete wireless è disattivata" msgid "Wireless network is enabled" msgstr "La rete wireless è attivata" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:278 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:280 msgid "Write received DNS queries to syslog." msgstr "Scrivere le richieste DNS ricevute nel syslog." @@ -9750,8 +9806,16 @@ msgstr "" "essenziali come \"network\", il tuo dispositivo potrebbe diventare " "inaccessibile! </strong>" -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:90 -#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:97 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:559 +msgid "You may add multiple records for the same Target." +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:596 +msgid "You may add multiple records for the same domain." +msgstr "" + +#: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/header.ut:78 +#: themes/luci-theme-material/ucode/template/themes/material/header.ut:92 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:73 msgid "" "You must enable JavaScript in your browser or LuCI will not work properly." @@ -9782,7 +9846,17 @@ msgstr "" msgid "ZRam Size" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:449 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:558 +msgid "_proto: _tcp, _udp, _sctp, _quic, … ." +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:557 +msgid "" +"_service: _sip, _ldap, _imap, _stun, _xmpp-client, … . (Note: while _http is " +"possible, no browsers support SRV records.)" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:454 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:152 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:163 msgid "any" @@ -9893,8 +9967,8 @@ msgstr "" msgid "e.g: dump" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:726 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:756 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:797 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:827 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:101 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:148 msgid "expired" @@ -10105,9 +10179,9 @@ msgstr "" msgid "unknown" msgstr "sconosciuto" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:456 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:724 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:754 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:461 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:795 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:825 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:99 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:146 msgid "unlimited" @@ -10323,6 +10397,21 @@ msgstr "sì" msgid "« Back" msgstr "« Indietro" +#~ msgid "Back to configuration" +#~ msgstr "Torna alla configurazione" + +#~ msgid "Close list..." +#~ msgstr "Chiudi elenco..." + +#~ msgid "Internal Server Error" +#~ msgstr "Errore del Server Interno" + +#~ msgid "No files found" +#~ msgstr "Nessun file trovato" + +#~ msgid "Sorry, the server encountered an unexpected error." +#~ msgstr "Spiacente, il server ha rilevato un errore imprevisto." + #~ msgid "Do not forward queries that cannot be answered by public resolvers." #~ msgstr "" #~ "Non inoltrare le richieste che non possono essere risolte dai name server " @@ -10512,12 +10601,12 @@ msgstr "« Indietro" #~ msgid "" #~ "The filesystem that was used to format the memory (<abbr title=\"for " -#~ "example\">e.g.</abbr> <samp><abbr title=\"Third Extended " -#~ "Filesystem\">ext3</abbr></samp>)" +#~ "example\">e.g.</abbr> <samp><abbr title=\"Third Extended Filesystem" +#~ "\">ext3</abbr></samp>)" #~ msgstr "" -#~ "Il filesystem usato per formattare la memoria (<abbr title=\"per " -#~ "esempio\">e.s.</abbr> <samp><abbr title=\"Third Extended " -#~ "Filesystem\">ext3</abbr></samp>)" +#~ "Il filesystem usato per formattare la memoria (<abbr title=\"per esempio" +#~ "\">e.s.</abbr> <samp><abbr title=\"Third Extended Filesystem\">ext3</" +#~ "abbr></samp>)" #~ msgid "Verify" #~ msgstr "Verifica" diff --git a/modules/luci-base/po/ja/base.po b/modules/luci-base/po/ja/base.po index fb2b399854..813e293ecb 100644 --- a/modules/luci-base/po/ja/base.po +++ b/modules/luci-base/po/ja/base.po @@ -229,6 +229,18 @@ msgstr "" msgid "<abbr title=\"Router Advertisement\">RA</abbr>-Service" msgstr "" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:294 +msgid "" +"<code>/#/</code> matches any domain. <code>/example.com/</code> returns " +"NXDOMAIN." +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:295 +msgid "" +"<code>/example.com/#</code> returns NULL addresses (<code>0.0.0.0</code> and " +"<code>::</code>) for example.com and its subdomains." +msgstr "" + #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:87 msgctxt "nft relational \">\" operator expression" msgid "<var>%s</var> greater than <strong>%s</strong>" @@ -389,7 +401,7 @@ msgstr "" msgid "ATM device number" msgstr "ATMデバイス番号" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:36 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:37 msgid "ATU-C System Vendor ID" msgstr "ATU-CシステムベンダーID" @@ -399,7 +411,7 @@ msgstr "ATU-CシステムベンダーID" msgid "Absent Interface" msgstr "存在しないインターフェース" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:320 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:325 msgid "Accept DNS queries only from hosts whose address is on a local subnet." msgstr "" "DNSサービスを、現在DNSを提供しているサブネットインターフェースに限定します。" @@ -539,7 +551,7 @@ msgstr "インスタンスを追加" msgid "Add key" msgstr "公開鍵を追加" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:410 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:415 msgid "Add local domain suffix to names served from hosts files." msgstr "hostsファイルから提供される名前にローカルドメインサフィックスを追加" @@ -560,11 +572,11 @@ msgstr "ブラックリストに追加" msgid "Add to Whitelist" msgstr "ホワイトリストに追加" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:367 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:372 msgid "Additional hosts files" msgstr "追加のホストファイル" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:417 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:422 msgid "Additional servers file" msgstr "追加のサーバーファイル" @@ -594,7 +606,7 @@ msgstr "" msgid "Address to access local relay bridge" msgstr "ローカル リレーブリッジにアクセスするためのアドレス" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:289 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:291 msgid "Addresses" msgstr "アドレス一覧" @@ -627,7 +639,7 @@ msgstr "エージング時間" msgid "Aggregate Originator Messages" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:27 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:28 msgid "Aggregate Transmit Power (ACTATP)" msgstr "総送信電力(ACTATP)" @@ -666,17 +678,17 @@ msgstr "エイリアスインターフェース" msgid "Alias of \"%s\"" msgstr "\"%s\"のエイリアス" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:427 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:432 msgid "All servers" msgstr "すべてのサーバー" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:378 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:383 msgid "" "Allocate IP addresses sequentially, starting from the lowest available " "address." msgstr "利用可能な最小IPアドレスから順番に割り当てる" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:377 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:382 msgid "Allocate IPs sequentially" msgstr "順次IP割り当て" @@ -704,7 +716,7 @@ msgstr "レガシー802.11bレートを許可" msgid "Allow listed only" msgstr "リスト内のみアクセスを許可" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:306 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:311 msgid "Allow localhost" msgstr "ローカルホストを許可" @@ -748,7 +760,7 @@ msgstr "常にオフ(kernel: none)" msgid "Always on (kernel: default-on)" msgstr "常にオン(kernel: default-on)" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:538 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:543 msgid "Always send DHCP Options. Sometimes needed, with e.g. PXELinux." msgstr "" @@ -777,7 +789,7 @@ msgid "An optional, short description for this device" msgstr "このデバイスの短い説明(オプション)" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1484 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:20 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:21 msgid "Annex" msgstr "Annex" @@ -898,7 +910,7 @@ msgstr "" msgid "Any zone" msgstr "すべてのゾーン" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:532 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:537 msgid "Apply DHCP Options to this net. (Empty = all clients)." msgstr "" @@ -992,11 +1004,11 @@ msgstr "認証" msgid "Authentication Type" msgstr "認証タイプ" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:265 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:267 msgid "Authoritative" msgstr "権威" -#: modules/luci-base/luasrc/view/sysauth.htm:17 +#: modules/luci-base/ucode/template/sysauth.ut:17 #: themes/luci-theme-bootstrap/htdocs/luci-static/resources/view/bootstrap/sysauth.js:11 msgid "Authorization Required" msgstr "ログイン" @@ -1066,7 +1078,7 @@ msgstr "平均:" msgid "Avoid Bridge Loops" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:388 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:393 msgid "" "Avoid uselessly triggering dial-on-demand links (filters SRV/SOA records and " "names with underscores)." @@ -1101,10 +1113,6 @@ msgstr "" msgid "Back to Overview" msgstr "概要へ戻る" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:48 -msgid "Back to configuration" -msgstr "設定へ戻る" - #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:826 msgid "Back to peer configuration" msgstr "" @@ -1118,7 +1126,6 @@ msgid "Backup / Flash Firmware" msgstr "バックアップ/フラッシュ" #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:351 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:12 msgid "Backup file list" msgstr "バックアップファイルリスト" @@ -1160,7 +1167,6 @@ msgid "Beacon Interval" msgstr "ビーコン間隔" #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:352 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:46 msgid "" "Below is the determined list of files to backup. It consists of changed " "configuration files marked by opkg, essential base files and the user " @@ -1174,7 +1180,7 @@ msgstr "" msgid "Bind NTP server" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:326 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:331 msgid "Bind dynamically to interfaces rather than wildcard address." msgstr "" "ワイルドカードアドレスよりもインターフェースへ動的にバインド(Linuxのデフォル" @@ -1192,6 +1198,17 @@ msgstr "" msgid "Bind interface" msgstr "インターフェースをバインド" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:595 +msgid "" +"Bind service records to a domain name: specify the location of services." +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:556 +msgid "" +"Bind service records to a domain name: specify the location of services. See " +"<a href=\"%s\">RFC2782</a>." +msgstr "" + #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:59 #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:64 #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:64 @@ -1294,6 +1311,10 @@ msgstr "CA証明書(空白の場合、最初の接続後に保存されます msgid "CLAT configuration failed" msgstr "CLATの構成に失敗しました" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:574 +msgid "CNAME or fqdn" +msgstr "" + #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/processes.js:72 msgid "CPU usage (%)" msgstr "CPU使用率(%)" @@ -1553,17 +1574,13 @@ msgstr "" "設定した秒数後に、非アクティブな接続を閉じます。0を設定した場合、接続を維持し" "ます" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:49 -msgid "Close list..." -msgstr "リストを閉じる..." - #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:44 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:63 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2184 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:391 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:352 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:355 -#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:72 +#: themes/luci-theme-material/ucode/template/themes/material/header.ut:66 msgid "Collecting data..." msgstr "データを収集中..." @@ -1602,6 +1619,10 @@ msgstr "" msgid "Compute outgoing checksum (optional)." msgstr "送信チェックサムを計算します(オプション)。" +#: protocols/luci-proto-nebula/htdocs/luci-static/resources/protocol/nebula.js:40 +msgid "Config File" +msgstr "" + #: modules/luci-base/htdocs/luci-static/resources/ui.js:4375 #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:454 msgid "Configuration" @@ -1650,8 +1671,8 @@ msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:764 msgid "" -"Configures the operation mode of the <abbr title=\"Router " -"Advertisement\">RA</abbr> service on this interface." +"Configures the operation mode of the <abbr title=\"Router Advertisement" +"\">RA</abbr> service on this interface." msgstr "" "このデバイスにおける <abbr title=\"Router Advertisement\">RA</abbr> サービス" "の動作モードを設定します。" @@ -1831,8 +1852,8 @@ msgstr "任意の点滅間隔(kernel: timer)" #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/leds.js:59 msgid "" -"Customizes the behaviour of the device <abbr title=\"Light Emitting " -"Diode\">LED</abbr>s if possible." +"Customizes the behaviour of the device <abbr title=\"Light Emitting Diode" +"\">LED</abbr>s if possible." msgstr "" "デバイスの<abbr title=\"Light Emitting Diode\">LED</abbr>の動作をカスタマイズ" "します(デバイスが対応している場合)。" @@ -1853,7 +1874,7 @@ msgstr "DAEポート" msgid "DAE-Secret" msgstr "DAEシークレット" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:525 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:530 msgid "DHCP Options" msgstr "" @@ -1893,11 +1914,11 @@ msgstr "DHCPv6-サービス" msgid "DNS" msgstr "DNS" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:282 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:284 msgid "DNS forwardings" msgstr "DNSフォワーディング" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:445 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:450 msgid "DNS query port" msgstr "<abbr title=\"Domain Name System\">DNS</abbr> クエリポート" @@ -1905,7 +1926,7 @@ msgstr "<abbr title=\"Domain Name System\">DNS</abbr> クエリポート" msgid "DNS search domains" msgstr "DNS 検索ドメイン" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:438 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:443 msgid "DNS server port" msgstr "<abbr title=\"Domain Name System\">DNS</abbr> サーバーポート" @@ -1921,11 +1942,11 @@ msgstr "DNS ウェイト" msgid "DNS-Label / FQDN" msgstr "DNS-ラベル / FQDN" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:397 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:402 msgid "DNSSEC" msgstr "DNSSEC" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:402 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:407 msgid "DNSSEC check unsigned" msgstr "DNSSEC未署名チェック" @@ -1938,11 +1959,11 @@ msgid "DS-Lite AFTR address" msgstr "DS-Lite AFTRアドレス" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1481 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:44 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:45 msgid "DSL" msgstr "DSL" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:14 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:15 msgid "DSL Status" msgstr "DSLステータス" @@ -1955,12 +1976,12 @@ msgid "DTIM Interval" msgstr "DTIM間隔" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:59 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:700 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:771 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:136 msgid "DUID" msgstr "DUID" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:21 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:22 msgid "Data Rate" msgstr "データレート" @@ -2168,8 +2189,8 @@ msgid "" "Disable <abbr title=\"Dynamic Host Configuration Protocol\">DHCP</abbr> for " "this interface." msgstr "" -"このインターフェースでの<abbr title=\"Dynamic Host Configuration " -"Protocol\">DHCP</abbr>を無効化。" +"このインターフェースでの<abbr title=\"Dynamic Host Configuration Protocol" +"\">DHCP</abbr>を無効化。" #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:174 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:375 @@ -2212,7 +2233,7 @@ msgstr "無効" msgid "Disassociate On Low Acknowledgement" msgstr "確認応答が不安定な場合、接続解除" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:302 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:307 msgid "" "Discard upstream responses containing <a href=\"%s\">RFC1918</a> addresses." msgstr "アップストリームのRFC1918応答を破棄します。" @@ -2258,7 +2279,7 @@ msgstr "一番遠い端末との距離(メートル単位)。" msgid "Distributed ARP Table" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:543 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:548 msgid "" "Dnsmasq instance to which this boot section is bound. If unspecified, the " "section is valid for all dnsmasq instances." @@ -2266,16 +2287,16 @@ msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:246 msgid "" -"Dnsmasq is a lightweight <abbr title=\"Dynamic Host Configuration " -"Protocol\">DHCP</abbr> server and <abbr title=\"Domain Name System\">DNS</" -"abbr> forwarder." +"Dnsmasq is a lightweight <abbr title=\"Dynamic Host Configuration Protocol" +"\">DHCP</abbr> server and <abbr title=\"Domain Name System\">DNS</abbr> " +"forwarder." msgstr "" "Dnsmasqは、<abbr title=\"Dynamic Host Configuration Protocol\">DHCP</abbr>" "サーバーと<abbr title=\"Network Address Translation\">NAT</abbr>ファイア" "ウォールのための<abbr title=\"Domain Name System\">DNS</abbr>フォワーダーの両" "方を提供します" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:414 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:419 msgid "Do not cache negative replies, e.g. for non-existent domains." msgstr "無効な応答をキャッシュしない(存在しないドメインからの応答など)" @@ -2287,17 +2308,17 @@ msgstr "無効な応答をキャッシュしない(存在しないドメイン msgid "Do not create host route to peer (optional)." msgstr "ピアへのホストルートを作成しない(オプション)。" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:262 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:264 msgid "Do not forward DNS queries without dots or domain parts." msgstr "" "<abbr title=\"Domain Name System\">DNS</abbr> 名の無い <abbr title=\"Domain " "Name System\">DNS</abbr> リクエストを転送しない" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:383 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:388 msgid "Do not forward reverse lookups for local networks." msgstr "ローカルネットワークへの逆引きを転送しない" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:339 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:344 msgid "Do not listen on the specified interfaces." msgstr "これらのインターフェースでのリッスンを停止します。" @@ -2352,15 +2373,16 @@ msgstr "" msgid "Do you want to replace the current keys?" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:593 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:606 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:664 msgid "Domain" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:261 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:263 msgid "Domain required" msgstr "ドメイン必須" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:311 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:316 msgid "Domain whitelist" msgstr "ドメインホワイトリスト" @@ -2602,7 +2624,7 @@ msgstr "NTPクライアントを有効化" msgid "Enable Single DES" msgstr "シングルDESを有効化" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:480 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:485 msgid "Enable TFTP server" msgstr "TFTPサーバーを有効化" @@ -2620,9 +2642,9 @@ msgstr "WPSプッシュボタンを有効にします。WPA(2)-PSK/WPA3-SAE #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/uhttpd.js:14 msgid "" -"Enable automatic redirection of <abbr title=\"Hypertext Transfer " -"Protocol\">HTTP</abbr> requests to <abbr title=\"Hypertext Transfer Protocol " -"Secure\">HTTPS</abbr> port." +"Enable automatic redirection of <abbr title=\"Hypertext Transfer Protocol" +"\">HTTP</abbr> requests to <abbr title=\"Hypertext Transfer Protocol Secure" +"\">HTTPS</abbr> port." msgstr "" "<abbr title=\"Hypertext Transfer Protocol\">HTTP</abbr> リクエストの <abbr " "title=\"Hypertext Transfer Protocol Secure\">HTTPS</abbr> ポートへの自動リダ" @@ -2693,7 +2715,7 @@ msgstr "マルチキャストトラフィックのサポートを有効化(オ msgid "Enable the DF (Don't Fragment) flag of the encapsulating packets." msgstr "カプセル化されたパケットの DF(Don't Fragment)フラグを有効にします。" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:481 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:486 msgid "Enable the built-in single-instance TFTP server." msgstr "" @@ -2810,7 +2832,7 @@ msgstr "エラー" msgid "Error getting PublicKey" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:29 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:30 msgid "Errored seconds (ES)" msgstr "エラー秒数(ES)" @@ -2832,11 +2854,11 @@ msgstr "30秒ごと(slow、0)" msgid "Every second (fast, 1)" msgstr "毎秒(fast、1)" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:338 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:343 msgid "Exclude interfaces" msgstr "除外するインターフェース" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:307 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:312 msgid "" "Exempt <code>127.0.0.0/8</code> and <code>::1</code> from rebinding checks, " "e.g. for RBL services." @@ -2848,7 +2870,7 @@ msgstr "" msgid "Existing device" msgstr "存在するデバイス" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:409 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:414 msgid "Expand hosts" msgstr "拡張ホスト" @@ -2983,36 +3005,36 @@ msgstr "" msgid "File" msgstr "ファイル" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:418 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:423 #, fuzzy msgid "" "File listing upstream resolvers, optionally domain-specific, e.g. " "<code>server=1.2.3.4</code>, <code>server=/domain/1.2.3.4</code>." msgstr "" -"このファイルには、特定ドメインまたは全ドメインに対する上位<abbr " -"title=\"Domain Name System\">DNS</abbr>サーバーを指定するための、'server=/" +"このファイルには、特定ドメインまたは全ドメインに対する上位<abbr title=" +"\"Domain Name System\">DNS</abbr>サーバーを指定するための、'server=/" "domain/1.2.3.4'や'server=1.2.3.4'といった行が含まれることがあります。" #: modules/luci-base/htdocs/luci-static/resources/ui.js:2655 msgid "File not accessible" msgstr "ファイルにアクセスできません" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:349 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:354 msgid "File to store DHCP lease information." msgstr "" "<abbr title=\"Dynamic Host Configuration Protocol\">DHCP</abbr>リースが記録さ" "れるファイル" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:357 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:362 msgid "File with upstream resolvers." msgstr "ローカル<abbr title=\"Domain Name System\">DNS</abbr>ファイル" #: modules/luci-base/htdocs/luci-static/resources/ui.js:2846 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:507 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:512 msgid "Filename" msgstr "ファイル名" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:493 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:498 msgid "Filename of the boot image advertised to clients." msgstr "クライアントに通知するブートイメージのファイル名" @@ -3021,11 +3043,11 @@ msgstr "クライアントに通知するブートイメージのファイル名 msgid "Filesystem" msgstr "ファイルシステム" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:382 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:387 msgid "Filter private" msgstr "プライベートフィルター" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:387 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:392 #, fuzzy msgid "Filter useless" msgstr "不要パケットフィルター" @@ -3092,7 +3114,7 @@ msgstr "ファームウェアファイル" msgid "Firmware Version" msgstr "ファームウェア バージョン" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:446 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:451 msgid "Fixed source port for outbound DNS queries." msgstr "DNSクエリを送信する送信元ポートを固定" @@ -3118,7 +3140,7 @@ msgstr "フラッシュ操作" msgid "Flashing…" msgstr "フラッシュ中…" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:537 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:542 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:686 msgid "Force" msgstr "強制" @@ -3165,16 +3187,16 @@ msgstr "強制アップグレード" msgid "Force use of NAT-T" msgstr "NAT-Tを強制的に使用" -#: modules/luci-base/luasrc/view/csrftoken.htm:8 +#: modules/luci-base/ucode/template/csrftoken.ut:8 msgid "Form token mismatch" msgstr "フォームトークンの不一致" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:919 msgid "" -"Forward <abbr title=\"Neighbour Discovery Protocol\">NDP</abbr> <abbr " -"title=\"Neighbour Solicitation, Type 135\">NS</abbr> and <abbr " -"title=\"Neighbour Advertisement, Type 136\">NA</abbr> messages between the " -"designated master interface and downstream interfaces." +"Forward <abbr title=\"Neighbour Discovery Protocol\">NDP</abbr> <abbr title=" +"\"Neighbour Solicitation, Type 135\">NS</abbr> and <abbr title=\"Neighbour " +"Advertisement, Type 136\">NA</abbr> messages between the designated master " +"interface and downstream interfaces." msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:770 @@ -3199,7 +3221,7 @@ msgstr "" "マスターとして指定されたインターフェースとダウンストリーム インターフェースと" "の間で DHCPv6 メッセージを転送します" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:28 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:29 msgid "Forward Error Correction Seconds (FECS)" msgstr "前方誤り訂正秒(FECS)" @@ -3362,15 +3384,15 @@ msgstr "全体設定" msgid "Global network options" msgstr "グローバルネットワークオプション" -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:82 -#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:89 -#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:74 +#: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/header.ut:70 +#: themes/luci-theme-material/ucode/template/themes/material/header.ut:84 +#: themes/luci-theme-openwrt-2020/ucode/template/themes/openwrt2020/header.ut:67 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:92 msgid "Go to firmware upgrade..." msgstr "" -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:72 -#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:64 +#: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/header.ut:60 +#: themes/luci-theme-openwrt-2020/ucode/template/themes/openwrt2020/header.ut:57 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:82 msgid "Go to password configuration..." msgstr "パスワード設定へ移動..." @@ -3511,7 +3533,7 @@ msgstr "HTTP(S) アクセス" msgid "Hang Up" msgstr "ハングアップ" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:33 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:34 msgid "Header Error Code Errors (HEC)" msgstr "ヘッダーエラーコードエラー(HEC)" @@ -3564,7 +3586,7 @@ msgstr "ホスト" msgid "Host expiry timeout" msgstr "ホスト有効期限タイムアウト" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:508 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:513 msgid "Host requests this filename from the boot server." msgstr "" @@ -3573,8 +3595,8 @@ msgid "Host-Uniq tag content" msgstr "Host-Uniqタグコンテンツ" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:38 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:559 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:607 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:630 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:678 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/10_system.js:54 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:87 #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:135 @@ -3589,7 +3611,7 @@ msgstr "DHCPリクエスト時に送信するホスト名" msgid "Hostnames" msgstr "ホスト名" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:551 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:622 msgid "" "Hostnames are used to bind a domain name to an IP address. This setting is " "redundant for hostnames already configured with static leases, but it can be " @@ -3653,7 +3675,7 @@ msgstr "IPアドレス" msgid "IP Protocol" msgstr "IPプロトコル" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:258 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:260 msgid "IP Sets" msgstr "" @@ -3661,7 +3683,7 @@ msgstr "" msgid "IP Type" msgstr "IPの種類" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:563 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:634 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:178 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:204 msgid "IP address" @@ -3687,15 +3709,15 @@ msgctxt "nft meta l4proto" msgid "IP protocol" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:589 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:660 msgid "IP set" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:295 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:300 msgid "IP sets" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:432 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:437 msgid "IPs to override with NXDOMAIN" msgstr "本物でないNXドメインを上書き" @@ -3736,7 +3758,7 @@ msgstr "IPv4アップストリーム" #: modules/luci-base/htdocs/luci-static/resources/protocol/static.js:178 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:39 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:665 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:736 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:88 #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:164 msgid "IPv4 address" @@ -3907,7 +3929,7 @@ msgstr "" msgid "IPv6 suffix" msgstr "IPv6サフィックス" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:706 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:777 msgid "IPv6 suffix (hex)" msgstr "" "<abbr title=\"Internet Protocol Version 6\">IPv6</abbr>-サフィックス(16進" @@ -4002,17 +4024,17 @@ msgstr "チェックが付いていない場合、通知されたDNSサーバー #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:340 msgid "" "If your physical memory is insufficient unused data can be temporarily " -"swapped to a swap-device resulting in a higher amount of usable <abbr " -"title=\"Random Access Memory\">RAM</abbr>. Be aware that swapping data is a " -"very slow process as the swap-device cannot be accessed with the high " -"datarates of the <abbr title=\"Random Access Memory\">RAM</abbr>." +"swapped to a swap-device resulting in a higher amount of usable <abbr title=" +"\"Random Access Memory\">RAM</abbr>. Be aware that swapping data is a very " +"slow process as the swap-device cannot be accessed with the high datarates " +"of the <abbr title=\"Random Access Memory\">RAM</abbr>." msgstr "" "物理メモリが不足している場合、使用されていないデータを一時的にスワップデバイ" "スに移動し、<abbr title=\"Random Access Memory\">RAM</abbr>の空き容量を増やす" -"ことができます。ただし、スワップデバイスは<abbr title=\"Random Access " -"Memory\">RAM</abbr>に比べてとても遅いことに注意してください。" +"ことができます。ただし、スワップデバイスは<abbr title=\"Random Access Memory" +"\">RAM</abbr>に比べてとても遅いことに注意してください。" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:363 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:368 msgid "Ignore <code>/etc/hosts</code>" msgstr "<code>/etc/hosts</code>を無視" @@ -4020,7 +4042,7 @@ msgstr "<code>/etc/hosts</code>を無視" msgid "Ignore interface" msgstr "インターフェースを無視" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:352 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:357 msgid "Ignore resolv file" msgstr "リゾルバファイルを無視" @@ -4068,7 +4090,7 @@ msgid "" "order to avoid broadcast loops that can bring the entire LAN to a standstill." msgstr "" -#: modules/luci-base/luasrc/view/csrftoken.htm:13 +#: modules/luci-base/ucode/template/csrftoken.ut:13 msgid "" "In order to prevent unauthorized access to the system, your request has been " "blocked. Click \"Continue »\" below to return to the previous page." @@ -4179,7 +4201,7 @@ msgstr "内部証明書制約(ワイルドカード)" msgid "Install protocol extensions..." msgstr "プロトコル拡張機能をインストール..." -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:542 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:547 msgid "Instance" msgstr "" @@ -4268,10 +4290,6 @@ msgstr "インターフェース" msgid "Internal" msgstr "内部" -#: modules/luci-base/luasrc/view/error500.htm:8 -msgid "Internal Server Error" -msgstr "内部サーバーエラー" - #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:285 msgid "Interval For Sending Learning Packets" msgstr "学習パケット送信間隔" @@ -4342,8 +4360,8 @@ msgstr "無効なコマンド" msgid "Invalid hexadecimal value" msgstr "無効な16進数" -#: modules/luci-base/luasrc/view/sysauth.htm:12 -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/sysauth.htm:37 +#: modules/luci-base/ucode/template/sysauth.ut:12 +#: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/sysauth.ut:32 msgid "Invalid username and/or password! Please try again." msgstr "" "ユーザー名とパスワードのどちらかもしくは両方が間違っています!もう一度入力し" @@ -4369,8 +4387,8 @@ msgstr "" "フラッシュしようとしたイメージファイルはこのフラッシュメモリー向けではありま" "せん。イメージファイルを確認してください!" -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:89 -#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:96 +#: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/header.ut:77 +#: themes/luci-theme-material/ucode/template/themes/material/header.ut:91 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:72 msgid "JavaScript required!" msgstr "JavaScriptが必要です!" @@ -4502,11 +4520,17 @@ msgstr "言語" msgid "Language and Style" msgstr "言語とスタイル" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:560 +msgid "" +"Larger weights (of the same prio) are given a proportionately higher " +"probability of being selected." +msgstr "" + #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:575 msgid "Last member interval" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:23 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:24 msgid "Latency" msgstr "遅延" @@ -4522,11 +4546,11 @@ msgstr "学習" msgid "Learn routes" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:348 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:353 msgid "Lease file" msgstr "リースファイル" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:697 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:768 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:679 msgid "Lease time" msgstr "リース期間" @@ -4574,19 +4598,19 @@ msgstr "凡例:" msgid "Limit" msgstr "制限" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:24 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:25 msgid "Line Attenuation (LATN)" msgstr "回線減衰(LATN)" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:18 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:19 msgid "Line Mode" msgstr "回線モード" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:17 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:18 msgid "Line State" msgstr "回線状態" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:19 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:20 msgid "Line Uptime" msgstr "回線稼働時間" @@ -4607,12 +4631,12 @@ msgctxt "nft @ll,off,len" msgid "Link layer header bits %d-%d" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:433 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:438 msgid "List of IP addresses to convert into NXDOMAIN responses." msgstr "NXドメインの嘘の結果を提供するホストのリスト" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:296 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:581 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:301 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:652 msgid "List of IP sets to populate with the specified domain IPs." msgstr "" @@ -4647,15 +4671,11 @@ msgstr "" msgid "List of SSH key files for auth" msgstr "認証用SSHキーファイルのリスト" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:312 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:317 msgid "List of domains to allow RFC1918 responses for." msgstr "RFC1918の応答を許可するドメインのリスト" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:290 -msgid "List of domains to force to an IP address." -msgstr "これはIPアドレスに強制的に設定するドメインのリスト。" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:283 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:285 msgid "List of upstream resolvers to forward queries to." msgstr "" "リクエストを転送する<abbr title=\"Domain Name System\">DNS</abbr>サーバーのリ" @@ -4665,7 +4685,7 @@ msgstr "" msgid "Listen Port" msgstr "リッスンポート" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:332 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:337 msgid "Listen interfaces" msgstr "リッスンインターフェース" @@ -4675,7 +4695,7 @@ msgstr "" "指定されたインターフェースでのみリッスンを行います。設定しない場合はすべて対" "象" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:333 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:338 msgid "" "Listen only on the specified interfaces, and loopback if not excluded " "explicitly." @@ -4685,7 +4705,7 @@ msgstr "リッスンをこれらのインターフェースとループバック msgid "ListenPort setting is invalid" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:439 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:444 msgid "Listening port for inbound DNS queries." msgstr "受信DNSクエリをリッスンするポート" @@ -4712,9 +4732,9 @@ msgid "Loading directory contents…" msgstr "ディレクトリの内容を読み込み中…" #: modules/luci-base/htdocs/luci-static/resources/luci.js:1942 -#: modules/luci-base/luasrc/view/view.htm:4 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:12 -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/sysauth.htm:45 +#: modules/luci-base/ucode/template/view.ut:4 +#: modules/luci-mod-status/ucode/template/admin_status/index.ut:12 +#: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/sysauth.ut:40 msgid "Loading view…" msgstr "画面表示を読み込み中…" @@ -4772,19 +4792,19 @@ msgstr "時刻" msgid "Local ULA" msgstr "ローカル ULA" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:273 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:275 msgid "Local domain" msgstr "ローカルドメイン" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:274 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:276 msgid "Local domain suffix appended to DHCP names and hosts file entries." msgstr "DHCP名とhostsファイルの項目に追加される、ローカルドメインサフィックス" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:269 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:271 msgid "Local server" msgstr "ローカルサーバー" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:319 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:324 msgid "Local service only" msgstr "ローカルサービスのみ" @@ -4792,7 +4812,7 @@ msgstr "ローカルサービスのみ" msgid "Local wireguard key" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:392 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:397 msgid "Localise queries" msgstr "クエリをローカライズ" @@ -4804,7 +4824,7 @@ msgstr "BSSIDにロック" msgid "Log output level" msgstr "ログ出力レベル" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:277 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:279 msgid "Log queries" msgstr "ログクエリ" @@ -4830,8 +4850,8 @@ msgstr "" msgid "Logical network to which the tunnel will be added (bridged) (optional)." msgstr "トンネルが追加される(ブリッジされる)論理ネットワーク(オプション)。" -#: modules/luci-base/luasrc/view/sysauth.htm:38 -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/sysauth.htm:41 +#: modules/luci-base/ucode/template/sysauth.ut:38 +#: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/sysauth.ut:36 msgid "Login" msgstr "ログイン" @@ -4843,7 +4863,7 @@ msgstr "ログアウト" msgid "Loose filtering" msgstr "緩いフィルタリング" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:31 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:32 msgid "Loss of Signal Seconds (LOSS)" msgstr "信号損失秒数(LOSS)" @@ -4852,6 +4872,10 @@ msgid "Lowest leased address as offset from the network address." msgstr "" "これはネットワークアドレスをオフセットとした、最小のリースアドレスです。" +#: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/footer.ut:12 +msgid "Lua compatibility mode active" +msgstr "" + #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:48 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:83 msgid "MAC" @@ -4877,7 +4901,7 @@ msgstr "MAC ベース VLAN" #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:591 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:40 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:619 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:690 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1164 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2177 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:56 @@ -4936,6 +4960,10 @@ msgstr "MII間隔" msgid "MTU" msgstr "MTU" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:259 +msgid "MX" +msgstr "" + #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:303 msgid "" "Make sure to clone the root filesystem using something like the commands " @@ -4961,22 +4989,22 @@ msgstr "マスター" msgid "Max <abbr title=\"Router Advertisement\">RA</abbr> interval" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:22 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:23 msgid "Max. Attainable Data Rate (ATTNDR)" msgstr "到達可能な最大データレート(ATTNDR)" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:452 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:457 msgid "Max. DHCP leases" msgstr "" "最大<abbr title=\"Dynamic Host Configuration Protocol\">DHCP</abbr>割り当て数" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:459 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:464 msgid "Max. EDNS0 packet size" msgstr "" "最大<abbr title=\"Extension Mechanisms for Domain Name System\">EDNS0</abbr>" "パケットサイズ" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:466 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:471 msgid "Max. concurrent queries" msgstr "最大並列処理クエリ" @@ -4988,15 +5016,15 @@ msgstr "" msgid "Maximum allowed Listen Interval" msgstr "許容される最大リッスン間隔" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:453 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:458 msgid "Maximum allowed number of active DHCP leases." msgstr "許容される最大DHCP割り当て数" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:467 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:472 msgid "Maximum allowed number of concurrent DNS queries." msgstr "許容される最大の並列DNSクエリ数" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:460 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:465 msgid "Maximum allowed size of EDNS0 UDP packets." msgstr "許容される最大EDNS.0 UDPパケットサイズ" @@ -5023,7 +5051,7 @@ msgstr "" msgid "Maximum transmit power" msgstr "最大送信出力" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:389 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:394 msgid "May prevent VoIP or other services from working." msgstr "" @@ -5342,11 +5370,15 @@ msgstr "新規ネットワークの名前" msgid "Name of the tunnel device" msgstr "" -#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:46 +#: themes/luci-theme-openwrt-2020/ucode/template/themes/openwrt2020/header.ut:39 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:50 msgid "Navigation" msgstr "ナビゲーション" +#: protocols/luci-proto-nebula/htdocs/luci-static/resources/protocol/nebula.js:10 +msgid "Nebula Network" +msgstr "" + #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:653 msgid "Neighbour cache validity" msgstr "" @@ -5382,7 +5414,7 @@ msgstr "ネットワークユーティリティ" msgid "Network address" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:492 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:497 msgid "Network boot image" msgstr "ネットワークブートイメージ" @@ -5422,7 +5454,7 @@ msgstr "" msgid "Network interface" msgstr "ネットワークインターフェース" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:531 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:536 msgid "Network-ID" msgstr "" @@ -5430,7 +5462,7 @@ msgstr "" msgid "Never" msgstr "なし" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:270 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:272 msgid "" "Never forward matching domains and subdomains, resolve from DHCP or hosts " "files only." @@ -5480,9 +5512,9 @@ msgstr "NAT-Tを使用しない" msgid "No RX signal" msgstr "RX信号なし" -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:80 -#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:87 -#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:72 +#: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/header.ut:68 +#: themes/luci-theme-material/ucode/template/themes/material/header.ut:82 +#: themes/luci-theme-openwrt-2020/ucode/template/themes/openwrt2020/header.ut:65 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:90 msgid "" "No changes to settings will be stored and are lost after rebooting. This " @@ -5526,10 +5558,6 @@ msgstr "利用可能な項目はありません" msgid "No entries in this directory" msgstr "このディレクトリ内にエントリーがありません" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:82 -msgid "No files found" -msgstr "ファイルが見つかりません" - #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:833 msgid "" "No fixed interface listening port defined, peers might not be able to " @@ -5566,7 +5594,7 @@ msgstr "これ以上利用可能なスレーブがありません" msgid "No more slaves available, can not save interface" msgstr "これ以上利用可能なスレーブがないため、インターフェースを保存できません" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:413 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:418 msgid "No negative cache" msgstr "ネガティブキャッシュなし" @@ -5574,8 +5602,8 @@ msgstr "ネガティブキャッシュなし" msgid "No nftables ruleset loaded." msgstr "" -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:69 -#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:61 +#: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/header.ut:57 +#: themes/luci-theme-openwrt-2020/ucode/template/themes/openwrt2020/header.ut:54 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:79 msgid "No password set!" msgstr "パスワードが設定されていません!" @@ -5615,7 +5643,7 @@ msgstr "割り当てられたゾーンがありません" msgid "Noise" msgstr "ノイズ" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:26 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:27 msgid "Noise Margin (SNR)" msgstr "ノイズマージン(SNR)" @@ -5623,11 +5651,11 @@ msgstr "ノイズマージン(SNR)" msgid "Noise:" msgstr "ノイズ:" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:34 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:35 msgid "Non Pre-emptive CRC errors (CRC_P)" msgstr "非プリエンプティブCRCエラー(CRC_P)" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:325 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:330 msgid "Non-wildcard" msgstr "非ワイルドカード" @@ -5642,7 +5670,7 @@ msgstr "なし" msgid "Normal" msgstr "標準" -#: modules/luci-base/luasrc/view/error404.htm:8 +#: modules/luci-base/ucode/template/error404.ut:9 msgid "Not Found" msgstr "見つかりません" @@ -5694,7 +5722,7 @@ msgstr "Nslookup" msgid "Number of IGMP membership reports" msgstr "IGMPメンバーシップレポートの数" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:474 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:479 msgid "Number of cached DNS entries, 10000 is maximum, 0 is no caching." msgstr "" "キャッシュされるDNSエントリーの数(最大10000件、0の場合キャッシュしない)" @@ -5744,7 +5772,7 @@ msgstr "点灯時間" msgid "On-link" msgstr "On-Linkルート" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:672 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:743 msgid "One of hostname or MAC address must be specified!" msgstr "ホスト名またはMACアドレスを指定してください!" @@ -5782,7 +5810,6 @@ msgid "Open iptables rules overview…" msgstr "" #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:472 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:19 msgid "Open list..." msgstr "リストを開く..." @@ -5940,18 +5967,23 @@ msgstr "送信パケットと受信パケットに使用されるUDPポート( msgid "Options" msgstr "オプション" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:526 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:531 msgid "" "Options for the Network-ID. (Note: needs also Network-ID.) E.g. " -"\"<code>42,192.168.1.4</code>\" for NTP server, \"<code>3,192.168.4.4</" -"code>\" for default route. <code>0.0.0.0</code> means \"the address of the " -"system running dnsmasq\"." +"\"<code>42,192.168.1.4</code>\" for NTP server, \"<code>3,192.168.4.4</code>" +"\" for default route. <code>0.0.0.0</code> means \"the address of the system " +"running dnsmasq\"." msgstr "" #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:125 msgid "Options:" msgstr "オプション :" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:584 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:616 +msgid "Ordinal: lower comes first." +msgstr "" + #: protocols/luci-proto-batman-adv/htdocs/luci-static/resources/protocol/batadv.js:55 msgid "Originator Interval" msgstr "" @@ -6225,13 +6257,13 @@ msgctxt "MACVLAN mode" msgid "Pass-through (Mirror physical device to single MAC VLAN)" msgstr "パススルー(物理デバイスを単一の MAC ベース VLAN へミラー)" -#: modules/luci-base/luasrc/view/sysauth.htm:29 +#: modules/luci-base/ucode/template/sysauth.ut:29 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1690 #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:51 #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:114 #: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:103 #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:58 -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/sysauth.htm:24 +#: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/sysauth.ut:19 msgid "Password" msgstr "パスワード" @@ -6402,7 +6434,7 @@ msgstr "Ping" msgid "Pkts." msgstr "パケット" -#: modules/luci-base/luasrc/view/sysauth.htm:19 +#: modules/luci-base/ucode/template/sysauth.ut:19 msgid "Please enter your username and password." msgstr "ユーザー名とパスワードを入力してください。" @@ -6419,6 +6451,7 @@ msgctxt "Chain hook policy" msgid "Policy: <strong>%h</strong> (%h)" msgstr "" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:579 #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/dropbear.js:21 msgid "Port" msgstr "ポート" @@ -6436,11 +6469,11 @@ msgstr "ポートステータス:" msgid "Potential negation of: %s" msgstr "存在しない可能性があります: %s" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:37 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:38 msgid "Power Management Mode" msgstr "電力管理モード" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:35 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:36 msgid "Pre-emptive CRC errors (CRCP_P)" msgstr "プリエンプティブCRCエラー(CRCP_P)" @@ -6518,6 +6551,8 @@ msgid "Primary becomes active slave whenever it comes back up (always, 0)" msgstr "プライマリが復旧するとアクティブスレーブになります(always、0)" #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:508 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:584 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:616 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:129 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:197 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:223 @@ -6641,7 +6676,7 @@ msgstr "QMIセルラー" msgid "Quality" msgstr "品質" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:428 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:433 msgid "Query all available upstream resolvers." msgstr "" "利用可能なすべての上位<abbr title=\"Domain Name System\">DNS</abbr>サーバに問" @@ -6727,7 +6762,7 @@ msgstr "" "16進数でエンコードされた、生のバイト値です。 ISPがこれを要求しない場合、空欄" "にしてください" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:345 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:350 msgid "Read <code>/etc/ethers</code> to configure the DHCP server." msgstr "" "<code>/etc/ethers</code>を元に<abbr title=\"Dynamic Host Configuration " @@ -6745,7 +6780,7 @@ msgstr "リアルタイムグラフ" msgid "Reassociation Deadline" msgstr "再接続制限時間" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:301 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:306 msgid "Rebind protection" msgstr "DNSリバインディング保護" @@ -6830,6 +6865,7 @@ msgid "" msgstr "" #: modules/luci-compat/luasrc/model/network/proto_relay.lua:153 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:611 #: protocols/luci-proto-relay/htdocs/luci-static/resources/protocol/relay.js:39 msgid "Relay" msgstr "リレー" @@ -6920,6 +6956,10 @@ msgstr "DOCSIS 3などを使用するいくつかのISPで必要です" msgid "Required. Base64-encoded private key for this interface." msgstr "このインターフェースに使用するBase64エンコードの秘密鍵(必須)。" +#: protocols/luci-proto-nebula/htdocs/luci-static/resources/protocol/nebula.js:40 +msgid "Required. Path to the .yml config file for this interface." +msgstr "" + #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:587 msgid "Required. Public key of the WireGuard peer." msgstr "" @@ -7002,7 +7042,7 @@ msgid "Reselection policy for primary slave" msgstr "プライマリスレーブの再選択ポリシー" #: modules/luci-base/htdocs/luci-static/resources/luci.js:2197 -#: modules/luci-base/luasrc/view/sysauth.htm:39 +#: modules/luci-base/ucode/template/sysauth.ut:39 #: modules/luci-compat/luasrc/view/cbi/delegator.htm:17 #: modules/luci-compat/luasrc/view/cbi/footer.htm:30 #: modules/luci-compat/luasrc/view/cbi/simpleform.htm:66 @@ -7021,10 +7061,14 @@ msgstr "初期化" msgid "Resolv and Hosts Files" msgstr "リゾルバとホストファイル" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:356 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:361 msgid "Resolv file" msgstr "リゾルバファイル" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:292 +msgid "Resolve specified FQDNs to an IP." +msgstr "これはIPアドレスに強制的に設定するドメインのリスト。" + #: modules/luci-base/htdocs/luci-static/resources/rpc.js:405 msgid "Resource not found" msgstr "リソースが見つかりません" @@ -7051,7 +7095,7 @@ msgstr "復元" msgid "Restore backup" msgstr "バックアップを復元" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:393 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:398 msgid "" "Return answers to DNS queries matching the subnet from which the query was " "received if multiple IPs are available." @@ -7139,7 +7183,7 @@ msgstr "" msgid "Robustness" msgstr "堅牢性" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:486 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:491 msgid "" "Root directory for files served via TFTP. <em>Enable TFTP server</em> and " "<em>TFTP server root</em> turn on the TFTP server and serve files from " @@ -7244,6 +7288,11 @@ msgstr "SHA256" msgid "SNR" msgstr "SNR" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:258 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:569 +msgid "SRV" +msgstr "" + #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/dropbear.js:10 #: modules/luci-mod-system/root/usr/share/luci/menu.d/luci-mod-system.json:38 msgid "SSH Access" @@ -7388,11 +7437,11 @@ msgstr "このデバイスのホスト名を送信" msgid "Server" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:519 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:524 msgid "Server address" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:513 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:518 msgid "Server name" msgstr "" @@ -7483,7 +7532,7 @@ msgstr "設定" msgid "Setup routes for proxied IPv6 neighbours." msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:30 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:31 msgid "Severely Errored Seconds (SES)" msgstr "重大エラー秒数(SES)" @@ -7497,7 +7546,6 @@ msgid "Short Preamble" msgstr "ショートプリアンブル" #: 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 msgid "Show current backup file list" msgstr "現在のバックアップファイルリストを表示" @@ -7531,7 +7579,7 @@ msgstr "信号強度" msgid "Signal / Noise" msgstr "信号強度 / ノイズ" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:25 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:26 msgid "Signal Attenuation (SATN)" msgstr "信号減衰(SATN)" @@ -7548,7 +7596,7 @@ msgstr "信号:" msgid "Size" msgstr "サイズ" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:473 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:478 msgid "Size of DNS query cache" msgstr "DNSクエリキャッシュのサイズ" @@ -7565,12 +7613,12 @@ msgstr "スキップ" msgid "Skip from backup files that are equal to those in /rom" msgstr "" -#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:42 +#: themes/luci-theme-openwrt-2020/ucode/template/themes/openwrt2020/header.ut:35 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:46 msgid "Skip to content" msgstr "コンテンツへ移動" -#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:41 +#: themes/luci-theme-openwrt-2020/ucode/template/themes/openwrt2020/header.ut:34 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:45 msgid "Skip to navigation" msgstr "ナビゲーションへ移動" @@ -7588,15 +7636,11 @@ msgstr "ソフトウェア VLAN" msgid "Some fields are invalid, cannot save values!" msgstr "フィールドに無効な値が設定されているため、保存できません!" -#: modules/luci-base/luasrc/view/error404.htm:9 +#: modules/luci-base/ucode/template/error404.ut:10 msgid "Sorry, the object you requested was not found." msgstr "" "申し訳ありませんが、リクエストされたオブジェクトは見つかりませんでした。" -#: modules/luci-base/luasrc/view/error500.htm:9 -msgid "Sorry, the server encountered an unexpected error." -msgstr "申し訳ありませんが、サーバーに予期しないエラーが発生しました。" - #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:442 msgid "" "Sorry, there is no sysupgrade support present; a new firmware image must be " @@ -7635,7 +7679,7 @@ msgctxt "nft ip sport" msgid "Source port" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:500 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:505 msgid "" "Special <abbr title=\"Preboot eXecution Environment\">PXE</abbr> boot " "options for Dnsmasq." @@ -8050,7 +8094,7 @@ msgstr "静的リース" msgid "Static address" msgstr "静的アドレス" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:598 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:669 msgid "" "Static leases are used to assign fixed IP addresses and symbolic hostnames " "to DHCP clients. They are also required for non-dynamic interface " @@ -8067,7 +8111,7 @@ msgstr "非アクティブなステーションの制限" #: modules/luci-base/root/usr/share/luci/menu.d/luci-base.json:16 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:541 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:929 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:9 +#: modules/luci-mod-status/ucode/template/admin_status/index.ut:9 msgid "Status" msgstr "ステータス" @@ -8093,7 +8137,7 @@ msgstr "ストレージ" msgid "Strict filtering" msgstr "厳密なフィルタリング" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:422 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:427 msgid "Strict order" msgstr "問い合わせの制限" @@ -8106,11 +8150,11 @@ msgstr "強" msgid "Submit" msgstr "送信" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:372 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:377 msgid "Suppress logging" msgstr "ログの抑制" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:373 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:378 msgid "Suppress logging of the routine operation for the DHCP protocol." msgstr "これらのプロトコルの、ルーチン操作のログを抑制" @@ -8165,6 +8209,14 @@ msgstr "NTPサーバーと同期" msgid "Sync with browser" msgstr "ブラウザと同期" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:293 +msgid "Syntax: <code>/fqdn[/fqdn…]/[ipaddr]</code>." +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:569 +msgid "Syntax: <code>_service._proto.example.com</code>." +msgstr "" + #: modules/luci-base/root/usr/share/luci/menu.d/luci-base.json:26 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/10_system.js:17 #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:113 @@ -8190,9 +8242,9 @@ msgstr "システムプロパティ" msgid "System log buffer size" msgstr "システムログバッファサイズ" -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:79 -#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:86 -#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:71 +#: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/header.ut:67 +#: themes/luci-theme-material/ucode/template/themes/material/header.ut:81 +#: themes/luci-theme-openwrt-2020/ucode/template/themes/openwrt2020/header.ut:64 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:89 msgid "System running in recovery (initramfs) mode." msgstr "システムはリカバリー (initramfs) モードで実行中です。" @@ -8221,7 +8273,7 @@ msgstr "" msgid "TCP:" msgstr "TCP:" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:485 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:490 msgid "TFTP server root" msgstr "TFTPサーバールート" @@ -8246,6 +8298,7 @@ msgstr "" msgid "Table" msgstr "テーブル" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:574 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:56 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:66 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:187 @@ -8319,15 +8372,15 @@ msgstr "" "HE.netのエンドポイント更新構成を変更した場合、ユーザーIDの代わりに通常のユー" "ザー名を使用する必要があります!" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:681 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:752 msgid "The IP address %h is already used by another static lease" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:690 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:761 msgid "The IP address is outside of any DHCP pool address range" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:520 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:525 msgid "The IP address of the boot server" msgstr "" @@ -8509,7 +8562,7 @@ msgid "" "to be received and retransmitted which costs airtime)" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:514 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:519 msgid "The hostname of the boot server" msgstr "" @@ -8595,8 +8648,8 @@ msgstr "ネットワーク名はすでに使用されています" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:139 msgid "" -"The network ports on this device can be combined to several <abbr " -"title=\"Virtual Local Area Network\">VLAN</abbr>s in which computers can " +"The network ports on this device can be combined to several <abbr title=" +"\"Virtual Local Area Network\">VLAN</abbr>s in which computers can " "communicate directly with each other. <abbr title=\"Virtual Local Area " "Network\">VLAN</abbr>s are often used to separate different network " "segments. Often there is by default one Uplink port for a connection to the " @@ -8654,7 +8707,7 @@ msgstr "" msgid "The selected %s mode is incompatible with %s encryption" msgstr "選択された%sモードは、%s暗号化と互換性がありません" -#: modules/luci-base/luasrc/view/csrftoken.htm:11 +#: modules/luci-base/ucode/template/csrftoken.ut:11 msgid "The submitted security token is invalid or already expired!" msgstr "送信されたセキュリティトークンは無効または期限切れです!" @@ -8736,8 +8789,8 @@ msgid "" "nftables rules is discouraged and may lead to incomplete traffic filtering." msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:746 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:778 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:817 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:849 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:130 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:179 msgid "There are no active leases" @@ -8747,8 +8800,8 @@ msgstr "アクティブなリースはありません" msgid "There are no changes to apply" msgstr "適用する変更はありません" -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:70 -#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:62 +#: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/header.ut:58 +#: themes/luci-theme-openwrt-2020/ucode/template/themes/openwrt2020/header.ut:55 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:80 msgid "" "There is no password set on this router. Please configure a root password to " @@ -8771,7 +8824,6 @@ msgid "This does not look like a valid PEM file" msgstr "これは有効なPEMファイルではないようです" #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:454 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:16 msgid "" "This is a list of shell glob patterns for matching files and directories to " "include during sysupgrade. Modified files in /etc/config/ and certain other " @@ -8816,7 +8868,7 @@ msgstr "" "これはトンネルブローカーによって割り当てられた、ローカルエンドポイントアドレ" "スです。通常、最後が<code>...:2/64</code>で終わります" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:266 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:268 msgid "This is the only DHCP server in the local network." msgstr "" "これはローカルネットワーク内で1つだけの<abbr title=\"Dynamic Host " @@ -8904,8 +8956,8 @@ msgstr "タイムゾーン" #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:440 msgid "" "To fully configure the local WireGuard interface from an existing (e.g. " -"provider supplied) configuration file, use the <strong><a class=\"full-" -"import\" href=\"#\">configuration import</a></strong> instead." +"provider supplied) configuration file, use the <strong><a class=\"full-import" +"\" href=\"#\">configuration import</a></strong> instead." msgstr "" #: modules/luci-base/htdocs/luci-static/resources/luci.js:2674 @@ -9070,7 +9122,7 @@ msgstr "外部IPアドレスを確定できません" msgid "Unable to determine upstream interface" msgstr "アップストリーム インターフェースを確定できません" -#: modules/luci-base/luasrc/view/error404.htm:11 +#: modules/luci-base/ucode/template/error404.ut:12 msgid "Unable to dispatch" msgstr "ディスパッチできません" @@ -9125,7 +9177,7 @@ msgstr "内容を保存できません: %s" msgid "Unable to verify PIN" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:32 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:33 msgid "Unavailable Seconds (UAS)" msgstr "使用不可秒数(UAS)" @@ -9273,7 +9325,7 @@ msgid "" "will be restarted to apply the updated configuration." msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:423 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:428 msgid "Upstream resolvers will be queried in the order of the resolv file." msgstr "" "リゾルバファイルの順番に<abbr title=\"Domain Name System\">DNS</abbr>サーバー" @@ -9284,7 +9336,7 @@ msgstr "" msgid "Uptime" msgstr "稼働時間" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:344 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:349 msgid "Use <code>/etc/ethers</code>" msgstr "<code>/etc/ethers</code>を使用" @@ -9399,7 +9451,7 @@ msgstr "システム証明書を使用" msgid "Use system certificates for inner-tunnel" msgstr "内部トンネルにシステム証明書を使用" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:599 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:670 msgid "" "Use the <em>Add</em> Button to add a new lease entry. The <em>MAC address</" "em> identifies the host, the <em>IPv4 address</em> specifies the fixed " @@ -9436,8 +9488,8 @@ msgid "" "Used for two different purposes: RADIUS NAS ID and 802.11r R0KH-ID. Not " "needed with normal WPA(2)-PSK." msgstr "" -"RADIUS NAS IDと802.11r R0KH-IDの2つの異なる目的のために使用中です。通常のWPA" -"(2)-PSKは必要ありません。" +"RADIUS NAS IDと802.11r R0KH-IDの2つの異なる目的のために使用中です。通常の" +"WPA(2)-PSKは必要ありません。" #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:111 msgid "User Group" @@ -9457,11 +9509,11 @@ msgstr "" msgid "User key (PEM encoded)" msgstr "ユーザー鍵(PEMエンコード)" -#: modules/luci-base/luasrc/view/sysauth.htm:23 +#: modules/luci-base/ucode/template/sysauth.ut:23 #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:112 #: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:101 #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:56 -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/sysauth.htm:18 +#: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/sysauth.ut:13 msgid "Username" msgstr "ユーザー名" @@ -9559,7 +9611,7 @@ msgstr "VXLANネットワーク識別子" msgid "VXLANv6 (RFC7348)" msgstr "VXLANv6(RFC7348)" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:398 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:403 msgid "" "Validate DNS replies and cache DNSSEC data, requires upstream to support " "DNSSEC." @@ -9596,7 +9648,7 @@ msgstr "ベンダー" msgid "Vendor Class to send when requesting DHCP" msgstr "DHCPリクエスト時に送信するベンダークラス" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:403 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:408 msgid "Verify unsigned domain responses really come from unsigned domains." msgstr "" @@ -9674,6 +9726,10 @@ msgstr "警告: 再起動で失われる、保留中の設定があります!" msgid "Weak" msgstr "弱" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:589 +msgid "Weight" +msgstr "" + #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1029 msgid "" "When delegating prefixes to multiple downstreams, interfaces with a higher " @@ -9801,7 +9857,7 @@ msgstr "無線ネットワークは無効" msgid "Wireless network is enabled" msgstr "無線ネットワークは有効" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:278 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:280 msgid "Write received DNS queries to syslog." msgstr "受信したDNSリクエストをsyslogへ記録" @@ -9841,8 +9897,16 @@ msgstr "" "変更は再起動後に適用されます。<br /><strong>警告: \"network\"などの重要なスク" "リプトを無効にするとデバイスにアクセスできなくなることがあります!</strong>" -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:90 -#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:97 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:559 +msgid "You may add multiple records for the same Target." +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:596 +msgid "You may add multiple records for the same domain." +msgstr "" + +#: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/header.ut:78 +#: themes/luci-theme-material/ucode/template/themes/material/header.ut:92 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:73 msgid "" "You must enable JavaScript in your browser or LuCI will not work properly." @@ -9875,7 +9939,17 @@ msgstr "ZRam設定" msgid "ZRam Size" msgstr "ZRamサイズ" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:449 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:558 +msgid "_proto: _tcp, _udp, _sctp, _quic, … ." +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:557 +msgid "" +"_service: _sip, _ldap, _imap, _stun, _xmpp-client, … . (Note: while _http is " +"possible, no browsers support SRV records.)" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:454 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:152 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:163 msgid "any" @@ -9986,8 +10060,8 @@ msgstr "例: --proxy 10.10.10.10" msgid "e.g: dump" msgstr "例: dump" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:726 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:756 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:797 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:827 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:101 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:148 msgid "expired" @@ -10201,9 +10275,9 @@ msgstr "固有の値" msgid "unknown" msgstr "不明" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:456 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:724 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:754 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:461 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:795 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:825 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:99 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:146 msgid "unlimited" @@ -10419,6 +10493,21 @@ msgstr "はい" msgid "« Back" msgstr "« 戻る" +#~ msgid "Back to configuration" +#~ msgstr "設定へ戻る" + +#~ msgid "Close list..." +#~ msgstr "リストを閉じる..." + +#~ msgid "Internal Server Error" +#~ msgstr "内部サーバーエラー" + +#~ msgid "No files found" +#~ msgstr "ファイルが見つかりません" + +#~ msgid "Sorry, the server encountered an unexpected error." +#~ msgstr "申し訳ありませんが、サーバーに予期しないエラーが発生しました。" + #~ msgid "Do not forward queries that cannot be answered by public resolvers." #~ msgstr "パブリックDNSサーバーが応答できないリクエストを転送しない" diff --git a/modules/luci-base/po/ko/base.po b/modules/luci-base/po/ko/base.po index ce5e776c4b..0b1744472e 100644 --- a/modules/luci-base/po/ko/base.po +++ b/modules/luci-base/po/ko/base.po @@ -230,6 +230,18 @@ msgstr "" msgid "<abbr title=\"Router Advertisement\">RA</abbr>-Service" msgstr "" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:294 +msgid "" +"<code>/#/</code> matches any domain. <code>/example.com/</code> returns " +"NXDOMAIN." +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:295 +msgid "" +"<code>/example.com/#</code> returns NULL addresses (<code>0.0.0.0</code> and " +"<code>::</code>) for example.com and its subdomains." +msgstr "" + #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:87 msgctxt "nft relational \">\" operator expression" msgid "<var>%s</var> greater than <strong>%s</strong>" @@ -389,7 +401,7 @@ msgstr "" msgid "ATM device number" msgstr "ATM 디바이스 번호" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:36 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:37 msgid "ATU-C System Vendor ID" msgstr "ATU-C 시스템 벤더 ID" @@ -399,7 +411,7 @@ msgstr "ATU-C 시스템 벤더 ID" msgid "Absent Interface" msgstr "인터페이스 없음" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:320 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:325 msgid "Accept DNS queries only from hosts whose address is on a local subnet." msgstr "" "DNS 를 제공하기로한 subnet 인터페이스들에 대해서만 DNS 서비스를 제공합니다." @@ -540,7 +552,7 @@ msgstr "인스턴스 추가" msgid "Add key" msgstr "키 추가" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:410 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:415 msgid "Add local domain suffix to names served from hosts files." msgstr "hosts에 등록된 호스트명에 로컬 도메인 접미사를 추가합니다." @@ -561,11 +573,11 @@ msgstr "블랙리스트에 추가" msgid "Add to Whitelist" msgstr "화이트리스트에 추가" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:367 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:372 msgid "Additional hosts files" msgstr "추가적인 Hosts 파일들" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:417 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:422 #, fuzzy msgid "Additional servers file" msgstr "추가적인 servers 파일" @@ -596,7 +608,7 @@ msgstr "주소 설정이 유효하지 않음" msgid "Address to access local relay bridge" msgstr "로컬 릴레이 브릿지에 액세스하는 주소" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:289 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:291 msgid "Addresses" msgstr "주소" @@ -629,7 +641,7 @@ msgstr "" msgid "Aggregate Originator Messages" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:27 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:28 msgid "Aggregate Transmit Power (ACTATP)" msgstr "전송 전력 집계 (ACTATP)" @@ -666,17 +678,17 @@ msgstr "" msgid "Alias of \"%s\"" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:427 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:432 msgid "All servers" msgstr "모든 서버" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:378 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:383 msgid "" "Allocate IP addresses sequentially, starting from the lowest available " "address." msgstr "이용 가능한 가장 낮은 주소부터 순차적으로 IP 주소를 할당합니다." -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:377 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:382 msgid "Allocate IPs sequentially" msgstr "순차적으로 IP 할당" @@ -704,7 +716,7 @@ msgstr "이전 802.11b 비율 허용" msgid "Allow listed only" msgstr "목록의 주소만 허용" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:306 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:311 msgid "Allow localhost" msgstr "localhost 허용" @@ -748,7 +760,7 @@ msgstr "항상 끄기 (kernel: none)" msgid "Always on (kernel: default-on)" msgstr "항상 켜기 (kernel: default-on)" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:538 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:543 msgid "Always send DHCP Options. Sometimes needed, with e.g. PXELinux." msgstr "" @@ -777,7 +789,7 @@ msgid "An optional, short description for this device" msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1484 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:20 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:21 msgid "Annex" msgstr "" @@ -891,7 +903,7 @@ msgstr "모든 패킷" msgid "Any zone" msgstr "모든 영역" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:532 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:537 msgid "Apply DHCP Options to this net. (Empty = all clients)." msgstr "" @@ -982,11 +994,11 @@ msgstr "" msgid "Authentication Type" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:265 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:267 msgid "Authoritative" msgstr "" -#: modules/luci-base/luasrc/view/sysauth.htm:17 +#: modules/luci-base/ucode/template/sysauth.ut:17 #: themes/luci-theme-bootstrap/htdocs/luci-static/resources/view/bootstrap/sysauth.js:11 msgid "Authorization Required" msgstr "인증이 필요합니다" @@ -1056,7 +1068,7 @@ msgstr "평균:" msgid "Avoid Bridge Loops" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:388 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:393 msgid "" "Avoid uselessly triggering dial-on-demand links (filters SRV/SOA records and " "names with underscores)." @@ -1091,10 +1103,6 @@ msgstr "뒤로" msgid "Back to Overview" msgstr "개요로 이동" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:48 -msgid "Back to configuration" -msgstr "설정으로 돌아가기" - #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:826 msgid "Back to peer configuration" msgstr "" @@ -1108,7 +1116,6 @@ msgid "Backup / Flash Firmware" msgstr "펌웨어 백업 / 플래시" #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:351 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:12 msgid "Backup file list" msgstr "" @@ -1150,7 +1157,6 @@ msgid "Beacon Interval" msgstr "비컨 간격" #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:352 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:46 msgid "" "Below is the determined list of files to backup. It consists of changed " "configuration files marked by opkg, essential base files and the user " @@ -1164,7 +1170,7 @@ msgstr "" msgid "Bind NTP server" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:326 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:331 msgid "Bind dynamically to interfaces rather than wildcard address." msgstr "" @@ -1180,6 +1186,17 @@ msgstr "" msgid "Bind interface" msgstr "" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:595 +msgid "" +"Bind service records to a domain name: specify the location of services." +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:556 +msgid "" +"Bind service records to a domain name: specify the location of services. See " +"<a href=\"%s\">RFC2782</a>." +msgstr "" + #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:59 #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:64 #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:64 @@ -1282,6 +1299,10 @@ msgstr "" msgid "CLAT configuration failed" msgstr "" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:574 +msgid "CNAME or fqdn" +msgstr "" + #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/processes.js:72 msgid "CPU usage (%)" msgstr "CPU 사용량 (%)" @@ -1529,17 +1550,13 @@ msgid "" "persist connection" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:49 -msgid "Close list..." -msgstr "목록 닫기..." - #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:44 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:63 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2184 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:391 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:352 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:355 -#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:72 +#: themes/luci-theme-material/ucode/template/themes/material/header.ut:66 msgid "Collecting data..." msgstr "데이터 수집 중..." @@ -1574,6 +1591,10 @@ msgstr "" msgid "Compute outgoing checksum (optional)." msgstr "" +#: protocols/luci-proto-nebula/htdocs/luci-static/resources/protocol/nebula.js:40 +msgid "Config File" +msgstr "" + #: modules/luci-base/htdocs/luci-static/resources/ui.js:4375 #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:454 msgid "Configuration" @@ -1613,8 +1634,8 @@ msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:764 msgid "" -"Configures the operation mode of the <abbr title=\"Router " -"Advertisement\">RA</abbr> service on this interface." +"Configures the operation mode of the <abbr title=\"Router Advertisement" +"\">RA</abbr> service on this interface." msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:879 @@ -1789,8 +1810,8 @@ msgstr "사용자 지정 플래시 간격 (kernel: timer)" #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/leds.js:59 msgid "" -"Customizes the behaviour of the device <abbr title=\"Light Emitting " -"Diode\">LED</abbr>s if possible." +"Customizes the behaviour of the device <abbr title=\"Light Emitting Diode" +"\">LED</abbr>s if possible." msgstr "" "가능하다면 <abbr title=\"Light Emitting Diode\">LED</abbr> 의 동작을 직접 지" "정 할 수 있습니다." @@ -1811,7 +1832,7 @@ msgstr "" msgid "DAE-Secret" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:525 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:530 msgid "DHCP Options" msgstr "DHCP 옵션" @@ -1851,11 +1872,11 @@ msgstr "DHCPv6 서비스" msgid "DNS" msgstr "DNS" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:282 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:284 msgid "DNS forwardings" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:445 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:450 msgid "DNS query port" msgstr "<abbr title=\"Domain Name System\">DNS</abbr> 쿼리 포트" @@ -1863,7 +1884,7 @@ msgstr "<abbr title=\"Domain Name System\">DNS</abbr> 쿼리 포트" msgid "DNS search domains" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:438 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:443 msgid "DNS server port" msgstr "<abbr title=\"Domain Name System\">DNS</abbr> 서버 포트" @@ -1879,11 +1900,11 @@ msgstr "" msgid "DNS-Label / FQDN" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:397 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:402 msgid "DNSSEC" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:402 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:407 msgid "DNSSEC check unsigned" msgstr "" @@ -1896,11 +1917,11 @@ msgid "DS-Lite AFTR address" msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1481 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:44 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:45 msgid "DSL" msgstr "DSL" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:14 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:15 msgid "DSL Status" msgstr "" @@ -1913,12 +1934,12 @@ msgid "DTIM Interval" msgstr "DTIM 간격" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:59 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:700 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:771 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:136 msgid "DUID" msgstr "DUID" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:21 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:22 msgid "Data Rate" msgstr "" @@ -2123,8 +2144,8 @@ msgid "" "Disable <abbr title=\"Dynamic Host Configuration Protocol\">DHCP</abbr> for " "this interface." msgstr "" -"이 인터페이스에 대해 <abbr title=\"Dynamic Host Configuration " -"Protocol\">DHCP</abbr> 기능을 비활성화합니다." +"이 인터페이스에 대해 <abbr title=\"Dynamic Host Configuration Protocol" +"\">DHCP</abbr> 기능을 비활성화합니다." #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:174 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:375 @@ -2166,7 +2187,7 @@ msgstr "" msgid "Disassociate On Low Acknowledgement" msgstr "낮은 ACK에서 연결 해제" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:302 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:307 msgid "" "Discard upstream responses containing <a href=\"%s\">RFC1918</a> addresses." msgstr "" @@ -2212,7 +2233,7 @@ msgstr "" msgid "Distributed ARP Table" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:543 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:548 msgid "" "Dnsmasq instance to which this boot section is bound. If unspecified, the " "section is valid for all dnsmasq instances." @@ -2220,15 +2241,15 @@ msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:246 msgid "" -"Dnsmasq is a lightweight <abbr title=\"Dynamic Host Configuration " -"Protocol\">DHCP</abbr> server and <abbr title=\"Domain Name System\">DNS</" -"abbr> forwarder." +"Dnsmasq is a lightweight <abbr title=\"Dynamic Host Configuration Protocol" +"\">DHCP</abbr> server and <abbr title=\"Domain Name System\">DNS</abbr> " +"forwarder." msgstr "" "Dnsmasq는 <abbr title=\"Network Address Translation\">NAT</abbr> 방화벽을 위" "한 <abbr title=\"Dynamic Host Configuration Protocol\">DHCP</abbr> 서버와 " "<abbr title=\"Domain Name System\">DNS</abbr> 포워딩 기능을 제공합니다." -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:414 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:419 msgid "Do not cache negative replies, e.g. for non-existent domains." msgstr "" @@ -2240,15 +2261,15 @@ msgstr "" msgid "Do not create host route to peer (optional)." msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:262 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:264 msgid "Do not forward DNS queries without dots or domain parts." msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:383 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:388 msgid "Do not forward reverse lookups for local networks." msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:339 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:344 msgid "Do not listen on the specified interfaces." msgstr "" @@ -2301,15 +2322,16 @@ msgstr "" msgid "Do you want to replace the current keys?" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:593 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:606 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:664 msgid "Domain" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:261 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:263 msgid "Domain required" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:311 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:316 msgid "Domain whitelist" msgstr "" @@ -2547,7 +2569,7 @@ msgstr "NTP 클라이언트 활성화" msgid "Enable Single DES" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:480 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:485 msgid "Enable TFTP server" msgstr "TFTP 서버 활성화" @@ -2565,13 +2587,13 @@ msgstr "" #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/uhttpd.js:14 msgid "" -"Enable automatic redirection of <abbr title=\"Hypertext Transfer " -"Protocol\">HTTP</abbr> requests to <abbr title=\"Hypertext Transfer Protocol " -"Secure\">HTTPS</abbr> port." +"Enable automatic redirection of <abbr title=\"Hypertext Transfer Protocol" +"\">HTTP</abbr> requests to <abbr title=\"Hypertext Transfer Protocol Secure" +"\">HTTPS</abbr> port." msgstr "" -"<abbr title=\"Hypertext Transfer Protocol\">HTTP</abbr> 요청을 <abbr " -"title=\"Hypertext Transfer Protocol Secure\">HTTPS</abbr> 포트로의 자동 리디" -"렉션을 활성화합니다." +"<abbr title=\"Hypertext Transfer Protocol\">HTTP</abbr> 요청을 <abbr title=" +"\"Hypertext Transfer Protocol Secure\">HTTPS</abbr> 포트로의 자동 리디렉션을 " +"활성화합니다." #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:977 msgid "" @@ -2633,7 +2655,7 @@ msgstr "" msgid "Enable the DF (Don't Fragment) flag of the encapsulating packets." msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:481 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:486 msgid "Enable the built-in single-instance TFTP server." msgstr "" @@ -2750,7 +2772,7 @@ msgstr "" msgid "Error getting PublicKey" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:29 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:30 msgid "Errored seconds (ES)" msgstr "" @@ -2772,11 +2794,11 @@ msgstr "" msgid "Every second (fast, 1)" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:338 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:343 msgid "Exclude interfaces" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:307 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:312 msgid "" "Exempt <code>127.0.0.0/8</code> and <code>::1</code> from rebinding checks, " "e.g. for RBL services." @@ -2788,7 +2810,7 @@ msgstr "" msgid "Existing device" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:409 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:414 msgid "Expand hosts" msgstr "" @@ -2922,7 +2944,7 @@ msgstr "" msgid "File" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:418 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:423 msgid "" "File listing upstream resolvers, optionally domain-specific, e.g. " "<code>server=1.2.3.4</code>, <code>server=/domain/1.2.3.4</code>." @@ -2932,22 +2954,22 @@ msgstr "" msgid "File not accessible" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:349 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:354 msgid "File to store DHCP lease information." msgstr "" "<abbr title=\"Dynamic Host Configuration Protocol\">DHCP</abbr> 임대 할당 정" "보를 저장할 파일." -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:357 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:362 msgid "File with upstream resolvers." msgstr "" #: modules/luci-base/htdocs/luci-static/resources/ui.js:2846 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:507 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:512 msgid "Filename" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:493 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:498 msgid "Filename of the boot image advertised to clients." msgstr "" @@ -2956,11 +2978,11 @@ msgstr "" msgid "Filesystem" msgstr "파일 시스템" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:382 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:387 msgid "Filter private" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:387 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:392 msgid "Filter useless" msgstr "" @@ -3026,7 +3048,7 @@ msgstr "펌웨어 파일" msgid "Firmware Version" msgstr "펌웨어 버전" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:446 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:451 msgid "Fixed source port for outbound DNS queries." msgstr "" @@ -3052,7 +3074,7 @@ msgstr "플래시 작업" msgid "Flashing…" msgstr "플래시 중…" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:537 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:542 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:686 msgid "Force" msgstr "강제하기" @@ -3097,16 +3119,16 @@ msgstr "" msgid "Force use of NAT-T" msgstr "" -#: modules/luci-base/luasrc/view/csrftoken.htm:8 +#: modules/luci-base/ucode/template/csrftoken.ut:8 msgid "Form token mismatch" msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:919 msgid "" -"Forward <abbr title=\"Neighbour Discovery Protocol\">NDP</abbr> <abbr " -"title=\"Neighbour Solicitation, Type 135\">NS</abbr> and <abbr " -"title=\"Neighbour Advertisement, Type 136\">NA</abbr> messages between the " -"designated master interface and downstream interfaces." +"Forward <abbr title=\"Neighbour Discovery Protocol\">NDP</abbr> <abbr title=" +"\"Neighbour Solicitation, Type 135\">NS</abbr> and <abbr title=\"Neighbour " +"Advertisement, Type 136\">NA</abbr> messages between the designated master " +"interface and downstream interfaces." msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:770 @@ -3126,7 +3148,7 @@ msgid "" "downstream interfaces." msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:28 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:29 msgid "Forward Error Correction Seconds (FECS)" msgstr "" @@ -3283,15 +3305,15 @@ msgstr "전역 설정" msgid "Global network options" msgstr "전역 네트워크 옵션" -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:82 -#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:89 -#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:74 +#: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/header.ut:70 +#: themes/luci-theme-material/ucode/template/themes/material/header.ut:84 +#: themes/luci-theme-openwrt-2020/ucode/template/themes/openwrt2020/header.ut:67 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:92 msgid "Go to firmware upgrade..." msgstr "" -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:72 -#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:64 +#: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/header.ut:60 +#: themes/luci-theme-openwrt-2020/ucode/template/themes/openwrt2020/header.ut:57 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:82 msgid "Go to password configuration..." msgstr "암호 설정으로 이동..." @@ -3432,7 +3454,7 @@ msgstr "" msgid "Hang Up" msgstr "중단" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:33 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:34 msgid "Header Error Code Errors (HEC)" msgstr "Header Error Code Errors (HEC)" @@ -3484,7 +3506,7 @@ msgstr "호스트" msgid "Host expiry timeout" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:508 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:513 msgid "Host requests this filename from the boot server." msgstr "" @@ -3493,8 +3515,8 @@ msgid "Host-Uniq tag content" msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:38 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:559 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:607 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:630 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:678 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/10_system.js:54 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:87 #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:135 @@ -3509,7 +3531,7 @@ msgstr "DHCP 요청시 전달할 호스트이름" msgid "Hostnames" msgstr "호스트 이름" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:551 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:622 msgid "" "Hostnames are used to bind a domain name to an IP address. This setting is " "redundant for hostnames already configured with static leases, but it can be " @@ -3573,7 +3595,7 @@ msgstr "" msgid "IP Protocol" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:258 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:260 msgid "IP Sets" msgstr "" @@ -3581,7 +3603,7 @@ msgstr "" msgid "IP Type" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:563 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:634 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:178 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:204 msgid "IP address" @@ -3607,15 +3629,15 @@ msgctxt "nft meta l4proto" msgid "IP protocol" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:589 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:660 msgid "IP set" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:295 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:300 msgid "IP sets" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:432 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:437 msgid "IPs to override with NXDOMAIN" msgstr "" @@ -3657,7 +3679,7 @@ msgstr "IPv4 업스트림" #: modules/luci-base/htdocs/luci-static/resources/protocol/static.js:178 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:39 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:665 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:736 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:88 #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:164 msgid "IPv4 address" @@ -3828,7 +3850,7 @@ msgstr "" msgid "IPv6 suffix" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:706 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:777 msgid "IPv6 suffix (hex)" msgstr "" "<abbr title=\"Internet Protocol Version 6\">IPv6</abbr>-접미사 (16진수)" @@ -3921,13 +3943,13 @@ msgstr "체크하지 않을 경우, 사용하도록 권장된 DNS 주소는 무 #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:340 msgid "" "If your physical memory is insufficient unused data can be temporarily " -"swapped to a swap-device resulting in a higher amount of usable <abbr " -"title=\"Random Access Memory\">RAM</abbr>. Be aware that swapping data is a " -"very slow process as the swap-device cannot be accessed with the high " -"datarates of the <abbr title=\"Random Access Memory\">RAM</abbr>." +"swapped to a swap-device resulting in a higher amount of usable <abbr title=" +"\"Random Access Memory\">RAM</abbr>. Be aware that swapping data is a very " +"slow process as the swap-device cannot be accessed with the high datarates " +"of the <abbr title=\"Random Access Memory\">RAM</abbr>." msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:363 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:368 msgid "Ignore <code>/etc/hosts</code>" msgstr "<code>/etc/hosts</code> 파일 무시" @@ -3935,7 +3957,7 @@ msgstr "<code>/etc/hosts</code> 파일 무시" msgid "Ignore interface" msgstr "인터페이스 무시" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:352 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:357 msgid "Ignore resolv file" msgstr "resolve 파일 무시" @@ -3983,7 +4005,7 @@ msgid "" "order to avoid broadcast loops that can bring the entire LAN to a standstill." msgstr "" -#: modules/luci-base/luasrc/view/csrftoken.htm:13 +#: modules/luci-base/ucode/template/csrftoken.ut:13 msgid "" "In order to prevent unauthorized access to the system, your request has been " "blocked. Click \"Continue »\" below to return to the previous page." @@ -4092,7 +4114,7 @@ msgstr "" msgid "Install protocol extensions..." msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:542 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:547 msgid "Instance" msgstr "" @@ -4179,10 +4201,6 @@ msgstr "인터페이스" msgid "Internal" msgstr "" -#: modules/luci-base/luasrc/view/error500.htm:8 -msgid "Internal Server Error" -msgstr "" - #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:285 msgid "Interval For Sending Learning Packets" msgstr "" @@ -4251,8 +4269,8 @@ msgstr "" msgid "Invalid hexadecimal value" msgstr "" -#: modules/luci-base/luasrc/view/sysauth.htm:12 -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/sysauth.htm:37 +#: modules/luci-base/ucode/template/sysauth.ut:12 +#: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/sysauth.ut:32 msgid "Invalid username and/or password! Please try again." msgstr "" @@ -4274,8 +4292,8 @@ msgid "" "flash memory, please verify the image file!" msgstr "" -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:89 -#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:96 +#: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/header.ut:77 +#: themes/luci-theme-material/ucode/template/themes/material/header.ut:91 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:72 msgid "JavaScript required!" msgstr "" @@ -4408,11 +4426,17 @@ msgstr "언어" msgid "Language and Style" msgstr "언어와 스타일" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:560 +msgid "" +"Larger weights (of the same prio) are given a proportionately higher " +"probability of being selected." +msgstr "" + #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:575 msgid "Last member interval" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:23 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:24 msgid "Latency" msgstr "" @@ -4428,11 +4452,11 @@ msgstr "" msgid "Learn routes" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:348 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:353 msgid "Lease file" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:697 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:768 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:679 msgid "Lease time" msgstr "임대 시간" @@ -4476,19 +4500,19 @@ msgstr "" msgid "Limit" msgstr "제한" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:24 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:25 msgid "Line Attenuation (LATN)" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:18 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:19 msgid "Line Mode" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:17 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:18 msgid "Line State" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:19 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:20 msgid "Line Uptime" msgstr "회선 가동 시간" @@ -4509,12 +4533,12 @@ msgctxt "nft @ll,off,len" msgid "Link layer header bits %d-%d" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:433 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:438 msgid "List of IP addresses to convert into NXDOMAIN responses." msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:296 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:581 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:301 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:652 msgid "List of IP sets to populate with the specified domain IPs." msgstr "" @@ -4540,15 +4564,11 @@ msgstr "" msgid "List of SSH key files for auth" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:312 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:317 msgid "List of domains to allow RFC1918 responses for." msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:290 -msgid "List of domains to force to an IP address." -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:283 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:285 msgid "List of upstream resolvers to forward queries to." msgstr "" @@ -4556,7 +4576,7 @@ msgstr "" msgid "Listen Port" msgstr "접근 포트" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:332 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:337 msgid "Listen interfaces" msgstr "" @@ -4565,7 +4585,7 @@ msgid "Listen only on the given interface or, if unspecified, on all" msgstr "" "지정한 인터페이스에만 리스닝 하며 미 지정시 모든 인터페이스에 적용됩니다" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:333 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:338 msgid "" "Listen only on the specified interfaces, and loopback if not excluded " "explicitly." @@ -4575,7 +4595,7 @@ msgstr "" msgid "ListenPort setting is invalid" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:439 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:444 msgid "Listening port for inbound DNS queries." msgstr "" @@ -4602,9 +4622,9 @@ msgid "Loading directory contents…" msgstr "" #: modules/luci-base/htdocs/luci-static/resources/luci.js:1942 -#: modules/luci-base/luasrc/view/view.htm:4 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:12 -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/sysauth.htm:45 +#: modules/luci-base/ucode/template/view.ut:4 +#: modules/luci-mod-status/ucode/template/admin_status/index.ut:12 +#: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/sysauth.ut:40 msgid "Loading view…" msgstr "" @@ -4662,19 +4682,19 @@ msgstr "지역 시간" msgid "Local ULA" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:273 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:275 msgid "Local domain" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:274 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:276 msgid "Local domain suffix appended to DHCP names and hosts file entries." msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:269 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:271 msgid "Local server" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:319 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:324 msgid "Local service only" msgstr "" @@ -4682,7 +4702,7 @@ msgstr "" msgid "Local wireguard key" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:392 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:397 msgid "Localise queries" msgstr "" @@ -4694,7 +4714,7 @@ msgstr "" msgid "Log output level" msgstr "출력할 로그 레벨" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:277 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:279 msgid "Log queries" msgstr "" @@ -4718,8 +4738,8 @@ msgstr "" msgid "Logical network to which the tunnel will be added (bridged) (optional)." msgstr "" -#: modules/luci-base/luasrc/view/sysauth.htm:38 -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/sysauth.htm:41 +#: modules/luci-base/ucode/template/sysauth.ut:38 +#: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/sysauth.ut:36 msgid "Login" msgstr "로그인" @@ -4731,7 +4751,7 @@ msgstr "로그아웃" msgid "Loose filtering" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:31 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:32 msgid "Loss of Signal Seconds (LOSS)" msgstr "" @@ -4739,6 +4759,10 @@ msgstr "" msgid "Lowest leased address as offset from the network address." msgstr "" +#: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/footer.ut:12 +msgid "Lua compatibility mode active" +msgstr "" + #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:48 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:83 msgid "MAC" @@ -4763,7 +4787,7 @@ msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:591 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:40 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:619 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:690 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1164 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2177 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:56 @@ -4822,6 +4846,10 @@ msgstr "" msgid "MTU" msgstr "MTU" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:259 +msgid "MX" +msgstr "" + #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:303 msgid "" "Make sure to clone the root filesystem using something like the commands " @@ -4846,23 +4874,23 @@ msgstr "" msgid "Max <abbr title=\"Router Advertisement\">RA</abbr> interval" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:22 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:23 msgid "Max. Attainable Data Rate (ATTNDR)" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:452 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:457 msgid "Max. DHCP leases" msgstr "" "<abbr title=\"maximal\">최대</abbr> <abbr title=\"Dynamic Host Configuration " "Protocol\">DHCP</abbr> 임대 수" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:459 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:464 msgid "Max. EDNS0 packet size" msgstr "" "<abbr title=\"maximal\">최대</abbr> <abbr title=\"Extension Mechanisms for " "Domain Name System\">EDNS0</abbr> 패킷 크기" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:466 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:471 msgid "Max. concurrent queries" msgstr "<abbr title=\"maximal\">최대</abbr> 동시 처리 쿼리 수" @@ -4874,15 +4902,15 @@ msgstr "" msgid "Maximum allowed Listen Interval" msgstr "최대 허용 Listen 간격" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:453 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:458 msgid "Maximum allowed number of active DHCP leases." msgstr "최대 허용 활성 DHCP 임대 개수" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:467 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:472 msgid "Maximum allowed number of concurrent DNS queries." msgstr "최대 허용 동시 DNS 쿼리 수" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:460 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:465 msgid "Maximum allowed size of EDNS0 UDP packets." msgstr "최대 허용 EDNS.0 UDP 패킷 크기" @@ -4909,7 +4937,7 @@ msgstr "" msgid "Maximum transmit power" msgstr "최대 송신 출력" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:389 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:394 msgid "May prevent VoIP or other services from working." msgstr "" @@ -5223,11 +5251,15 @@ msgstr "" msgid "Name of the tunnel device" msgstr "" -#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:46 +#: themes/luci-theme-openwrt-2020/ucode/template/themes/openwrt2020/header.ut:39 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:50 msgid "Navigation" msgstr "" +#: protocols/luci-proto-nebula/htdocs/luci-static/resources/protocol/nebula.js:10 +msgid "Nebula Network" +msgstr "" + #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:653 msgid "Neighbour cache validity" msgstr "" @@ -5263,7 +5295,7 @@ msgstr "네트워크 유틸리티" msgid "Network address" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:492 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:497 msgid "Network boot image" msgstr "네트워크 boot 이미지" @@ -5303,7 +5335,7 @@ msgstr "" msgid "Network interface" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:531 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:536 msgid "Network-ID" msgstr "" @@ -5311,7 +5343,7 @@ msgstr "" msgid "Never" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:270 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:272 msgid "" "Never forward matching domains and subdomains, resolve from DHCP or hosts " "files only." @@ -5359,9 +5391,9 @@ msgstr "" msgid "No RX signal" msgstr "RX 신호 없음" -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:80 -#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:87 -#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:72 +#: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/header.ut:68 +#: themes/luci-theme-material/ucode/template/themes/material/header.ut:82 +#: themes/luci-theme-openwrt-2020/ucode/template/themes/openwrt2020/header.ut:65 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:90 msgid "" "No changes to settings will be stored and are lost after rebooting. This " @@ -5403,10 +5435,6 @@ msgstr "" msgid "No entries in this directory" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:82 -msgid "No files found" -msgstr "" - #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:833 msgid "" "No fixed interface listening port defined, peers might not be able to " @@ -5442,7 +5470,7 @@ msgstr "" msgid "No more slaves available, can not save interface" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:413 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:418 msgid "No negative cache" msgstr "" @@ -5450,8 +5478,8 @@ msgstr "" msgid "No nftables ruleset loaded." msgstr "" -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:69 -#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:61 +#: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/header.ut:57 +#: themes/luci-theme-openwrt-2020/ucode/template/themes/openwrt2020/header.ut:54 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:79 msgid "No password set!" msgstr "암호 설정을 해주세요!" @@ -5491,7 +5519,7 @@ msgstr "" msgid "Noise" msgstr "노이즈" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:26 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:27 msgid "Noise Margin (SNR)" msgstr "" @@ -5499,11 +5527,11 @@ msgstr "" msgid "Noise:" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:34 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:35 msgid "Non Pre-emptive CRC errors (CRC_P)" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:325 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:330 msgid "Non-wildcard" msgstr "" @@ -5518,7 +5546,7 @@ msgstr "" msgid "Normal" msgstr "" -#: modules/luci-base/luasrc/view/error404.htm:8 +#: modules/luci-base/ucode/template/error404.ut:9 msgid "Not Found" msgstr "" @@ -5568,7 +5596,7 @@ msgstr "" msgid "Number of IGMP membership reports" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:474 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:479 msgid "Number of cached DNS entries, 10000 is maximum, 0 is no caching." msgstr "" @@ -5617,7 +5645,7 @@ msgstr "" msgid "On-link" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:672 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:743 msgid "One of hostname or MAC address must be specified!" msgstr "" @@ -5653,7 +5681,6 @@ msgid "Open iptables rules overview…" msgstr "" #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:472 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:19 msgid "Open list..." msgstr "목록 열람..." @@ -5797,18 +5824,23 @@ msgstr "" msgid "Options" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:526 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:531 msgid "" "Options for the Network-ID. (Note: needs also Network-ID.) E.g. " -"\"<code>42,192.168.1.4</code>\" for NTP server, \"<code>3,192.168.4.4</" -"code>\" for default route. <code>0.0.0.0</code> means \"the address of the " -"system running dnsmasq\"." +"\"<code>42,192.168.1.4</code>\" for NTP server, \"<code>3,192.168.4.4</code>" +"\" for default route. <code>0.0.0.0</code> means \"the address of the system " +"running dnsmasq\"." msgstr "" #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:125 msgid "Options:" msgstr "" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:584 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:616 +msgid "Ordinal: lower comes first." +msgstr "" + #: protocols/luci-proto-batman-adv/htdocs/luci-static/resources/protocol/batadv.js:55 msgid "Originator Interval" msgstr "" @@ -6084,13 +6116,13 @@ msgctxt "MACVLAN mode" msgid "Pass-through (Mirror physical device to single MAC VLAN)" msgstr "" -#: modules/luci-base/luasrc/view/sysauth.htm:29 +#: modules/luci-base/ucode/template/sysauth.ut:29 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1690 #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:51 #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:114 #: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:103 #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:58 -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/sysauth.htm:24 +#: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/sysauth.ut:19 msgid "Password" msgstr "암호" @@ -6261,7 +6293,7 @@ msgstr "" msgid "Pkts." msgstr "Pkts." -#: modules/luci-base/luasrc/view/sysauth.htm:19 +#: modules/luci-base/ucode/template/sysauth.ut:19 msgid "Please enter your username and password." msgstr "사용자이름과 암호를 입력해 주세요." @@ -6278,6 +6310,7 @@ msgctxt "Chain hook policy" msgid "Policy: <strong>%h</strong> (%h)" msgstr "" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:579 #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/dropbear.js:21 msgid "Port" msgstr "포트" @@ -6294,11 +6327,11 @@ msgstr "포트 상태:" msgid "Potential negation of: %s" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:37 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:38 msgid "Power Management Mode" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:35 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:36 msgid "Pre-emptive CRC errors (CRCP_P)" msgstr "" @@ -6371,6 +6404,8 @@ msgid "Primary becomes active slave whenever it comes back up (always, 0)" msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:508 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:584 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:616 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:129 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:197 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:223 @@ -6491,7 +6526,7 @@ msgstr "" msgid "Quality" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:428 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:433 msgid "Query all available upstream resolvers." msgstr "" @@ -6573,7 +6608,7 @@ msgstr "" msgid "Raw hex-encoded bytes. Leave empty unless your ISP require this" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:345 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:350 msgid "Read <code>/etc/ethers</code> to configure the DHCP server." msgstr "" "<code>/etc/ethers</code> 파일을 읽어 <abbr title=\"Dynamic Host " @@ -6591,7 +6626,7 @@ msgstr "실시간 그래프" msgid "Reassociation Deadline" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:301 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:306 msgid "Rebind protection" msgstr "" @@ -6676,6 +6711,7 @@ msgid "" msgstr "" #: modules/luci-compat/luasrc/model/network/proto_relay.lua:153 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:611 #: protocols/luci-proto-relay/htdocs/luci-static/resources/protocol/relay.js:39 msgid "Relay" msgstr "" @@ -6766,6 +6802,10 @@ msgstr "특정 ISP 들에 요구됨. 예: Charter (DOCSIS 3 기반)" msgid "Required. Base64-encoded private key for this interface." msgstr "" +#: protocols/luci-proto-nebula/htdocs/luci-static/resources/protocol/nebula.js:40 +msgid "Required. Path to the .yml config file for this interface." +msgstr "" + #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:587 msgid "Required. Public key of the WireGuard peer." msgstr "" @@ -6847,7 +6887,7 @@ msgid "Reselection policy for primary slave" msgstr "" #: modules/luci-base/htdocs/luci-static/resources/luci.js:2197 -#: modules/luci-base/luasrc/view/sysauth.htm:39 +#: modules/luci-base/ucode/template/sysauth.ut:39 #: modules/luci-compat/luasrc/view/cbi/delegator.htm:17 #: modules/luci-compat/luasrc/view/cbi/footer.htm:30 #: modules/luci-compat/luasrc/view/cbi/simpleform.htm:66 @@ -6866,10 +6906,14 @@ msgstr "기본값으로 초기화" msgid "Resolv and Hosts Files" msgstr "Resolv 와 Hosts 파일" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:356 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:361 msgid "Resolv file" msgstr "Resolve 파일" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:292 +msgid "Resolve specified FQDNs to an IP." +msgstr "" + #: modules/luci-base/htdocs/luci-static/resources/rpc.js:405 msgid "Resource not found" msgstr "리소스 찾을 수 없음" @@ -6896,7 +6940,7 @@ msgstr "복구" msgid "Restore backup" msgstr "백업 복구" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:393 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:398 msgid "" "Return answers to DNS queries matching the subnet from which the query was " "received if multiple IPs are available." @@ -6982,7 +7026,7 @@ msgstr "" msgid "Robustness" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:486 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:491 msgid "" "Root directory for files served via TFTP. <em>Enable TFTP server</em> and " "<em>TFTP server root</em> turn on the TFTP server and serve files from " @@ -7088,6 +7132,11 @@ msgstr "SHA256" msgid "SNR" msgstr "" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:258 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:569 +msgid "SRV" +msgstr "" + #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/dropbear.js:10 #: modules/luci-mod-system/root/usr/share/luci/menu.d/luci-mod-system.json:38 msgid "SSH Access" @@ -7229,11 +7278,11 @@ msgstr "" msgid "Server" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:519 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:524 msgid "Server address" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:513 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:518 msgid "Server name" msgstr "" @@ -7321,7 +7370,7 @@ msgstr "" msgid "Setup routes for proxied IPv6 neighbours." msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:30 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:31 msgid "Severely Errored Seconds (SES)" msgstr "" @@ -7335,7 +7384,6 @@ msgid "Short Preamble" msgstr "" #: 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 msgid "Show current backup file list" msgstr "현재 백업 파일 목록 보기" @@ -7369,7 +7417,7 @@ msgstr "신호" msgid "Signal / Noise" msgstr "신호 / 노이즈" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:25 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:26 msgid "Signal Attenuation (SATN)" msgstr "신호 감쇠 (SATN)" @@ -7386,7 +7434,7 @@ msgstr "신호:" msgid "Size" msgstr "크기" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:473 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:478 msgid "Size of DNS query cache" msgstr "DNS 쿼리 캐시 크기" @@ -7403,12 +7451,12 @@ msgstr "건너뛰기" msgid "Skip from backup files that are equal to those in /rom" msgstr "" -#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:42 +#: themes/luci-theme-openwrt-2020/ucode/template/themes/openwrt2020/header.ut:35 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:46 msgid "Skip to content" msgstr "" -#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:41 +#: themes/luci-theme-openwrt-2020/ucode/template/themes/openwrt2020/header.ut:34 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:45 msgid "Skip to navigation" msgstr "" @@ -7426,14 +7474,10 @@ msgstr "소프트웨어 VLAN" msgid "Some fields are invalid, cannot save values!" msgstr "일부 필드가 올바르지 않아, 값을 저장할 수 없습니다!" -#: modules/luci-base/luasrc/view/error404.htm:9 +#: modules/luci-base/ucode/template/error404.ut:10 msgid "Sorry, the object you requested was not found." msgstr "죄송합니다, 요청하신 객체를 찾을 수 없습니다." -#: modules/luci-base/luasrc/view/error500.htm:9 -msgid "Sorry, the server encountered an unexpected error." -msgstr "죄송합니다, 서버가 예상치 못한 오류에 걸렸습니다." - #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:442 msgid "" "Sorry, there is no sysupgrade support present; a new firmware image must be " @@ -7471,7 +7515,7 @@ msgctxt "nft ip sport" msgid "Source port" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:500 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:505 msgid "" "Special <abbr title=\"Preboot eXecution Environment\">PXE</abbr> boot " "options for Dnsmasq." @@ -7841,7 +7885,7 @@ msgstr "정적 임대" msgid "Static address" msgstr "정적 주소" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:598 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:669 msgid "" "Static leases are used to assign fixed IP addresses and symbolic hostnames " "to DHCP clients. They are also required for non-dynamic interface " @@ -7858,7 +7902,7 @@ msgstr "" #: modules/luci-base/root/usr/share/luci/menu.d/luci-base.json:16 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:541 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:929 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:9 +#: modules/luci-mod-status/ucode/template/admin_status/index.ut:9 msgid "Status" msgstr "상태" @@ -7884,7 +7928,7 @@ msgstr "" msgid "Strict filtering" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:422 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:427 msgid "Strict order" msgstr "Strict order" @@ -7897,11 +7941,11 @@ msgstr "" msgid "Submit" msgstr "제출하기" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:372 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:377 msgid "Suppress logging" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:373 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:378 msgid "Suppress logging of the routine operation for the DHCP protocol." msgstr "" @@ -7956,6 +8000,14 @@ msgstr "" msgid "Sync with browser" msgstr "브라우저 시간대로 동기화" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:293 +msgid "Syntax: <code>/fqdn[/fqdn…]/[ipaddr]</code>." +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:569 +msgid "Syntax: <code>_service._proto.example.com</code>." +msgstr "" + #: modules/luci-base/root/usr/share/luci/menu.d/luci-base.json:26 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/10_system.js:17 #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:113 @@ -7981,9 +8033,9 @@ msgstr "시스템 정보" msgid "System log buffer size" msgstr "시스템 로그 버퍼 크기" -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:79 -#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:86 -#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:71 +#: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/header.ut:67 +#: themes/luci-theme-material/ucode/template/themes/material/header.ut:81 +#: themes/luci-theme-openwrt-2020/ucode/template/themes/openwrt2020/header.ut:64 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:89 msgid "System running in recovery (initramfs) mode." msgstr "" @@ -8012,7 +8064,7 @@ msgstr "" msgid "TCP:" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:485 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:490 msgid "TFTP server root" msgstr "TFTP 서버 root" @@ -8037,6 +8089,7 @@ msgstr "" msgid "Table" msgstr "" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:574 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:56 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:66 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:187 @@ -8107,15 +8160,15 @@ msgid "" "username instead of the user ID!" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:681 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:752 msgid "The IP address %h is already used by another static lease" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:690 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:761 msgid "The IP address is outside of any DHCP pool address range" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:520 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:525 msgid "The IP address of the boot server" msgstr "" @@ -8289,7 +8342,7 @@ msgid "" "to be received and retransmitted which costs airtime)" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:514 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:519 msgid "The hostname of the boot server" msgstr "" @@ -8376,8 +8429,8 @@ msgstr "네트워크 이름이 이미 사용 중입니다" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:139 msgid "" -"The network ports on this device can be combined to several <abbr " -"title=\"Virtual Local Area Network\">VLAN</abbr>s in which computers can " +"The network ports on this device can be combined to several <abbr title=" +"\"Virtual Local Area Network\">VLAN</abbr>s in which computers can " "communicate directly with each other. <abbr title=\"Virtual Local Area " "Network\">VLAN</abbr>s are often used to separate different network " "segments. Often there is by default one Uplink port for a connection to the " @@ -8433,7 +8486,7 @@ msgstr "" msgid "The selected %s mode is incompatible with %s encryption" msgstr "선택된 %s 모드는 %s 암호화 방식과 호환되지 않습니다" -#: modules/luci-base/luasrc/view/csrftoken.htm:11 +#: modules/luci-base/ucode/template/csrftoken.ut:11 msgid "The submitted security token is invalid or already expired!" msgstr "전송된 보안 토큰이 잘못되었거나 이미 만료되었습니다!" @@ -8515,8 +8568,8 @@ msgid "" "nftables rules is discouraged and may lead to incomplete traffic filtering." msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:746 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:778 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:817 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:849 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:130 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:179 #, fuzzy @@ -8527,8 +8580,8 @@ msgstr "활성화 되어 있는 임대 없음" msgid "There are no changes to apply" msgstr "변경된 사항이 없습니다" -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:70 -#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:62 +#: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/header.ut:58 +#: themes/luci-theme-openwrt-2020/ucode/template/themes/openwrt2020/header.ut:55 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:80 msgid "" "There is no password set on this router. Please configure a root password to " @@ -8551,7 +8604,6 @@ msgid "This does not look like a valid PEM file" msgstr "" #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:454 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:16 msgid "" "This is a list of shell glob patterns for matching files and directories to " "include during sysupgrade. Modified files in /etc/config/ and certain other " @@ -8592,7 +8644,7 @@ msgid "" "ends with <code>...:2/64</code>" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:266 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:268 msgid "This is the only DHCP server in the local network." msgstr "" @@ -8672,8 +8724,8 @@ msgstr "시간대" #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:440 msgid "" "To fully configure the local WireGuard interface from an existing (e.g. " -"provider supplied) configuration file, use the <strong><a class=\"full-" -"import\" href=\"#\">configuration import</a></strong> instead." +"provider supplied) configuration file, use the <strong><a class=\"full-import" +"\" href=\"#\">configuration import</a></strong> instead." msgstr "" #: modules/luci-base/htdocs/luci-static/resources/luci.js:2674 @@ -8838,7 +8890,7 @@ msgstr "" msgid "Unable to determine upstream interface" msgstr "" -#: modules/luci-base/luasrc/view/error404.htm:11 +#: modules/luci-base/ucode/template/error404.ut:12 msgid "Unable to dispatch" msgstr "" @@ -8893,7 +8945,7 @@ msgstr "" msgid "Unable to verify PIN" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:32 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:33 msgid "Unavailable Seconds (UAS)" msgstr "" @@ -9039,7 +9091,7 @@ msgid "" "will be restarted to apply the updated configuration." msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:423 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:428 msgid "Upstream resolvers will be queried in the order of the resolv file." msgstr "" "<abbr title=\"Domain Name System\">DNS</abbr> 서버들이 resolvfile의 순서에 따" @@ -9050,7 +9102,7 @@ msgstr "" msgid "Uptime" msgstr "가동 시간" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:344 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:349 msgid "Use <code>/etc/ethers</code>" msgstr "<code>/etc/ethers</code> 사용" @@ -9161,7 +9213,7 @@ msgstr "" msgid "Use system certificates for inner-tunnel" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:599 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:670 msgid "" "Use the <em>Add</em> Button to add a new lease entry. The <em>MAC address</" "em> identifies the host, the <em>IPv4 address</em> specifies the fixed " @@ -9217,11 +9269,11 @@ msgstr "" msgid "User key (PEM encoded)" msgstr "" -#: modules/luci-base/luasrc/view/sysauth.htm:23 +#: modules/luci-base/ucode/template/sysauth.ut:23 #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:112 #: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:101 #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:56 -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/sysauth.htm:18 +#: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/sysauth.ut:13 msgid "Username" msgstr "사용자이름" @@ -9319,7 +9371,7 @@ msgstr "" msgid "VXLANv6 (RFC7348)" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:398 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:403 msgid "" "Validate DNS replies and cache DNSSEC data, requires upstream to support " "DNSSEC." @@ -9352,7 +9404,7 @@ msgstr "" msgid "Vendor Class to send when requesting DHCP" msgstr "DHCP 요청시 전송할 Vendor Class" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:403 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:408 msgid "Verify unsigned domain responses really come from unsigned domains." msgstr "" @@ -9427,6 +9479,10 @@ msgstr "" msgid "Weak" msgstr "" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:589 +msgid "Weight" +msgstr "" + #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1029 msgid "" "When delegating prefixes to multiple downstreams, interfaces with a higher " @@ -9551,7 +9607,7 @@ msgstr "무선 네트워크가 꺼져 있음" msgid "Wireless network is enabled" msgstr "무선 네트워크가 켜져 있음" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:278 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:280 msgid "Write received DNS queries to syslog." msgstr "받은 DNS 요청 내용을 systlog 에 기록합니다" @@ -9590,8 +9646,16 @@ msgstr "" "와 같은 중요 init script 를 비활성화 할 경우, 장치에 접속을 못하실 수 있습니" "다!</strong>" -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:90 -#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:97 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:559 +msgid "You may add multiple records for the same Target." +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:596 +msgid "You may add multiple records for the same domain." +msgstr "" + +#: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/header.ut:78 +#: themes/luci-theme-material/ucode/template/themes/material/header.ut:92 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:73 msgid "" "You must enable JavaScript in your browser or LuCI will not work properly." @@ -9620,7 +9684,17 @@ msgstr "" msgid "ZRam Size" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:449 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:558 +msgid "_proto: _tcp, _udp, _sctp, _quic, … ." +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:557 +msgid "" +"_service: _sip, _ldap, _imap, _stun, _xmpp-client, … . (Note: while _http is " +"possible, no browsers support SRV records.)" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:454 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:152 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:163 msgid "any" @@ -9731,8 +9805,8 @@ msgstr "" msgid "e.g: dump" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:726 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:756 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:797 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:827 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:101 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:148 msgid "expired" @@ -9945,9 +10019,9 @@ msgstr "유니크 값" msgid "unknown" msgstr "알 수 없는" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:456 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:724 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:754 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:461 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:795 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:825 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:99 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:146 msgid "unlimited" @@ -10166,6 +10240,15 @@ msgstr "" msgid "« Back" msgstr "« 이전" +#~ msgid "Back to configuration" +#~ msgstr "설정으로 돌아가기" + +#~ msgid "Close list..." +#~ msgstr "목록 닫기..." + +#~ msgid "Sorry, the server encountered an unexpected error." +#~ msgstr "죄송합니다, 서버가 예상치 못한 오류에 걸렸습니다." + #~ msgid "Root directory for files served via TFTP." #~ msgstr "TFTP 를 통해 제공되는 파일들의 root 디렉토리" @@ -10286,8 +10369,8 @@ msgstr "« 이전" #~ msgstr "" #~ "이 페이지에서는 네트워크 인터페이스를 설정할 수 있습니다. \"Bridge 인터페" #~ "이스\" 항목을 클릭하고, 공백으로 구분된 네트워크 인터페이스들의 이름을 적" -#~ "는 방식으로 여러 인터페이스들을 bridge 할 수 있습니다. 또한 <abbr " -#~ "title=\"Virtual Local Area Network\">VLAN</abbr> 표기법인 <samp>INTERFACE." +#~ "는 방식으로 여러 인터페이스들을 bridge 할 수 있습니다. 또한 <abbr title=" +#~ "\"Virtual Local Area Network\">VLAN</abbr> 표기법인 <samp>INTERFACE." #~ "VLANNR</samp> (<abbr title=\"for example\">예</abbr>: <samp>eth0.1</" #~ "samp>) 를 사용하실 수 있습니다." diff --git a/modules/luci-base/po/mr/base.po b/modules/luci-base/po/mr/base.po index bf8bb95ac6..0071582057 100644 --- a/modules/luci-base/po/mr/base.po +++ b/modules/luci-base/po/mr/base.po @@ -226,6 +226,18 @@ msgstr "" msgid "<abbr title=\"Router Advertisement\">RA</abbr>-Service" msgstr "" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:294 +msgid "" +"<code>/#/</code> matches any domain. <code>/example.com/</code> returns " +"NXDOMAIN." +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:295 +msgid "" +"<code>/example.com/#</code> returns NULL addresses (<code>0.0.0.0</code> and " +"<code>::</code>) for example.com and its subdomains." +msgstr "" + #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:87 msgctxt "nft relational \">\" operator expression" msgid "<var>%s</var> greater than <strong>%s</strong>" @@ -383,7 +395,7 @@ msgstr "" msgid "ATM device number" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:36 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:37 msgid "ATU-C System Vendor ID" msgstr "" @@ -393,7 +405,7 @@ msgstr "" msgid "Absent Interface" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:320 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:325 msgid "Accept DNS queries only from hosts whose address is on a local subnet." msgstr "" @@ -532,7 +544,7 @@ msgstr "उदाहरण जोडा" msgid "Add key" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:410 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:415 msgid "Add local domain suffix to names served from hosts files." msgstr "" @@ -553,11 +565,11 @@ msgstr "" msgid "Add to Whitelist" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:367 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:372 msgid "Additional hosts files" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:417 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:422 msgid "Additional servers file" msgstr "" @@ -587,7 +599,7 @@ msgstr "" msgid "Address to access local relay bridge" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:289 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:291 msgid "Addresses" msgstr "" @@ -620,7 +632,7 @@ msgstr "" msgid "Aggregate Originator Messages" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:27 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:28 msgid "Aggregate Transmit Power (ACTATP)" msgstr "" @@ -656,17 +668,17 @@ msgstr "" msgid "Alias of \"%s\"" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:427 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:432 msgid "All servers" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:378 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:383 msgid "" "Allocate IP addresses sequentially, starting from the lowest available " "address." msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:377 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:382 msgid "Allocate IPs sequentially" msgstr "" @@ -694,7 +706,7 @@ msgstr "" msgid "Allow listed only" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:306 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:311 msgid "Allow localhost" msgstr "" @@ -738,7 +750,7 @@ msgstr "" msgid "Always on (kernel: default-on)" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:538 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:543 msgid "Always send DHCP Options. Sometimes needed, with e.g. PXELinux." msgstr "" @@ -765,7 +777,7 @@ msgid "An optional, short description for this device" msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1484 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:20 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:21 msgid "Annex" msgstr "" @@ -879,7 +891,7 @@ msgstr "" msgid "Any zone" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:532 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:537 msgid "Apply DHCP Options to this net. (Empty = all clients)." msgstr "" @@ -969,11 +981,11 @@ msgstr "" msgid "Authentication Type" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:265 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:267 msgid "Authoritative" msgstr "" -#: modules/luci-base/luasrc/view/sysauth.htm:17 +#: modules/luci-base/ucode/template/sysauth.ut:17 #: themes/luci-theme-bootstrap/htdocs/luci-static/resources/view/bootstrap/sysauth.js:11 msgid "Authorization Required" msgstr "" @@ -1043,7 +1055,7 @@ msgstr "" msgid "Avoid Bridge Loops" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:388 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:393 msgid "" "Avoid uselessly triggering dial-on-demand links (filters SRV/SOA records and " "names with underscores)." @@ -1078,10 +1090,6 @@ msgstr "" msgid "Back to Overview" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:48 -msgid "Back to configuration" -msgstr "" - #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:826 msgid "Back to peer configuration" msgstr "" @@ -1095,7 +1103,6 @@ msgid "Backup / Flash Firmware" msgstr "" #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:351 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:12 msgid "Backup file list" msgstr "" @@ -1137,7 +1144,6 @@ msgid "Beacon Interval" msgstr "" #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:352 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:46 msgid "" "Below is the determined list of files to backup. It consists of changed " "configuration files marked by opkg, essential base files and the user " @@ -1148,7 +1154,7 @@ msgstr "" msgid "Bind NTP server" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:326 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:331 msgid "Bind dynamically to interfaces rather than wildcard address." msgstr "" @@ -1164,6 +1170,17 @@ msgstr "" msgid "Bind interface" msgstr "" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:595 +msgid "" +"Bind service records to a domain name: specify the location of services." +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:556 +msgid "" +"Bind service records to a domain name: specify the location of services. See " +"<a href=\"%s\">RFC2782</a>." +msgstr "" + #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:59 #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:64 #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:64 @@ -1266,6 +1283,10 @@ msgstr "" msgid "CLAT configuration failed" msgstr "" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:574 +msgid "CNAME or fqdn" +msgstr "" + #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/processes.js:72 msgid "CPU usage (%)" msgstr "" @@ -1503,17 +1524,13 @@ msgid "" "persist connection" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:49 -msgid "Close list..." -msgstr "" - #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:44 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:63 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2184 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:391 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:352 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:355 -#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:72 +#: themes/luci-theme-material/ucode/template/themes/material/header.ut:66 msgid "Collecting data..." msgstr "डेटा संकलित करीत आहे ..." @@ -1548,6 +1565,10 @@ msgstr "" msgid "Compute outgoing checksum (optional)." msgstr "" +#: protocols/luci-proto-nebula/htdocs/luci-static/resources/protocol/nebula.js:40 +msgid "Config File" +msgstr "" + #: modules/luci-base/htdocs/luci-static/resources/ui.js:4375 #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:454 msgid "Configuration" @@ -1587,8 +1608,8 @@ msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:764 msgid "" -"Configures the operation mode of the <abbr title=\"Router " -"Advertisement\">RA</abbr> service on this interface." +"Configures the operation mode of the <abbr title=\"Router Advertisement" +"\">RA</abbr> service on this interface." msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:879 @@ -1761,8 +1782,8 @@ msgstr "" #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/leds.js:59 msgid "" -"Customizes the behaviour of the device <abbr title=\"Light Emitting " -"Diode\">LED</abbr>s if possible." +"Customizes the behaviour of the device <abbr title=\"Light Emitting Diode" +"\">LED</abbr>s if possible." msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:673 @@ -1781,7 +1802,7 @@ msgstr "" msgid "DAE-Secret" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:525 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:530 msgid "DHCP Options" msgstr "" @@ -1821,11 +1842,11 @@ msgstr "" msgid "DNS" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:282 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:284 msgid "DNS forwardings" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:445 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:450 msgid "DNS query port" msgstr "" @@ -1833,7 +1854,7 @@ msgstr "" msgid "DNS search domains" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:438 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:443 msgid "DNS server port" msgstr "" @@ -1849,11 +1870,11 @@ msgstr "" msgid "DNS-Label / FQDN" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:397 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:402 msgid "DNSSEC" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:402 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:407 msgid "DNSSEC check unsigned" msgstr "" @@ -1866,11 +1887,11 @@ msgid "DS-Lite AFTR address" msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1481 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:44 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:45 msgid "DSL" msgstr "DSL" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:14 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:15 msgid "DSL Status" msgstr "" @@ -1883,12 +1904,12 @@ msgid "DTIM Interval" msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:59 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:700 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:771 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:136 msgid "DUID" msgstr "DUID" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:21 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:22 msgid "Data Rate" msgstr "" @@ -2131,7 +2152,7 @@ msgstr "" msgid "Disassociate On Low Acknowledgement" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:302 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:307 msgid "" "Discard upstream responses containing <a href=\"%s\">RFC1918</a> addresses." msgstr "" @@ -2177,7 +2198,7 @@ msgstr "" msgid "Distributed ARP Table" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:543 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:548 msgid "" "Dnsmasq instance to which this boot section is bound. If unspecified, the " "section is valid for all dnsmasq instances." @@ -2185,12 +2206,12 @@ msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:246 msgid "" -"Dnsmasq is a lightweight <abbr title=\"Dynamic Host Configuration " -"Protocol\">DHCP</abbr> server and <abbr title=\"Domain Name System\">DNS</" -"abbr> forwarder." +"Dnsmasq is a lightweight <abbr title=\"Dynamic Host Configuration Protocol" +"\">DHCP</abbr> server and <abbr title=\"Domain Name System\">DNS</abbr> " +"forwarder." msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:414 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:419 msgid "Do not cache negative replies, e.g. for non-existent domains." msgstr "" @@ -2202,15 +2223,15 @@ msgstr "" msgid "Do not create host route to peer (optional)." msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:262 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:264 msgid "Do not forward DNS queries without dots or domain parts." msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:383 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:388 msgid "Do not forward reverse lookups for local networks." msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:339 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:344 msgid "Do not listen on the specified interfaces." msgstr "" @@ -2263,15 +2284,16 @@ msgstr "" msgid "Do you want to replace the current keys?" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:593 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:606 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:664 msgid "Domain" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:261 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:263 msgid "Domain required" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:311 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:316 msgid "Domain whitelist" msgstr "" @@ -2505,7 +2527,7 @@ msgstr "" msgid "Enable Single DES" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:480 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:485 msgid "Enable TFTP server" msgstr "" @@ -2523,9 +2545,9 @@ msgstr "" #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/uhttpd.js:14 msgid "" -"Enable automatic redirection of <abbr title=\"Hypertext Transfer " -"Protocol\">HTTP</abbr> requests to <abbr title=\"Hypertext Transfer Protocol " -"Secure\">HTTPS</abbr> port." +"Enable automatic redirection of <abbr title=\"Hypertext Transfer Protocol" +"\">HTTP</abbr> requests to <abbr title=\"Hypertext Transfer Protocol Secure" +"\">HTTPS</abbr> port." msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:977 @@ -2588,7 +2610,7 @@ msgstr "" msgid "Enable the DF (Don't Fragment) flag of the encapsulating packets." msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:481 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:486 msgid "Enable the built-in single-instance TFTP server." msgstr "" @@ -2705,7 +2727,7 @@ msgstr "" msgid "Error getting PublicKey" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:29 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:30 msgid "Errored seconds (ES)" msgstr "" @@ -2727,11 +2749,11 @@ msgstr "" msgid "Every second (fast, 1)" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:338 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:343 msgid "Exclude interfaces" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:307 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:312 msgid "" "Exempt <code>127.0.0.0/8</code> and <code>::1</code> from rebinding checks, " "e.g. for RBL services." @@ -2741,7 +2763,7 @@ msgstr "" msgid "Existing device" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:409 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:414 msgid "Expand hosts" msgstr "" @@ -2875,7 +2897,7 @@ msgstr "" msgid "File" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:418 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:423 msgid "" "File listing upstream resolvers, optionally domain-specific, e.g. " "<code>server=1.2.3.4</code>, <code>server=/domain/1.2.3.4</code>." @@ -2885,20 +2907,20 @@ msgstr "" msgid "File not accessible" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:349 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:354 msgid "File to store DHCP lease information." msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:357 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:362 msgid "File with upstream resolvers." msgstr "" #: modules/luci-base/htdocs/luci-static/resources/ui.js:2846 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:507 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:512 msgid "Filename" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:493 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:498 msgid "Filename of the boot image advertised to clients." msgstr "" @@ -2907,11 +2929,11 @@ msgstr "" msgid "Filesystem" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:382 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:387 msgid "Filter private" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:387 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:392 msgid "Filter useless" msgstr "" @@ -2975,7 +2997,7 @@ msgstr "" msgid "Firmware Version" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:446 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:451 msgid "Fixed source port for outbound DNS queries." msgstr "" @@ -3001,7 +3023,7 @@ msgstr "" msgid "Flashing…" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:537 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:542 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:686 msgid "Force" msgstr "" @@ -3046,16 +3068,16 @@ msgstr "" msgid "Force use of NAT-T" msgstr "" -#: modules/luci-base/luasrc/view/csrftoken.htm:8 +#: modules/luci-base/ucode/template/csrftoken.ut:8 msgid "Form token mismatch" msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:919 msgid "" -"Forward <abbr title=\"Neighbour Discovery Protocol\">NDP</abbr> <abbr " -"title=\"Neighbour Solicitation, Type 135\">NS</abbr> and <abbr " -"title=\"Neighbour Advertisement, Type 136\">NA</abbr> messages between the " -"designated master interface and downstream interfaces." +"Forward <abbr title=\"Neighbour Discovery Protocol\">NDP</abbr> <abbr title=" +"\"Neighbour Solicitation, Type 135\">NS</abbr> and <abbr title=\"Neighbour " +"Advertisement, Type 136\">NA</abbr> messages between the designated master " +"interface and downstream interfaces." msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:770 @@ -3075,7 +3097,7 @@ msgid "" "downstream interfaces." msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:28 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:29 msgid "Forward Error Correction Seconds (FECS)" msgstr "" @@ -3232,15 +3254,15 @@ msgstr "" msgid "Global network options" msgstr "" -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:82 -#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:89 -#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:74 +#: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/header.ut:70 +#: themes/luci-theme-material/ucode/template/themes/material/header.ut:84 +#: themes/luci-theme-openwrt-2020/ucode/template/themes/openwrt2020/header.ut:67 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:92 msgid "Go to firmware upgrade..." msgstr "" -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:72 -#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:64 +#: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/header.ut:60 +#: themes/luci-theme-openwrt-2020/ucode/template/themes/openwrt2020/header.ut:57 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:82 msgid "Go to password configuration..." msgstr "" @@ -3381,7 +3403,7 @@ msgstr "" msgid "Hang Up" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:33 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:34 msgid "Header Error Code Errors (HEC)" msgstr "" @@ -3432,7 +3454,7 @@ msgstr "" msgid "Host expiry timeout" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:508 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:513 msgid "Host requests this filename from the boot server." msgstr "" @@ -3441,8 +3463,8 @@ msgid "Host-Uniq tag content" msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:38 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:559 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:607 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:630 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:678 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/10_system.js:54 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:87 #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:135 @@ -3457,7 +3479,7 @@ msgstr "" msgid "Hostnames" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:551 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:622 msgid "" "Hostnames are used to bind a domain name to an IP address. This setting is " "redundant for hostnames already configured with static leases, but it can be " @@ -3521,7 +3543,7 @@ msgstr "" msgid "IP Protocol" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:258 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:260 msgid "IP Sets" msgstr "" @@ -3529,7 +3551,7 @@ msgstr "" msgid "IP Type" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:563 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:634 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:178 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:204 msgid "IP address" @@ -3555,15 +3577,15 @@ msgctxt "nft meta l4proto" msgid "IP protocol" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:589 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:660 msgid "IP set" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:295 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:300 msgid "IP sets" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:432 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:437 msgid "IPs to override with NXDOMAIN" msgstr "" @@ -3604,7 +3626,7 @@ msgstr "" #: modules/luci-base/htdocs/luci-static/resources/protocol/static.js:178 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:39 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:665 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:736 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:88 #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:164 msgid "IPv4 address" @@ -3775,7 +3797,7 @@ msgstr "" msgid "IPv6 suffix" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:706 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:777 msgid "IPv6 suffix (hex)" msgstr "" @@ -3867,13 +3889,13 @@ msgstr "" #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:340 msgid "" "If your physical memory is insufficient unused data can be temporarily " -"swapped to a swap-device resulting in a higher amount of usable <abbr " -"title=\"Random Access Memory\">RAM</abbr>. Be aware that swapping data is a " -"very slow process as the swap-device cannot be accessed with the high " -"datarates of the <abbr title=\"Random Access Memory\">RAM</abbr>." +"swapped to a swap-device resulting in a higher amount of usable <abbr title=" +"\"Random Access Memory\">RAM</abbr>. Be aware that swapping data is a very " +"slow process as the swap-device cannot be accessed with the high datarates " +"of the <abbr title=\"Random Access Memory\">RAM</abbr>." msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:363 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:368 msgid "Ignore <code>/etc/hosts</code>" msgstr "" @@ -3881,7 +3903,7 @@ msgstr "" msgid "Ignore interface" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:352 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:357 msgid "Ignore resolv file" msgstr "" @@ -3929,7 +3951,7 @@ msgid "" "order to avoid broadcast loops that can bring the entire LAN to a standstill." msgstr "" -#: modules/luci-base/luasrc/view/csrftoken.htm:13 +#: modules/luci-base/ucode/template/csrftoken.ut:13 msgid "" "In order to prevent unauthorized access to the system, your request has been " "blocked. Click \"Continue »\" below to return to the previous page." @@ -4038,7 +4060,7 @@ msgstr "" msgid "Install protocol extensions..." msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:542 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:547 msgid "Instance" msgstr "" @@ -4125,10 +4147,6 @@ msgstr "इंटरफेसेस" msgid "Internal" msgstr "" -#: modules/luci-base/luasrc/view/error500.htm:8 -msgid "Internal Server Error" -msgstr "" - #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:285 msgid "Interval For Sending Learning Packets" msgstr "" @@ -4197,8 +4215,8 @@ msgstr "" msgid "Invalid hexadecimal value" msgstr "" -#: modules/luci-base/luasrc/view/sysauth.htm:12 -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/sysauth.htm:37 +#: modules/luci-base/ucode/template/sysauth.ut:12 +#: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/sysauth.ut:32 msgid "Invalid username and/or password! Please try again." msgstr "" @@ -4220,8 +4238,8 @@ msgid "" "flash memory, please verify the image file!" msgstr "" -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:89 -#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:96 +#: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/header.ut:77 +#: themes/luci-theme-material/ucode/template/themes/material/header.ut:91 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:72 msgid "JavaScript required!" msgstr "" @@ -4353,11 +4371,17 @@ msgstr "" msgid "Language and Style" msgstr "" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:560 +msgid "" +"Larger weights (of the same prio) are given a proportionately higher " +"probability of being selected." +msgstr "" + #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:575 msgid "Last member interval" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:23 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:24 msgid "Latency" msgstr "" @@ -4373,11 +4397,11 @@ msgstr "" msgid "Learn routes" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:348 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:353 msgid "Lease file" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:697 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:768 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:679 msgid "Lease time" msgstr "" @@ -4421,19 +4445,19 @@ msgstr "" msgid "Limit" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:24 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:25 msgid "Line Attenuation (LATN)" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:18 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:19 msgid "Line Mode" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:17 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:18 msgid "Line State" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:19 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:20 msgid "Line Uptime" msgstr "" @@ -4454,12 +4478,12 @@ msgctxt "nft @ll,off,len" msgid "Link layer header bits %d-%d" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:433 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:438 msgid "List of IP addresses to convert into NXDOMAIN responses." msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:296 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:581 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:301 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:652 msgid "List of IP sets to populate with the specified domain IPs." msgstr "" @@ -4485,15 +4509,11 @@ msgstr "" msgid "List of SSH key files for auth" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:312 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:317 msgid "List of domains to allow RFC1918 responses for." msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:290 -msgid "List of domains to force to an IP address." -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:283 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:285 msgid "List of upstream resolvers to forward queries to." msgstr "" @@ -4501,7 +4521,7 @@ msgstr "" msgid "Listen Port" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:332 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:337 msgid "Listen interfaces" msgstr "" @@ -4509,7 +4529,7 @@ msgstr "" msgid "Listen only on the given interface or, if unspecified, on all" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:333 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:338 msgid "" "Listen only on the specified interfaces, and loopback if not excluded " "explicitly." @@ -4519,7 +4539,7 @@ msgstr "" msgid "ListenPort setting is invalid" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:439 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:444 msgid "Listening port for inbound DNS queries." msgstr "" @@ -4546,9 +4566,9 @@ msgid "Loading directory contents…" msgstr "" #: modules/luci-base/htdocs/luci-static/resources/luci.js:1942 -#: modules/luci-base/luasrc/view/view.htm:4 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:12 -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/sysauth.htm:45 +#: modules/luci-base/ucode/template/view.ut:4 +#: modules/luci-mod-status/ucode/template/admin_status/index.ut:12 +#: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/sysauth.ut:40 msgid "Loading view…" msgstr "" @@ -4606,19 +4626,19 @@ msgstr "" msgid "Local ULA" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:273 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:275 msgid "Local domain" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:274 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:276 msgid "Local domain suffix appended to DHCP names and hosts file entries." msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:269 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:271 msgid "Local server" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:319 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:324 msgid "Local service only" msgstr "" @@ -4626,7 +4646,7 @@ msgstr "" msgid "Local wireguard key" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:392 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:397 msgid "Localise queries" msgstr "" @@ -4638,7 +4658,7 @@ msgstr "" msgid "Log output level" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:277 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:279 msgid "Log queries" msgstr "" @@ -4662,8 +4682,8 @@ msgstr "" msgid "Logical network to which the tunnel will be added (bridged) (optional)." msgstr "" -#: modules/luci-base/luasrc/view/sysauth.htm:38 -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/sysauth.htm:41 +#: modules/luci-base/ucode/template/sysauth.ut:38 +#: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/sysauth.ut:36 msgid "Login" msgstr "" @@ -4675,7 +4695,7 @@ msgstr "" msgid "Loose filtering" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:31 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:32 msgid "Loss of Signal Seconds (LOSS)" msgstr "" @@ -4683,6 +4703,10 @@ msgstr "" msgid "Lowest leased address as offset from the network address." msgstr "" +#: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/footer.ut:12 +msgid "Lua compatibility mode active" +msgstr "" + #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:48 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:83 msgid "MAC" @@ -4707,7 +4731,7 @@ msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:591 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:40 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:619 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:690 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1164 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2177 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:56 @@ -4766,6 +4790,10 @@ msgstr "" msgid "MTU" msgstr "MTU" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:259 +msgid "MX" +msgstr "" + #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:303 msgid "" "Make sure to clone the root filesystem using something like the commands " @@ -4790,19 +4818,19 @@ msgstr "" msgid "Max <abbr title=\"Router Advertisement\">RA</abbr> interval" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:22 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:23 msgid "Max. Attainable Data Rate (ATTNDR)" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:452 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:457 msgid "Max. DHCP leases" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:459 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:464 msgid "Max. EDNS0 packet size" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:466 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:471 msgid "Max. concurrent queries" msgstr "" @@ -4814,15 +4842,15 @@ msgstr "" msgid "Maximum allowed Listen Interval" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:453 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:458 msgid "Maximum allowed number of active DHCP leases." msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:467 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:472 msgid "Maximum allowed number of concurrent DNS queries." msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:460 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:465 msgid "Maximum allowed size of EDNS0 UDP packets." msgstr "" @@ -4849,7 +4877,7 @@ msgstr "" msgid "Maximum transmit power" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:389 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:394 msgid "May prevent VoIP or other services from working." msgstr "" @@ -5163,11 +5191,15 @@ msgstr "" msgid "Name of the tunnel device" msgstr "" -#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:46 +#: themes/luci-theme-openwrt-2020/ucode/template/themes/openwrt2020/header.ut:39 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:50 msgid "Navigation" msgstr "" +#: protocols/luci-proto-nebula/htdocs/luci-static/resources/protocol/nebula.js:10 +msgid "Nebula Network" +msgstr "" + #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:653 msgid "Neighbour cache validity" msgstr "" @@ -5203,7 +5235,7 @@ msgstr "" msgid "Network address" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:492 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:497 msgid "Network boot image" msgstr "" @@ -5243,7 +5275,7 @@ msgstr "" msgid "Network interface" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:531 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:536 msgid "Network-ID" msgstr "" @@ -5251,7 +5283,7 @@ msgstr "" msgid "Never" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:270 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:272 msgid "" "Never forward matching domains and subdomains, resolve from DHCP or hosts " "files only." @@ -5299,9 +5331,9 @@ msgstr "" msgid "No RX signal" msgstr "" -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:80 -#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:87 -#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:72 +#: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/header.ut:68 +#: themes/luci-theme-material/ucode/template/themes/material/header.ut:82 +#: themes/luci-theme-openwrt-2020/ucode/template/themes/openwrt2020/header.ut:65 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:90 msgid "" "No changes to settings will be stored and are lost after rebooting. This " @@ -5343,10 +5375,6 @@ msgstr "" msgid "No entries in this directory" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:82 -msgid "No files found" -msgstr "" - #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:833 msgid "" "No fixed interface listening port defined, peers might not be able to " @@ -5382,7 +5410,7 @@ msgstr "" msgid "No more slaves available, can not save interface" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:413 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:418 msgid "No negative cache" msgstr "" @@ -5390,8 +5418,8 @@ msgstr "" msgid "No nftables ruleset loaded." msgstr "" -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:69 -#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:61 +#: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/header.ut:57 +#: themes/luci-theme-openwrt-2020/ucode/template/themes/openwrt2020/header.ut:54 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:79 msgid "No password set!" msgstr "" @@ -5431,7 +5459,7 @@ msgstr "" msgid "Noise" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:26 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:27 msgid "Noise Margin (SNR)" msgstr "" @@ -5439,11 +5467,11 @@ msgstr "" msgid "Noise:" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:34 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:35 msgid "Non Pre-emptive CRC errors (CRC_P)" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:325 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:330 msgid "Non-wildcard" msgstr "" @@ -5458,7 +5486,7 @@ msgstr "एकही नाही" msgid "Normal" msgstr "" -#: modules/luci-base/luasrc/view/error404.htm:8 +#: modules/luci-base/ucode/template/error404.ut:9 msgid "Not Found" msgstr "" @@ -5508,7 +5536,7 @@ msgstr "" msgid "Number of IGMP membership reports" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:474 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:479 msgid "Number of cached DNS entries, 10000 is maximum, 0 is no caching." msgstr "" @@ -5557,7 +5585,7 @@ msgstr "" msgid "On-link" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:672 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:743 msgid "One of hostname or MAC address must be specified!" msgstr "" @@ -5593,7 +5621,6 @@ msgid "Open iptables rules overview…" msgstr "" #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:472 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:19 msgid "Open list..." msgstr "" @@ -5737,18 +5764,23 @@ msgstr "" msgid "Options" msgstr "पर्याय" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:526 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:531 msgid "" "Options for the Network-ID. (Note: needs also Network-ID.) E.g. " -"\"<code>42,192.168.1.4</code>\" for NTP server, \"<code>3,192.168.4.4</" -"code>\" for default route. <code>0.0.0.0</code> means \"the address of the " -"system running dnsmasq\"." +"\"<code>42,192.168.1.4</code>\" for NTP server, \"<code>3,192.168.4.4</code>" +"\" for default route. <code>0.0.0.0</code> means \"the address of the system " +"running dnsmasq\"." msgstr "" #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:125 msgid "Options:" msgstr "" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:584 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:616 +msgid "Ordinal: lower comes first." +msgstr "" + #: protocols/luci-proto-batman-adv/htdocs/luci-static/resources/protocol/batadv.js:55 msgid "Originator Interval" msgstr "" @@ -6020,13 +6052,13 @@ msgctxt "MACVLAN mode" msgid "Pass-through (Mirror physical device to single MAC VLAN)" msgstr "" -#: modules/luci-base/luasrc/view/sysauth.htm:29 +#: modules/luci-base/ucode/template/sysauth.ut:29 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1690 #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:51 #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:114 #: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:103 #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:58 -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/sysauth.htm:24 +#: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/sysauth.ut:19 msgid "Password" msgstr "संकेतशब्द" @@ -6197,7 +6229,7 @@ msgstr "" msgid "Pkts." msgstr "" -#: modules/luci-base/luasrc/view/sysauth.htm:19 +#: modules/luci-base/ucode/template/sysauth.ut:19 msgid "Please enter your username and password." msgstr "" @@ -6214,6 +6246,7 @@ msgctxt "Chain hook policy" msgid "Policy: <strong>%h</strong> (%h)" msgstr "" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:579 #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/dropbear.js:21 msgid "Port" msgstr "पोर्ट" @@ -6230,11 +6263,11 @@ msgstr "" msgid "Potential negation of: %s" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:37 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:38 msgid "Power Management Mode" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:35 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:36 msgid "Pre-emptive CRC errors (CRCP_P)" msgstr "" @@ -6307,6 +6340,8 @@ msgid "Primary becomes active slave whenever it comes back up (always, 0)" msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:508 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:584 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:616 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:129 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:197 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:223 @@ -6422,7 +6457,7 @@ msgstr "" msgid "Quality" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:428 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:433 msgid "Query all available upstream resolvers." msgstr "" @@ -6504,7 +6539,7 @@ msgstr "" msgid "Raw hex-encoded bytes. Leave empty unless your ISP require this" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:345 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:350 msgid "Read <code>/etc/ethers</code> to configure the DHCP server." msgstr "" @@ -6520,7 +6555,7 @@ msgstr "" msgid "Reassociation Deadline" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:301 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:306 msgid "Rebind protection" msgstr "" @@ -6605,6 +6640,7 @@ msgid "" msgstr "" #: modules/luci-compat/luasrc/model/network/proto_relay.lua:153 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:611 #: protocols/luci-proto-relay/htdocs/luci-static/resources/protocol/relay.js:39 msgid "Relay" msgstr "" @@ -6695,6 +6731,10 @@ msgstr "" msgid "Required. Base64-encoded private key for this interface." msgstr "" +#: protocols/luci-proto-nebula/htdocs/luci-static/resources/protocol/nebula.js:40 +msgid "Required. Path to the .yml config file for this interface." +msgstr "" + #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:587 msgid "Required. Public key of the WireGuard peer." msgstr "" @@ -6776,7 +6816,7 @@ msgid "Reselection policy for primary slave" msgstr "" #: modules/luci-base/htdocs/luci-static/resources/luci.js:2197 -#: modules/luci-base/luasrc/view/sysauth.htm:39 +#: modules/luci-base/ucode/template/sysauth.ut:39 #: modules/luci-compat/luasrc/view/cbi/delegator.htm:17 #: modules/luci-compat/luasrc/view/cbi/footer.htm:30 #: modules/luci-compat/luasrc/view/cbi/simpleform.htm:66 @@ -6795,10 +6835,14 @@ msgstr "" msgid "Resolv and Hosts Files" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:356 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:361 msgid "Resolv file" msgstr "" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:292 +msgid "Resolve specified FQDNs to an IP." +msgstr "" + #: modules/luci-base/htdocs/luci-static/resources/rpc.js:405 msgid "Resource not found" msgstr "" @@ -6825,7 +6869,7 @@ msgstr "" msgid "Restore backup" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:393 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:398 msgid "" "Return answers to DNS queries matching the subnet from which the query was " "received if multiple IPs are available." @@ -6911,7 +6955,7 @@ msgstr "" msgid "Robustness" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:486 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:491 msgid "" "Root directory for files served via TFTP. <em>Enable TFTP server</em> and " "<em>TFTP server root</em> turn on the TFTP server and serve files from " @@ -7014,6 +7058,11 @@ msgstr "" msgid "SNR" msgstr "" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:258 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:569 +msgid "SRV" +msgstr "" + #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/dropbear.js:10 #: modules/luci-mod-system/root/usr/share/luci/menu.d/luci-mod-system.json:38 msgid "SSH Access" @@ -7151,11 +7200,11 @@ msgstr "" msgid "Server" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:519 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:524 msgid "Server address" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:513 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:518 msgid "Server name" msgstr "" @@ -7243,7 +7292,7 @@ msgstr "" msgid "Setup routes for proxied IPv6 neighbours." msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:30 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:31 msgid "Severely Errored Seconds (SES)" msgstr "" @@ -7257,7 +7306,6 @@ msgid "Short Preamble" msgstr "" #: 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 msgid "Show current backup file list" msgstr "" @@ -7291,7 +7339,7 @@ msgstr "" msgid "Signal / Noise" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:25 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:26 msgid "Signal Attenuation (SATN)" msgstr "" @@ -7308,7 +7356,7 @@ msgstr "" msgid "Size" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:473 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:478 msgid "Size of DNS query cache" msgstr "" @@ -7325,12 +7373,12 @@ msgstr "" msgid "Skip from backup files that are equal to those in /rom" msgstr "" -#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:42 +#: themes/luci-theme-openwrt-2020/ucode/template/themes/openwrt2020/header.ut:35 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:46 msgid "Skip to content" msgstr "" -#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:41 +#: themes/luci-theme-openwrt-2020/ucode/template/themes/openwrt2020/header.ut:34 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:45 msgid "Skip to navigation" msgstr "" @@ -7348,14 +7396,10 @@ msgstr "" msgid "Some fields are invalid, cannot save values!" msgstr "" -#: modules/luci-base/luasrc/view/error404.htm:9 +#: modules/luci-base/ucode/template/error404.ut:10 msgid "Sorry, the object you requested was not found." msgstr "" -#: modules/luci-base/luasrc/view/error500.htm:9 -msgid "Sorry, the server encountered an unexpected error." -msgstr "" - #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:442 msgid "" "Sorry, there is no sysupgrade support present; a new firmware image must be " @@ -7391,7 +7435,7 @@ msgctxt "nft ip sport" msgid "Source port" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:500 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:505 msgid "" "Special <abbr title=\"Preboot eXecution Environment\">PXE</abbr> boot " "options for Dnsmasq." @@ -7759,7 +7803,7 @@ msgstr "" msgid "Static address" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:598 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:669 msgid "" "Static leases are used to assign fixed IP addresses and symbolic hostnames " "to DHCP clients. They are also required for non-dynamic interface " @@ -7773,7 +7817,7 @@ msgstr "" #: modules/luci-base/root/usr/share/luci/menu.d/luci-base.json:16 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:541 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:929 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:9 +#: modules/luci-mod-status/ucode/template/admin_status/index.ut:9 msgid "Status" msgstr "स्थिती" @@ -7799,7 +7843,7 @@ msgstr "" msgid "Strict filtering" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:422 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:427 msgid "Strict order" msgstr "" @@ -7812,11 +7856,11 @@ msgstr "" msgid "Submit" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:372 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:377 msgid "Suppress logging" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:373 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:378 msgid "Suppress logging of the routine operation for the DHCP protocol." msgstr "" @@ -7869,6 +7913,14 @@ msgstr "" msgid "Sync with browser" msgstr "" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:293 +msgid "Syntax: <code>/fqdn[/fqdn…]/[ipaddr]</code>." +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:569 +msgid "Syntax: <code>_service._proto.example.com</code>." +msgstr "" + #: modules/luci-base/root/usr/share/luci/menu.d/luci-base.json:26 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/10_system.js:17 #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:113 @@ -7894,9 +7946,9 @@ msgstr "" msgid "System log buffer size" msgstr "" -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:79 -#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:86 -#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:71 +#: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/header.ut:67 +#: themes/luci-theme-material/ucode/template/themes/material/header.ut:81 +#: themes/luci-theme-openwrt-2020/ucode/template/themes/openwrt2020/header.ut:64 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:89 msgid "System running in recovery (initramfs) mode." msgstr "" @@ -7925,7 +7977,7 @@ msgstr "" msgid "TCP:" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:485 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:490 msgid "TFTP server root" msgstr "" @@ -7950,6 +8002,7 @@ msgstr "" msgid "Table" msgstr "" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:574 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:56 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:66 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:187 @@ -8020,15 +8073,15 @@ msgid "" "username instead of the user ID!" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:681 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:752 msgid "The IP address %h is already used by another static lease" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:690 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:761 msgid "The IP address is outside of any DHCP pool address range" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:520 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:525 msgid "The IP address of the boot server" msgstr "" @@ -8193,7 +8246,7 @@ msgid "" "to be received and retransmitted which costs airtime)" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:514 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:519 msgid "The hostname of the boot server" msgstr "" @@ -8278,8 +8331,8 @@ msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:139 msgid "" -"The network ports on this device can be combined to several <abbr " -"title=\"Virtual Local Area Network\">VLAN</abbr>s in which computers can " +"The network ports on this device can be combined to several <abbr title=" +"\"Virtual Local Area Network\">VLAN</abbr>s in which computers can " "communicate directly with each other. <abbr title=\"Virtual Local Area " "Network\">VLAN</abbr>s are often used to separate different network " "segments. Often there is by default one Uplink port for a connection to the " @@ -8330,7 +8383,7 @@ msgstr "" msgid "The selected %s mode is incompatible with %s encryption" msgstr "" -#: modules/luci-base/luasrc/view/csrftoken.htm:11 +#: modules/luci-base/ucode/template/csrftoken.ut:11 msgid "The submitted security token is invalid or already expired!" msgstr "" @@ -8400,8 +8453,8 @@ msgid "" "nftables rules is discouraged and may lead to incomplete traffic filtering." msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:746 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:778 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:817 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:849 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:130 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:179 msgid "There are no active leases" @@ -8411,8 +8464,8 @@ msgstr "" msgid "There are no changes to apply" msgstr "" -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:70 -#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:62 +#: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/header.ut:58 +#: themes/luci-theme-openwrt-2020/ucode/template/themes/openwrt2020/header.ut:55 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:80 msgid "" "There is no password set on this router. Please configure a root password to " @@ -8433,7 +8486,6 @@ msgid "This does not look like a valid PEM file" msgstr "" #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:454 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:16 msgid "" "This is a list of shell glob patterns for matching files and directories to " "include during sysupgrade. Modified files in /etc/config/ and certain other " @@ -8469,7 +8521,7 @@ msgid "" "ends with <code>...:2/64</code>" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:266 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:268 msgid "This is the only DHCP server in the local network." msgstr "" @@ -8548,8 +8600,8 @@ msgstr "" #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:440 msgid "" "To fully configure the local WireGuard interface from an existing (e.g. " -"provider supplied) configuration file, use the <strong><a class=\"full-" -"import\" href=\"#\">configuration import</a></strong> instead." +"provider supplied) configuration file, use the <strong><a class=\"full-import" +"\" href=\"#\">configuration import</a></strong> instead." msgstr "" #: modules/luci-base/htdocs/luci-static/resources/luci.js:2674 @@ -8711,7 +8763,7 @@ msgstr "" msgid "Unable to determine upstream interface" msgstr "" -#: modules/luci-base/luasrc/view/error404.htm:11 +#: modules/luci-base/ucode/template/error404.ut:12 msgid "Unable to dispatch" msgstr "" @@ -8766,7 +8818,7 @@ msgstr "" msgid "Unable to verify PIN" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:32 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:33 msgid "Unavailable Seconds (UAS)" msgstr "" @@ -8910,7 +8962,7 @@ msgid "" "will be restarted to apply the updated configuration." msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:423 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:428 msgid "Upstream resolvers will be queried in the order of the resolv file." msgstr "" @@ -8919,7 +8971,7 @@ msgstr "" msgid "Uptime" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:344 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:349 msgid "Use <code>/etc/ethers</code>" msgstr "" @@ -9030,7 +9082,7 @@ msgstr "" msgid "Use system certificates for inner-tunnel" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:599 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:670 msgid "" "Use the <em>Add</em> Button to add a new lease entry. The <em>MAC address</" "em> identifies the host, the <em>IPv4 address</em> specifies the fixed " @@ -9081,11 +9133,11 @@ msgstr "" msgid "User key (PEM encoded)" msgstr "" -#: modules/luci-base/luasrc/view/sysauth.htm:23 +#: modules/luci-base/ucode/template/sysauth.ut:23 #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:112 #: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:101 #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:56 -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/sysauth.htm:18 +#: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/sysauth.ut:13 msgid "Username" msgstr "वापरकर्तानाव" @@ -9183,7 +9235,7 @@ msgstr "" msgid "VXLANv6 (RFC7348)" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:398 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:403 msgid "" "Validate DNS replies and cache DNSSEC data, requires upstream to support " "DNSSEC." @@ -9216,7 +9268,7 @@ msgstr "" msgid "Vendor Class to send when requesting DHCP" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:403 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:408 msgid "Verify unsigned domain responses really come from unsigned domains." msgstr "" @@ -9291,6 +9343,10 @@ msgstr "चेतावणी: जतन न केलेले बदल आह msgid "Weak" msgstr "" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:589 +msgid "Weight" +msgstr "" + #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1029 msgid "" "When delegating prefixes to multiple downstreams, interfaces with a higher " @@ -9411,7 +9467,7 @@ msgstr "" msgid "Wireless network is enabled" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:278 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:280 msgid "Write received DNS queries to syslog." msgstr "" @@ -9446,8 +9502,16 @@ msgid "" "scripts like \"network\", your device might become inaccessible!</strong>" msgstr "" -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:90 -#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:97 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:559 +msgid "You may add multiple records for the same Target." +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:596 +msgid "You may add multiple records for the same domain." +msgstr "" + +#: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/header.ut:78 +#: themes/luci-theme-material/ucode/template/themes/material/header.ut:92 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:73 msgid "" "You must enable JavaScript in your browser or LuCI will not work properly." @@ -9476,7 +9540,17 @@ msgstr "" msgid "ZRam Size" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:449 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:558 +msgid "_proto: _tcp, _udp, _sctp, _quic, … ." +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:557 +msgid "" +"_service: _sip, _ldap, _imap, _stun, _xmpp-client, … . (Note: while _http is " +"possible, no browsers support SRV records.)" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:454 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:152 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:163 msgid "any" @@ -9587,8 +9661,8 @@ msgstr "" msgid "e.g: dump" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:726 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:756 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:797 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:827 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:101 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:148 msgid "expired" @@ -9799,9 +9873,9 @@ msgstr "" msgid "unknown" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:456 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:724 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:754 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:461 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:795 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:825 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:99 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:146 msgid "unlimited" diff --git a/modules/luci-base/po/ms/base.po b/modules/luci-base/po/ms/base.po index 570aca51db..d62f2717ab 100644 --- a/modules/luci-base/po/ms/base.po +++ b/modules/luci-base/po/ms/base.po @@ -229,6 +229,18 @@ msgstr "" msgid "<abbr title=\"Router Advertisement\">RA</abbr>-Service" msgstr "" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:294 +msgid "" +"<code>/#/</code> matches any domain. <code>/example.com/</code> returns " +"NXDOMAIN." +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:295 +msgid "" +"<code>/example.com/#</code> returns NULL addresses (<code>0.0.0.0</code> and " +"<code>::</code>) for example.com and its subdomains." +msgstr "" + #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:87 msgctxt "nft relational \">\" operator expression" msgid "<var>%s</var> greater than <strong>%s</strong>" @@ -386,7 +398,7 @@ msgstr "" msgid "ATM device number" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:36 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:37 msgid "ATU-C System Vendor ID" msgstr "" @@ -396,7 +408,7 @@ msgstr "" msgid "Absent Interface" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:320 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:325 msgid "Accept DNS queries only from hosts whose address is on a local subnet." msgstr "" @@ -535,7 +547,7 @@ msgstr "" msgid "Add key" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:410 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:415 msgid "Add local domain suffix to names served from hosts files." msgstr "" @@ -556,11 +568,11 @@ msgstr "" msgid "Add to Whitelist" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:367 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:372 msgid "Additional hosts files" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:417 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:422 msgid "Additional servers file" msgstr "" @@ -590,7 +602,7 @@ msgstr "" msgid "Address to access local relay bridge" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:289 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:291 msgid "Addresses" msgstr "" @@ -623,7 +635,7 @@ msgstr "" msgid "Aggregate Originator Messages" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:27 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:28 msgid "Aggregate Transmit Power (ACTATP)" msgstr "" @@ -659,17 +671,17 @@ msgstr "" msgid "Alias of \"%s\"" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:427 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:432 msgid "All servers" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:378 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:383 msgid "" "Allocate IP addresses sequentially, starting from the lowest available " "address." msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:377 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:382 msgid "Allocate IPs sequentially" msgstr "" @@ -697,7 +709,7 @@ msgstr "" msgid "Allow listed only" msgstr "Izinkan senarai saja" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:306 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:311 msgid "Allow localhost" msgstr "" @@ -741,7 +753,7 @@ msgstr "" msgid "Always on (kernel: default-on)" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:538 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:543 msgid "Always send DHCP Options. Sometimes needed, with e.g. PXELinux." msgstr "" @@ -768,7 +780,7 @@ msgid "An optional, short description for this device" msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1484 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:20 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:21 msgid "Annex" msgstr "" @@ -882,7 +894,7 @@ msgstr "" msgid "Any zone" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:532 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:537 msgid "Apply DHCP Options to this net. (Empty = all clients)." msgstr "" @@ -972,11 +984,11 @@ msgstr "Authentifizierung" msgid "Authentication Type" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:265 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:267 msgid "Authoritative" msgstr "Pengesahan" -#: modules/luci-base/luasrc/view/sysauth.htm:17 +#: modules/luci-base/ucode/template/sysauth.ut:17 #: themes/luci-theme-bootstrap/htdocs/luci-static/resources/view/bootstrap/sysauth.js:11 msgid "Authorization Required" msgstr "Otorisasi Diperlukan" @@ -1046,7 +1058,7 @@ msgstr "" msgid "Avoid Bridge Loops" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:388 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:393 msgid "" "Avoid uselessly triggering dial-on-demand links (filters SRV/SOA records and " "names with underscores)." @@ -1081,10 +1093,6 @@ msgstr "" msgid "Back to Overview" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:48 -msgid "Back to configuration" -msgstr "" - #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:826 msgid "Back to peer configuration" msgstr "" @@ -1098,7 +1106,6 @@ msgid "Backup / Flash Firmware" msgstr "" #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:351 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:12 msgid "Backup file list" msgstr "" @@ -1140,7 +1147,6 @@ msgid "Beacon Interval" msgstr "" #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:352 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:46 msgid "" "Below is the determined list of files to backup. It consists of changed " "configuration files marked by opkg, essential base files and the user " @@ -1151,7 +1157,7 @@ msgstr "" msgid "Bind NTP server" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:326 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:331 msgid "Bind dynamically to interfaces rather than wildcard address." msgstr "" @@ -1167,6 +1173,17 @@ msgstr "" msgid "Bind interface" msgstr "" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:595 +msgid "" +"Bind service records to a domain name: specify the location of services." +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:556 +msgid "" +"Bind service records to a domain name: specify the location of services. See " +"<a href=\"%s\">RFC2782</a>." +msgstr "" + #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:59 #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:64 #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:64 @@ -1269,6 +1286,10 @@ msgstr "" msgid "CLAT configuration failed" msgstr "" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:574 +msgid "CNAME or fqdn" +msgstr "" + #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/processes.js:72 msgid "CPU usage (%)" msgstr "Penggunaan CPU (%)" @@ -1506,17 +1527,13 @@ msgid "" "persist connection" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:49 -msgid "Close list..." -msgstr "" - #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:44 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:63 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2184 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:391 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:352 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:355 -#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:72 +#: themes/luci-theme-material/ucode/template/themes/material/header.ut:66 msgid "Collecting data..." msgstr "Mengumpul data..." @@ -1551,6 +1568,10 @@ msgstr "" msgid "Compute outgoing checksum (optional)." msgstr "" +#: protocols/luci-proto-nebula/htdocs/luci-static/resources/protocol/nebula.js:40 +msgid "Config File" +msgstr "" + #: modules/luci-base/htdocs/luci-static/resources/ui.js:4375 #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:454 msgid "Configuration" @@ -1590,8 +1611,8 @@ msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:764 msgid "" -"Configures the operation mode of the <abbr title=\"Router " -"Advertisement\">RA</abbr> service on this interface." +"Configures the operation mode of the <abbr title=\"Router Advertisement" +"\">RA</abbr> service on this interface." msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:879 @@ -1764,8 +1785,8 @@ msgstr "" #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/leds.js:59 msgid "" -"Customizes the behaviour of the device <abbr title=\"Light Emitting " -"Diode\">LED</abbr>s if possible." +"Customizes the behaviour of the device <abbr title=\"Light Emitting Diode" +"\">LED</abbr>s if possible." msgstr "Mengkustomisasi perilaku peranti LED jika mungkin." #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:673 @@ -1784,7 +1805,7 @@ msgstr "" msgid "DAE-Secret" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:525 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:530 msgid "DHCP Options" msgstr "" @@ -1824,11 +1845,11 @@ msgstr "" msgid "DNS" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:282 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:284 msgid "DNS forwardings" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:445 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:450 msgid "DNS query port" msgstr "" @@ -1836,7 +1857,7 @@ msgstr "" msgid "DNS search domains" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:438 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:443 msgid "DNS server port" msgstr "" @@ -1852,11 +1873,11 @@ msgstr "" msgid "DNS-Label / FQDN" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:397 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:402 msgid "DNSSEC" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:402 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:407 msgid "DNSSEC check unsigned" msgstr "" @@ -1869,11 +1890,11 @@ msgid "DS-Lite AFTR address" msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1481 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:44 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:45 msgid "DSL" msgstr "DSL" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:14 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:15 msgid "DSL Status" msgstr "" @@ -1886,12 +1907,12 @@ msgid "DTIM Interval" msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:59 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:700 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:771 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:136 msgid "DUID" msgstr "DUID" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:21 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:22 msgid "Data Rate" msgstr "" @@ -2134,7 +2155,7 @@ msgstr "" msgid "Disassociate On Low Acknowledgement" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:302 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:307 msgid "" "Discard upstream responses containing <a href=\"%s\">RFC1918</a> addresses." msgstr "" @@ -2180,7 +2201,7 @@ msgstr "Jarak ke rangkaian terjauh ahli dalam meter." msgid "Distributed ARP Table" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:543 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:548 msgid "" "Dnsmasq instance to which this boot section is bound. If unspecified, the " "section is valid for all dnsmasq instances." @@ -2189,16 +2210,16 @@ msgstr "" # Nur für NAT-Firewalls? #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:246 msgid "" -"Dnsmasq is a lightweight <abbr title=\"Dynamic Host Configuration " -"Protocol\">DHCP</abbr> server and <abbr title=\"Domain Name System\">DNS</" -"abbr> forwarder." +"Dnsmasq is a lightweight <abbr title=\"Dynamic Host Configuration Protocol" +"\">DHCP</abbr> server and <abbr title=\"Domain Name System\">DNS</abbr> " +"forwarder." msgstr "" -"Dnsmasq adalah gabungan <abbr title=\"Dynamic Host Configuration " -"Protocol\">DHCP</abbr>-Pelayan dan<abbr title=\"Domain Name System\">DNS</" -"abbr>-Forwarder untuk <abbr title=\"Network Address Translation\">NAT</abbr> " +"Dnsmasq adalah gabungan <abbr title=\"Dynamic Host Configuration Protocol" +"\">DHCP</abbr>-Pelayan dan<abbr title=\"Domain Name System\">DNS</abbr>-" +"Forwarder untuk <abbr title=\"Network Address Translation\">NAT</abbr> " "firewall" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:414 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:419 msgid "Do not cache negative replies, e.g. for non-existent domains." msgstr "" @@ -2210,15 +2231,15 @@ msgstr "" msgid "Do not create host route to peer (optional)." msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:262 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:264 msgid "Do not forward DNS queries without dots or domain parts." msgstr "Jangan hantar permintaan DNS tanpa nama DNS" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:383 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:388 msgid "Do not forward reverse lookups for local networks." msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:339 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:344 msgid "Do not listen on the specified interfaces." msgstr "" @@ -2271,15 +2292,16 @@ msgstr "" msgid "Do you want to replace the current keys?" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:593 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:606 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:664 msgid "Domain" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:261 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:263 msgid "Domain required" msgstr "Domain diperlukan" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:311 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:316 msgid "Domain whitelist" msgstr "" @@ -2514,7 +2536,7 @@ msgstr "" msgid "Enable Single DES" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:480 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:485 msgid "Enable TFTP server" msgstr "" @@ -2532,9 +2554,9 @@ msgstr "" #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/uhttpd.js:14 msgid "" -"Enable automatic redirection of <abbr title=\"Hypertext Transfer " -"Protocol\">HTTP</abbr> requests to <abbr title=\"Hypertext Transfer Protocol " -"Secure\">HTTPS</abbr> port." +"Enable automatic redirection of <abbr title=\"Hypertext Transfer Protocol" +"\">HTTP</abbr> requests to <abbr title=\"Hypertext Transfer Protocol Secure" +"\">HTTPS</abbr> port." msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:977 @@ -2597,7 +2619,7 @@ msgstr "" msgid "Enable the DF (Don't Fragment) flag of the encapsulating packets." msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:481 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:486 msgid "Enable the built-in single-instance TFTP server." msgstr "" @@ -2714,7 +2736,7 @@ msgstr "Kesalahan" msgid "Error getting PublicKey" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:29 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:30 msgid "Errored seconds (ES)" msgstr "" @@ -2736,11 +2758,11 @@ msgstr "" msgid "Every second (fast, 1)" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:338 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:343 msgid "Exclude interfaces" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:307 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:312 msgid "" "Exempt <code>127.0.0.0/8</code> and <code>::1</code> from rebinding checks, " "e.g. for RBL services." @@ -2750,7 +2772,7 @@ msgstr "" msgid "Existing device" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:409 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:414 msgid "Expand hosts" msgstr "" @@ -2884,7 +2906,7 @@ msgstr "" msgid "File" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:418 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:423 msgid "" "File listing upstream resolvers, optionally domain-specific, e.g. " "<code>server=1.2.3.4</code>, <code>server=/domain/1.2.3.4</code>." @@ -2894,20 +2916,20 @@ msgstr "" msgid "File not accessible" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:349 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:354 msgid "File to store DHCP lease information." msgstr "fail dimana DHCP-sewa akan disimpan" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:357 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:362 msgid "File with upstream resolvers." msgstr "Fail DNS tempatan" #: modules/luci-base/htdocs/luci-static/resources/ui.js:2846 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:507 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:512 msgid "Filename" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:493 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:498 msgid "Filename of the boot image advertised to clients." msgstr "" @@ -2916,11 +2938,11 @@ msgstr "" msgid "Filesystem" msgstr "Fail Sistem" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:382 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:387 msgid "Filter private" msgstr "Penapis swasta" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:387 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:392 msgid "Filter useless" msgstr "Penapis tak berguna" @@ -2984,7 +3006,7 @@ msgstr "" msgid "Firmware Version" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:446 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:451 msgid "Fixed source port for outbound DNS queries." msgstr "" @@ -3010,7 +3032,7 @@ msgstr "" msgid "Flashing…" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:537 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:542 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:686 msgid "Force" msgstr "Paksa" @@ -3055,16 +3077,16 @@ msgstr "" msgid "Force use of NAT-T" msgstr "" -#: modules/luci-base/luasrc/view/csrftoken.htm:8 +#: modules/luci-base/ucode/template/csrftoken.ut:8 msgid "Form token mismatch" msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:919 msgid "" -"Forward <abbr title=\"Neighbour Discovery Protocol\">NDP</abbr> <abbr " -"title=\"Neighbour Solicitation, Type 135\">NS</abbr> and <abbr " -"title=\"Neighbour Advertisement, Type 136\">NA</abbr> messages between the " -"designated master interface and downstream interfaces." +"Forward <abbr title=\"Neighbour Discovery Protocol\">NDP</abbr> <abbr title=" +"\"Neighbour Solicitation, Type 135\">NS</abbr> and <abbr title=\"Neighbour " +"Advertisement, Type 136\">NA</abbr> messages between the designated master " +"interface and downstream interfaces." msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:770 @@ -3084,7 +3106,7 @@ msgid "" "downstream interfaces." msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:28 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:29 msgid "Forward Error Correction Seconds (FECS)" msgstr "" @@ -3241,15 +3263,15 @@ msgstr "" msgid "Global network options" msgstr "" -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:82 -#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:89 -#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:74 +#: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/header.ut:70 +#: themes/luci-theme-material/ucode/template/themes/material/header.ut:84 +#: themes/luci-theme-openwrt-2020/ucode/template/themes/openwrt2020/header.ut:67 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:92 msgid "Go to firmware upgrade..." msgstr "" -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:72 -#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:64 +#: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/header.ut:60 +#: themes/luci-theme-openwrt-2020/ucode/template/themes/openwrt2020/header.ut:57 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:82 msgid "Go to password configuration..." msgstr "" @@ -3390,7 +3412,7 @@ msgstr "" msgid "Hang Up" msgstr "Menutup" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:33 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:34 msgid "Header Error Code Errors (HEC)" msgstr "" @@ -3443,7 +3465,7 @@ msgstr "" msgid "Host expiry timeout" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:508 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:513 msgid "Host requests this filename from the boot server." msgstr "" @@ -3452,8 +3474,8 @@ msgid "Host-Uniq tag content" msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:38 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:559 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:607 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:630 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:678 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/10_system.js:54 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:87 #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:135 @@ -3468,7 +3490,7 @@ msgstr "" msgid "Hostnames" msgstr "Nama Host" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:551 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:622 msgid "" "Hostnames are used to bind a domain name to an IP address. This setting is " "redundant for hostnames already configured with static leases, but it can be " @@ -3532,7 +3554,7 @@ msgstr "" msgid "IP Protocol" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:258 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:260 msgid "IP Sets" msgstr "" @@ -3540,7 +3562,7 @@ msgstr "" msgid "IP Type" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:563 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:634 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:178 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:204 msgid "IP address" @@ -3566,15 +3588,15 @@ msgctxt "nft meta l4proto" msgid "IP protocol" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:589 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:660 msgid "IP set" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:295 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:300 msgid "IP sets" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:432 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:437 msgid "IPs to override with NXDOMAIN" msgstr "" @@ -3615,7 +3637,7 @@ msgstr "" #: modules/luci-base/htdocs/luci-static/resources/protocol/static.js:178 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:39 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:665 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:736 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:88 #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:164 msgid "IPv4 address" @@ -3786,7 +3808,7 @@ msgstr "" msgid "IPv6 suffix" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:706 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:777 msgid "IPv6 suffix (hex)" msgstr "" @@ -3878,10 +3900,10 @@ msgstr "" #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:340 msgid "" "If your physical memory is insufficient unused data can be temporarily " -"swapped to a swap-device resulting in a higher amount of usable <abbr " -"title=\"Random Access Memory\">RAM</abbr>. Be aware that swapping data is a " -"very slow process as the swap-device cannot be accessed with the high " -"datarates of the <abbr title=\"Random Access Memory\">RAM</abbr>." +"swapped to a swap-device resulting in a higher amount of usable <abbr title=" +"\"Random Access Memory\">RAM</abbr>. Be aware that swapping data is a very " +"slow process as the swap-device cannot be accessed with the high datarates " +"of the <abbr title=\"Random Access Memory\">RAM</abbr>." msgstr "" "Jika memori fizikal anda tidak cukup data yang boleh digunakan sementara " "menukar ke peranti-penukar yang dihasilkan dalam jumlah RAM berguna yang " @@ -3889,7 +3911,7 @@ msgstr "" "sangat lambat kerana peranti-penukar tidak boleh diakses dengan datarates " "yang tinggi pada RAM." -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:363 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:368 msgid "Ignore <code>/etc/hosts</code>" msgstr "Mengabaikan /etc/hosts" @@ -3897,7 +3919,7 @@ msgstr "Mengabaikan /etc/hosts" msgid "Ignore interface" msgstr "Abaikan antara muka" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:352 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:357 msgid "Ignore resolv file" msgstr "Abaikan fail yang selesai" @@ -3945,7 +3967,7 @@ msgid "" "order to avoid broadcast loops that can bring the entire LAN to a standstill." msgstr "" -#: modules/luci-base/luasrc/view/csrftoken.htm:13 +#: modules/luci-base/ucode/template/csrftoken.ut:13 msgid "" "In order to prevent unauthorized access to the system, your request has been " "blocked. Click \"Continue »\" below to return to the previous page." @@ -4054,7 +4076,7 @@ msgstr "" msgid "Install protocol extensions..." msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:542 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:547 msgid "Instance" msgstr "" @@ -4141,10 +4163,6 @@ msgstr "Interface" msgid "Internal" msgstr "" -#: modules/luci-base/luasrc/view/error500.htm:8 -msgid "Internal Server Error" -msgstr "" - #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:285 msgid "Interval For Sending Learning Packets" msgstr "" @@ -4213,8 +4231,8 @@ msgstr "" msgid "Invalid hexadecimal value" msgstr "" -#: modules/luci-base/luasrc/view/sysauth.htm:12 -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/sysauth.htm:37 +#: modules/luci-base/ucode/template/sysauth.ut:12 +#: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/sysauth.ut:32 msgid "Invalid username and/or password! Please try again." msgstr "Username dan / atau password tak sah! Sila cuba lagi." @@ -4239,8 +4257,8 @@ msgstr "" "Tampak bahawa anda cuba untuk flash fail gambar yang tidak sesuai dengan " "memori flash, sila buat pengesahan pada fail gambar!" -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:89 -#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:96 +#: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/header.ut:77 +#: themes/luci-theme-material/ucode/template/themes/material/header.ut:91 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:72 msgid "JavaScript required!" msgstr "" @@ -4373,11 +4391,17 @@ msgstr "Bahasa" msgid "Language and Style" msgstr "" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:560 +msgid "" +"Larger weights (of the same prio) are given a proportionately higher " +"probability of being selected." +msgstr "" + #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:575 msgid "Last member interval" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:23 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:24 msgid "Latency" msgstr "" @@ -4393,11 +4417,11 @@ msgstr "" msgid "Learn routes" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:348 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:353 msgid "Lease file" msgstr "Sewa fail" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:697 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:768 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:679 msgid "Lease time" msgstr "" @@ -4441,19 +4465,19 @@ msgstr "" msgid "Limit" msgstr "Batas" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:24 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:25 msgid "Line Attenuation (LATN)" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:18 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:19 msgid "Line Mode" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:17 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:18 msgid "Line State" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:19 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:20 msgid "Line Uptime" msgstr "" @@ -4474,12 +4498,12 @@ msgctxt "nft @ll,off,len" msgid "Link layer header bits %d-%d" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:433 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:438 msgid "List of IP addresses to convert into NXDOMAIN responses." msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:296 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:581 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:301 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:652 msgid "List of IP sets to populate with the specified domain IPs." msgstr "" @@ -4505,15 +4529,11 @@ msgstr "" msgid "List of SSH key files for auth" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:312 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:317 msgid "List of domains to allow RFC1918 responses for." msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:290 -msgid "List of domains to force to an IP address." -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:283 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:285 msgid "List of upstream resolvers to forward queries to." msgstr "" @@ -4521,7 +4541,7 @@ msgstr "" msgid "Listen Port" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:332 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:337 msgid "Listen interfaces" msgstr "" @@ -4529,7 +4549,7 @@ msgstr "" msgid "Listen only on the given interface or, if unspecified, on all" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:333 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:338 msgid "" "Listen only on the specified interfaces, and loopback if not excluded " "explicitly." @@ -4539,7 +4559,7 @@ msgstr "" msgid "ListenPort setting is invalid" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:439 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:444 msgid "Listening port for inbound DNS queries." msgstr "" @@ -4566,9 +4586,9 @@ msgid "Loading directory contents…" msgstr "" #: modules/luci-base/htdocs/luci-static/resources/luci.js:1942 -#: modules/luci-base/luasrc/view/view.htm:4 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:12 -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/sysauth.htm:45 +#: modules/luci-base/ucode/template/view.ut:4 +#: modules/luci-mod-status/ucode/template/admin_status/index.ut:12 +#: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/sysauth.ut:40 msgid "Loading view…" msgstr "" @@ -4626,19 +4646,19 @@ msgstr "Masa Tempatan" msgid "Local ULA" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:273 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:275 msgid "Local domain" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:274 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:276 msgid "Local domain suffix appended to DHCP names and hosts file entries." msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:269 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:271 msgid "Local server" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:319 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:324 msgid "Local service only" msgstr "" @@ -4646,7 +4666,7 @@ msgstr "" msgid "Local wireguard key" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:392 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:397 msgid "Localise queries" msgstr "Soalan tempatan" @@ -4658,7 +4678,7 @@ msgstr "" msgid "Log output level" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:277 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:279 msgid "Log queries" msgstr "Log soalan" @@ -4682,8 +4702,8 @@ msgstr "" msgid "Logical network to which the tunnel will be added (bridged) (optional)." msgstr "" -#: modules/luci-base/luasrc/view/sysauth.htm:38 -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/sysauth.htm:41 +#: modules/luci-base/ucode/template/sysauth.ut:38 +#: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/sysauth.ut:36 msgid "Login" msgstr "Login" @@ -4695,7 +4715,7 @@ msgstr "Logout" msgid "Loose filtering" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:31 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:32 msgid "Loss of Signal Seconds (LOSS)" msgstr "" @@ -4703,6 +4723,10 @@ msgstr "" msgid "Lowest leased address as offset from the network address." msgstr "" +#: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/footer.ut:12 +msgid "Lua compatibility mode active" +msgstr "" + #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:48 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:83 msgid "MAC" @@ -4727,7 +4751,7 @@ msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:591 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:40 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:619 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:690 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1164 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2177 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:56 @@ -4786,6 +4810,10 @@ msgstr "" msgid "MTU" msgstr "MTU" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:259 +msgid "MX" +msgstr "" + #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:303 msgid "" "Make sure to clone the root filesystem using something like the commands " @@ -4810,19 +4838,19 @@ msgstr "" msgid "Max <abbr title=\"Router Advertisement\">RA</abbr> interval" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:22 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:23 msgid "Max. Attainable Data Rate (ATTNDR)" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:452 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:457 msgid "Max. DHCP leases" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:459 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:464 msgid "Max. EDNS0 packet size" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:466 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:471 msgid "Max. concurrent queries" msgstr "" @@ -4834,15 +4862,15 @@ msgstr "" msgid "Maximum allowed Listen Interval" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:453 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:458 msgid "Maximum allowed number of active DHCP leases." msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:467 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:472 msgid "Maximum allowed number of concurrent DNS queries." msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:460 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:465 msgid "Maximum allowed size of EDNS0 UDP packets." msgstr "" @@ -4869,7 +4897,7 @@ msgstr "" msgid "Maximum transmit power" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:389 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:394 msgid "May prevent VoIP or other services from working." msgstr "" @@ -5185,11 +5213,15 @@ msgstr "Nama rangkaian baru" msgid "Name of the tunnel device" msgstr "" -#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:46 +#: themes/luci-theme-openwrt-2020/ucode/template/themes/openwrt2020/header.ut:39 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:50 msgid "Navigation" msgstr "Navigation" +#: protocols/luci-proto-nebula/htdocs/luci-static/resources/protocol/nebula.js:10 +msgid "Nebula Network" +msgstr "" + #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:653 msgid "Neighbour cache validity" msgstr "" @@ -5225,7 +5257,7 @@ msgstr "" msgid "Network address" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:492 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:497 msgid "Network boot image" msgstr "" @@ -5265,7 +5297,7 @@ msgstr "" msgid "Network interface" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:531 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:536 msgid "Network-ID" msgstr "" @@ -5273,7 +5305,7 @@ msgstr "" msgid "Never" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:270 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:272 msgid "" "Never forward matching domains and subdomains, resolve from DHCP or hosts " "files only." @@ -5321,9 +5353,9 @@ msgstr "" msgid "No RX signal" msgstr "" -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:80 -#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:87 -#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:72 +#: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/header.ut:68 +#: themes/luci-theme-material/ucode/template/themes/material/header.ut:82 +#: themes/luci-theme-openwrt-2020/ucode/template/themes/openwrt2020/header.ut:65 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:90 msgid "" "No changes to settings will be stored and are lost after rebooting. This " @@ -5365,10 +5397,6 @@ msgstr "" msgid "No entries in this directory" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:82 -msgid "No files found" -msgstr "" - #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:833 msgid "" "No fixed interface listening port defined, peers might not be able to " @@ -5404,7 +5432,7 @@ msgstr "" msgid "No more slaves available, can not save interface" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:413 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:418 msgid "No negative cache" msgstr "" @@ -5412,8 +5440,8 @@ msgstr "" msgid "No nftables ruleset loaded." msgstr "" -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:69 -#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:61 +#: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/header.ut:57 +#: themes/luci-theme-openwrt-2020/ucode/template/themes/openwrt2020/header.ut:54 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:79 msgid "No password set!" msgstr "" @@ -5453,7 +5481,7 @@ msgstr "" msgid "Noise" msgstr "Kebisingan" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:26 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:27 msgid "Noise Margin (SNR)" msgstr "" @@ -5461,11 +5489,11 @@ msgstr "" msgid "Noise:" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:34 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:35 msgid "Non Pre-emptive CRC errors (CRC_P)" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:325 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:330 msgid "Non-wildcard" msgstr "" @@ -5480,7 +5508,7 @@ msgstr "" msgid "Normal" msgstr "" -#: modules/luci-base/luasrc/view/error404.htm:8 +#: modules/luci-base/ucode/template/error404.ut:9 msgid "Not Found" msgstr "" @@ -5530,7 +5558,7 @@ msgstr "" msgid "Number of IGMP membership reports" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:474 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:479 msgid "Number of cached DNS entries, 10000 is maximum, 0 is no caching." msgstr "" @@ -5579,7 +5607,7 @@ msgstr "" msgid "On-link" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:672 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:743 msgid "One of hostname or MAC address must be specified!" msgstr "" @@ -5615,7 +5643,6 @@ msgid "Open iptables rules overview…" msgstr "" #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:472 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:19 msgid "Open list..." msgstr "" @@ -5759,18 +5786,23 @@ msgstr "" msgid "Options" msgstr "Pilihan" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:526 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:531 msgid "" "Options for the Network-ID. (Note: needs also Network-ID.) E.g. " -"\"<code>42,192.168.1.4</code>\" for NTP server, \"<code>3,192.168.4.4</" -"code>\" for default route. <code>0.0.0.0</code> means \"the address of the " -"system running dnsmasq\"." +"\"<code>42,192.168.1.4</code>\" for NTP server, \"<code>3,192.168.4.4</code>" +"\" for default route. <code>0.0.0.0</code> means \"the address of the system " +"running dnsmasq\"." msgstr "" #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:125 msgid "Options:" msgstr "" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:584 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:616 +msgid "Ordinal: lower comes first." +msgstr "" + #: protocols/luci-proto-batman-adv/htdocs/luci-static/resources/protocol/batadv.js:55 msgid "Originator Interval" msgstr "" @@ -6042,13 +6074,13 @@ msgctxt "MACVLAN mode" msgid "Pass-through (Mirror physical device to single MAC VLAN)" msgstr "" -#: modules/luci-base/luasrc/view/sysauth.htm:29 +#: modules/luci-base/ucode/template/sysauth.ut:29 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1690 #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:51 #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:114 #: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:103 #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:58 -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/sysauth.htm:24 +#: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/sysauth.ut:19 msgid "Password" msgstr "Kata laluan" @@ -6219,7 +6251,7 @@ msgstr "" msgid "Pkts." msgstr "Pkts." -#: modules/luci-base/luasrc/view/sysauth.htm:19 +#: modules/luci-base/ucode/template/sysauth.ut:19 msgid "Please enter your username and password." msgstr "Sila masukkan username dan kata laluan anda." @@ -6236,6 +6268,7 @@ msgctxt "Chain hook policy" msgid "Policy: <strong>%h</strong> (%h)" msgstr "" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:579 #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/dropbear.js:21 msgid "Port" msgstr "Port" @@ -6252,11 +6285,11 @@ msgstr "" msgid "Potential negation of: %s" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:37 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:38 msgid "Power Management Mode" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:35 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:36 msgid "Pre-emptive CRC errors (CRCP_P)" msgstr "" @@ -6329,6 +6362,8 @@ msgid "Primary becomes active slave whenever it comes back up (always, 0)" msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:508 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:584 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:616 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:129 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:197 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:223 @@ -6444,7 +6479,7 @@ msgstr "" msgid "Quality" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:428 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:433 msgid "Query all available upstream resolvers." msgstr "" @@ -6527,7 +6562,7 @@ msgstr "" msgid "Raw hex-encoded bytes. Leave empty unless your ISP require this" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:345 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:350 msgid "Read <code>/etc/ethers</code> to configure the DHCP server." msgstr "Baca /etc/ethers untuk mengkonfigurasikan DHCP-Server" @@ -6543,7 +6578,7 @@ msgstr "" msgid "Reassociation Deadline" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:301 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:306 msgid "Rebind protection" msgstr "" @@ -6628,6 +6663,7 @@ msgid "" msgstr "" #: modules/luci-compat/luasrc/model/network/proto_relay.lua:153 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:611 #: protocols/luci-proto-relay/htdocs/luci-static/resources/protocol/relay.js:39 msgid "Relay" msgstr "" @@ -6718,6 +6754,10 @@ msgstr "" msgid "Required. Base64-encoded private key for this interface." msgstr "" +#: protocols/luci-proto-nebula/htdocs/luci-static/resources/protocol/nebula.js:40 +msgid "Required. Path to the .yml config file for this interface." +msgstr "" + #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:587 msgid "Required. Public key of the WireGuard peer." msgstr "" @@ -6799,7 +6839,7 @@ msgid "Reselection policy for primary slave" msgstr "" #: modules/luci-base/htdocs/luci-static/resources/luci.js:2197 -#: modules/luci-base/luasrc/view/sysauth.htm:39 +#: modules/luci-base/ucode/template/sysauth.ut:39 #: modules/luci-compat/luasrc/view/cbi/delegator.htm:17 #: modules/luci-compat/luasrc/view/cbi/footer.htm:30 #: modules/luci-compat/luasrc/view/cbi/simpleform.htm:66 @@ -6818,10 +6858,14 @@ msgstr "" msgid "Resolv and Hosts Files" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:356 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:361 msgid "Resolv file" msgstr "" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:292 +msgid "Resolve specified FQDNs to an IP." +msgstr "" + #: modules/luci-base/htdocs/luci-static/resources/rpc.js:405 msgid "Resource not found" msgstr "" @@ -6848,7 +6892,7 @@ msgstr "Mengembalikan" msgid "Restore backup" msgstr "Kembalikan sandaran" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:393 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:398 msgid "" "Return answers to DNS queries matching the subnet from which the query was " "received if multiple IPs are available." @@ -6934,7 +6978,7 @@ msgstr "" msgid "Robustness" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:486 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:491 msgid "" "Root directory for files served via TFTP. <em>Enable TFTP server</em> and " "<em>TFTP server root</em> turn on the TFTP server and serve files from " @@ -7039,6 +7083,11 @@ msgstr "" msgid "SNR" msgstr "" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:258 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:569 +msgid "SRV" +msgstr "" + #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/dropbear.js:10 #: modules/luci-mod-system/root/usr/share/luci/menu.d/luci-mod-system.json:38 msgid "SSH Access" @@ -7176,11 +7225,11 @@ msgstr "" msgid "Server" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:519 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:524 msgid "Server address" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:513 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:518 msgid "Server name" msgstr "" @@ -7268,7 +7317,7 @@ msgstr "" msgid "Setup routes for proxied IPv6 neighbours." msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:30 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:31 msgid "Severely Errored Seconds (SES)" msgstr "" @@ -7282,7 +7331,6 @@ msgid "Short Preamble" msgstr "" #: 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 msgid "Show current backup file list" msgstr "" @@ -7316,7 +7364,7 @@ msgstr "Isyarat" msgid "Signal / Noise" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:25 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:26 msgid "Signal Attenuation (SATN)" msgstr "" @@ -7333,7 +7381,7 @@ msgstr "" msgid "Size" msgstr "Saiz" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:473 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:478 msgid "Size of DNS query cache" msgstr "" @@ -7350,12 +7398,12 @@ msgstr "Skip" msgid "Skip from backup files that are equal to those in /rom" msgstr "" -#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:42 +#: themes/luci-theme-openwrt-2020/ucode/template/themes/openwrt2020/header.ut:35 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:46 msgid "Skip to content" msgstr "Skip ke kadar" -#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:41 +#: themes/luci-theme-openwrt-2020/ucode/template/themes/openwrt2020/header.ut:34 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:45 msgid "Skip to navigation" msgstr "Skip ke navigation" @@ -7373,14 +7421,10 @@ msgstr "" msgid "Some fields are invalid, cannot save values!" msgstr "" -#: modules/luci-base/luasrc/view/error404.htm:9 +#: modules/luci-base/ucode/template/error404.ut:10 msgid "Sorry, the object you requested was not found." msgstr "" -#: modules/luci-base/luasrc/view/error500.htm:9 -msgid "Sorry, the server encountered an unexpected error." -msgstr "" - #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:442 msgid "" "Sorry, there is no sysupgrade support present; a new firmware image must be " @@ -7416,7 +7460,7 @@ msgctxt "nft ip sport" msgid "Source port" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:500 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:505 msgid "" "Special <abbr title=\"Preboot eXecution Environment\">PXE</abbr> boot " "options for Dnsmasq." @@ -7784,7 +7828,7 @@ msgstr "Statische Einträge" msgid "Static address" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:598 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:669 msgid "" "Static leases are used to assign fixed IP addresses and symbolic hostnames " "to DHCP clients. They are also required for non-dynamic interface " @@ -7798,7 +7842,7 @@ msgstr "" #: modules/luci-base/root/usr/share/luci/menu.d/luci-base.json:16 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:541 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:929 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:9 +#: modules/luci-mod-status/ucode/template/admin_status/index.ut:9 msgid "Status" msgstr "Status" @@ -7824,7 +7868,7 @@ msgstr "" msgid "Strict filtering" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:422 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:427 msgid "Strict order" msgstr "Order Ketat" @@ -7837,11 +7881,11 @@ msgstr "" msgid "Submit" msgstr "Menyerahkan" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:372 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:377 msgid "Suppress logging" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:373 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:378 msgid "Suppress logging of the routine operation for the DHCP protocol." msgstr "" @@ -7894,6 +7938,14 @@ msgstr "" msgid "Sync with browser" msgstr "" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:293 +msgid "Syntax: <code>/fqdn[/fqdn…]/[ipaddr]</code>." +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:569 +msgid "Syntax: <code>_service._proto.example.com</code>." +msgstr "" + #: modules/luci-base/root/usr/share/luci/menu.d/luci-base.json:26 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/10_system.js:17 #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:113 @@ -7919,9 +7971,9 @@ msgstr "" msgid "System log buffer size" msgstr "" -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:79 -#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:86 -#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:71 +#: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/header.ut:67 +#: themes/luci-theme-material/ucode/template/themes/material/header.ut:81 +#: themes/luci-theme-openwrt-2020/ucode/template/themes/openwrt2020/header.ut:64 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:89 msgid "System running in recovery (initramfs) mode." msgstr "" @@ -7950,7 +8002,7 @@ msgstr "" msgid "TCP:" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:485 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:490 msgid "TFTP server root" msgstr "" @@ -7976,6 +8028,7 @@ msgstr "" msgid "Table" msgstr "Meja" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:574 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:56 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:66 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:187 @@ -8046,15 +8099,15 @@ msgid "" "username instead of the user ID!" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:681 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:752 msgid "The IP address %h is already used by another static lease" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:690 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:761 msgid "The IP address is outside of any DHCP pool address range" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:520 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:525 msgid "The IP address of the boot server" msgstr "" @@ -8221,7 +8274,7 @@ msgid "" "to be received and retransmitted which costs airtime)" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:514 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:519 msgid "The hostname of the boot server" msgstr "" @@ -8306,8 +8359,8 @@ msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:139 msgid "" -"The network ports on this device can be combined to several <abbr " -"title=\"Virtual Local Area Network\">VLAN</abbr>s in which computers can " +"The network ports on this device can be combined to several <abbr title=" +"\"Virtual Local Area Network\">VLAN</abbr>s in which computers can " "communicate directly with each other. <abbr title=\"Virtual Local Area " "Network\">VLAN</abbr>s are often used to separate different network " "segments. Often there is by default one Uplink port for a connection to the " @@ -8358,7 +8411,7 @@ msgstr "" msgid "The selected %s mode is incompatible with %s encryption" msgstr "" -#: modules/luci-base/luasrc/view/csrftoken.htm:11 +#: modules/luci-base/ucode/template/csrftoken.ut:11 msgid "The submitted security token is invalid or already expired!" msgstr "" @@ -8435,8 +8488,8 @@ msgid "" "nftables rules is discouraged and may lead to incomplete traffic filtering." msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:746 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:778 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:817 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:849 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:130 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:179 msgid "There are no active leases" @@ -8446,8 +8499,8 @@ msgstr "" msgid "There are no changes to apply" msgstr "" -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:70 -#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:62 +#: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/header.ut:58 +#: themes/luci-theme-openwrt-2020/ucode/template/themes/openwrt2020/header.ut:55 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:80 msgid "" "There is no password set on this router. Please configure a root password to " @@ -8468,7 +8521,6 @@ msgid "This does not look like a valid PEM file" msgstr "" #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:454 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:16 msgid "" "This is a list of shell glob patterns for matching files and directories to " "include during sysupgrade. Modified files in /etc/config/ and certain other " @@ -8504,7 +8556,7 @@ msgid "" "ends with <code>...:2/64</code>" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:266 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:268 msgid "This is the only DHCP server in the local network." msgstr "Ini adalah DHCP hanya dalam rangkaian tempatan." @@ -8587,8 +8639,8 @@ msgstr "Zon masa" #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:440 msgid "" "To fully configure the local WireGuard interface from an existing (e.g. " -"provider supplied) configuration file, use the <strong><a class=\"full-" -"import\" href=\"#\">configuration import</a></strong> instead." +"provider supplied) configuration file, use the <strong><a class=\"full-import" +"\" href=\"#\">configuration import</a></strong> instead." msgstr "" #: modules/luci-base/htdocs/luci-static/resources/luci.js:2674 @@ -8750,7 +8802,7 @@ msgstr "" msgid "Unable to determine upstream interface" msgstr "" -#: modules/luci-base/luasrc/view/error404.htm:11 +#: modules/luci-base/ucode/template/error404.ut:12 msgid "Unable to dispatch" msgstr "" @@ -8805,7 +8857,7 @@ msgstr "" msgid "Unable to verify PIN" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:32 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:33 msgid "Unavailable Seconds (UAS)" msgstr "" @@ -8949,7 +9001,7 @@ msgid "" "will be restarted to apply the updated configuration." msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:423 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:428 msgid "Upstream resolvers will be queried in the order of the resolv file." msgstr "" @@ -8958,7 +9010,7 @@ msgstr "" msgid "Uptime" msgstr "Masa Aktif" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:344 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:349 msgid "Use <code>/etc/ethers</code>" msgstr "Guna /etc/ethers" @@ -9069,7 +9121,7 @@ msgstr "" msgid "Use system certificates for inner-tunnel" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:599 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:670 msgid "" "Use the <em>Add</em> Button to add a new lease entry. The <em>MAC address</" "em> identifies the host, the <em>IPv4 address</em> specifies the fixed " @@ -9120,11 +9172,11 @@ msgstr "" msgid "User key (PEM encoded)" msgstr "" -#: modules/luci-base/luasrc/view/sysauth.htm:23 +#: modules/luci-base/ucode/template/sysauth.ut:23 #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:112 #: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:101 #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:56 -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/sysauth.htm:18 +#: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/sysauth.ut:13 msgid "Username" msgstr "Username" @@ -9222,7 +9274,7 @@ msgstr "" msgid "VXLANv6 (RFC7348)" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:398 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:403 msgid "" "Validate DNS replies and cache DNSSEC data, requires upstream to support " "DNSSEC." @@ -9255,7 +9307,7 @@ msgstr "" msgid "Vendor Class to send when requesting DHCP" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:403 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:408 msgid "Verify unsigned domain responses really come from unsigned domains." msgstr "" @@ -9332,6 +9384,10 @@ msgstr "" msgid "Weak" msgstr "" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:589 +msgid "Weight" +msgstr "" + #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1029 msgid "" "When delegating prefixes to multiple downstreams, interfaces with a higher " @@ -9452,7 +9508,7 @@ msgstr "" msgid "Wireless network is enabled" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:278 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:280 msgid "Write received DNS queries to syslog." msgstr "" @@ -9487,8 +9543,16 @@ msgid "" "scripts like \"network\", your device might become inaccessible!</strong>" msgstr "" -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:90 -#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:97 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:559 +msgid "You may add multiple records for the same Target." +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:596 +msgid "You may add multiple records for the same domain." +msgstr "" + +#: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/header.ut:78 +#: themes/luci-theme-material/ucode/template/themes/material/header.ut:92 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:73 msgid "" "You must enable JavaScript in your browser or LuCI will not work properly." @@ -9517,7 +9581,17 @@ msgstr "" msgid "ZRam Size" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:449 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:558 +msgid "_proto: _tcp, _udp, _sctp, _quic, … ." +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:557 +msgid "" +"_service: _sip, _ldap, _imap, _stun, _xmpp-client, … . (Note: while _http is " +"possible, no browsers support SRV records.)" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:454 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:152 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:163 msgid "any" @@ -9628,8 +9702,8 @@ msgstr "" msgid "e.g: dump" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:726 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:756 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:797 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:827 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:101 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:148 msgid "expired" @@ -9840,9 +9914,9 @@ msgstr "" msgid "unknown" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:456 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:724 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:754 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:461 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:795 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:825 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:99 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:146 msgid "unlimited" @@ -10090,8 +10164,8 @@ msgstr "« Kembali" #~ msgid "" #~ "The filesystem that was used to format the memory (<abbr title=\"for " -#~ "example\">e.g.</abbr> <samp><abbr title=\"Third Extended " -#~ "Filesystem\">ext3</abbr></samp>)" +#~ "example\">e.g.</abbr> <samp><abbr title=\"Third Extended Filesystem" +#~ "\">ext3</abbr></samp>)" #~ msgstr "Failsistem yang digunakan untuk memformat memori (contohnya: ext3)" #~ msgid "" diff --git a/modules/luci-base/po/nb_NO/base.po b/modules/luci-base/po/nb_NO/base.po index 4572b74fa3..3dd777f5f1 100644 --- a/modules/luci-base/po/nb_NO/base.po +++ b/modules/luci-base/po/nb_NO/base.po @@ -226,6 +226,18 @@ msgstr "<abbr title=\"Router Advertisement\">RA</abbr>-MTU" msgid "<abbr title=\"Router Advertisement\">RA</abbr>-Service" msgstr "<abbr title=\"Router Advertisement\">RA</abbr>-tjeneste" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:294 +msgid "" +"<code>/#/</code> matches any domain. <code>/example.com/</code> returns " +"NXDOMAIN." +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:295 +msgid "" +"<code>/example.com/#</code> returns NULL addresses (<code>0.0.0.0</code> and " +"<code>::</code>) for example.com and its subdomains." +msgstr "" + #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:87 msgctxt "nft relational \">\" operator expression" msgid "<var>%s</var> greater than <strong>%s</strong>" @@ -390,7 +402,7 @@ msgstr "" msgid "ATM device number" msgstr "<abbr title=\"Asynchronous Transfer Mode\">ATM</abbr> enhetsnummer" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:36 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:37 msgid "ATU-C System Vendor ID" msgstr "" @@ -400,7 +412,7 @@ msgstr "" msgid "Absent Interface" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:320 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:325 msgid "Accept DNS queries only from hosts whose address is on a local subnet." msgstr "" @@ -540,7 +552,7 @@ msgstr "Legg til instans" msgid "Add key" msgstr "Legg til nøkkel" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:410 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:415 msgid "Add local domain suffix to names served from hosts files." msgstr "Legg det lokale domenesuffikset til navn utgitt fra vertsfiler" @@ -561,11 +573,11 @@ msgstr "Legg til i svarteliste" msgid "Add to Whitelist" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:367 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:372 msgid "Additional hosts files" msgstr "Tilleggs vertsfiler" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:417 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:422 msgid "Additional servers file" msgstr "" @@ -595,7 +607,7 @@ msgstr "" msgid "Address to access local relay bridge" msgstr "Adresse for tilgang til lokal relébro" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:289 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:291 msgid "Addresses" msgstr "" @@ -628,7 +640,7 @@ msgstr "" msgid "Aggregate Originator Messages" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:27 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:28 msgid "Aggregate Transmit Power (ACTATP)" msgstr "" @@ -664,17 +676,17 @@ msgstr "" msgid "Alias of \"%s\"" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:427 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:432 msgid "All servers" msgstr "Alle tjenere" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:378 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:383 msgid "" "Allocate IP addresses sequentially, starting from the lowest available " "address." msgstr "Tildel IP-adresser sekvensielt, fra lavest tilgjengelige adresse." -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:377 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:382 msgid "Allocate IPs sequentially" msgstr "Tildel IP sekvensielt" @@ -702,7 +714,7 @@ msgstr "Tillat foreldede 802.11b-hastigheter" msgid "Allow listed only" msgstr "Tillat kun oppførte" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:306 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:311 msgid "Allow localhost" msgstr "Tillat lokalvert" @@ -748,7 +760,7 @@ msgstr "Alltid av (kjerne: ingen)" msgid "Always on (kernel: default-on)" msgstr "Alltid på (kjerne: forvalgt på)" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:538 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:543 msgid "Always send DHCP Options. Sometimes needed, with e.g. PXELinux." msgstr "" "Alltid send DPCP-innstillinger. Trengs noen ganger med f.eks. PXELinux." @@ -779,7 +791,7 @@ msgid "An optional, short description for this device" msgstr "Valgfri kort beskrivelse av denne enheten" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1484 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:20 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:21 msgid "Annex" msgstr "" @@ -894,7 +906,7 @@ msgstr "" msgid "Any zone" msgstr "Alle soner" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:532 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:537 msgid "Apply DHCP Options to this net. (Empty = all clients)." msgstr "" @@ -985,11 +997,11 @@ msgstr "Godkjenning" msgid "Authentication Type" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:265 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:267 msgid "Authoritative" msgstr "Autoritativ" -#: modules/luci-base/luasrc/view/sysauth.htm:17 +#: modules/luci-base/ucode/template/sysauth.ut:17 #: themes/luci-theme-bootstrap/htdocs/luci-static/resources/view/bootstrap/sysauth.js:11 msgid "Authorization Required" msgstr "Autorisasjon er nødvendig" @@ -1059,7 +1071,7 @@ msgstr "Gjennomsnitt:" msgid "Avoid Bridge Loops" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:388 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:393 msgid "" "Avoid uselessly triggering dial-on-demand links (filters SRV/SOA records and " "names with underscores)." @@ -1094,10 +1106,6 @@ msgstr "Tilbake" msgid "Back to Overview" msgstr "Tilbake til oversikt" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:48 -msgid "Back to configuration" -msgstr "Tilbake til konfigurasjon" - #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:826 msgid "Back to peer configuration" msgstr "" @@ -1111,7 +1119,6 @@ msgid "Backup / Flash Firmware" msgstr "Sikkerhetskopiering/Firmware oppgradering" #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:351 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:12 msgid "Backup file list" msgstr "Sikkerhetskopier filliste" @@ -1153,7 +1160,6 @@ msgid "Beacon Interval" msgstr "" #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:352 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:46 msgid "" "Below is the determined list of files to backup. It consists of changed " "configuration files marked by opkg, essential base files and the user " @@ -1167,7 +1173,7 @@ msgstr "" msgid "Bind NTP server" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:326 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:331 msgid "Bind dynamically to interfaces rather than wildcard address." msgstr "" @@ -1183,6 +1189,17 @@ msgstr "" msgid "Bind interface" msgstr "Forbindelsesgrensesnitt" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:595 +msgid "" +"Bind service records to a domain name: specify the location of services." +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:556 +msgid "" +"Bind service records to a domain name: specify the location of services. See " +"<a href=\"%s\">RFC2782</a>." +msgstr "" + #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:59 #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:64 #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:64 @@ -1285,6 +1302,10 @@ msgstr "" msgid "CLAT configuration failed" msgstr "" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:574 +msgid "CNAME or fqdn" +msgstr "" + #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/processes.js:72 msgid "CPU usage (%)" msgstr "CPU forbruk (%)" @@ -1536,17 +1557,13 @@ msgstr "" "Lukk inaktiver tilkoblinger etter angitt antall sekunder, bruk 0 for en " "kontinuerlig tilkobling" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:49 -msgid "Close list..." -msgstr "Lukk liste..." - #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:44 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:63 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2184 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:391 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:352 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:355 -#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:72 +#: themes/luci-theme-material/ucode/template/themes/material/header.ut:66 msgid "Collecting data..." msgstr "Samler inn data…" @@ -1581,6 +1598,10 @@ msgstr "" msgid "Compute outgoing checksum (optional)." msgstr "" +#: protocols/luci-proto-nebula/htdocs/luci-static/resources/protocol/nebula.js:40 +msgid "Config File" +msgstr "" + #: modules/luci-base/htdocs/luci-static/resources/ui.js:4375 #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:454 msgid "Configuration" @@ -1620,8 +1641,8 @@ msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:764 msgid "" -"Configures the operation mode of the <abbr title=\"Router " -"Advertisement\">RA</abbr> service on this interface." +"Configures the operation mode of the <abbr title=\"Router Advertisement" +"\">RA</abbr> service on this interface." msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:879 @@ -1794,8 +1815,8 @@ msgstr "" #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/leds.js:59 msgid "" -"Customizes the behaviour of the device <abbr title=\"Light Emitting " -"Diode\">LED</abbr>s if possible." +"Customizes the behaviour of the device <abbr title=\"Light Emitting Diode" +"\">LED</abbr>s if possible." msgstr "" "Tilpasser oppførselen til enhetens <abbr title=\"Light Emitting Diode\">LED</" "abbr>s om mulig." @@ -1817,7 +1838,7 @@ msgstr "DAE-port" msgid "DAE-Secret" msgstr "DAE-tjener" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:525 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:530 msgid "DHCP Options" msgstr "DHCP-innstillinger" @@ -1857,11 +1878,11 @@ msgstr "DHCPv6-tjeneste" msgid "DNS" msgstr "DNS" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:282 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:284 msgid "DNS forwardings" msgstr "DNS videresendinger" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:445 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:450 msgid "DNS query port" msgstr "<abbr title=\"Domain Name System\">DNS</abbr> spørre port" @@ -1869,7 +1890,7 @@ msgstr "<abbr title=\"Domain Name System\">DNS</abbr> spørre port" msgid "DNS search domains" msgstr "DNS-søkedomener" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:438 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:443 msgid "DNS server port" msgstr "<abbr title=\"Domain Name System\">DNS</abbr> server port" @@ -1885,11 +1906,11 @@ msgstr "DNS-vekting" msgid "DNS-Label / FQDN" msgstr "DNS-etikett/FQDN" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:397 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:402 msgid "DNSSEC" msgstr "DNSSEC" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:402 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:407 msgid "DNSSEC check unsigned" msgstr "" @@ -1902,11 +1923,11 @@ msgid "DS-Lite AFTR address" msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1481 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:44 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:45 msgid "DSL" msgstr "DSL" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:14 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:15 msgid "DSL Status" msgstr "DSL-status" @@ -1919,12 +1940,12 @@ msgid "DTIM Interval" msgstr "DTIM-intervall" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:59 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:700 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:771 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:136 msgid "DUID" msgstr "DUID" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:21 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:22 msgid "Data Rate" msgstr "Datahastighet" @@ -2171,7 +2192,7 @@ msgstr "" msgid "Disassociate On Low Acknowledgement" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:302 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:307 msgid "" "Discard upstream responses containing <a href=\"%s\">RFC1918</a> addresses." msgstr "Forkast oppstrøms RFC1918 svar." @@ -2219,7 +2240,7 @@ msgstr "Avstand i meter til det medlem av nettverket som er lengst unna." msgid "Distributed ARP Table" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:543 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:548 msgid "" "Dnsmasq instance to which this boot section is bound. If unspecified, the " "section is valid for all dnsmasq instances." @@ -2227,14 +2248,14 @@ msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:246 msgid "" -"Dnsmasq is a lightweight <abbr title=\"Dynamic Host Configuration " -"Protocol\">DHCP</abbr> server and <abbr title=\"Domain Name System\">DNS</" -"abbr> forwarder." +"Dnsmasq is a lightweight <abbr title=\"Dynamic Host Configuration Protocol" +"\">DHCP</abbr> server and <abbr title=\"Domain Name System\">DNS</abbr> " +"forwarder." msgstr "" "Dnsmasq er en lett <abbr title=\"Dynamic Host Configuration Protocol\">HDCP</" "abbr>-tjener og <abbr title=\"Domain Name System\">DNS</abbr>-videresender." -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:414 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:419 msgid "Do not cache negative replies, e.g. for non-existent domains." msgstr "Ikke cache negative svar, f.eks for ikke eksisterende domener" @@ -2246,17 +2267,17 @@ msgstr "Ikke cache negative svar, f.eks for ikke eksisterende domener" msgid "Do not create host route to peer (optional)." msgstr "Kunne ikke opprette vertsrute til likemann (valgfritt)." -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:262 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:264 msgid "Do not forward DNS queries without dots or domain parts." msgstr "" "Ikke videresend <abbr title=\"Domain Name System\">DNS</abbr>-Forespørsler " "uten <abbr title=\"Domain Name System\">DNS</abbr>-Navn" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:383 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:388 msgid "Do not forward reverse lookups for local networks." msgstr "Ikke videresend reverserte oppslag for lokale nettverk" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:339 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:344 msgid "Do not listen on the specified interfaces." msgstr "Ikke lytt til de angitte grensesnittene." @@ -2313,15 +2334,16 @@ msgstr "" msgid "Do you want to replace the current keys?" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:593 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:606 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:664 msgid "Domain" msgstr "Domene" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:261 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:263 msgid "Domain required" msgstr "Domene kreves" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:311 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:316 msgid "Domain whitelist" msgstr "Domene hviteliste" @@ -2560,7 +2582,7 @@ msgstr "Aktiver NTP klient" msgid "Enable Single DES" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:480 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:485 msgid "Enable TFTP server" msgstr "Aktiver TFTP server" @@ -2578,9 +2600,9 @@ msgstr "" #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/uhttpd.js:14 msgid "" -"Enable automatic redirection of <abbr title=\"Hypertext Transfer " -"Protocol\">HTTP</abbr> requests to <abbr title=\"Hypertext Transfer Protocol " -"Secure\">HTTPS</abbr> port." +"Enable automatic redirection of <abbr title=\"Hypertext Transfer Protocol" +"\">HTTP</abbr> requests to <abbr title=\"Hypertext Transfer Protocol Secure" +"\">HTTPS</abbr> port." msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:977 @@ -2643,7 +2665,7 @@ msgstr "" msgid "Enable the DF (Don't Fragment) flag of the encapsulating packets." msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:481 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:486 msgid "Enable the built-in single-instance TFTP server." msgstr "" @@ -2760,7 +2782,7 @@ msgstr "Feil" msgid "Error getting PublicKey" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:29 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:30 msgid "Errored seconds (ES)" msgstr "" @@ -2782,11 +2804,11 @@ msgstr "" msgid "Every second (fast, 1)" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:338 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:343 msgid "Exclude interfaces" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:307 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:312 #, fuzzy msgid "" "Exempt <code>127.0.0.0/8</code> and <code>::1</code> from rebinding checks, " @@ -2799,7 +2821,7 @@ msgstr "" msgid "Existing device" msgstr "Eksisterende enhet" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:409 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:414 msgid "Expand hosts" msgstr "Utvid vertsliste" @@ -2935,7 +2957,7 @@ msgstr "" msgid "File" msgstr "Fil" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:418 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:423 msgid "" "File listing upstream resolvers, optionally domain-specific, e.g. " "<code>server=1.2.3.4</code>, <code>server=/domain/1.2.3.4</code>." @@ -2945,22 +2967,22 @@ msgstr "" msgid "File not accessible" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:349 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:354 msgid "File to store DHCP lease information." msgstr "" "filen der gitt <abbr title=\"Dynamic Host Configuration Protocol\">DHCP</" "abbr>-leier vil bli lagret" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:357 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:362 msgid "File with upstream resolvers." msgstr "lokal <abbr title=\"Domain Navn System\">DNS</abbr>-fil" #: modules/luci-base/htdocs/luci-static/resources/ui.js:2846 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:507 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:512 msgid "Filename" msgstr "Filnavn" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:493 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:498 msgid "Filename of the boot image advertised to clients." msgstr "Filnavn fra boot image annonsert til klienter" @@ -2969,11 +2991,11 @@ msgstr "Filnavn fra boot image annonsert til klienter" msgid "Filesystem" msgstr "Filsystem" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:382 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:387 msgid "Filter private" msgstr "Filtrer private" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:387 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:392 msgid "Filter useless" msgstr "Filtrer ubrukelige" @@ -3037,7 +3059,7 @@ msgstr "" msgid "Firmware Version" msgstr "Fastvareversjon" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:446 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:451 msgid "Fixed source port for outbound DNS queries." msgstr "Fast kilde port for utgående DNS-spørringer" @@ -3063,7 +3085,7 @@ msgstr "Flash operasjoner" msgid "Flashing…" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:537 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:542 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:686 msgid "Force" msgstr "Bruk" @@ -3109,16 +3131,16 @@ msgstr "" msgid "Force use of NAT-T" msgstr "" -#: modules/luci-base/luasrc/view/csrftoken.htm:8 +#: modules/luci-base/ucode/template/csrftoken.ut:8 msgid "Form token mismatch" msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:919 msgid "" -"Forward <abbr title=\"Neighbour Discovery Protocol\">NDP</abbr> <abbr " -"title=\"Neighbour Solicitation, Type 135\">NS</abbr> and <abbr " -"title=\"Neighbour Advertisement, Type 136\">NA</abbr> messages between the " -"designated master interface and downstream interfaces." +"Forward <abbr title=\"Neighbour Discovery Protocol\">NDP</abbr> <abbr title=" +"\"Neighbour Solicitation, Type 135\">NS</abbr> and <abbr title=\"Neighbour " +"Advertisement, Type 136\">NA</abbr> messages between the designated master " +"interface and downstream interfaces." msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:770 @@ -3138,7 +3160,7 @@ msgid "" "downstream interfaces." msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:28 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:29 msgid "Forward Error Correction Seconds (FECS)" msgstr "" @@ -3295,15 +3317,15 @@ msgstr "" msgid "Global network options" msgstr "" -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:82 -#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:89 -#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:74 +#: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/header.ut:70 +#: themes/luci-theme-material/ucode/template/themes/material/header.ut:84 +#: themes/luci-theme-openwrt-2020/ucode/template/themes/openwrt2020/header.ut:67 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:92 msgid "Go to firmware upgrade..." msgstr "" -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:72 -#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:64 +#: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/header.ut:60 +#: themes/luci-theme-openwrt-2020/ucode/template/themes/openwrt2020/header.ut:57 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:82 msgid "Go to password configuration..." msgstr "Gå til passord konfigurasjon..." @@ -3444,7 +3466,7 @@ msgstr "" msgid "Hang Up" msgstr "Slå av" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:33 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:34 msgid "Header Error Code Errors (HEC)" msgstr "" @@ -3497,7 +3519,7 @@ msgstr "" msgid "Host expiry timeout" msgstr "Verts utløpstid" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:508 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:513 msgid "Host requests this filename from the boot server." msgstr "" @@ -3506,8 +3528,8 @@ msgid "Host-Uniq tag content" msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:38 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:559 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:607 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:630 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:678 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/10_system.js:54 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:87 #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:135 @@ -3522,7 +3544,7 @@ msgstr "Vertsnavn som sendes ved DHCP forespørsel" msgid "Hostnames" msgstr "Vertsnavn" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:551 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:622 msgid "" "Hostnames are used to bind a domain name to an IP address. This setting is " "redundant for hostnames already configured with static leases, but it can be " @@ -3586,7 +3608,7 @@ msgstr "" msgid "IP Protocol" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:258 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:260 msgid "IP Sets" msgstr "" @@ -3594,7 +3616,7 @@ msgstr "" msgid "IP Type" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:563 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:634 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:178 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:204 msgid "IP address" @@ -3620,15 +3642,15 @@ msgctxt "nft meta l4proto" msgid "IP protocol" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:589 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:660 msgid "IP set" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:295 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:300 msgid "IP sets" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:432 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:437 msgid "IPs to override with NXDOMAIN" msgstr "Overstyr falske NX Domener" @@ -3669,7 +3691,7 @@ msgstr "" #: modules/luci-base/htdocs/luci-static/resources/protocol/static.js:178 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:39 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:665 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:736 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:88 #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:164 msgid "IPv4 address" @@ -3840,7 +3862,7 @@ msgstr "" msgid "IPv6 suffix" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:706 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:777 msgid "IPv6 suffix (hex)" msgstr "" @@ -3932,17 +3954,17 @@ msgstr "Dersom ikke avmerket blir de annonserte DNS server adresser ignorert" #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:340 msgid "" "If your physical memory is insufficient unused data can be temporarily " -"swapped to a swap-device resulting in a higher amount of usable <abbr " -"title=\"Random Access Memory\">RAM</abbr>. Be aware that swapping data is a " -"very slow process as the swap-device cannot be accessed with the high " -"datarates of the <abbr title=\"Random Access Memory\">RAM</abbr>." +"swapped to a swap-device resulting in a higher amount of usable <abbr title=" +"\"Random Access Memory\">RAM</abbr>. Be aware that swapping data is a very " +"slow process as the swap-device cannot be accessed with the high datarates " +"of the <abbr title=\"Random Access Memory\">RAM</abbr>." msgstr "" "Om ruterens fysiske minne er utilstrekkelig, ubrukte data kan midlertidig " -"gjøres om til en swap-enhet som gir deg mere tilgjengelig <abbr " -"title=\"Random Access Memory\">RAM</abbr>. Vær oppmerksom på at bruk av swap " -"er mye langsommere en <abbr title=\"Random Access Memory\">RAM</abbr>." +"gjøres om til en swap-enhet som gir deg mere tilgjengelig <abbr title=" +"\"Random Access Memory\">RAM</abbr>. Vær oppmerksom på at bruk av swap er " +"mye langsommere en <abbr title=\"Random Access Memory\">RAM</abbr>." -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:363 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:368 msgid "Ignore <code>/etc/hosts</code>" msgstr "" @@ -3950,7 +3972,7 @@ msgstr "" msgid "Ignore interface" msgstr "Ignorer grensesnitt" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:352 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:357 msgid "Ignore resolv file" msgstr "Ignorer oppslagsfil" @@ -3998,7 +4020,7 @@ msgid "" "order to avoid broadcast loops that can bring the entire LAN to a standstill." msgstr "" -#: modules/luci-base/luasrc/view/csrftoken.htm:13 +#: modules/luci-base/ucode/template/csrftoken.ut:13 msgid "" "In order to prevent unauthorized access to the system, your request has been " "blocked. Click \"Continue »\" below to return to the previous page." @@ -4107,7 +4129,7 @@ msgstr "" msgid "Install protocol extensions..." msgstr "Installer protokoll utvidelser..." -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:542 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:547 msgid "Instance" msgstr "" @@ -4194,10 +4216,6 @@ msgstr "Grensesnitt" msgid "Internal" msgstr "" -#: modules/luci-base/luasrc/view/error500.htm:8 -msgid "Internal Server Error" -msgstr "Intern server feil" - #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:285 msgid "Interval For Sending Learning Packets" msgstr "" @@ -4266,8 +4284,8 @@ msgstr "" msgid "Invalid hexadecimal value" msgstr "" -#: modules/luci-base/luasrc/view/sysauth.htm:12 -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/sysauth.htm:37 +#: modules/luci-base/ucode/template/sysauth.ut:12 +#: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/sysauth.ut:32 msgid "Invalid username and/or password! Please try again." msgstr "Ugyldig brukernavn og/eller passord! Vennligst prøv igjen." @@ -4292,8 +4310,8 @@ msgstr "" "Det virker som du prøver å flashe med en firmware som ikke passer inn i " "flash-minnet, vennligst kontroller firmware filen!" -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:89 -#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:96 +#: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/header.ut:77 +#: themes/luci-theme-material/ucode/template/themes/material/header.ut:91 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:72 msgid "JavaScript required!" msgstr "JavaScript kreves!" @@ -4425,11 +4443,17 @@ msgstr "Språk" msgid "Language and Style" msgstr "Språk og Utseende" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:560 +msgid "" +"Larger weights (of the same prio) are given a proportionately higher " +"probability of being selected." +msgstr "" + #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:575 msgid "Last member interval" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:23 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:24 msgid "Latency" msgstr "" @@ -4445,11 +4469,11 @@ msgstr "" msgid "Learn routes" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:348 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:353 msgid "Lease file" msgstr "<abbr title=\"Leasefile\">Leie-fil</abbr>" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:697 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:768 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:679 msgid "Lease time" msgstr "" @@ -4493,19 +4517,19 @@ msgstr "Forklaring:" msgid "Limit" msgstr "Grense" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:24 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:25 msgid "Line Attenuation (LATN)" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:18 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:19 msgid "Line Mode" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:17 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:18 msgid "Line State" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:19 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:20 msgid "Line Uptime" msgstr "" @@ -4526,12 +4550,12 @@ msgctxt "nft @ll,off,len" msgid "Link layer header bits %d-%d" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:433 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:438 msgid "List of IP addresses to convert into NXDOMAIN responses." msgstr "Liste over verter som returneren falske NX domene resultater" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:296 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:581 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:301 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:652 msgid "List of IP sets to populate with the specified domain IPs." msgstr "" @@ -4557,15 +4581,11 @@ msgstr "" msgid "List of SSH key files for auth" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:312 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:317 msgid "List of domains to allow RFC1918 responses for." msgstr "Liste over domener hvor en tillater RFC1918 svar" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:290 -msgid "List of domains to force to an IP address." -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:283 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:285 msgid "List of upstream resolvers to forward queries to." msgstr "" "Liste med <abbr title=\"Domain Name System\">DNS</abbr> servere som " @@ -4575,7 +4595,7 @@ msgstr "" msgid "Listen Port" msgstr "Lytteport" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:332 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:337 msgid "Listen interfaces" msgstr "" @@ -4584,7 +4604,7 @@ msgid "Listen only on the given interface or, if unspecified, on all" msgstr "" "Lytt kun på det angitte grensesnitt, om ingen er angitt lyttes det på alle" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:333 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:338 msgid "" "Listen only on the specified interfaces, and loopback if not excluded " "explicitly." @@ -4594,7 +4614,7 @@ msgstr "" msgid "ListenPort setting is invalid" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:439 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:444 msgid "Listening port for inbound DNS queries." msgstr "Lytte-port for innkommende DNS-spørring" @@ -4621,9 +4641,9 @@ msgid "Loading directory contents…" msgstr "" #: modules/luci-base/htdocs/luci-static/resources/luci.js:1942 -#: modules/luci-base/luasrc/view/view.htm:4 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:12 -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/sysauth.htm:45 +#: modules/luci-base/ucode/template/view.ut:4 +#: modules/luci-mod-status/ucode/template/admin_status/index.ut:12 +#: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/sysauth.ut:40 msgid "Loading view…" msgstr "" @@ -4681,19 +4701,19 @@ msgstr "Lokal tid" msgid "Local ULA" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:273 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:275 msgid "Local domain" msgstr "Lokalt domene" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:274 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:276 msgid "Local domain suffix appended to DHCP names and hosts file entries." msgstr "Lokalt domenesuffiks lagt til DHCP navn og vertsfil oppføringer" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:269 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:271 msgid "Local server" msgstr "Lokal server" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:319 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:324 msgid "Local service only" msgstr "" @@ -4701,7 +4721,7 @@ msgstr "" msgid "Local wireguard key" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:392 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:397 msgid "Localise queries" msgstr "Lokalisere søk" @@ -4713,7 +4733,7 @@ msgstr "" msgid "Log output level" msgstr "Logg nivå" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:277 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:279 msgid "Log queries" msgstr "Logg spørringer" @@ -4737,8 +4757,8 @@ msgstr "" msgid "Logical network to which the tunnel will be added (bridged) (optional)." msgstr "" -#: modules/luci-base/luasrc/view/sysauth.htm:38 -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/sysauth.htm:41 +#: modules/luci-base/ucode/template/sysauth.ut:38 +#: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/sysauth.ut:36 msgid "Login" msgstr "Logg inn" @@ -4750,7 +4770,7 @@ msgstr "Logg ut" msgid "Loose filtering" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:31 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:32 msgid "Loss of Signal Seconds (LOSS)" msgstr "" @@ -4758,6 +4778,10 @@ msgstr "" msgid "Lowest leased address as offset from the network address." msgstr "Laveste leide adresse, forskjøvet fra nettverks adressen." +#: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/footer.ut:12 +msgid "Lua compatibility mode active" +msgstr "" + #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:48 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:83 msgid "MAC" @@ -4782,7 +4806,7 @@ msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:591 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:40 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:619 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:690 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1164 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2177 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:56 @@ -4841,6 +4865,10 @@ msgstr "" msgid "MTU" msgstr "MTU" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:259 +msgid "MX" +msgstr "" + #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:303 msgid "" "Make sure to clone the root filesystem using something like the commands " @@ -4865,23 +4893,23 @@ msgstr "" msgid "Max <abbr title=\"Router Advertisement\">RA</abbr> interval" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:22 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:23 msgid "Max. Attainable Data Rate (ATTNDR)" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:452 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:457 msgid "Max. DHCP leases" msgstr "" "<abbr title=\"maximal\">Maksimalt antall</abbr> <abbr title=\"Dynamic Host " "Configuration Protocol\">DHCP</abbr>-tildelninger" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:459 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:464 msgid "Max. EDNS0 packet size" msgstr "" "<abbr title=\"Maksimal\">Maks.</abbr> <abbr title=\"Extension Mechanisms for " "Domain Name System\">EDNS0</abbr> pakke størrelse" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:466 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:471 msgid "Max. concurrent queries" msgstr "<abbr title=\"Maksimal\">Maks.</abbr> samtidige spørringer" @@ -4893,15 +4921,15 @@ msgstr "" msgid "Maximum allowed Listen Interval" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:453 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:458 msgid "Maximum allowed number of active DHCP leases." msgstr "Maksimalt antall aktive DHCP leieavtaler" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:467 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:472 msgid "Maximum allowed number of concurrent DNS queries." msgstr "Maksimalt antall samtidige DNS spørringer" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:460 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:465 msgid "Maximum allowed size of EDNS0 UDP packets." msgstr "Maksimal tillatt størrelse på EDNS.0 UDP-pakker" @@ -4928,7 +4956,7 @@ msgstr "" msgid "Maximum transmit power" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:389 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:394 msgid "May prevent VoIP or other services from working." msgstr "" @@ -5244,11 +5272,15 @@ msgstr "Navnet til det nye nettverket" msgid "Name of the tunnel device" msgstr "" -#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:46 +#: themes/luci-theme-openwrt-2020/ucode/template/themes/openwrt2020/header.ut:39 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:50 msgid "Navigation" msgstr "Navigasjon" +#: protocols/luci-proto-nebula/htdocs/luci-static/resources/protocol/nebula.js:10 +msgid "Nebula Network" +msgstr "" + #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:653 msgid "Neighbour cache validity" msgstr "" @@ -5284,7 +5316,7 @@ msgstr "Nettverks Verktøy" msgid "Network address" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:492 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:497 msgid "Network boot image" msgstr "Nettverks boot image" @@ -5324,7 +5356,7 @@ msgstr "" msgid "Network interface" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:531 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:536 msgid "Network-ID" msgstr "" @@ -5332,7 +5364,7 @@ msgstr "" msgid "Never" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:270 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:272 #, fuzzy msgid "" "Never forward matching domains and subdomains, resolve from DHCP or hosts " @@ -5383,9 +5415,9 @@ msgstr "" msgid "No RX signal" msgstr "" -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:80 -#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:87 -#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:72 +#: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/header.ut:68 +#: themes/luci-theme-material/ucode/template/themes/material/header.ut:82 +#: themes/luci-theme-openwrt-2020/ucode/template/themes/openwrt2020/header.ut:65 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:90 msgid "" "No changes to settings will be stored and are lost after rebooting. This " @@ -5427,10 +5459,6 @@ msgstr "" msgid "No entries in this directory" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:82 -msgid "No files found" -msgstr "Ingen filer funnet" - #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:833 msgid "" "No fixed interface listening port defined, peers might not be able to " @@ -5466,7 +5494,7 @@ msgstr "" msgid "No more slaves available, can not save interface" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:413 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:418 msgid "No negative cache" msgstr "Ingen negative cache" @@ -5474,8 +5502,8 @@ msgstr "Ingen negative cache" msgid "No nftables ruleset loaded." msgstr "" -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:69 -#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:61 +#: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/header.ut:57 +#: themes/luci-theme-openwrt-2020/ucode/template/themes/openwrt2020/header.ut:54 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:79 msgid "No password set!" msgstr "Ruteren er ikke passordbeskyttet!" @@ -5515,7 +5543,7 @@ msgstr "Ingen sone tilknyttet" msgid "Noise" msgstr "Støy" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:26 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:27 msgid "Noise Margin (SNR)" msgstr "" @@ -5523,11 +5551,11 @@ msgstr "" msgid "Noise:" msgstr "Støy:" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:34 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:35 msgid "Non Pre-emptive CRC errors (CRC_P)" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:325 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:330 msgid "Non-wildcard" msgstr "" @@ -5542,7 +5570,7 @@ msgstr "Ingen" msgid "Normal" msgstr "Normal" -#: modules/luci-base/luasrc/view/error404.htm:8 +#: modules/luci-base/ucode/template/error404.ut:9 msgid "Not Found" msgstr "Ikke funnet" @@ -5592,7 +5620,7 @@ msgstr "Nslookup" msgid "Number of IGMP membership reports" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:474 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:479 msgid "Number of cached DNS entries, 10000 is maximum, 0 is no caching." msgstr "" @@ -5641,7 +5669,7 @@ msgstr "Forsinkelse ved tilstand -På-" msgid "On-link" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:672 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:743 msgid "One of hostname or MAC address must be specified!" msgstr "Enten Vertsnavn eller Mac-adresse må oppgis!" @@ -5677,7 +5705,6 @@ msgid "Open iptables rules overview…" msgstr "" #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:472 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:19 msgid "Open list..." msgstr "Åpne liste..." @@ -5821,18 +5848,23 @@ msgstr "" msgid "Options" msgstr "Alternativer" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:526 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:531 msgid "" "Options for the Network-ID. (Note: needs also Network-ID.) E.g. " -"\"<code>42,192.168.1.4</code>\" for NTP server, \"<code>3,192.168.4.4</" -"code>\" for default route. <code>0.0.0.0</code> means \"the address of the " -"system running dnsmasq\"." +"\"<code>42,192.168.1.4</code>\" for NTP server, \"<code>3,192.168.4.4</code>" +"\" for default route. <code>0.0.0.0</code> means \"the address of the system " +"running dnsmasq\"." msgstr "" #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:125 msgid "Options:" msgstr "" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:584 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:616 +msgid "Ordinal: lower comes first." +msgstr "" + #: protocols/luci-proto-batman-adv/htdocs/luci-static/resources/protocol/batadv.js:55 msgid "Originator Interval" msgstr "" @@ -6106,13 +6138,13 @@ msgctxt "MACVLAN mode" msgid "Pass-through (Mirror physical device to single MAC VLAN)" msgstr "" -#: modules/luci-base/luasrc/view/sysauth.htm:29 +#: modules/luci-base/ucode/template/sysauth.ut:29 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1690 #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:51 #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:114 #: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:103 #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:58 -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/sysauth.htm:24 +#: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/sysauth.ut:19 msgid "Password" msgstr "Passord" @@ -6283,7 +6315,7 @@ msgstr "Ping" msgid "Pkts." msgstr "Pakker." -#: modules/luci-base/luasrc/view/sysauth.htm:19 +#: modules/luci-base/ucode/template/sysauth.ut:19 msgid "Please enter your username and password." msgstr "Skriv inn ditt brukernavn og passord." @@ -6300,6 +6332,7 @@ msgctxt "Chain hook policy" msgid "Policy: <strong>%h</strong> (%h)" msgstr "" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:579 #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/dropbear.js:21 msgid "Port" msgstr "Port" @@ -6316,11 +6349,11 @@ msgstr "Port status:" msgid "Potential negation of: %s" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:37 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:38 msgid "Power Management Mode" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:35 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:36 msgid "Pre-emptive CRC errors (CRCP_P)" msgstr "" @@ -6395,6 +6428,8 @@ msgid "Primary becomes active slave whenever it comes back up (always, 0)" msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:508 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:584 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:616 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:129 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:197 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:223 @@ -6510,7 +6545,7 @@ msgstr "" msgid "Quality" msgstr "Kvalitet" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:428 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:433 msgid "Query all available upstream resolvers." msgstr "" @@ -6592,7 +6627,7 @@ msgstr "" msgid "Raw hex-encoded bytes. Leave empty unless your ISP require this" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:345 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:350 msgid "Read <code>/etc/ethers</code> to configure the DHCP server." msgstr "Les <code>/etc/ethers</code> for å sette opp DHCP-tjeneren." @@ -6608,7 +6643,7 @@ msgstr "Grafer i sanntid" msgid "Reassociation Deadline" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:301 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:306 msgid "Rebind protection" msgstr "Binde beskyttelse" @@ -6693,6 +6728,7 @@ msgid "" msgstr "" #: modules/luci-compat/luasrc/model/network/proto_relay.lua:153 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:611 #: protocols/luci-proto-relay/htdocs/luci-static/resources/protocol/relay.js:39 msgid "Relay" msgstr "Relay" @@ -6783,6 +6819,10 @@ msgstr "Er nødvendig for noen nettleverandører, f.eks Charter med DOCSIS 3" msgid "Required. Base64-encoded private key for this interface." msgstr "" +#: protocols/luci-proto-nebula/htdocs/luci-static/resources/protocol/nebula.js:40 +msgid "Required. Path to the .yml config file for this interface." +msgstr "" + #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:587 msgid "Required. Public key of the WireGuard peer." msgstr "" @@ -6864,7 +6904,7 @@ msgid "Reselection policy for primary slave" msgstr "" #: modules/luci-base/htdocs/luci-static/resources/luci.js:2197 -#: modules/luci-base/luasrc/view/sysauth.htm:39 +#: modules/luci-base/ucode/template/sysauth.ut:39 #: modules/luci-compat/luasrc/view/cbi/delegator.htm:17 #: modules/luci-compat/luasrc/view/cbi/footer.htm:30 #: modules/luci-compat/luasrc/view/cbi/simpleform.htm:66 @@ -6883,10 +6923,14 @@ msgstr "Nullstill til standard innstilling" msgid "Resolv and Hosts Files" msgstr "Oppslag og Vertsfiler" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:356 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:361 msgid "Resolv file" msgstr "<abbr title=\"Resolvefile\">Oppslagsfil</abbr>" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:292 +msgid "Resolve specified FQDNs to an IP." +msgstr "" + #: modules/luci-base/htdocs/luci-static/resources/rpc.js:405 msgid "Resource not found" msgstr "" @@ -6913,7 +6957,7 @@ msgstr "Gjenoppretting" msgid "Restore backup" msgstr "Gjenopprett sikkerhetskopi" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:393 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:398 msgid "" "Return answers to DNS queries matching the subnet from which the query was " "received if multiple IPs are available." @@ -7001,7 +7045,7 @@ msgstr "" msgid "Robustness" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:486 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:491 msgid "" "Root directory for files served via TFTP. <em>Enable TFTP server</em> and " "<em>TFTP server root</em> turn on the TFTP server and serve files from " @@ -7106,6 +7150,11 @@ msgstr "" msgid "SNR" msgstr "" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:258 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:569 +msgid "SRV" +msgstr "" + #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/dropbear.js:10 #: modules/luci-mod-system/root/usr/share/luci/menu.d/luci-mod-system.json:38 msgid "SSH Access" @@ -7245,11 +7294,11 @@ msgstr "" msgid "Server" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:519 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:524 msgid "Server address" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:513 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:518 msgid "Server name" msgstr "" @@ -7337,7 +7386,7 @@ msgstr "" msgid "Setup routes for proxied IPv6 neighbours." msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:30 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:31 msgid "Severely Errored Seconds (SES)" msgstr "" @@ -7351,7 +7400,6 @@ msgid "Short Preamble" msgstr "" #: 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 msgid "Show current backup file list" msgstr "Vis gjeldende liste med sikkerhetskopifiler" @@ -7385,7 +7433,7 @@ msgstr "Signal" msgid "Signal / Noise" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:25 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:26 msgid "Signal Attenuation (SATN)" msgstr "" @@ -7402,7 +7450,7 @@ msgstr "Signal:" msgid "Size" msgstr "Størrelse" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:473 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:478 msgid "Size of DNS query cache" msgstr "" @@ -7419,12 +7467,12 @@ msgstr "Gå videre" msgid "Skip from backup files that are equal to those in /rom" msgstr "" -#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:42 +#: themes/luci-theme-openwrt-2020/ucode/template/themes/openwrt2020/header.ut:35 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:46 msgid "Skip to content" msgstr "Gå til innhold" -#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:41 +#: themes/luci-theme-openwrt-2020/ucode/template/themes/openwrt2020/header.ut:34 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:45 msgid "Skip to navigation" msgstr "Gå til navigasjon" @@ -7442,14 +7490,10 @@ msgstr "" msgid "Some fields are invalid, cannot save values!" msgstr "Noen felt er ugyldige, kan ikke lagre verdier!" -#: modules/luci-base/luasrc/view/error404.htm:9 +#: modules/luci-base/ucode/template/error404.ut:10 msgid "Sorry, the object you requested was not found." msgstr "Beklager, objektet du spurte om ble ikke funnet." -#: modules/luci-base/luasrc/view/error500.htm:9 -msgid "Sorry, the server encountered an unexpected error." -msgstr "Beklager, det oppstod en uventet feil på serveren." - #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:442 msgid "" "Sorry, there is no sysupgrade support present; a new firmware image must be " @@ -7488,7 +7532,7 @@ msgctxt "nft ip sport" msgid "Source port" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:500 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:505 msgid "" "Special <abbr title=\"Preboot eXecution Environment\">PXE</abbr> boot " "options for Dnsmasq." @@ -7857,7 +7901,7 @@ msgstr "Statiske Leier" msgid "Static address" msgstr "Statisk adresse" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:598 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:669 msgid "" "Static leases are used to assign fixed IP addresses and symbolic hostnames " "to DHCP clients. They are also required for non-dynamic interface " @@ -7874,7 +7918,7 @@ msgstr "" #: modules/luci-base/root/usr/share/luci/menu.d/luci-base.json:16 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:541 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:929 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:9 +#: modules/luci-mod-status/ucode/template/admin_status/index.ut:9 msgid "Status" msgstr "Status" @@ -7900,7 +7944,7 @@ msgstr "" msgid "Strict filtering" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:422 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:427 msgid "Strict order" msgstr "Streng overholdelse" @@ -7913,11 +7957,11 @@ msgstr "" msgid "Submit" msgstr "Send inn" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:372 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:377 msgid "Suppress logging" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:373 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:378 msgid "Suppress logging of the routine operation for the DHCP protocol." msgstr "" @@ -7970,6 +8014,14 @@ msgstr "" msgid "Sync with browser" msgstr "Synkroniser med nettleser" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:293 +msgid "Syntax: <code>/fqdn[/fqdn…]/[ipaddr]</code>." +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:569 +msgid "Syntax: <code>_service._proto.example.com</code>." +msgstr "" + #: modules/luci-base/root/usr/share/luci/menu.d/luci-base.json:26 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/10_system.js:17 #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:113 @@ -7995,9 +8047,9 @@ msgstr "System Egenskaper" msgid "System log buffer size" msgstr "System logg buffer størrelse" -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:79 -#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:86 -#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:71 +#: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/header.ut:67 +#: themes/luci-theme-material/ucode/template/themes/material/header.ut:81 +#: themes/luci-theme-openwrt-2020/ucode/template/themes/openwrt2020/header.ut:64 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:89 msgid "System running in recovery (initramfs) mode." msgstr "" @@ -8026,7 +8078,7 @@ msgstr "" msgid "TCP:" msgstr "TCP:" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:485 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:490 msgid "TFTP server root" msgstr "TFTP server roten" @@ -8051,6 +8103,7 @@ msgstr "" msgid "Table" msgstr "Tabell" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:574 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:56 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:66 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:187 @@ -8121,15 +8174,15 @@ msgid "" "username instead of the user ID!" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:681 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:752 msgid "The IP address %h is already used by another static lease" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:690 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:761 msgid "The IP address is outside of any DHCP pool address range" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:520 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:525 msgid "The IP address of the boot server" msgstr "" @@ -8299,7 +8352,7 @@ msgid "" "to be received and retransmitted which costs airtime)" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:514 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:519 msgid "The hostname of the boot server" msgstr "" @@ -8384,8 +8437,8 @@ msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:139 msgid "" -"The network ports on this device can be combined to several <abbr " -"title=\"Virtual Local Area Network\">VLAN</abbr>s in which computers can " +"The network ports on this device can be combined to several <abbr title=" +"\"Virtual Local Area Network\">VLAN</abbr>s in which computers can " "communicate directly with each other. <abbr title=\"Virtual Local Area " "Network\">VLAN</abbr>s are often used to separate different network " "segments. Often there is by default one Uplink port for a connection to the " @@ -8442,7 +8495,7 @@ msgstr "" msgid "The selected %s mode is incompatible with %s encryption" msgstr "" -#: modules/luci-base/luasrc/view/csrftoken.htm:11 +#: modules/luci-base/ucode/template/csrftoken.ut:11 msgid "The submitted security token is invalid or already expired!" msgstr "" @@ -8520,8 +8573,8 @@ msgid "" "nftables rules is discouraged and may lead to incomplete traffic filtering." msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:746 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:778 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:817 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:849 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:130 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:179 msgid "There are no active leases" @@ -8531,8 +8584,8 @@ msgstr "" msgid "There are no changes to apply" msgstr "" -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:70 -#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:62 +#: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/header.ut:58 +#: themes/luci-theme-openwrt-2020/ucode/template/themes/openwrt2020/header.ut:55 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:80 msgid "" "There is no password set on this router. Please configure a root password to " @@ -8555,7 +8608,6 @@ msgid "This does not look like a valid PEM file" msgstr "" #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:454 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:16 msgid "" "This is a list of shell glob patterns for matching files and directories to " "include during sysupgrade. Modified files in /etc/config/ and certain other " @@ -8598,11 +8650,11 @@ msgstr "" "Dette er den lokale endepunkt adressen som ble tildelt av tunnel 'broker', " "adressen ender vanligvis med <code>...:2/64</code>" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:266 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:268 msgid "This is the only DHCP server in the local network." msgstr "" -"Dette er den eneste <abbr title=\"Dynamic Host Configuration " -"Protocol\">DHCP</abbr> server i det lokale nettverket" +"Dette er den eneste <abbr title=\"Dynamic Host Configuration Protocol" +"\">DHCP</abbr> server i det lokale nettverket" #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6in4.js:73 msgid "This is the plain username for logging into the account" @@ -8680,8 +8732,8 @@ msgstr "Tidssone" #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:440 msgid "" "To fully configure the local WireGuard interface from an existing (e.g. " -"provider supplied) configuration file, use the <strong><a class=\"full-" -"import\" href=\"#\">configuration import</a></strong> instead." +"provider supplied) configuration file, use the <strong><a class=\"full-import" +"\" href=\"#\">configuration import</a></strong> instead." msgstr "" #: modules/luci-base/htdocs/luci-static/resources/luci.js:2674 @@ -8847,7 +8899,7 @@ msgstr "" msgid "Unable to determine upstream interface" msgstr "" -#: modules/luci-base/luasrc/view/error404.htm:11 +#: modules/luci-base/ucode/template/error404.ut:12 msgid "Unable to dispatch" msgstr "Kan ikke sende" @@ -8902,7 +8954,7 @@ msgstr "" msgid "Unable to verify PIN" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:32 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:33 msgid "Unavailable Seconds (UAS)" msgstr "" @@ -9047,7 +9099,7 @@ msgid "" "will be restarted to apply the updated configuration." msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:423 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:428 msgid "Upstream resolvers will be queried in the order of the resolv file." msgstr "" "<abbr title=\"Domain Name System\">DNS</abbr> servere skal følge rekkefølgen " @@ -9058,7 +9110,7 @@ msgstr "" msgid "Uptime" msgstr "Oppetid" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:344 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:349 msgid "Use <code>/etc/ethers</code>" msgstr "Bruk <code>/etc/ethers</code>" @@ -9169,7 +9221,7 @@ msgstr "" msgid "Use system certificates for inner-tunnel" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:599 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:670 #, fuzzy msgid "" "Use the <em>Add</em> Button to add a new lease entry. The <em>MAC address</" @@ -9227,11 +9279,11 @@ msgstr "" msgid "User key (PEM encoded)" msgstr "" -#: modules/luci-base/luasrc/view/sysauth.htm:23 +#: modules/luci-base/ucode/template/sysauth.ut:23 #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:112 #: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:101 #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:56 -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/sysauth.htm:18 +#: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/sysauth.ut:13 msgid "Username" msgstr "Brukernavn" @@ -9329,7 +9381,7 @@ msgstr "" msgid "VXLANv6 (RFC7348)" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:398 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:403 msgid "" "Validate DNS replies and cache DNSSEC data, requires upstream to support " "DNSSEC." @@ -9362,7 +9414,7 @@ msgstr "" msgid "Vendor Class to send when requesting DHCP" msgstr "Leverandør klasse som sendes ved DHCP spørring" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:403 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:408 msgid "Verify unsigned domain responses really come from unsigned domains." msgstr "" @@ -9439,6 +9491,10 @@ msgstr "" msgid "Weak" msgstr "" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:589 +msgid "Weight" +msgstr "" + #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1029 msgid "" "When delegating prefixes to multiple downstreams, interfaces with a higher " @@ -9560,7 +9616,7 @@ msgstr "Trådløst nettverk er deaktivert" msgid "Wireless network is enabled" msgstr "Trådløst nettverk er aktivert" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:278 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:280 msgid "Write received DNS queries to syslog." msgstr "Skriv mottatte DNS forespørsler til syslog" @@ -9599,8 +9655,16 @@ msgstr "" "deaktiverer nødvendige init skript som f.eks. \"nettverk\", kan enheten bli " "utilgjengelig! </strong>" -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:90 -#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:97 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:559 +msgid "You may add multiple records for the same Target." +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:596 +msgid "You may add multiple records for the same domain." +msgstr "" + +#: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/header.ut:78 +#: themes/luci-theme-material/ucode/template/themes/material/header.ut:92 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:73 msgid "" "You must enable JavaScript in your browser or LuCI will not work properly." @@ -9631,7 +9695,17 @@ msgstr "" msgid "ZRam Size" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:449 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:558 +msgid "_proto: _tcp, _udp, _sctp, _quic, … ." +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:557 +msgid "" +"_service: _sip, _ldap, _imap, _stun, _xmpp-client, … . (Note: while _http is " +"possible, no browsers support SRV records.)" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:454 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:152 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:163 msgid "any" @@ -9742,8 +9816,8 @@ msgstr "" msgid "e.g: dump" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:726 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:756 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:797 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:827 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:101 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:148 msgid "expired" @@ -9955,9 +10029,9 @@ msgstr "" msgid "unknown" msgstr "ukjent" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:456 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:724 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:754 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:461 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:795 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:825 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:99 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:146 msgid "unlimited" @@ -10173,6 +10247,21 @@ msgstr "ja" msgid "« Back" msgstr "« Tilbake" +#~ msgid "Back to configuration" +#~ msgstr "Tilbake til konfigurasjon" + +#~ msgid "Close list..." +#~ msgstr "Lukk liste..." + +#~ msgid "Internal Server Error" +#~ msgstr "Intern server feil" + +#~ msgid "No files found" +#~ msgstr "Ingen filer funnet" + +#~ msgid "Sorry, the server encountered an unexpected error." +#~ msgstr "Beklager, det oppstod en uventet feil på serveren." + #~ msgid "Do not forward queries that cannot be answered by public resolvers." #~ msgstr "" #~ "Ikke videresend forespørsler som ikke kan besvares med offentlige " @@ -10332,8 +10421,8 @@ msgstr "« Tilbake" #~ msgid "" #~ "The filesystem that was used to format the memory (<abbr title=\"for " -#~ "example\">e.g.</abbr> <samp><abbr title=\"Third Extended " -#~ "Filesystem\">ext3</abbr></samp>)" +#~ "example\">e.g.</abbr> <samp><abbr title=\"Third Extended Filesystem" +#~ "\">ext3</abbr></samp>)" #~ msgstr "" #~ "Filsystemet som ble brukt til å formatere partisjonen eller minnet. " #~ "(<abbr title=\"for eksempel\">f.eks.</abbr> <samp><abbr title=\"Third " diff --git a/modules/luci-base/po/nl/base.po b/modules/luci-base/po/nl/base.po index 7a736ab8aa..99fc3f306a 100644 --- a/modules/luci-base/po/nl/base.po +++ b/modules/luci-base/po/nl/base.po @@ -227,6 +227,18 @@ msgstr "" msgid "<abbr title=\"Router Advertisement\">RA</abbr>-Service" msgstr "" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:294 +msgid "" +"<code>/#/</code> matches any domain. <code>/example.com/</code> returns " +"NXDOMAIN." +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:295 +msgid "" +"<code>/example.com/#</code> returns NULL addresses (<code>0.0.0.0</code> and " +"<code>::</code>) for example.com and its subdomains." +msgstr "" + #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:87 msgctxt "nft relational \">\" operator expression" msgid "<var>%s</var> greater than <strong>%s</strong>" @@ -388,7 +400,7 @@ msgstr "" msgid "ATM device number" msgstr "ATM apparaatnummer" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:36 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:37 msgid "ATU-C System Vendor ID" msgstr "ATU-C Systeemleverancier-ID" @@ -398,7 +410,7 @@ msgstr "ATU-C Systeemleverancier-ID" msgid "Absent Interface" msgstr "Geen interface" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:320 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:325 msgid "Accept DNS queries only from hosts whose address is on a local subnet." msgstr "" @@ -537,7 +549,7 @@ msgstr "Instantie toevoegen" msgid "Add key" msgstr "Sleutel toevoegen" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:410 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:415 msgid "Add local domain suffix to names served from hosts files." msgstr "" "Lokaal-domeinachtervoegsel toevoegen aan uit hostsfiles geserveerde namen" @@ -559,11 +571,11 @@ msgstr "" msgid "Add to Whitelist" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:367 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:372 msgid "Additional hosts files" msgstr "Aanvullende Hostsbestanden" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:417 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:422 msgid "Additional servers file" msgstr "Aanvullende-serversbestand" @@ -593,7 +605,7 @@ msgstr "" msgid "Address to access local relay bridge" msgstr "Adres van lokale relay-brug" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:289 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:291 msgid "Addresses" msgstr "Adressen" @@ -626,7 +638,7 @@ msgstr "" msgid "Aggregate Originator Messages" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:27 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:28 msgid "Aggregate Transmit Power (ACTATP)" msgstr "Geaggregeerd verzendvermogen (ACTATP)" @@ -662,18 +674,18 @@ msgstr "Alias Interface" msgid "Alias of \"%s\"" msgstr "Alias van \"%s\"" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:427 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:432 msgid "All servers" msgstr "Alle servers" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:378 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:383 msgid "" "Allocate IP addresses sequentially, starting from the lowest available " "address." msgstr "" "IP-adressen op volgorde toewijzen, beginnend bij het laagst beschikbare adres" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:377 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:382 msgid "Allocate IPs sequentially" msgstr "IP-adressen sequentieel toewijzen" @@ -702,7 +714,7 @@ msgstr "Verouderde 802.11b-snelheden toestaan" msgid "Allow listed only" msgstr "Alleen vermelde toestaan" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:306 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:311 msgid "Allow localhost" msgstr "Localhost toestaan" @@ -748,7 +760,7 @@ msgstr "Altijd uit (kernel: geen)" msgid "Always on (kernel: default-on)" msgstr "Altijd aan (kernel: altijd-aan)" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:538 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:543 msgid "Always send DHCP Options. Sometimes needed, with e.g. PXELinux." msgstr "" @@ -775,7 +787,7 @@ msgid "An optional, short description for this device" msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1484 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:20 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:21 msgid "Annex" msgstr "" @@ -889,7 +901,7 @@ msgstr "" msgid "Any zone" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:532 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:537 msgid "Apply DHCP Options to this net. (Empty = all clients)." msgstr "" @@ -979,11 +991,11 @@ msgstr "Authenticatie" msgid "Authentication Type" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:265 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:267 msgid "Authoritative" msgstr "Autoritatieve" -#: modules/luci-base/luasrc/view/sysauth.htm:17 +#: modules/luci-base/ucode/template/sysauth.ut:17 #: themes/luci-theme-bootstrap/htdocs/luci-static/resources/view/bootstrap/sysauth.js:11 msgid "Authorization Required" msgstr "Autorisatie Vereist" @@ -1053,7 +1065,7 @@ msgstr "Gemiddelde:" msgid "Avoid Bridge Loops" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:388 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:393 msgid "" "Avoid uselessly triggering dial-on-demand links (filters SRV/SOA records and " "names with underscores)." @@ -1088,10 +1100,6 @@ msgstr "" msgid "Back to Overview" msgstr "Terug naar het overzicht" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:48 -msgid "Back to configuration" -msgstr "Terug naar de configuratie" - #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:826 msgid "Back to peer configuration" msgstr "" @@ -1105,7 +1113,6 @@ msgid "Backup / Flash Firmware" msgstr "Backup / Flash Firmware" #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:351 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:12 msgid "Backup file list" msgstr "" @@ -1147,7 +1154,6 @@ msgid "Beacon Interval" msgstr "" #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:352 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:46 msgid "" "Below is the determined list of files to backup. It consists of changed " "configuration files marked by opkg, essential base files and the user " @@ -1158,7 +1164,7 @@ msgstr "" msgid "Bind NTP server" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:326 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:331 msgid "Bind dynamically to interfaces rather than wildcard address." msgstr "" @@ -1174,6 +1180,17 @@ msgstr "" msgid "Bind interface" msgstr "" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:595 +msgid "" +"Bind service records to a domain name: specify the location of services." +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:556 +msgid "" +"Bind service records to a domain name: specify the location of services. See " +"<a href=\"%s\">RFC2782</a>." +msgstr "" + #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:59 #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:64 #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:64 @@ -1276,6 +1293,10 @@ msgstr "" msgid "CLAT configuration failed" msgstr "" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:574 +msgid "CNAME or fqdn" +msgstr "" + #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/processes.js:72 msgid "CPU usage (%)" msgstr "CPU gebruik (%)" @@ -1513,17 +1534,13 @@ msgid "" "persist connection" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:49 -msgid "Close list..." -msgstr "" - #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:44 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:63 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2184 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:391 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:352 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:355 -#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:72 +#: themes/luci-theme-material/ucode/template/themes/material/header.ut:66 msgid "Collecting data..." msgstr "" @@ -1558,6 +1575,10 @@ msgstr "" msgid "Compute outgoing checksum (optional)." msgstr "" +#: protocols/luci-proto-nebula/htdocs/luci-static/resources/protocol/nebula.js:40 +msgid "Config File" +msgstr "" + #: modules/luci-base/htdocs/luci-static/resources/ui.js:4375 #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:454 msgid "Configuration" @@ -1597,8 +1618,8 @@ msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:764 msgid "" -"Configures the operation mode of the <abbr title=\"Router " -"Advertisement\">RA</abbr> service on this interface." +"Configures the operation mode of the <abbr title=\"Router Advertisement" +"\">RA</abbr> service on this interface." msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:879 @@ -1771,8 +1792,8 @@ msgstr "" #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/leds.js:59 msgid "" -"Customizes the behaviour of the device <abbr title=\"Light Emitting " -"Diode\">LED</abbr>s if possible." +"Customizes the behaviour of the device <abbr title=\"Light Emitting Diode" +"\">LED</abbr>s if possible." msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:673 @@ -1791,7 +1812,7 @@ msgstr "DAE-Poort" msgid "DAE-Secret" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:525 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:530 msgid "DHCP Options" msgstr "" @@ -1831,11 +1852,11 @@ msgstr "" msgid "DNS" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:282 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:284 msgid "DNS forwardings" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:445 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:450 msgid "DNS query port" msgstr "<abbr title=\"Domain Name System\">DNS</abbr> verzoekpoort" @@ -1843,7 +1864,7 @@ msgstr "<abbr title=\"Domain Name System\">DNS</abbr> verzoekpoort" msgid "DNS search domains" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:438 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:443 msgid "DNS server port" msgstr "<abbr title=\"Domain Name System\">DNS</abbr> serverpoort" @@ -1859,11 +1880,11 @@ msgstr "" msgid "DNS-Label / FQDN" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:397 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:402 msgid "DNSSEC" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:402 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:407 msgid "DNSSEC check unsigned" msgstr "" @@ -1876,11 +1897,11 @@ msgid "DS-Lite AFTR address" msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1481 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:44 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:45 msgid "DSL" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:14 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:15 msgid "DSL Status" msgstr "" @@ -1893,12 +1914,12 @@ msgid "DTIM Interval" msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:59 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:700 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:771 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:136 msgid "DUID" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:21 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:22 msgid "Data Rate" msgstr "" @@ -2141,7 +2162,7 @@ msgstr "" msgid "Disassociate On Low Acknowledgement" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:302 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:307 msgid "" "Discard upstream responses containing <a href=\"%s\">RFC1918</a> addresses." msgstr "" @@ -2187,7 +2208,7 @@ msgstr "" msgid "Distributed ARP Table" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:543 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:548 msgid "" "Dnsmasq instance to which this boot section is bound. If unspecified, the " "section is valid for all dnsmasq instances." @@ -2195,12 +2216,12 @@ msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:246 msgid "" -"Dnsmasq is a lightweight <abbr title=\"Dynamic Host Configuration " -"Protocol\">DHCP</abbr> server and <abbr title=\"Domain Name System\">DNS</" -"abbr> forwarder." +"Dnsmasq is a lightweight <abbr title=\"Dynamic Host Configuration Protocol" +"\">DHCP</abbr> server and <abbr title=\"Domain Name System\">DNS</abbr> " +"forwarder." msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:414 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:419 msgid "Do not cache negative replies, e.g. for non-existent domains." msgstr "" @@ -2212,15 +2233,15 @@ msgstr "" msgid "Do not create host route to peer (optional)." msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:262 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:264 msgid "Do not forward DNS queries without dots or domain parts." msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:383 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:388 msgid "Do not forward reverse lookups for local networks." msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:339 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:344 msgid "Do not listen on the specified interfaces." msgstr "" @@ -2273,15 +2294,16 @@ msgstr "" msgid "Do you want to replace the current keys?" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:593 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:606 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:664 msgid "Domain" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:261 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:263 msgid "Domain required" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:311 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:316 msgid "Domain whitelist" msgstr "" @@ -2515,7 +2537,7 @@ msgstr "" msgid "Enable Single DES" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:480 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:485 msgid "Enable TFTP server" msgstr "" @@ -2533,9 +2555,9 @@ msgstr "" #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/uhttpd.js:14 msgid "" -"Enable automatic redirection of <abbr title=\"Hypertext Transfer " -"Protocol\">HTTP</abbr> requests to <abbr title=\"Hypertext Transfer Protocol " -"Secure\">HTTPS</abbr> port." +"Enable automatic redirection of <abbr title=\"Hypertext Transfer Protocol" +"\">HTTP</abbr> requests to <abbr title=\"Hypertext Transfer Protocol Secure" +"\">HTTPS</abbr> port." msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:977 @@ -2598,7 +2620,7 @@ msgstr "" msgid "Enable the DF (Don't Fragment) flag of the encapsulating packets." msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:481 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:486 msgid "Enable the built-in single-instance TFTP server." msgstr "" @@ -2715,7 +2737,7 @@ msgstr "" msgid "Error getting PublicKey" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:29 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:30 msgid "Errored seconds (ES)" msgstr "" @@ -2737,11 +2759,11 @@ msgstr "" msgid "Every second (fast, 1)" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:338 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:343 msgid "Exclude interfaces" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:307 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:312 msgid "" "Exempt <code>127.0.0.0/8</code> and <code>::1</code> from rebinding checks, " "e.g. for RBL services." @@ -2753,7 +2775,7 @@ msgstr "" msgid "Existing device" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:409 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:414 msgid "Expand hosts" msgstr "" @@ -2887,7 +2909,7 @@ msgstr "" msgid "File" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:418 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:423 msgid "" "File listing upstream resolvers, optionally domain-specific, e.g. " "<code>server=1.2.3.4</code>, <code>server=/domain/1.2.3.4</code>." @@ -2897,20 +2919,20 @@ msgstr "" msgid "File not accessible" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:349 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:354 msgid "File to store DHCP lease information." msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:357 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:362 msgid "File with upstream resolvers." msgstr "" #: modules/luci-base/htdocs/luci-static/resources/ui.js:2846 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:507 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:512 msgid "Filename" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:493 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:498 msgid "Filename of the boot image advertised to clients." msgstr "" @@ -2919,11 +2941,11 @@ msgstr "" msgid "Filesystem" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:382 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:387 msgid "Filter private" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:387 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:392 msgid "Filter useless" msgstr "" @@ -2987,7 +3009,7 @@ msgstr "" msgid "Firmware Version" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:446 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:451 msgid "Fixed source port for outbound DNS queries." msgstr "" @@ -3013,7 +3035,7 @@ msgstr "" msgid "Flashing…" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:537 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:542 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:686 msgid "Force" msgstr "" @@ -3058,16 +3080,16 @@ msgstr "" msgid "Force use of NAT-T" msgstr "" -#: modules/luci-base/luasrc/view/csrftoken.htm:8 +#: modules/luci-base/ucode/template/csrftoken.ut:8 msgid "Form token mismatch" msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:919 msgid "" -"Forward <abbr title=\"Neighbour Discovery Protocol\">NDP</abbr> <abbr " -"title=\"Neighbour Solicitation, Type 135\">NS</abbr> and <abbr " -"title=\"Neighbour Advertisement, Type 136\">NA</abbr> messages between the " -"designated master interface and downstream interfaces." +"Forward <abbr title=\"Neighbour Discovery Protocol\">NDP</abbr> <abbr title=" +"\"Neighbour Solicitation, Type 135\">NS</abbr> and <abbr title=\"Neighbour " +"Advertisement, Type 136\">NA</abbr> messages between the designated master " +"interface and downstream interfaces." msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:770 @@ -3087,7 +3109,7 @@ msgid "" "downstream interfaces." msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:28 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:29 msgid "Forward Error Correction Seconds (FECS)" msgstr "" @@ -3244,15 +3266,15 @@ msgstr "" msgid "Global network options" msgstr "" -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:82 -#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:89 -#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:74 +#: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/header.ut:70 +#: themes/luci-theme-material/ucode/template/themes/material/header.ut:84 +#: themes/luci-theme-openwrt-2020/ucode/template/themes/openwrt2020/header.ut:67 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:92 msgid "Go to firmware upgrade..." msgstr "" -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:72 -#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:64 +#: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/header.ut:60 +#: themes/luci-theme-openwrt-2020/ucode/template/themes/openwrt2020/header.ut:57 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:82 msgid "Go to password configuration..." msgstr "" @@ -3393,7 +3415,7 @@ msgstr "" msgid "Hang Up" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:33 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:34 msgid "Header Error Code Errors (HEC)" msgstr "" @@ -3444,7 +3466,7 @@ msgstr "" msgid "Host expiry timeout" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:508 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:513 msgid "Host requests this filename from the boot server." msgstr "" @@ -3453,8 +3475,8 @@ msgid "Host-Uniq tag content" msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:38 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:559 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:607 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:630 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:678 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/10_system.js:54 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:87 #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:135 @@ -3469,7 +3491,7 @@ msgstr "" msgid "Hostnames" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:551 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:622 msgid "" "Hostnames are used to bind a domain name to an IP address. This setting is " "redundant for hostnames already configured with static leases, but it can be " @@ -3533,7 +3555,7 @@ msgstr "" msgid "IP Protocol" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:258 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:260 msgid "IP Sets" msgstr "" @@ -3541,7 +3563,7 @@ msgstr "" msgid "IP Type" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:563 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:634 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:178 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:204 msgid "IP address" @@ -3567,15 +3589,15 @@ msgctxt "nft meta l4proto" msgid "IP protocol" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:589 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:660 msgid "IP set" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:295 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:300 msgid "IP sets" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:432 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:437 msgid "IPs to override with NXDOMAIN" msgstr "" @@ -3616,7 +3638,7 @@ msgstr "" #: modules/luci-base/htdocs/luci-static/resources/protocol/static.js:178 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:39 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:665 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:736 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:88 #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:164 msgid "IPv4 address" @@ -3787,7 +3809,7 @@ msgstr "" msgid "IPv6 suffix" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:706 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:777 msgid "IPv6 suffix (hex)" msgstr "" "<abbr title=\"Internet Protocol Version 6\">IPv6</abbr>-Achtervoegsel (hex)" @@ -3880,13 +3902,13 @@ msgstr "" #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:340 msgid "" "If your physical memory is insufficient unused data can be temporarily " -"swapped to a swap-device resulting in a higher amount of usable <abbr " -"title=\"Random Access Memory\">RAM</abbr>. Be aware that swapping data is a " -"very slow process as the swap-device cannot be accessed with the high " -"datarates of the <abbr title=\"Random Access Memory\">RAM</abbr>." +"swapped to a swap-device resulting in a higher amount of usable <abbr title=" +"\"Random Access Memory\">RAM</abbr>. Be aware that swapping data is a very " +"slow process as the swap-device cannot be accessed with the high datarates " +"of the <abbr title=\"Random Access Memory\">RAM</abbr>." msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:363 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:368 msgid "Ignore <code>/etc/hosts</code>" msgstr "" @@ -3894,7 +3916,7 @@ msgstr "" msgid "Ignore interface" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:352 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:357 msgid "Ignore resolv file" msgstr "" @@ -3942,7 +3964,7 @@ msgid "" "order to avoid broadcast loops that can bring the entire LAN to a standstill." msgstr "" -#: modules/luci-base/luasrc/view/csrftoken.htm:13 +#: modules/luci-base/ucode/template/csrftoken.ut:13 msgid "" "In order to prevent unauthorized access to the system, your request has been " "blocked. Click \"Continue »\" below to return to the previous page." @@ -4051,7 +4073,7 @@ msgstr "" msgid "Install protocol extensions..." msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:542 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:547 msgid "Instance" msgstr "" @@ -4138,10 +4160,6 @@ msgstr "" msgid "Internal" msgstr "" -#: modules/luci-base/luasrc/view/error500.htm:8 -msgid "Internal Server Error" -msgstr "" - #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:285 msgid "Interval For Sending Learning Packets" msgstr "" @@ -4210,8 +4228,8 @@ msgstr "" msgid "Invalid hexadecimal value" msgstr "" -#: modules/luci-base/luasrc/view/sysauth.htm:12 -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/sysauth.htm:37 +#: modules/luci-base/ucode/template/sysauth.ut:12 +#: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/sysauth.ut:32 msgid "Invalid username and/or password! Please try again." msgstr "" @@ -4233,8 +4251,8 @@ msgid "" "flash memory, please verify the image file!" msgstr "" -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:89 -#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:96 +#: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/header.ut:77 +#: themes/luci-theme-material/ucode/template/themes/material/header.ut:91 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:72 msgid "JavaScript required!" msgstr "" @@ -4366,11 +4384,17 @@ msgstr "" msgid "Language and Style" msgstr "" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:560 +msgid "" +"Larger weights (of the same prio) are given a proportionately higher " +"probability of being selected." +msgstr "" + #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:575 msgid "Last member interval" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:23 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:24 msgid "Latency" msgstr "" @@ -4386,11 +4410,11 @@ msgstr "" msgid "Learn routes" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:348 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:353 msgid "Lease file" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:697 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:768 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:679 msgid "Lease time" msgstr "" @@ -4434,19 +4458,19 @@ msgstr "" msgid "Limit" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:24 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:25 msgid "Line Attenuation (LATN)" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:18 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:19 msgid "Line Mode" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:17 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:18 msgid "Line State" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:19 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:20 msgid "Line Uptime" msgstr "" @@ -4467,12 +4491,12 @@ msgctxt "nft @ll,off,len" msgid "Link layer header bits %d-%d" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:433 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:438 msgid "List of IP addresses to convert into NXDOMAIN responses." msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:296 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:581 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:301 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:652 msgid "List of IP sets to populate with the specified domain IPs." msgstr "" @@ -4498,15 +4522,11 @@ msgstr "" msgid "List of SSH key files for auth" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:312 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:317 msgid "List of domains to allow RFC1918 responses for." msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:290 -msgid "List of domains to force to an IP address." -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:283 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:285 msgid "List of upstream resolvers to forward queries to." msgstr "" @@ -4514,7 +4534,7 @@ msgstr "" msgid "Listen Port" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:332 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:337 msgid "Listen interfaces" msgstr "" @@ -4522,7 +4542,7 @@ msgstr "" msgid "Listen only on the given interface or, if unspecified, on all" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:333 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:338 msgid "" "Listen only on the specified interfaces, and loopback if not excluded " "explicitly." @@ -4532,7 +4552,7 @@ msgstr "" msgid "ListenPort setting is invalid" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:439 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:444 msgid "Listening port for inbound DNS queries." msgstr "" @@ -4559,9 +4579,9 @@ msgid "Loading directory contents…" msgstr "" #: modules/luci-base/htdocs/luci-static/resources/luci.js:1942 -#: modules/luci-base/luasrc/view/view.htm:4 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:12 -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/sysauth.htm:45 +#: modules/luci-base/ucode/template/view.ut:4 +#: modules/luci-mod-status/ucode/template/admin_status/index.ut:12 +#: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/sysauth.ut:40 msgid "Loading view…" msgstr "" @@ -4619,19 +4639,19 @@ msgstr "" msgid "Local ULA" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:273 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:275 msgid "Local domain" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:274 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:276 msgid "Local domain suffix appended to DHCP names and hosts file entries." msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:269 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:271 msgid "Local server" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:319 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:324 msgid "Local service only" msgstr "" @@ -4639,7 +4659,7 @@ msgstr "" msgid "Local wireguard key" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:392 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:397 msgid "Localise queries" msgstr "" @@ -4651,7 +4671,7 @@ msgstr "" msgid "Log output level" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:277 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:279 msgid "Log queries" msgstr "" @@ -4675,8 +4695,8 @@ msgstr "" msgid "Logical network to which the tunnel will be added (bridged) (optional)." msgstr "" -#: modules/luci-base/luasrc/view/sysauth.htm:38 -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/sysauth.htm:41 +#: modules/luci-base/ucode/template/sysauth.ut:38 +#: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/sysauth.ut:36 msgid "Login" msgstr "" @@ -4688,7 +4708,7 @@ msgstr "" msgid "Loose filtering" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:31 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:32 msgid "Loss of Signal Seconds (LOSS)" msgstr "" @@ -4696,6 +4716,10 @@ msgstr "" msgid "Lowest leased address as offset from the network address." msgstr "" +#: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/footer.ut:12 +msgid "Lua compatibility mode active" +msgstr "" + #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:48 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:83 msgid "MAC" @@ -4720,7 +4744,7 @@ msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:591 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:40 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:619 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:690 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1164 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2177 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:56 @@ -4779,6 +4803,10 @@ msgstr "" msgid "MTU" msgstr "" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:259 +msgid "MX" +msgstr "" + #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:303 msgid "" "Make sure to clone the root filesystem using something like the commands " @@ -4803,23 +4831,23 @@ msgstr "" msgid "Max <abbr title=\"Router Advertisement\">RA</abbr> interval" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:22 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:23 msgid "Max. Attainable Data Rate (ATTNDR)" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:452 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:457 msgid "Max. DHCP leases" msgstr "" "<abbr title=\"maximal\">Max.</abbr> <abbr title=\"Dynamic Host Configuration " "Protocol\">DHCP</abbr> toewijzingen" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:459 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:464 msgid "Max. EDNS0 packet size" msgstr "" "<abbr title=\"maximale\">Max.</abbr> <abbr title=\"Extension Mechanisms for " "Domain Name System\">EDNS0</abbr> packetgrootte" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:466 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:471 msgid "Max. concurrent queries" msgstr "<abbr title=\"maximaal aantal\">Max.</abbr> gelijktijdige verzoeken" @@ -4831,15 +4859,15 @@ msgstr "" msgid "Maximum allowed Listen Interval" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:453 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:458 msgid "Maximum allowed number of active DHCP leases." msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:467 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:472 msgid "Maximum allowed number of concurrent DNS queries." msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:460 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:465 msgid "Maximum allowed size of EDNS0 UDP packets." msgstr "" @@ -4866,7 +4894,7 @@ msgstr "" msgid "Maximum transmit power" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:389 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:394 msgid "May prevent VoIP or other services from working." msgstr "" @@ -5180,11 +5208,15 @@ msgstr "" msgid "Name of the tunnel device" msgstr "" -#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:46 +#: themes/luci-theme-openwrt-2020/ucode/template/themes/openwrt2020/header.ut:39 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:50 msgid "Navigation" msgstr "" +#: protocols/luci-proto-nebula/htdocs/luci-static/resources/protocol/nebula.js:10 +msgid "Nebula Network" +msgstr "" + #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:653 msgid "Neighbour cache validity" msgstr "" @@ -5220,7 +5252,7 @@ msgstr "" msgid "Network address" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:492 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:497 msgid "Network boot image" msgstr "" @@ -5260,7 +5292,7 @@ msgstr "" msgid "Network interface" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:531 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:536 msgid "Network-ID" msgstr "" @@ -5268,7 +5300,7 @@ msgstr "" msgid "Never" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:270 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:272 msgid "" "Never forward matching domains and subdomains, resolve from DHCP or hosts " "files only." @@ -5316,9 +5348,9 @@ msgstr "" msgid "No RX signal" msgstr "" -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:80 -#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:87 -#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:72 +#: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/header.ut:68 +#: themes/luci-theme-material/ucode/template/themes/material/header.ut:82 +#: themes/luci-theme-openwrt-2020/ucode/template/themes/openwrt2020/header.ut:65 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:90 msgid "" "No changes to settings will be stored and are lost after rebooting. This " @@ -5360,10 +5392,6 @@ msgstr "" msgid "No entries in this directory" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:82 -msgid "No files found" -msgstr "" - #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:833 msgid "" "No fixed interface listening port defined, peers might not be able to " @@ -5399,7 +5427,7 @@ msgstr "" msgid "No more slaves available, can not save interface" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:413 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:418 msgid "No negative cache" msgstr "" @@ -5407,8 +5435,8 @@ msgstr "" msgid "No nftables ruleset loaded." msgstr "" -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:69 -#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:61 +#: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/header.ut:57 +#: themes/luci-theme-openwrt-2020/ucode/template/themes/openwrt2020/header.ut:54 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:79 msgid "No password set!" msgstr "" @@ -5448,7 +5476,7 @@ msgstr "" msgid "Noise" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:26 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:27 msgid "Noise Margin (SNR)" msgstr "" @@ -5456,11 +5484,11 @@ msgstr "" msgid "Noise:" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:34 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:35 msgid "Non Pre-emptive CRC errors (CRC_P)" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:325 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:330 msgid "Non-wildcard" msgstr "" @@ -5475,7 +5503,7 @@ msgstr "" msgid "Normal" msgstr "" -#: modules/luci-base/luasrc/view/error404.htm:8 +#: modules/luci-base/ucode/template/error404.ut:9 msgid "Not Found" msgstr "" @@ -5525,7 +5553,7 @@ msgstr "" msgid "Number of IGMP membership reports" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:474 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:479 msgid "Number of cached DNS entries, 10000 is maximum, 0 is no caching." msgstr "" @@ -5574,7 +5602,7 @@ msgstr "" msgid "On-link" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:672 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:743 msgid "One of hostname or MAC address must be specified!" msgstr "" @@ -5610,7 +5638,6 @@ msgid "Open iptables rules overview…" msgstr "" #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:472 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:19 msgid "Open list..." msgstr "" @@ -5754,18 +5781,23 @@ msgstr "" msgid "Options" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:526 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:531 msgid "" "Options for the Network-ID. (Note: needs also Network-ID.) E.g. " -"\"<code>42,192.168.1.4</code>\" for NTP server, \"<code>3,192.168.4.4</" -"code>\" for default route. <code>0.0.0.0</code> means \"the address of the " -"system running dnsmasq\"." +"\"<code>42,192.168.1.4</code>\" for NTP server, \"<code>3,192.168.4.4</code>" +"\" for default route. <code>0.0.0.0</code> means \"the address of the system " +"running dnsmasq\"." msgstr "" #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:125 msgid "Options:" msgstr "" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:584 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:616 +msgid "Ordinal: lower comes first." +msgstr "" + #: protocols/luci-proto-batman-adv/htdocs/luci-static/resources/protocol/batadv.js:55 msgid "Originator Interval" msgstr "" @@ -6037,13 +6069,13 @@ msgctxt "MACVLAN mode" msgid "Pass-through (Mirror physical device to single MAC VLAN)" msgstr "" -#: modules/luci-base/luasrc/view/sysauth.htm:29 +#: modules/luci-base/ucode/template/sysauth.ut:29 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1690 #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:51 #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:114 #: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:103 #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:58 -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/sysauth.htm:24 +#: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/sysauth.ut:19 msgid "Password" msgstr "" @@ -6214,7 +6246,7 @@ msgstr "" msgid "Pkts." msgstr "" -#: modules/luci-base/luasrc/view/sysauth.htm:19 +#: modules/luci-base/ucode/template/sysauth.ut:19 msgid "Please enter your username and password." msgstr "" @@ -6231,6 +6263,7 @@ msgctxt "Chain hook policy" msgid "Policy: <strong>%h</strong> (%h)" msgstr "" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:579 #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/dropbear.js:21 msgid "Port" msgstr "Poort" @@ -6247,11 +6280,11 @@ msgstr "" msgid "Potential negation of: %s" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:37 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:38 msgid "Power Management Mode" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:35 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:36 msgid "Pre-emptive CRC errors (CRCP_P)" msgstr "" @@ -6324,6 +6357,8 @@ msgid "Primary becomes active slave whenever it comes back up (always, 0)" msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:508 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:584 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:616 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:129 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:197 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:223 @@ -6439,7 +6474,7 @@ msgstr "" msgid "Quality" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:428 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:433 msgid "Query all available upstream resolvers." msgstr "" @@ -6521,7 +6556,7 @@ msgstr "" msgid "Raw hex-encoded bytes. Leave empty unless your ISP require this" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:345 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:350 msgid "Read <code>/etc/ethers</code> to configure the DHCP server." msgstr "" @@ -6537,7 +6572,7 @@ msgstr "" msgid "Reassociation Deadline" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:301 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:306 msgid "Rebind protection" msgstr "" @@ -6622,6 +6657,7 @@ msgid "" msgstr "" #: modules/luci-compat/luasrc/model/network/proto_relay.lua:153 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:611 #: protocols/luci-proto-relay/htdocs/luci-static/resources/protocol/relay.js:39 msgid "Relay" msgstr "" @@ -6712,6 +6748,10 @@ msgstr "" msgid "Required. Base64-encoded private key for this interface." msgstr "" +#: protocols/luci-proto-nebula/htdocs/luci-static/resources/protocol/nebula.js:40 +msgid "Required. Path to the .yml config file for this interface." +msgstr "" + #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:587 msgid "Required. Public key of the WireGuard peer." msgstr "" @@ -6793,7 +6833,7 @@ msgid "Reselection policy for primary slave" msgstr "" #: modules/luci-base/htdocs/luci-static/resources/luci.js:2197 -#: modules/luci-base/luasrc/view/sysauth.htm:39 +#: modules/luci-base/ucode/template/sysauth.ut:39 #: modules/luci-compat/luasrc/view/cbi/delegator.htm:17 #: modules/luci-compat/luasrc/view/cbi/footer.htm:30 #: modules/luci-compat/luasrc/view/cbi/simpleform.htm:66 @@ -6812,10 +6852,14 @@ msgstr "" msgid "Resolv and Hosts Files" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:356 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:361 msgid "Resolv file" msgstr "" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:292 +msgid "Resolve specified FQDNs to an IP." +msgstr "" + #: modules/luci-base/htdocs/luci-static/resources/rpc.js:405 msgid "Resource not found" msgstr "" @@ -6842,7 +6886,7 @@ msgstr "" msgid "Restore backup" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:393 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:398 msgid "" "Return answers to DNS queries matching the subnet from which the query was " "received if multiple IPs are available." @@ -6928,7 +6972,7 @@ msgstr "" msgid "Robustness" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:486 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:491 msgid "" "Root directory for files served via TFTP. <em>Enable TFTP server</em> and " "<em>TFTP server root</em> turn on the TFTP server and serve files from " @@ -7031,6 +7075,11 @@ msgstr "" msgid "SNR" msgstr "" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:258 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:569 +msgid "SRV" +msgstr "" + #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/dropbear.js:10 #: modules/luci-mod-system/root/usr/share/luci/menu.d/luci-mod-system.json:38 msgid "SSH Access" @@ -7168,11 +7217,11 @@ msgstr "" msgid "Server" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:519 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:524 msgid "Server address" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:513 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:518 msgid "Server name" msgstr "" @@ -7260,7 +7309,7 @@ msgstr "" msgid "Setup routes for proxied IPv6 neighbours." msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:30 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:31 msgid "Severely Errored Seconds (SES)" msgstr "" @@ -7274,7 +7323,6 @@ msgid "Short Preamble" msgstr "" #: 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 msgid "Show current backup file list" msgstr "" @@ -7308,7 +7356,7 @@ msgstr "" msgid "Signal / Noise" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:25 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:26 msgid "Signal Attenuation (SATN)" msgstr "" @@ -7325,7 +7373,7 @@ msgstr "" msgid "Size" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:473 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:478 msgid "Size of DNS query cache" msgstr "" @@ -7342,12 +7390,12 @@ msgstr "" msgid "Skip from backup files that are equal to those in /rom" msgstr "" -#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:42 +#: themes/luci-theme-openwrt-2020/ucode/template/themes/openwrt2020/header.ut:35 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:46 msgid "Skip to content" msgstr "" -#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:41 +#: themes/luci-theme-openwrt-2020/ucode/template/themes/openwrt2020/header.ut:34 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:45 msgid "Skip to navigation" msgstr "" @@ -7365,14 +7413,10 @@ msgstr "" msgid "Some fields are invalid, cannot save values!" msgstr "" -#: modules/luci-base/luasrc/view/error404.htm:9 +#: modules/luci-base/ucode/template/error404.ut:10 msgid "Sorry, the object you requested was not found." msgstr "" -#: modules/luci-base/luasrc/view/error500.htm:9 -msgid "Sorry, the server encountered an unexpected error." -msgstr "" - #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:442 msgid "" "Sorry, there is no sysupgrade support present; a new firmware image must be " @@ -7408,7 +7452,7 @@ msgctxt "nft ip sport" msgid "Source port" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:500 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:505 msgid "" "Special <abbr title=\"Preboot eXecution Environment\">PXE</abbr> boot " "options for Dnsmasq." @@ -7776,7 +7820,7 @@ msgstr "" msgid "Static address" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:598 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:669 msgid "" "Static leases are used to assign fixed IP addresses and symbolic hostnames " "to DHCP clients. They are also required for non-dynamic interface " @@ -7790,7 +7834,7 @@ msgstr "" #: modules/luci-base/root/usr/share/luci/menu.d/luci-base.json:16 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:541 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:929 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:9 +#: modules/luci-mod-status/ucode/template/admin_status/index.ut:9 msgid "Status" msgstr "" @@ -7816,7 +7860,7 @@ msgstr "" msgid "Strict filtering" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:422 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:427 msgid "Strict order" msgstr "" @@ -7829,11 +7873,11 @@ msgstr "" msgid "Submit" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:372 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:377 msgid "Suppress logging" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:373 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:378 msgid "Suppress logging of the routine operation for the DHCP protocol." msgstr "" @@ -7886,6 +7930,14 @@ msgstr "" msgid "Sync with browser" msgstr "" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:293 +msgid "Syntax: <code>/fqdn[/fqdn…]/[ipaddr]</code>." +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:569 +msgid "Syntax: <code>_service._proto.example.com</code>." +msgstr "" + #: modules/luci-base/root/usr/share/luci/menu.d/luci-base.json:26 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/10_system.js:17 #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:113 @@ -7911,9 +7963,9 @@ msgstr "" msgid "System log buffer size" msgstr "" -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:79 -#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:86 -#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:71 +#: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/header.ut:67 +#: themes/luci-theme-material/ucode/template/themes/material/header.ut:81 +#: themes/luci-theme-openwrt-2020/ucode/template/themes/openwrt2020/header.ut:64 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:89 msgid "System running in recovery (initramfs) mode." msgstr "" @@ -7942,7 +7994,7 @@ msgstr "" msgid "TCP:" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:485 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:490 msgid "TFTP server root" msgstr "" @@ -7967,6 +8019,7 @@ msgstr "" msgid "Table" msgstr "" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:574 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:56 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:66 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:187 @@ -8037,15 +8090,15 @@ msgid "" "username instead of the user ID!" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:681 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:752 msgid "The IP address %h is already used by another static lease" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:690 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:761 msgid "The IP address is outside of any DHCP pool address range" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:520 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:525 msgid "The IP address of the boot server" msgstr "" @@ -8210,7 +8263,7 @@ msgid "" "to be received and retransmitted which costs airtime)" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:514 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:519 msgid "The hostname of the boot server" msgstr "" @@ -8295,8 +8348,8 @@ msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:139 msgid "" -"The network ports on this device can be combined to several <abbr " -"title=\"Virtual Local Area Network\">VLAN</abbr>s in which computers can " +"The network ports on this device can be combined to several <abbr title=" +"\"Virtual Local Area Network\">VLAN</abbr>s in which computers can " "communicate directly with each other. <abbr title=\"Virtual Local Area " "Network\">VLAN</abbr>s are often used to separate different network " "segments. Often there is by default one Uplink port for a connection to the " @@ -8347,7 +8400,7 @@ msgstr "" msgid "The selected %s mode is incompatible with %s encryption" msgstr "" -#: modules/luci-base/luasrc/view/csrftoken.htm:11 +#: modules/luci-base/ucode/template/csrftoken.ut:11 msgid "The submitted security token is invalid or already expired!" msgstr "" @@ -8417,8 +8470,8 @@ msgid "" "nftables rules is discouraged and may lead to incomplete traffic filtering." msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:746 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:778 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:817 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:849 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:130 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:179 msgid "There are no active leases" @@ -8428,8 +8481,8 @@ msgstr "" msgid "There are no changes to apply" msgstr "" -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:70 -#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:62 +#: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/header.ut:58 +#: themes/luci-theme-openwrt-2020/ucode/template/themes/openwrt2020/header.ut:55 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:80 msgid "" "There is no password set on this router. Please configure a root password to " @@ -8450,7 +8503,6 @@ msgid "This does not look like a valid PEM file" msgstr "" #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:454 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:16 msgid "" "This is a list of shell glob patterns for matching files and directories to " "include during sysupgrade. Modified files in /etc/config/ and certain other " @@ -8486,7 +8538,7 @@ msgid "" "ends with <code>...:2/64</code>" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:266 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:268 msgid "This is the only DHCP server in the local network." msgstr "" @@ -8565,8 +8617,8 @@ msgstr "" #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:440 msgid "" "To fully configure the local WireGuard interface from an existing (e.g. " -"provider supplied) configuration file, use the <strong><a class=\"full-" -"import\" href=\"#\">configuration import</a></strong> instead." +"provider supplied) configuration file, use the <strong><a class=\"full-import" +"\" href=\"#\">configuration import</a></strong> instead." msgstr "" #: modules/luci-base/htdocs/luci-static/resources/luci.js:2674 @@ -8728,7 +8780,7 @@ msgstr "" msgid "Unable to determine upstream interface" msgstr "" -#: modules/luci-base/luasrc/view/error404.htm:11 +#: modules/luci-base/ucode/template/error404.ut:12 msgid "Unable to dispatch" msgstr "" @@ -8783,7 +8835,7 @@ msgstr "" msgid "Unable to verify PIN" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:32 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:33 msgid "Unavailable Seconds (UAS)" msgstr "" @@ -8927,7 +8979,7 @@ msgid "" "will be restarted to apply the updated configuration." msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:423 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:428 msgid "Upstream resolvers will be queried in the order of the resolv file." msgstr "" "<abbr title=\"Domain Name System\">DNS</abbr> servers worden geraadpleegd in " @@ -8938,7 +8990,7 @@ msgstr "" msgid "Uptime" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:344 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:349 msgid "Use <code>/etc/ethers</code>" msgstr "" @@ -9049,7 +9101,7 @@ msgstr "" msgid "Use system certificates for inner-tunnel" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:599 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:670 msgid "" "Use the <em>Add</em> Button to add a new lease entry. The <em>MAC address</" "em> identifies the host, the <em>IPv4 address</em> specifies the fixed " @@ -9100,11 +9152,11 @@ msgstr "" msgid "User key (PEM encoded)" msgstr "" -#: modules/luci-base/luasrc/view/sysauth.htm:23 +#: modules/luci-base/ucode/template/sysauth.ut:23 #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:112 #: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:101 #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:56 -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/sysauth.htm:18 +#: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/sysauth.ut:13 msgid "Username" msgstr "" @@ -9202,7 +9254,7 @@ msgstr "" msgid "VXLANv6 (RFC7348)" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:398 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:403 msgid "" "Validate DNS replies and cache DNSSEC data, requires upstream to support " "DNSSEC." @@ -9235,7 +9287,7 @@ msgstr "" msgid "Vendor Class to send when requesting DHCP" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:403 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:408 msgid "Verify unsigned domain responses really come from unsigned domains." msgstr "" @@ -9310,6 +9362,10 @@ msgstr "" msgid "Weak" msgstr "" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:589 +msgid "Weight" +msgstr "" + #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1029 msgid "" "When delegating prefixes to multiple downstreams, interfaces with a higher " @@ -9430,7 +9486,7 @@ msgstr "" msgid "Wireless network is enabled" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:278 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:280 msgid "Write received DNS queries to syslog." msgstr "" @@ -9465,8 +9521,16 @@ msgid "" "scripts like \"network\", your device might become inaccessible!</strong>" msgstr "" -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:90 -#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:97 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:559 +msgid "You may add multiple records for the same Target." +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:596 +msgid "You may add multiple records for the same domain." +msgstr "" + +#: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/header.ut:78 +#: themes/luci-theme-material/ucode/template/themes/material/header.ut:92 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:73 msgid "" "You must enable JavaScript in your browser or LuCI will not work properly." @@ -9495,7 +9559,17 @@ msgstr "" msgid "ZRam Size" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:449 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:558 +msgid "_proto: _tcp, _udp, _sctp, _quic, … ." +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:557 +msgid "" +"_service: _sip, _ldap, _imap, _stun, _xmpp-client, … . (Note: while _http is " +"possible, no browsers support SRV records.)" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:454 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:152 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:163 msgid "any" @@ -9606,8 +9680,8 @@ msgstr "" msgid "e.g: dump" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:726 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:756 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:797 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:827 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:101 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:148 msgid "expired" @@ -9818,9 +9892,9 @@ msgstr "" msgid "unknown" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:456 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:724 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:754 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:461 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:795 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:825 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:99 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:146 msgid "unlimited" @@ -10036,6 +10110,9 @@ msgstr "" msgid "« Back" msgstr "« Terug" +#~ msgid "Back to configuration" +#~ msgstr "Terug naar de configuratie" + #~ msgid "Auto Refresh" #~ msgstr "Automatisch Vernieuwen" diff --git a/modules/luci-base/po/pl/base.po b/modules/luci-base/po/pl/base.po index 5b22a23252..16378a54ab 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-10-17 13:26+0000\n" +"PO-Revision-Date: 2022-10-25 10:20+0000\n" "Last-Translator: Matthaiks <kitynska@gmail.com>\n" "Language-Team: Polish <https://hosted.weblate.org/projects/openwrt/luci/pl/>" "\n" @@ -13,7 +13,7 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 " "|| n%100>=20) ? 1 : 2;\n" -"X-Generator: Weblate 4.15-dev\n" +"X-Generator: Weblate 4.14.2-dev\n" #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:643 msgctxt "Yet unknown nftables table family (\"family\" table \"name\")" @@ -25,7 +25,6 @@ msgid "%.1f dB" msgstr "%.1f dB" #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:123 -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:117 msgid "%d Bit" msgstr "%d Bit" @@ -233,6 +232,22 @@ msgstr "MTU <abbr title=\"Router Advertisement\">RA</abbr>" msgid "<abbr title=\"Router Advertisement\">RA</abbr>-Service" msgstr "Usługa <abbr title=\"Router Advertisement\">RA</abbr>" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:294 +msgid "" +"<code>/#/</code> matches any domain. <code>/example.com/</code> returns " +"NXDOMAIN." +msgstr "" +"<code>/#/</code> pasuje do dowolnej domeny. <code>/example.com/</code> " +"zwraca NXDOMAIN." + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:295 +msgid "" +"<code>/example.com/#</code> returns NULL addresses (<code>0.0.0.0</code> and " +"<code>::</code>) for example.com and its subdomains." +msgstr "" +"<code>/example.com/#</code> zwraca adresy NULL (<code>0.0.0.0</code> i " +"<code>::</code>) dla example.com i jego poddomen." + #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:87 msgctxt "nft relational \">\" operator expression" msgid "<var>%s</var> greater than <strong>%s</strong>" @@ -404,7 +419,7 @@ msgstr "" msgid "ATM device number" msgstr "Numer urządzenia ATM" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:36 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:37 msgid "ATU-C System Vendor ID" msgstr "ID dostawcy systemu ATU-C" @@ -414,7 +429,7 @@ msgstr "ID dostawcy systemu ATU-C" msgid "Absent Interface" msgstr "Nieaktywny interfejs" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:320 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:325 msgid "Accept DNS queries only from hosts whose address is on a local subnet." msgstr "" "Akceptuj zapytania DNS tylko od hostów, których adres znajduje się w " @@ -553,12 +568,10 @@ msgstr "Dodaj instancję" #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:171 #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:177 #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:274 -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:165 -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:268 msgid "Add key" msgstr "Dodaj klucz" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:410 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:415 msgid "Add local domain suffix to names served from hosts files." msgstr "Dodaj lokalny sufiks domeny do nazw urządzeń z pliku hosts." @@ -579,11 +592,11 @@ msgstr "Dodaj do czarnej listy" msgid "Add to Whitelist" msgstr "Dodaj do białej listy" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:367 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:372 msgid "Additional hosts files" msgstr "Dodatkowe pliki hosts" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:417 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:422 msgid "Additional servers file" msgstr "Dodatkowe pliki serwera" @@ -614,7 +627,7 @@ msgstr "Ustawienie adresu jest nieprawidłowe" msgid "Address to access local relay bridge" msgstr "Adres dostępowy do \"relay bridge\"" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:289 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:291 msgid "Addresses" msgstr "Adresy" @@ -647,7 +660,7 @@ msgstr "Czas starzenia" msgid "Aggregate Originator Messages" msgstr "Agregacja komunikatów inicjatora" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:27 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:28 msgid "Aggregate Transmit Power (ACTATP)" msgstr "Agregacja siły transmisji (ACTATP)" @@ -688,11 +701,11 @@ msgstr "Alias interfejsu" msgid "Alias of \"%s\"" msgstr "Alias \"%s\"" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:427 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:432 msgid "All servers" msgstr "Wszystkie serwery" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:378 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:383 msgid "" "Allocate IP addresses sequentially, starting from the lowest available " "address." @@ -700,7 +713,7 @@ msgstr "" "Przydziel sekwencyjnie adresy IP, zaczynając od najmniejszego dostępnego " "adresu." -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:377 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:382 msgid "Allocate IPs sequentially" msgstr "Przydzielaj adresy IP po kolei" @@ -729,7 +742,7 @@ msgstr "Zezwól na starsze wersje 802.11b" msgid "Allow listed only" msgstr "Zezwól tylko wymienionym" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:306 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:311 msgid "Allow localhost" msgstr "Zezwól na localhost" @@ -774,7 +787,7 @@ msgstr "Zawsze wyłączony (kernel: brak)" msgid "Always on (kernel: default-on)" msgstr "Zawsze włączony (kernel: domyślnie włączone)" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:538 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:543 msgid "Always send DHCP Options. Sometimes needed, with e.g. PXELinux." msgstr "Zawsze wysyłaj opcje DHCP. Czasami potrzebne, np. z PXELinux." @@ -803,7 +816,7 @@ msgid "An optional, short description for this device" msgstr "Opcjonalny, krótki opis tego urządzenia" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1484 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:20 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:21 msgid "Annex" msgstr "Annex" @@ -923,7 +936,7 @@ msgstr "Każdy pakiet" msgid "Any zone" msgstr "Dowolna strefa" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:532 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:537 msgid "Apply DHCP Options to this net. (Empty = all clients)." msgstr "Zastosuj opcje DHCP do tej sieci. (Puste = wszystkie klienty)." @@ -1022,11 +1035,11 @@ msgstr "Uwierzytelnienie" msgid "Authentication Type" msgstr "Typ uwierzytelniania" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:265 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:267 msgid "Authoritative" msgstr "Autorytatywny" -#: modules/luci-base/luasrc/view/sysauth.htm:17 +#: modules/luci-base/ucode/template/sysauth.ut:17 #: themes/luci-theme-bootstrap/htdocs/luci-static/resources/view/bootstrap/sysauth.js:11 msgid "Authorization Required" msgstr "Wymagana autoryzacja" @@ -1099,7 +1112,7 @@ msgstr "Średnia:" msgid "Avoid Bridge Loops" msgstr "Unikaj pętli mostowych" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:388 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:393 msgid "" "Avoid uselessly triggering dial-on-demand links (filters SRV/SOA records and " "names with underscores)." @@ -1136,10 +1149,6 @@ msgstr "Wróć" msgid "Back to Overview" msgstr "Wróć do przeglądu" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:48 -msgid "Back to configuration" -msgstr "Wróć do konfiguracji" - #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:826 msgid "Back to peer configuration" msgstr "Powrót do konfiguracji peerów" @@ -1153,7 +1162,6 @@ msgid "Backup / Flash Firmware" msgstr "Kopia zapasowa / Aktualizacja firmware" #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:351 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:12 msgid "Backup file list" msgstr "Lista plików kopii zapasowej" @@ -1203,7 +1211,6 @@ msgid "Beacon Interval" msgstr "Interwał ramki (beacon)" #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:352 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:46 msgid "" "Below is the determined list of files to backup. It consists of changed " "configuration files marked by opkg, essential base files and the user " @@ -1217,7 +1224,7 @@ msgstr "" msgid "Bind NTP server" msgstr "Powiąż serwer NTP" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:326 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:331 msgid "Bind dynamically to interfaces rather than wildcard address." msgstr "Dynamiczne powiązanie z interfejsami, a nie z adresami zastępczymi." @@ -1233,6 +1240,19 @@ msgstr "Dynamiczne powiązanie z interfejsami, a nie z adresami zastępczymi." msgid "Bind interface" msgstr "Interfejs wiązań" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:595 +msgid "" +"Bind service records to a domain name: specify the location of services." +msgstr "Powiąż rekordy usług z nazwą domeny: określ lokalizację usług." + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:556 +msgid "" +"Bind service records to a domain name: specify the location of services. See " +"<a href=\"%s\">RFC2782</a>." +msgstr "" +"Powiąż rekordy usług z nazwą domeny: określ lokalizację usług. Zobacz <a " +"href=\"%s\">RFC2782</a>." + #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:59 #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:64 #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:64 @@ -1338,6 +1358,10 @@ msgstr "" msgid "CLAT configuration failed" msgstr "CLAT konfiguracja nie powiodła się" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:574 +msgid "CNAME or fqdn" +msgstr "CNAME lub fqdn" + #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/processes.js:72 msgid "CPU usage (%)" msgstr "Użycie CPU" @@ -1364,7 +1388,6 @@ msgstr "Połączenie nieudane" #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:295 #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:209 #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:487 -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:203 msgid "Cancel" msgstr "Anuluj" @@ -1582,7 +1605,6 @@ msgstr "Nazwa (ID) klienta do wysłania podczas negocjacji DHCP" #: modules/luci-base/htdocs/luci-static/resources/ui.js:4392 #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:173 #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:179 -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:167 msgid "Close" msgstr "Zamknij" @@ -1599,17 +1621,13 @@ msgstr "" "Zamknij nieaktywne połączenia po określonym czasie podanym w sekundach, " "wpisz 0, aby uzyskać stałe połączenie" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:49 -msgid "Close list..." -msgstr "Zamknij listę..." - #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:44 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:63 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2184 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:391 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:352 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:355 -#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:72 +#: themes/luci-theme-material/ucode/template/themes/material/header.ut:66 msgid "Collecting data..." msgstr "Trwa zbieranie danych..." @@ -1649,6 +1667,10 @@ msgstr "" msgid "Compute outgoing checksum (optional)." msgstr "Obliczanie sumy kontrolnej wychodzącej (opcjonalnie)." +#: protocols/luci-proto-nebula/htdocs/luci-static/resources/protocol/nebula.js:40 +msgid "Config File" +msgstr "Plik konfiguracyjny" + #: modules/luci-base/htdocs/luci-static/resources/ui.js:4375 #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:454 msgid "Configuration" @@ -1902,7 +1924,7 @@ msgstr "Port DAE" msgid "DAE-Secret" msgstr "Sekret DAE" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:525 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:530 msgid "DHCP Options" msgstr "Opcje DHCP" @@ -1942,11 +1964,11 @@ msgstr "Serwis DHCPv6" msgid "DNS" msgstr "DNS" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:282 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:284 msgid "DNS forwardings" msgstr "Przekazywania DNS" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:445 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:450 msgid "DNS query port" msgstr "Port wywołania <abbr title=\"Domain Name System\">DNS</abbr>" @@ -1954,7 +1976,7 @@ msgstr "Port wywołania <abbr title=\"Domain Name System\">DNS</abbr>" msgid "DNS search domains" msgstr "Domeny wyszukiwania DNS" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:438 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:443 msgid "DNS server port" msgstr "Port serwera <abbr title=\"Domain Name System\">DNS</abbr>" @@ -1970,11 +1992,11 @@ msgstr "Ważność DNS" msgid "DNS-Label / FQDN" msgstr "DNS-Label/FQDN" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:397 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:402 msgid "DNSSEC" msgstr "DNSSEC" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:402 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:407 msgid "DNSSEC check unsigned" msgstr "Sprawdzanie DNSSEC bez podpisu" @@ -1987,11 +2009,11 @@ msgid "DS-Lite AFTR address" msgstr "Adres AFTR DS-Lite" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1481 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:44 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:45 msgid "DSL" msgstr "DSL" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:14 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:15 msgid "DSL Status" msgstr "Status DSL" @@ -2004,12 +2026,12 @@ msgid "DTIM Interval" msgstr "Interwał DTIM" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:59 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:700 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:771 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:136 msgid "DUID" msgstr "DUID" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:21 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:22 msgid "Data Rate" msgstr "Szybkość przesyłania danych" @@ -2072,7 +2094,6 @@ msgstr "Usuń" #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:205 #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:211 -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:199 msgid "Delete key" msgstr "Usuń klucz" @@ -2261,7 +2282,7 @@ msgstr "Wyłączony" msgid "Disassociate On Low Acknowledgement" msgstr "Rozłączaj przy niskim stanie ramek ACK" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:302 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:307 msgid "" "Discard upstream responses containing <a href=\"%s\">RFC1918</a> addresses." msgstr "" @@ -2308,7 +2329,7 @@ msgstr "Odległość do najdalej oddalonego użytkownika sieci w metrach." msgid "Distributed ARP Table" msgstr "Rozproszona tablica ARP" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:543 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:548 msgid "" "Dnsmasq instance to which this boot section is bound. If unspecified, the " "section is valid for all dnsmasq instances." @@ -2326,7 +2347,7 @@ msgstr "" "\">DHCP</abbr> i serwer przekazujący (forwarder) <abbr title=\"Domain Name " "System\">DNS</abbr>." -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:414 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:419 msgid "Do not cache negative replies, e.g. for non-existent domains." msgstr "Nie buforuj odpowiedzi negatywnych, np. dla nieistniejących domen." @@ -2338,15 +2359,15 @@ msgstr "Nie buforuj odpowiedzi negatywnych, np. dla nieistniejących domen." msgid "Do not create host route to peer (optional)." msgstr "Nie twórz trasy hosta do peera (opcjonalnie)." -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:262 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:264 msgid "Do not forward DNS queries without dots or domain parts." msgstr "Nie przekazuj dalej zapytań DNS bez kropek lub części domeny." -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:383 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:388 msgid "Do not forward reverse lookups for local networks." msgstr "Nie przekazuj wyszukiwań wstecznych (lookups) do sieci lokalnych." -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:339 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:344 msgid "Do not listen on the specified interfaces." msgstr "Zapobiegaj nasłuchiwaniu na tych interfejsach." @@ -2384,7 +2405,6 @@ msgid "Do you really want to delete \"%s\" ?" msgstr "Czy jesteś pewien, że chcesz usunąć \"%s\" ?" #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:206 -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:200 msgid "Do you really want to delete the following SSH key?" msgstr "Czy na pewno chcesz usunąć następujący klucz SSH?" @@ -2406,15 +2426,16 @@ msgstr "Czy chcesz zastąpić obecny PSK?" msgid "Do you want to replace the current keys?" msgstr "Czy chcesz zastąpić obecne klucze?" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:593 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:606 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:664 msgid "Domain" msgstr "Domena" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:261 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:263 msgid "Domain required" msgstr "Wymagana domena" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:311 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:316 msgid "Domain whitelist" msgstr "Białe listy (dozwolone domeny)" @@ -2661,7 +2682,7 @@ msgstr "Włącz klienta NTP" msgid "Enable Single DES" msgstr "Zezwól na Single DES" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:480 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:485 msgid "Enable TFTP server" msgstr "Włącz serwer TFTP" @@ -2751,7 +2772,7 @@ msgstr "Włącz wsparcie dla ruchu multicast (opcjonalne)." msgid "Enable the DF (Don't Fragment) flag of the encapsulating packets." msgstr "Włącz flagę DF (Nie fragmentuj) pakietów szyfrujących." -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:481 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:486 msgid "Enable the built-in single-instance TFTP server." msgstr "Włącz wbudowany jednoinstancyjny serwer TFTP." @@ -2874,7 +2895,7 @@ msgstr "Błąd" msgid "Error getting PublicKey" msgstr "Błąd uzyskiwania klucza publicznego" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:29 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:30 msgid "Errored seconds (ES)" msgstr "Ilość błędów (ES)" @@ -2896,11 +2917,11 @@ msgstr "Co 30 sekund (powoli, 0)" msgid "Every second (fast, 1)" msgstr "Co sekundę (szybko, 1)" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:338 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:343 msgid "Exclude interfaces" msgstr "Wyklucz interfejsy" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:307 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:312 msgid "" "Exempt <code>127.0.0.0/8</code> and <code>::1</code> from rebinding checks, " "e.g. for RBL services." @@ -2912,7 +2933,7 @@ msgstr "" msgid "Existing device" msgstr "Istniejące urządzenie" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:409 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:414 msgid "Expand hosts" msgstr "Rozwiń hosty" @@ -3047,7 +3068,7 @@ msgstr "Nie udało się ustawić trybu pracy" msgid "File" msgstr "Plik" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:418 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:423 msgid "" "File listing upstream resolvers, optionally domain-specific, e.g. " "<code>server=1.2.3.4</code>, <code>server=/domain/1.2.3.4</code>." @@ -3059,20 +3080,20 @@ msgstr "" msgid "File not accessible" msgstr "Plik niedostępny" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:349 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:354 msgid "File to store DHCP lease information." msgstr "Plik do przechowywania informacji o dzierżawie DHCP." -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:357 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:362 msgid "File with upstream resolvers." msgstr "Plik ze źródłowymi resolwerami." #: modules/luci-base/htdocs/luci-static/resources/ui.js:2846 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:507 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:512 msgid "Filename" msgstr "Nazwa pliku" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:493 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:498 msgid "Filename of the boot image advertised to clients." msgstr "Rozgłaszana nazwa pliku obrazu startowego do klientów." @@ -3081,11 +3102,11 @@ msgstr "Rozgłaszana nazwa pliku obrazu startowego do klientów." msgid "Filesystem" msgstr "System plików" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:382 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:387 msgid "Filter private" msgstr "Filtruj prywatne" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:387 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:392 msgid "Filter useless" msgstr "Filtruj bezużyteczne" @@ -3155,7 +3176,7 @@ msgstr "Plik firmware" msgid "Firmware Version" msgstr "Wersja firmware" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:446 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:451 msgid "Fixed source port for outbound DNS queries." msgstr "Stały port źródłowy dla wychodzących zapytań DNS." @@ -3181,7 +3202,7 @@ msgstr "Operacje aktualizacji" msgid "Flashing…" msgstr "Trwa wgrywanie obrazu…" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:537 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:542 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:686 msgid "Force" msgstr "Wymuś" @@ -3228,7 +3249,7 @@ msgstr "Wymuś uaktualnienie" msgid "Force use of NAT-T" msgstr "Wymuś użycie NAT-T" -#: modules/luci-base/luasrc/view/csrftoken.htm:8 +#: modules/luci-base/ucode/template/csrftoken.ut:8 msgid "Form token mismatch" msgstr "Niepoprawna forma tokenu" @@ -3266,7 +3287,7 @@ msgstr "" "Przekazuj komunikaty DHCPv6 między wyznaczonym interfejsem głównym a " "interfejsami podrzędnymi." -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:28 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:29 msgid "Forward Error Correction Seconds (FECS)" msgstr "Sekundy przekazywania korekty błędów (FECS)" @@ -3425,18 +3446,16 @@ msgstr "Ustawienia globalne" msgid "Global network options" msgstr "Globalne opcje sieciowe" -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:82 -#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:89 -#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:74 +#: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/header.ut:70 +#: themes/luci-theme-material/ucode/template/themes/material/header.ut:84 +#: themes/luci-theme-openwrt-2020/ucode/template/themes/openwrt2020/header.ut:67 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:92 -#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:72 msgid "Go to firmware upgrade..." msgstr "Przejdź do aktualizacji firmware..." -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:72 -#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:64 +#: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/header.ut:60 +#: themes/luci-theme-openwrt-2020/ucode/template/themes/openwrt2020/header.ut:57 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:82 -#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:62 msgid "Go to password configuration..." msgstr "Przejdź do konfiguracji hasła..." @@ -3576,7 +3595,7 @@ msgstr "Dostęp HTTP(S)" msgid "Hang Up" msgstr "Rozłącz" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:33 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:34 msgid "Header Error Code Errors (HEC)" msgstr "Błędy kodu nagłówka (HEC)" @@ -3631,7 +3650,7 @@ msgstr "Host" msgid "Host expiry timeout" msgstr "Czas wygasania hosta" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:508 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:513 msgid "Host requests this filename from the boot server." msgstr "Host żąda tej nazwy pliku z serwera startowego." @@ -3640,8 +3659,8 @@ msgid "Host-Uniq tag content" msgstr "Zawartość znacznika Host-Uniq" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:38 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:559 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:607 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:630 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:678 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/10_system.js:54 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:87 #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:135 @@ -3656,7 +3675,7 @@ msgstr "Nazwa hosta wysyłana podczas negocjacji DHCP" msgid "Hostnames" msgstr "Nazwy hostów" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:551 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:622 msgid "" "Hostnames are used to bind a domain name to an IP address. This setting is " "redundant for hostnames already configured with static leases, but it can be " @@ -3723,7 +3742,7 @@ msgstr "Adres IP" msgid "IP Protocol" msgstr "Protokół IP" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:258 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:260 msgid "IP Sets" msgstr "Zestawy IP" @@ -3731,7 +3750,7 @@ msgstr "Zestawy IP" msgid "IP Type" msgstr "Typ IP" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:563 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:634 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:178 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:204 msgid "IP address" @@ -3757,15 +3776,15 @@ msgctxt "nft meta l4proto" msgid "IP protocol" msgstr "Protokół IP" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:589 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:660 msgid "IP set" msgstr "Zestaw IP" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:295 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:300 msgid "IP sets" msgstr "Zestawy IP" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:432 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:437 msgid "IPs to override with NXDOMAIN" msgstr "Podrobione statystyki NXDOMAIN" @@ -3806,7 +3825,7 @@ msgstr "Połączenie IPv4" #: modules/luci-base/htdocs/luci-static/resources/protocol/static.js:178 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:39 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:665 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:736 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:88 #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:164 msgid "IPv4 address" @@ -3977,7 +3996,7 @@ msgstr "Trasowanie źródłowe IPv6" msgid "IPv6 suffix" msgstr "Sufiks IPv6" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:706 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:777 msgid "IPv6 suffix (hex)" msgstr "Sufiks <abbr title=\"Internet Protocol Version 6\">IPv6</abbr>(hex)" @@ -4091,7 +4110,7 @@ msgstr "" "abbr> będzie dostępna. Uwaga - plik wymiany jest dużo wolniejszy niż pamięć " "<abbr title=\"Random Access Memory\">RAM</abbr>." -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:363 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:368 msgid "Ignore <code>/etc/hosts</code>" msgstr "Ignoruj <code>/etc/hosts</code>" @@ -4099,7 +4118,7 @@ msgstr "Ignoruj <code>/etc/hosts</code>" msgid "Ignore interface" msgstr "Ignoruj interfejs" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:352 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:357 msgid "Ignore resolv file" msgstr "Ignoruj plik resolv" @@ -4150,7 +4169,7 @@ msgstr "" "unikania pętli mostowych w celu uniknięcia pętli rozgłoszeniowych, które " "mogą doprowadzić do zatrzymania całej sieci LAN." -#: modules/luci-base/luasrc/view/csrftoken.htm:13 +#: modules/luci-base/ucode/template/csrftoken.ut:13 msgid "" "In order to prevent unauthorized access to the system, your request has been " "blocked. Click \"Continue »\" below to return to the previous page." @@ -4264,7 +4283,7 @@ msgstr "Ograniczenie wewnętrznego certyfikatu (Wildcard)" msgid "Install protocol extensions..." msgstr "Instaluj rozszerzenia protokołów..." -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:542 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:547 msgid "Instance" msgstr "Instancja" @@ -4353,10 +4372,6 @@ msgstr "Interfejsy" msgid "Internal" msgstr "Wewnętrzny" -#: modules/luci-base/luasrc/view/error500.htm:8 -msgid "Internal Server Error" -msgstr "Wewnętrzny błąd serwera" - #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:285 msgid "Interval For Sending Learning Packets" msgstr "Interwał wysyłania pakietów edukacyjnych" @@ -4431,8 +4446,8 @@ msgstr "Nieprawidłowe polecenie" msgid "Invalid hexadecimal value" msgstr "Nieprawidłowa wartość szesnastkowa" -#: modules/luci-base/luasrc/view/sysauth.htm:12 -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/sysauth.htm:37 +#: modules/luci-base/ucode/template/sysauth.ut:12 +#: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/sysauth.ut:32 msgid "Invalid username and/or password! Please try again." msgstr "Niewłaściwy login i/lub hasło! Spróbuj ponownie." @@ -4456,8 +4471,8 @@ msgstr "" "Wygląda na to, że próbujesz wgrać obraz, który nie mieści się w pamięci " "flash, sprawdź plik obrazu!" -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:89 -#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:96 +#: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/header.ut:77 +#: themes/luci-theme-material/ucode/template/themes/material/header.ut:91 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:72 msgid "JavaScript required!" msgstr "JavaScript jest wymagany!" @@ -4589,11 +4604,19 @@ msgstr "Język" msgid "Language and Style" msgstr "Wygląd i język" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:560 +msgid "" +"Larger weights (of the same prio) are given a proportionately higher " +"probability of being selected." +msgstr "" +"Większe ważności (tego samego priorytetu) mają proporcjonalnie większe " +"prawdopodobieństwo wyboru." + #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:575 msgid "Last member interval" msgstr "Interwał ostatniego użytkownika" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:23 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:24 msgid "Latency" msgstr "Opoźnienie" @@ -4609,11 +4632,11 @@ msgstr "Ucz" msgid "Learn routes" msgstr "Poznaj trasy" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:348 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:353 msgid "Lease file" msgstr "Plik dzierżawy" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:697 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:768 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:679 msgid "Lease time" msgstr "Czas dzierżawy" @@ -4661,19 +4684,19 @@ msgstr "Legenda:" msgid "Limit" msgstr "Limit" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:24 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:25 msgid "Line Attenuation (LATN)" msgstr "Tłumienie linii (LATN)" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:18 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:19 msgid "Line Mode" msgstr "Tryb linii" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:17 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:18 msgid "Line State" msgstr "Stan linii" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:19 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:20 msgid "Line Uptime" msgstr "Czas działania linii" @@ -4694,12 +4717,12 @@ msgctxt "nft @ll,off,len" msgid "Link layer header bits %d-%d" msgstr "Bity nagłówka warstwy łącza %d-%d" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:433 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:438 msgid "List of IP addresses to convert into NXDOMAIN responses." msgstr "Lista adresów IP do konwersji na odpowiedzi NXDOMAIN." -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:296 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:581 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:301 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:652 msgid "List of IP sets to populate with the specified domain IPs." msgstr "" "Lista zestawów adresów IP do wypełnienia określonymi adresami IP domeny." @@ -4736,15 +4759,11 @@ msgstr "" msgid "List of SSH key files for auth" msgstr "Lista kluczy SSH do autoryzacji" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:312 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:317 msgid "List of domains to allow RFC1918 responses for." msgstr "Lista domen zezwalających na odpowiedzi RFC1918." -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:290 -msgid "List of domains to force to an IP address." -msgstr "Lista wymuszonych domen na adres IP." - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:283 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:285 msgid "List of upstream resolvers to forward queries to." msgstr "Lista źródłowych resolwerów, do których będą przekazywane zapytania." @@ -4752,7 +4771,7 @@ msgstr "Lista źródłowych resolwerów, do których będą przekazywane zapytan msgid "Listen Port" msgstr "Port nasłuchiwania" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:332 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:337 msgid "Listen interfaces" msgstr "Nasłuchuj interfejsy" @@ -4761,7 +4780,7 @@ msgid "Listen only on the given interface or, if unspecified, on all" msgstr "" "Słuchaj tylko na podanym interfejsie lub, jeśli nie określono, na wszystkich" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:333 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:338 msgid "" "Listen only on the specified interfaces, and loopback if not excluded " "explicitly." @@ -4771,7 +4790,7 @@ msgstr "Ogranicz nasłuchiwanie do tych interfesjów oraz pętli zwrotnej." msgid "ListenPort setting is invalid" msgstr "Ustawienie portu nasłuchiwania jest nieprawidłowe" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:439 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:444 msgid "Listening port for inbound DNS queries." msgstr "Port nasłuchu dla przychodzących zapytań DNS." @@ -4798,9 +4817,9 @@ msgid "Loading directory contents…" msgstr "Ładowanie zawartości katalogu.…" #: modules/luci-base/htdocs/luci-static/resources/luci.js:1942 -#: modules/luci-base/luasrc/view/view.htm:4 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:12 -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/sysauth.htm:45 +#: modules/luci-base/ucode/template/view.ut:4 +#: modules/luci-mod-status/ucode/template/admin_status/index.ut:12 +#: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/sysauth.ut:40 msgid "Loading view…" msgstr "Ładowanie widoku…" @@ -4858,20 +4877,20 @@ msgstr "Czas lokalny" msgid "Local ULA" msgstr "Lokalny ULA" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:273 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:275 msgid "Local domain" msgstr "Domena lokalna" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:274 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:276 msgid "Local domain suffix appended to DHCP names and hosts file entries." msgstr "" "Przyrostek (sufiks) domeny przyłączany do nazw DHCP i wpisów w pliku hosts." -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:269 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:271 msgid "Local server" msgstr "Serwer lokalny" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:319 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:324 msgid "Local service only" msgstr "Tylko usługa lokalna" @@ -4879,7 +4898,7 @@ msgstr "Tylko usługa lokalna" msgid "Local wireguard key" msgstr "Lokalny klucz Wireguard" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:392 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:397 msgid "Localise queries" msgstr "Zapytania lokalizujące" @@ -4891,7 +4910,7 @@ msgstr "Zablokuj na BSSID" msgid "Log output level" msgstr "Poziom logowania" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:277 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:279 msgid "Log queries" msgstr "Loguj zapytania" @@ -4918,8 +4937,8 @@ msgid "Logical network to which the tunnel will be added (bridged) (optional)." msgstr "" "Sieć logiczna, do której tunel zostanie dodany (zmostkowy) (opcjonalnie)." -#: modules/luci-base/luasrc/view/sysauth.htm:38 -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/sysauth.htm:41 +#: modules/luci-base/ucode/template/sysauth.ut:38 +#: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/sysauth.ut:36 msgid "Login" msgstr "Zaloguj" @@ -4931,7 +4950,7 @@ msgstr "Wyloguj" msgid "Loose filtering" msgstr "Luźne filtrowanie" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:31 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:32 msgid "Loss of Signal Seconds (LOSS)" msgstr "Utrata sygnału (LOSS)" @@ -4939,6 +4958,10 @@ msgstr "Utrata sygnału (LOSS)" msgid "Lowest leased address as offset from the network address." msgstr "Najniższy wydzierżawiony adres jako offset dla adresu sieci." +#: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/footer.ut:12 +msgid "Lua compatibility mode active" +msgstr "Aktywny tryb zgodności Lua" + #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:48 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:83 msgid "MAC" @@ -4963,7 +4986,7 @@ msgstr "MAC VLAN" #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:591 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:40 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:619 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:690 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1164 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2177 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:56 @@ -5022,6 +5045,10 @@ msgstr "Interwał MII" msgid "MTU" msgstr "MTU" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:259 +msgid "MX" +msgstr "MX" + #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:303 msgid "" "Make sure to clone the root filesystem using something like the commands " @@ -5048,23 +5075,23 @@ msgstr "Główny" msgid "Max <abbr title=\"Router Advertisement\">RA</abbr> interval" msgstr "Maksymalny odstęp czasu <abbr title=\"Router Advertisement\">RA</abbr>" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:22 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:23 msgid "Max. Attainable Data Rate (ATTNDR)" msgstr "Maksymalna osiągalna przepustowość danych (ATTNDR)" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:452 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:457 msgid "Max. DHCP leases" msgstr "" "<abbr title=\"Maksymalna ilość\">Maks.</abbr> dzierżaw <abbr title=\"Dynamic " "Host Configuration Protocol\">DHCP</abbr>" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:459 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:464 msgid "Max. EDNS0 packet size" msgstr "" "<abbr title=\"Maksymalny\">Maks.</abbr> rozmiar pakietu <abbr title=" "\"Extension Mechanisms for Domain Name System\">EDNS0</abbr>" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:466 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:471 msgid "Max. concurrent queries" msgstr "<abbr title=\"Maksymalna ilość\">Maks.</abbr> jednoczesnych zapytań" @@ -5076,15 +5103,15 @@ msgstr "Maksymalny wiek" msgid "Maximum allowed Listen Interval" msgstr "Maksymalny dozwolony odstęp czasu" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:453 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:458 msgid "Maximum allowed number of active DHCP leases." msgstr "Maksymalna dozwolona liczba aktywnych dzierżaw DHCP." -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:467 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:472 msgid "Maximum allowed number of concurrent DNS queries." msgstr "Maksymalna dozwolona liczba jednoczesnych zapytań DNS." -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:460 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:465 msgid "Maximum allowed size of EDNS0 UDP packets." msgstr "Maksymalny dozwolony rozmiar pakietów EDNS.0 UDP." @@ -5114,7 +5141,7 @@ msgstr "" msgid "Maximum transmit power" msgstr "Maksymalna moc nadawania" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:389 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:394 msgid "May prevent VoIP or other services from working." msgstr "Może uniemożliwić działanie VoIP lub innych usług." @@ -5437,12 +5464,15 @@ msgstr "Nazwa nowej sieci" msgid "Name of the tunnel device" msgstr "Nazwa urządzenia tunelowego" -#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:46 +#: themes/luci-theme-openwrt-2020/ucode/template/themes/openwrt2020/header.ut:39 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:50 -#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:44 msgid "Navigation" msgstr "Nawigacja" +#: protocols/luci-proto-nebula/htdocs/luci-static/resources/protocol/nebula.js:10 +msgid "Nebula Network" +msgstr "Sieć Nebula" + #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:653 msgid "Neighbour cache validity" msgstr "Ważność pamięci podręcznej sąsiada" @@ -5478,7 +5508,7 @@ msgstr "Narzędzia sieciowe" msgid "Network address" msgstr "Adres sieci" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:492 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:497 msgid "Network boot image" msgstr "Sieciowy obraz startowy" @@ -5518,7 +5548,7 @@ msgstr "Migracja konfiguracji sieciowej ifname" msgid "Network interface" msgstr "Interfejs sieciowy" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:531 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:536 msgid "Network-ID" msgstr "Identyfikator sieci" @@ -5526,7 +5556,7 @@ msgstr "Identyfikator sieci" msgid "Never" msgstr "Nigdy" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:270 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:272 msgid "" "Never forward matching domains and subdomains, resolve from DHCP or hosts " "files only." @@ -5576,11 +5606,10 @@ msgstr "Bez NAT-T" msgid "No RX signal" msgstr "Brak sygnału RX" -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:80 -#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:87 -#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:72 +#: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/header.ut:68 +#: themes/luci-theme-material/ucode/template/themes/material/header.ut:82 +#: themes/luci-theme-openwrt-2020/ucode/template/themes/openwrt2020/header.ut:65 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:90 -#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:70 msgid "" "No changes to settings will be stored and are lost after rebooting. This " "mode should only be used to install a firmware upgrade" @@ -5624,10 +5653,6 @@ msgstr "Brak wpisów" msgid "No entries in this directory" msgstr "Brak wpisów w tym katalogu" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:82 -msgid "No files found" -msgstr "Nie znaleziono plików" - #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:833 msgid "" "No fixed interface listening port defined, peers might not be able to " @@ -5665,7 +5690,7 @@ msgstr "Brak dostępnych niewolników" msgid "No more slaves available, can not save interface" msgstr "Brak dostępnych niewolników, nie można zapisać interfejsu" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:413 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:418 msgid "No negative cache" msgstr "Wyłącz buforowanie negatywnych odpowiedzi" @@ -5673,10 +5698,9 @@ msgstr "Wyłącz buforowanie negatywnych odpowiedzi" msgid "No nftables ruleset loaded." msgstr "Nie załadowano zestawu reguł nftables." -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:69 -#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:61 +#: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/header.ut:57 +#: themes/luci-theme-openwrt-2020/ucode/template/themes/openwrt2020/header.ut:54 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:79 -#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:59 msgid "No password set!" msgstr "Nie ustawiono hasła!" @@ -5686,8 +5710,6 @@ msgstr "Nie zdefiniowano jeszcze peerów." #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:146 #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:283 -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:140 -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:277 msgid "No public keys present yet." msgstr "Nie istnieją jeszcze klucze publiczne." @@ -5717,7 +5739,7 @@ msgstr "Brak przypisanej strefy" msgid "Noise" msgstr "Szum" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:26 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:27 msgid "Noise Margin (SNR)" msgstr "Margines szumów (SNR)" @@ -5725,11 +5747,11 @@ msgstr "Margines szumów (SNR)" msgid "Noise:" msgstr "Szum:" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:34 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:35 msgid "Non Pre-emptive CRC errors (CRC_P)" msgstr "Nieprzewidziane błedy CRC (CRC_P)" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:325 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:330 msgid "Non-wildcard" msgstr "Bez symboli wieloznacznych" @@ -5744,7 +5766,7 @@ msgstr "Brak" msgid "Normal" msgstr "Normalny" -#: modules/luci-base/luasrc/view/error404.htm:8 +#: modules/luci-base/ucode/template/error404.ut:9 msgid "Not Found" msgstr "Nie znaleziono" @@ -5796,7 +5818,7 @@ msgstr "Nslookup" msgid "Number of IGMP membership reports" msgstr "Liczba raportów członkowskich IGMP" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:474 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:479 msgid "Number of cached DNS entries, 10000 is maximum, 0 is no caching." msgstr "" "Liczba buforowanych wpisów DNS (maksymalnie 10000, 0 oznacza brak pamięci " @@ -5847,7 +5869,7 @@ msgstr "Zwłoka połączenia" msgid "On-link" msgstr "Trasa łącza" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:672 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:743 msgid "One of hostname or MAC address must be specified!" msgstr "Nazwa hosta lub adres MAC musi być podany!" @@ -5887,7 +5909,6 @@ msgid "Open iptables rules overview…" msgstr "Otwórz przegląd reguł iptables…" #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:472 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:19 msgid "Open list..." msgstr "Otwórz listę..." @@ -6061,7 +6082,7 @@ msgstr "" msgid "Options" msgstr "Opcje" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:526 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:531 msgid "" "Options for the Network-ID. (Note: needs also Network-ID.) E.g. " "\"<code>42,192.168.1.4</code>\" for NTP server, \"<code>3,192.168.4.4</code>" @@ -6074,10 +6095,14 @@ msgstr "" "systemu z uruchomionym dnsmasq\"." #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:125 -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:119 msgid "Options:" msgstr "Opcje:" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:584 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:616 +msgid "Ordinal: lower comes first." +msgstr "Porządkowa: niższe jest pierwsze." + #: protocols/luci-proto-batman-adv/htdocs/luci-static/resources/protocol/batadv.js:55 msgid "Originator Interval" msgstr "Interwał inicjatora" @@ -6355,13 +6380,13 @@ msgid "Pass-through (Mirror physical device to single MAC VLAN)" msgstr "" "Pass-through (kopia lustrzana urządzenia fizycznego do pojedynczego MAC VLAN)" -#: modules/luci-base/luasrc/view/sysauth.htm:29 +#: modules/luci-base/ucode/template/sysauth.ut:29 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1690 #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:51 #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:114 #: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:103 #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:58 -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/sysauth.htm:24 +#: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/sysauth.ut:19 msgid "Password" msgstr "Hasło" @@ -6389,7 +6414,6 @@ msgid "Password2" msgstr "Hasło2" #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:266 -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:260 msgid "Paste or drag SSH key file…" msgstr "Wklej lub przeciągnij plik klucza SSH…" @@ -6536,7 +6560,7 @@ msgstr "Ping" msgid "Pkts." msgstr "Pktw." -#: modules/luci-base/luasrc/view/sysauth.htm:19 +#: modules/luci-base/ucode/template/sysauth.ut:19 msgid "Please enter your username and password." msgstr "Proszę wprowadzić swoją nazwę użytkownika i hasło." @@ -6553,6 +6577,7 @@ msgctxt "Chain hook policy" msgid "Policy: <strong>%h</strong> (%h)" msgstr "Polityka: <strong>%h</strong> (%h)" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:579 #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/dropbear.js:21 msgid "Port" msgstr "Port" @@ -6569,11 +6594,11 @@ msgstr "Status portu:" msgid "Potential negation of: %s" msgstr "Potencjalne odrzucenie: %s" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:37 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:38 msgid "Power Management Mode" msgstr "Tryb zarządzania energią" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:35 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:36 msgid "Pre-emptive CRC errors (CRCP_P)" msgstr "Przewidziane błedy CRC (CRCP_P)" @@ -6654,6 +6679,8 @@ msgstr "" "Główny staje się aktywnym niewolnikiem za każdym razem, gdy wróci (zawsze 0)" #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:508 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:584 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:616 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:129 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:197 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:223 @@ -6749,7 +6776,6 @@ msgid "Public key: %h" msgstr "Klucz publiczny: %h" #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:290 -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:284 msgid "" "Public keys allow for the passwordless SSH logins with a higher security " "compared to the use of plain passwords. In order to upload a new key to the " @@ -6780,7 +6806,7 @@ msgstr "Komórkowy QMI" msgid "Quality" msgstr "Jakość" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:428 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:433 msgid "Query all available upstream resolvers." msgstr "Zapytaj o wszystkie dostępne źródłowe resolwery." @@ -6864,7 +6890,7 @@ msgstr "" "Surowe bajty kodowane szesnastkowo. Pozostaw puste, chyba że wymaga tego " "dostawca internetowy" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:345 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:350 msgid "Read <code>/etc/ethers</code> to configure the DHCP server." msgstr "" "Przejrzyj plik <code>/etc/ethers</code>, aby skonfigurować serwer DHCP." @@ -6881,7 +6907,7 @@ msgstr "Wykresy rzeczywiste" msgid "Reassociation Deadline" msgstr "Termin reasocjacji" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:301 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:306 msgid "Rebind protection" msgstr "Przypisz ochronę" @@ -6968,6 +6994,7 @@ msgstr "" "mniejsza lub równa określonej wartości" #: modules/luci-compat/luasrc/model/network/proto_relay.lua:153 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:611 #: protocols/luci-proto-relay/htdocs/luci-static/resources/protocol/relay.js:39 msgid "Relay" msgstr "Przekaźnik" @@ -7059,6 +7086,10 @@ msgid "Required. Base64-encoded private key for this interface." msgstr "" "Wymagane. Klucz prywatny zakodowany w formacie Base64 dla tego interfejsu." +#: protocols/luci-proto-nebula/htdocs/luci-static/resources/protocol/nebula.js:40 +msgid "Required. Path to the .yml config file for this interface." +msgstr "Wymagane. Ścieżka do pliku konfiguracyjnego .yml dla tego interfejsu." + #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:587 msgid "Required. Public key of the WireGuard peer." msgstr "Wymagane. Klucz publiczny peera WireGuard." @@ -7140,7 +7171,7 @@ msgid "Reselection policy for primary slave" msgstr "Polityka reelekcji głównego niewolnika" #: modules/luci-base/htdocs/luci-static/resources/luci.js:2197 -#: modules/luci-base/luasrc/view/sysauth.htm:39 +#: modules/luci-base/ucode/template/sysauth.ut:39 #: modules/luci-compat/luasrc/view/cbi/delegator.htm:17 #: modules/luci-compat/luasrc/view/cbi/footer.htm:30 #: modules/luci-compat/luasrc/view/cbi/simpleform.htm:66 @@ -7159,10 +7190,14 @@ msgstr "Resetuj do ustawień domyślnych" msgid "Resolv and Hosts Files" msgstr "Pliki resolv i hosts" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:356 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:361 msgid "Resolv file" msgstr "Plik resolv" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:292 +msgid "Resolve specified FQDNs to an IP." +msgstr "Lista wymuszonych domen na adres IP." + #: modules/luci-base/htdocs/luci-static/resources/rpc.js:405 msgid "Resource not found" msgstr "Nie znaleziono zasobu" @@ -7189,7 +7224,7 @@ msgstr "Przywróć" msgid "Restore backup" msgstr "Przywróć kopię zapasową" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:393 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:398 msgid "" "Return answers to DNS queries matching the subnet from which the query was " "received if multiple IPs are available." @@ -7285,7 +7320,7 @@ msgstr "" msgid "Robustness" msgstr "Wytrzymałość" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:486 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:491 msgid "" "Root directory for files served via TFTP. <em>Enable TFTP server</em> and " "<em>TFTP server root</em> turn on the TFTP server and serve files from " @@ -7397,6 +7432,11 @@ msgstr "SHA256" msgid "SNR" msgstr "SNR" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:258 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:569 +msgid "SRV" +msgstr "SRV" + #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/dropbear.js:10 #: modules/luci-mod-system/root/usr/share/luci/menu.d/luci-mod-system.json:38 msgid "SSH Access" @@ -7416,7 +7456,6 @@ msgstr "Nazwa użytkownika SSH" #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:289 #: modules/luci-mod-system/root/usr/share/luci/menu.d/luci-mod-system.json:51 -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:283 msgid "SSH-Keys" msgstr "Klucze SSH" @@ -7544,11 +7583,11 @@ msgstr "Wysyłaj nazwę hosta tego urządzenia" msgid "Server" msgstr "Serwer" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:519 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:524 msgid "Server address" msgstr "Adres serwera" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:513 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:518 msgid "Server name" msgstr "Nazwa serwera" @@ -7645,7 +7684,7 @@ msgstr "Ustawienia" msgid "Setup routes for proxied IPv6 neighbours." msgstr "Ustawienie tras dla sąsiadów IPv6 z proxy." -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:30 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:31 msgid "Severely Errored Seconds (SES)" msgstr "Ilość poważnych błedów (SES)" @@ -7659,7 +7698,6 @@ msgid "Short Preamble" msgstr "Krótki wstęp" #: 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 msgid "Show current backup file list" msgstr "Pokaż aktualną listę plików kopii zapasowej" @@ -7693,7 +7731,7 @@ msgstr "Sygnał" msgid "Signal / Noise" msgstr "Sygnał/Szum" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:25 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:26 msgid "Signal Attenuation (SATN)" msgstr "Tłumienie sygnału (SATN)" @@ -7710,7 +7748,7 @@ msgstr "Sygnał:" msgid "Size" msgstr "Rozmiar" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:473 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:478 msgid "Size of DNS query cache" msgstr "Rozmiar pamięci podręcznej zapytań DNS" @@ -7727,15 +7765,13 @@ msgstr "Pomiń" msgid "Skip from backup files that are equal to those in /rom" msgstr "Pomiń pliki kopii zapasowej, które są równe plikom w /rom" -#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:42 +#: themes/luci-theme-openwrt-2020/ucode/template/themes/openwrt2020/header.ut:35 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:46 -#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:40 msgid "Skip to content" msgstr "Pomiń do zawartości" -#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:41 +#: themes/luci-theme-openwrt-2020/ucode/template/themes/openwrt2020/header.ut:34 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:45 -#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:39 msgid "Skip to navigation" msgstr "Pomiń do nawigacji" @@ -7752,14 +7788,10 @@ msgstr "Programowy VLAN" msgid "Some fields are invalid, cannot save values!" msgstr "Wartości pewnych pól są niewłaściwe, nie mogę ich zachować!" -#: modules/luci-base/luasrc/view/error404.htm:9 +#: modules/luci-base/ucode/template/error404.ut:10 msgid "Sorry, the object you requested was not found." msgstr "Przepraszamy, ale żądany obiekt nie został znaleziony." -#: modules/luci-base/luasrc/view/error500.htm:9 -msgid "Sorry, the server encountered an unexpected error." -msgstr "Przepraszamy, ale serwer napotkał nieoczekiwany błąd." - #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:442 msgid "" "Sorry, there is no sysupgrade support present; a new firmware image must be " @@ -7798,7 +7830,7 @@ msgctxt "nft ip sport" msgid "Source port" msgstr "Źródłowy port" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:500 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:505 msgid "" "Special <abbr title=\"Preboot eXecution Environment\">PXE</abbr> boot " "options for Dnsmasq." @@ -8250,7 +8282,7 @@ msgstr "Dzierżawy statyczne" msgid "Static address" msgstr "Stały adres" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:598 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:669 msgid "" "Static leases are used to assign fixed IP addresses and symbolic hostnames " "to DHCP clients. They are also required for non-dynamic interface " @@ -8268,7 +8300,7 @@ msgstr "Granica bezczynności stacji" #: modules/luci-base/root/usr/share/luci/menu.d/luci-base.json:16 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:541 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:929 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:9 +#: modules/luci-mod-status/ucode/template/admin_status/index.ut:9 msgid "Status" msgstr "Status" @@ -8294,7 +8326,7 @@ msgstr "Wykorzystanie pamięci masowej" msgid "Strict filtering" msgstr "Filtrowanie ścisłe" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:422 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:427 msgid "Strict order" msgstr "Zachowaj kolejność" @@ -8307,11 +8339,11 @@ msgstr "Silne" msgid "Submit" msgstr "Prześlij" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:372 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:377 msgid "Suppress logging" msgstr "Pomiń rejestrowanie" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:373 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:378 msgid "Suppress logging of the routine operation for the DHCP protocol." msgstr "Pomiń rejestrowanie rutynowych operacji dla protokołu DHCP." @@ -8365,6 +8397,14 @@ msgstr "Synchronizuj z serwerem NTP" msgid "Sync with browser" msgstr "Synchronizuj z przeglądarką" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:293 +msgid "Syntax: <code>/fqdn[/fqdn…]/[ipaddr]</code>." +msgstr "Składnia: <code>/fqdn[/fqdn…]/[ipaddr]</code>." + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:569 +msgid "Syntax: <code>_service._proto.example.com</code>." +msgstr "Składnia: <code>_service._proto.example.com</code>." + #: modules/luci-base/root/usr/share/luci/menu.d/luci-base.json:26 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/10_system.js:17 #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:113 @@ -8391,11 +8431,10 @@ msgstr "Właściwości systemu" msgid "System log buffer size" msgstr "Rozmiar bufora dziennika systemowego" -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:79 -#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:86 -#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:71 +#: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/header.ut:67 +#: themes/luci-theme-material/ucode/template/themes/material/header.ut:81 +#: themes/luci-theme-openwrt-2020/ucode/template/themes/openwrt2020/header.ut:64 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:89 -#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:69 msgid "System running in recovery (initramfs) mode." msgstr "System działa w trybie odzyskiwania (initramfs)." @@ -8423,7 +8462,7 @@ msgstr "Źródłowy port TCP" msgid "TCP:" msgstr "TCP:" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:485 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:490 msgid "TFTP server root" msgstr "Katalog główny serwera TFTP" @@ -8448,6 +8487,7 @@ msgstr "Długość kolejki TX" msgid "Table" msgstr "Tablica" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:574 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:56 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:66 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:187 @@ -8533,15 +8573,15 @@ msgstr "" "Konfiguracja aktualizacji punktu końcowego HE.net uległa zmianie, musisz " "teraz użyć zwykłej nazwy użytkownika zamiast ID użytkownika!" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:681 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:752 msgid "The IP address %h is already used by another static lease" msgstr "Adres IP %h jest już używany przez inną statyczną dzierżawę" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:690 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:761 msgid "The IP address is outside of any DHCP pool address range" msgstr "Adres IP jest poza zakresem adresów puli DHCP" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:520 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:525 msgid "The IP address of the boot server" msgstr "Adres IP serwera startowego" @@ -8720,12 +8760,10 @@ msgstr "" "WireGuard w celu nawiązania połączenia z tym urządzeniem." #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:172 -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:166 msgid "The given SSH public key has already been added." msgstr "Podany klucz publiczny SSH został już dodany." #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:178 -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:172 msgid "" "The given SSH public key is invalid. Please supply proper public RSA, " "ED25519 or ECDSA keys." @@ -8746,7 +8784,7 @@ msgstr "" "dodatkowego przeskoku (pakiet musi zostać odebrany i ponownie przesłany, co " "kosztuje czas emisji)" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:514 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:519 msgid "The hostname of the boot server" msgstr "Nazwa hosta serwera startowego" @@ -8918,7 +8956,7 @@ msgstr "" msgid "The selected %s mode is incompatible with %s encryption" msgstr "Wybrany tryb %s jest niekompatybilny z szyfrowaniem %s" -#: modules/luci-base/luasrc/view/csrftoken.htm:11 +#: modules/luci-base/ucode/template/csrftoken.ut:11 msgid "The submitted security token is invalid or already expired!" msgstr "Zgłoszony token bezpieczeństwa jest nieważny lub wygasł!" @@ -9003,8 +9041,8 @@ msgstr "" "W systemie są obecne starsze reguły iptables. Mieszanie reguł iptables i " "nftables jest odradzane i może prowadzić do niekompletnego filtrowania ruchu." -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:746 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:778 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:817 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:849 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:130 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:179 msgid "There are no active leases" @@ -9014,10 +9052,9 @@ msgstr "Nie ma aktywnych dzierżaw" msgid "There are no changes to apply" msgstr "Nie ma żadnych zmian do zastosowania" -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:70 -#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:62 +#: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/header.ut:58 +#: themes/luci-theme-openwrt-2020/ucode/template/themes/openwrt2020/header.ut:55 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:80 -#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:60 msgid "" "There is no password set on this router. Please configure a root password to " "protect the web interface." @@ -9039,7 +9076,6 @@ msgid "This does not look like a valid PEM file" msgstr "Nie wygląda to na ważny plik PEM" #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:454 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:16 msgid "" "This is a list of shell glob patterns for matching files and directories to " "include during sysupgrade. Modified files in /etc/config/ and certain other " @@ -9093,7 +9129,7 @@ msgstr "" "kończący się z <code>...:2/64</code>" # w tłumaczeniu pojawiła się spacja po DHCP</abbr> co powoduje niepoprawne wyświetlanie się strony z lang PL -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:266 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:268 msgid "This is the only DHCP server in the local network." msgstr "To jest jedyny serwer DHCP w sieci lokalnej." @@ -9351,7 +9387,7 @@ msgstr "Nie można ustalić zewnętrznego adresu IP" msgid "Unable to determine upstream interface" msgstr "Nie można określić interfejsu źródłowego" -#: modules/luci-base/luasrc/view/error404.htm:11 +#: modules/luci-base/ucode/template/error404.ut:12 msgid "Unable to dispatch" msgstr "Nie można wysłać" @@ -9406,7 +9442,7 @@ msgstr "Nie można zapisać zawartości: %s" msgid "Unable to verify PIN" msgstr "Nie można zweryfikować kodu PIN" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:32 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:33 msgid "Unavailable Seconds (UAS)" msgstr "Czas niedostępnośći (UAS)" @@ -9465,7 +9501,6 @@ msgid "Unmount" msgstr "Odmontuj" #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:121 -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:115 msgid "Unnamed key" msgstr "Klucz bez nazwy" @@ -9563,7 +9598,7 @@ msgstr "" "a sieć zostanie ponownie uruchomiona w celu zastosowania zaktualizowanej " "konfiguracji." -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:423 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:428 msgid "Upstream resolvers will be queried in the order of the resolv file." msgstr "" "Odpytywania źródłowych resolwerów będą odbywać się w kolejności pliku resolv." @@ -9573,7 +9608,7 @@ msgstr "" msgid "Uptime" msgstr "Czas pracy" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:344 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:349 msgid "Use <code>/etc/ethers</code>" msgstr "Użyj <code>/etc/ethers</code>" @@ -9689,7 +9724,7 @@ msgstr "Użyj certyfikatów systemowych" msgid "Use system certificates for inner-tunnel" msgstr "Użyj certyfikatów systemowych dla tunelu wewnętrznego" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:599 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:670 msgid "" "Use the <em>Add</em> Button to add a new lease entry. The <em>MAC address</" "em> identifies the host, the <em>IPv4 address</em> specifies the fixed " @@ -9751,11 +9786,11 @@ msgstr "Identyfikator użytkownika" msgid "User key (PEM encoded)" msgstr "Klucz użytkownika (zakodowany PEM)" -#: modules/luci-base/luasrc/view/sysauth.htm:23 +#: modules/luci-base/ucode/template/sysauth.ut:23 #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:112 #: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:101 #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:56 -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/sysauth.htm:18 +#: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/sysauth.ut:13 msgid "Username" msgstr "Nazwa użytkownika" @@ -9853,7 +9888,7 @@ msgstr "Identyfikator sieci VXLAN" msgid "VXLANv6 (RFC7348)" msgstr "VXLANv6 (RFC7348)" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:398 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:403 msgid "" "Validate DNS replies and cache DNSSEC data, requires upstream to support " "DNSSEC." @@ -9890,7 +9925,7 @@ msgstr "Producent" msgid "Vendor Class to send when requesting DHCP" msgstr "Klasa producenta do wysłania podczas żądania DHCP" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:403 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:408 msgid "Verify unsigned domain responses really come from unsigned domains." msgstr "" "Sprawdź, czy odpowiedzi z niepodpisanych domen naprawdę pochodzą z " @@ -9971,6 +10006,10 @@ msgstr "" msgid "Weak" msgstr "Słabe" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:589 +msgid "Weight" +msgstr "Ważność" + #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1029 msgid "" "When delegating prefixes to multiple downstreams, interfaces with a higher " @@ -10113,7 +10152,7 @@ msgstr "Sieć bezprzewodowa jest wyłączona" msgid "Wireless network is enabled" msgstr "Sieć bezprzewodowa jest włączona" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:278 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:280 msgid "Write received DNS queries to syslog." msgstr "Zapisz otrzymane zapytania DNS do dziennika systemowego." @@ -10154,8 +10193,16 @@ msgstr "" "Jeśli wyłączysz podstawowe skrypty typu \"network\", urządzenie może stać " "się nieosiągalne!</strong>" -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:90 -#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:97 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:559 +msgid "You may add multiple records for the same Target." +msgstr "Możesz dodać wiele rekordów dla tego samego celu." + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:596 +msgid "You may add multiple records for the same domain." +msgstr "Możesz dodać wiele rekordów dla tej samej domeny." + +#: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/header.ut:78 +#: themes/luci-theme-material/ucode/template/themes/material/header.ut:92 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:73 msgid "" "You must enable JavaScript in your browser or LuCI will not work properly." @@ -10189,7 +10236,19 @@ msgstr "Ustawienia ZRam" msgid "ZRam Size" msgstr "Rozmiar ZRam" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:449 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:558 +msgid "_proto: _tcp, _udp, _sctp, _quic, … ." +msgstr "_proto: _tcp, _udp, _sctp, _quic, … ." + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:557 +msgid "" +"_service: _sip, _ldap, _imap, _stun, _xmpp-client, … . (Note: while _http is " +"possible, no browsers support SRV records.)" +msgstr "" +"_service: _sip, _ldap, _imap, _stun, _xmpp-client, … . (Uwaga: chociaż _http " +"jest możliwe, żadna przeglądarka nie obsługuje rekordów SRV.)" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:454 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:152 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:163 msgid "any" @@ -10300,8 +10359,8 @@ msgstr "np.: --proxy 10.10.10.10" msgid "e.g: dump" msgstr "np: dump" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:726 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:756 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:797 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:827 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:101 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:148 msgid "expired" @@ -10518,9 +10577,9 @@ msgstr "unikalna wartość" msgid "unknown" msgstr "nieznane" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:456 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:724 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:754 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:461 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:795 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:825 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:99 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:146 msgid "unlimited" @@ -10737,6 +10796,21 @@ msgstr "tak" msgid "« Back" msgstr "« Wróć" +#~ msgid "Back to configuration" +#~ msgstr "Wróć do konfiguracji" + +#~ msgid "Close list..." +#~ msgstr "Zamknij listę..." + +#~ msgid "Internal Server Error" +#~ msgstr "Wewnętrzny błąd serwera" + +#~ msgid "No files found" +#~ msgstr "Nie znaleziono plików" + +#~ msgid "Sorry, the server encountered an unexpected error." +#~ msgstr "Przepraszamy, ale serwer napotkał nieoczekiwany błąd." + #~ msgid "Do not forward queries that cannot be answered by public resolvers." #~ msgstr "" #~ "Nie przekazuj zapytań, które nie mogą być zrealizowane przez publiczne " diff --git a/modules/luci-base/po/pt/base.po b/modules/luci-base/po/pt/base.po index 7b749ca7fe..c23e367e1c 100644 --- a/modules/luci-base/po/pt/base.po +++ b/modules/luci-base/po/pt/base.po @@ -235,6 +235,18 @@ msgstr "<abbr title=\"Router Advertisement\">RA</abbr> MTU" msgid "<abbr title=\"Router Advertisement\">RA</abbr>-Service" msgstr "<abbr title=\"Router Advertisement\">RA</abbr>-Serviço" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:294 +msgid "" +"<code>/#/</code> matches any domain. <code>/example.com/</code> returns " +"NXDOMAIN." +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:295 +msgid "" +"<code>/example.com/#</code> returns NULL addresses (<code>0.0.0.0</code> and " +"<code>::</code>) for example.com and its subdomains." +msgstr "" + #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:87 msgctxt "nft relational \">\" operator expression" msgid "<var>%s</var> greater than <strong>%s</strong>" @@ -395,7 +407,7 @@ msgstr "" msgid "ATM device number" msgstr "Número do aparelho ATM" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:36 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:37 msgid "ATU-C System Vendor ID" msgstr "ID do vendedor de sistema ATU-C" @@ -405,7 +417,7 @@ msgstr "ID do vendedor de sistema ATU-C" msgid "Absent Interface" msgstr "Interface ausente" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:320 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:325 msgid "Accept DNS queries only from hosts whose address is on a local subnet." msgstr "" "Limitar o serviço DNS para subredes das interfaces nas quais está a ser " @@ -548,7 +560,7 @@ msgstr "Adicionar instância" msgid "Add key" msgstr "Adicionar chave" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:410 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:415 msgid "Add local domain suffix to names served from hosts files." msgstr "" "Adicionar um sufixo de domínio local aos nomes servidos dos ficheiros hosts." @@ -570,11 +582,11 @@ msgstr "Adicionar à lista negra" msgid "Add to Whitelist" msgstr "Adicionar à lista branca" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:367 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:372 msgid "Additional hosts files" msgstr "Ficheiro Hosts adicional" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:417 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:422 msgid "Additional servers file" msgstr "Ficheiro servers adicional" @@ -604,7 +616,7 @@ msgstr "" msgid "Address to access local relay bridge" msgstr "Endereço para acesso à ponte de retransmissão local" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:289 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:291 msgid "Addresses" msgstr "Endereços" @@ -637,11 +649,11 @@ msgstr "Tempo de envelhecimento" msgid "Aggregate Originator Messages" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:27 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:28 msgid "Aggregate Transmit Power (ACTATP)" msgstr "" -"Potência de Transmissão Agregada (<abbr title=\"Aggregate Transmit " -"Power\">ACTATP</abbr>)" +"Potência de Transmissão Agregada (<abbr title=\"Aggregate Transmit Power" +"\">ACTATP</abbr>)" #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:260 msgid "Aggregation Selection Logic" @@ -680,11 +692,11 @@ msgstr "Interface Adicional" msgid "Alias of \"%s\"" msgstr "Interface adicional de \"%s\"" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:427 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:432 msgid "All servers" msgstr "Todos os Servidores" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:378 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:383 msgid "" "Allocate IP addresses sequentially, starting from the lowest available " "address." @@ -692,7 +704,7 @@ msgstr "" "Alocar endereços IP sequencialmente, a partir do endereço mais baixo " "disponível." -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:377 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:382 msgid "Allocate IPs sequentially" msgstr "Alocar endereços IP sequencialmente" @@ -722,7 +734,7 @@ msgstr "Permitir taxas antigas 802.11b" msgid "Allow listed only" msgstr "Permitir somente os listados" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:306 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:311 msgid "Allow localhost" msgstr "Permitir localhost" @@ -767,7 +779,7 @@ msgstr "Sempre desligado (kernel: nenhum)" msgid "Always on (kernel: default-on)" msgstr "Sempre ligado (kernel: ligado por predefinição)" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:538 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:543 msgid "Always send DHCP Options. Sometimes needed, with e.g. PXELinux." msgstr "" "Sempre enviar as opções de DHCP. É às vezes necessário com, por exemplo, " @@ -800,7 +812,7 @@ msgid "An optional, short description for this device" msgstr "Uma descrição opcional e curta para este aparelho" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1484 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:20 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:21 msgid "Annex" msgstr "Anexo" @@ -921,7 +933,7 @@ msgstr "Qualquer pacote" msgid "Any zone" msgstr "Qualquer zona" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:532 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:537 msgid "Apply DHCP Options to this net. (Empty = all clients)." msgstr "Aplicar as opções de DHCP a esta rede. (Vazio = todos os clientes)." @@ -1019,11 +1031,11 @@ msgstr "Autenticação" msgid "Authentication Type" msgstr "Tipo de Autenticação" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:265 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:267 msgid "Authoritative" msgstr "Autoritário" -#: modules/luci-base/luasrc/view/sysauth.htm:17 +#: modules/luci-base/ucode/template/sysauth.ut:17 #: themes/luci-theme-bootstrap/htdocs/luci-static/resources/view/bootstrap/sysauth.js:11 msgid "Authorization Required" msgstr "Autorização Requerida" @@ -1099,7 +1111,7 @@ msgstr "Média:" msgid "Avoid Bridge Loops" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:388 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:393 msgid "" "Avoid uselessly triggering dial-on-demand links (filters SRV/SOA records and " "names with underscores)." @@ -1134,10 +1146,6 @@ msgstr "Voltar" msgid "Back to Overview" msgstr "Voltar à Visão Global" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:48 -msgid "Back to configuration" -msgstr "Voltar à configuração" - #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:826 msgid "Back to peer configuration" msgstr "" @@ -1151,7 +1159,6 @@ msgid "Backup / Flash Firmware" msgstr "Backup / Flash Firmware" #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:351 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:12 msgid "Backup file list" msgstr "Lista de ficheiros para backup" @@ -1194,7 +1201,6 @@ msgid "Beacon Interval" msgstr "Intervalo do quadro de monitorização (Beacon)" #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:352 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:46 msgid "" "Below is the determined list of files to backup. It consists of changed " "configuration files marked by opkg, essential base files and the user " @@ -1208,7 +1214,7 @@ msgstr "" msgid "Bind NTP server" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:326 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:331 msgid "Bind dynamically to interfaces rather than wildcard address." msgstr "Ligar dinamicamente a interfaces ao invés de endereços wildcard." @@ -1224,6 +1230,17 @@ msgstr "Ligar dinamicamente a interfaces ao invés de endereços wildcard." msgid "Bind interface" msgstr "Ligar à interface" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:595 +msgid "" +"Bind service records to a domain name: specify the location of services." +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:556 +msgid "" +"Bind service records to a domain name: specify the location of services. See " +"<a href=\"%s\">RFC2782</a>." +msgstr "" + #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:59 #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:64 #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:64 @@ -1327,6 +1344,10 @@ msgstr "" msgid "CLAT configuration failed" msgstr "Configuração CLAT falhou" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:574 +msgid "CNAME or fqdn" +msgstr "" + #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/processes.js:72 msgid "CPU usage (%)" msgstr "Uso do CPU (%)" @@ -1585,17 +1606,13 @@ msgstr "" "Fechar ligação inativa após um dado tempo em segundos, use 0 para manter a " "ligação" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:49 -msgid "Close list..." -msgstr "Fechar lista..." - #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:44 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:63 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2184 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:391 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:352 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:355 -#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:72 +#: themes/luci-theme-material/ucode/template/themes/material/header.ut:66 msgid "Collecting data..." msgstr "A recolher dados..." @@ -1635,6 +1652,10 @@ msgstr "" msgid "Compute outgoing checksum (optional)." msgstr "Cálculo do checksum de saída (opcional)." +#: protocols/luci-proto-nebula/htdocs/luci-static/resources/protocol/nebula.js:40 +msgid "Config File" +msgstr "" + #: modules/luci-base/htdocs/luci-static/resources/ui.js:4375 #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:454 msgid "Configuration" @@ -1682,11 +1703,11 @@ msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:764 msgid "" -"Configures the operation mode of the <abbr title=\"Router " -"Advertisement\">RA</abbr> service on this interface." +"Configures the operation mode of the <abbr title=\"Router Advertisement" +"\">RA</abbr> service on this interface." msgstr "" -"Configura o modo de operação do serviço de <abbr title=\"Router " -"Advertisement\"> RA </abbr> nesta interface." +"Configura o modo de operação do serviço de <abbr title=\"Router Advertisement" +"\"> RA </abbr> nesta interface." #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:879 msgid "Configures the operation mode of the DHCPv6 service on this interface." @@ -1868,8 +1889,8 @@ msgstr "Intervalo de flash personalizado (kernel: temporizador)" #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/leds.js:59 msgid "" -"Customizes the behaviour of the device <abbr title=\"Light Emitting " -"Diode\">LED</abbr>s if possible." +"Customizes the behaviour of the device <abbr title=\"Light Emitting Diode" +"\">LED</abbr>s if possible." msgstr "" "Personaliza o comportamento dos <abbr title=\"Diodo Emissor de Luz\">LED</" "abbr>s, se possível." @@ -1890,7 +1911,7 @@ msgstr "Porta DAE" msgid "DAE-Secret" msgstr "Segredo DAE" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:525 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:530 msgid "DHCP Options" msgstr "Opções do DHCP" @@ -1930,11 +1951,11 @@ msgstr "Serviço DHCPv6" msgid "DNS" msgstr "DNS" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:282 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:284 msgid "DNS forwardings" msgstr "Encaminhamentos DNS" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:445 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:450 msgid "DNS query port" msgstr "" "Porta de consulta do <abbr title=\"Servidor de Nomes de Domínio\">DNS</abbr>" @@ -1943,7 +1964,7 @@ msgstr "" msgid "DNS search domains" msgstr "Domínios de pesquisa do DNS" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:438 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:443 msgid "DNS server port" msgstr "" "Porta do servidor <abbr title=\"Servidor de Nomes de Domínio\">DNS</abbr>" @@ -1960,11 +1981,11 @@ msgstr "Peso do DNS" msgid "DNS-Label / FQDN" msgstr "Rótulo DNS / FQDN" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:397 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:402 msgid "DNSSEC" msgstr "DNSSEC" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:402 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:407 msgid "DNSSEC check unsigned" msgstr "Verificar DNSSEC sem assinatura" @@ -1977,11 +1998,11 @@ msgid "DS-Lite AFTR address" msgstr "Endereço DS-Lite AFTR" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1481 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:44 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:45 msgid "DSL" msgstr "DSL" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:14 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:15 msgid "DSL Status" msgstr "Estado da DSL" @@ -1994,12 +2015,12 @@ msgid "DTIM Interval" msgstr "Intervalo DTIM" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:59 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:700 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:771 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:136 msgid "DUID" msgstr "DUID" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:21 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:22 msgid "Data Rate" msgstr "Taxa de Dados" @@ -2251,12 +2272,12 @@ msgstr "" msgid "Disassociate On Low Acknowledgement" msgstr "Desassociar quando tiver baixa confirmação" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:302 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:307 msgid "" "Discard upstream responses containing <a href=\"%s\">RFC1918</a> addresses." msgstr "" -"Descarta as respostas dos servidores externos que conteem endereços <a " -"href=\"%s\">RFC1918</a>." +"Descarta as respostas dos servidores externos que conteem endereços <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 @@ -2299,7 +2320,7 @@ msgstr "Distância para o host da rede mais distante em metros." msgid "Distributed ARP Table" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:543 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:548 msgid "" "Dnsmasq instance to which this boot section is bound. If unspecified, the " "section is valid for all dnsmasq instances." @@ -2309,15 +2330,15 @@ msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:246 msgid "" -"Dnsmasq is a lightweight <abbr title=\"Dynamic Host Configuration " -"Protocol\">DHCP</abbr> server and <abbr title=\"Domain Name System\">DNS</" -"abbr> forwarder." +"Dnsmasq is a lightweight <abbr title=\"Dynamic Host Configuration Protocol" +"\">DHCP</abbr> server and <abbr title=\"Domain Name System\">DNS</abbr> " +"forwarder." msgstr "" "O Dnsmasq é um servidor leve de <abbr title=\"Dynamic Host Configuration " -"Protocol\">DHCP</abbr> e encaminhador de <abbr title=\"Domain Name " -"System\">DNS</abbr>." +"Protocol\">DHCP</abbr> e encaminhador de <abbr title=\"Domain Name System" +"\">DNS</abbr>." -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:414 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:419 msgid "Do not cache negative replies, e.g. for non-existent domains." msgstr "Não por respostas negativas em cache, p.e. para domínios inexistentes." @@ -2329,15 +2350,15 @@ msgstr "Não por respostas negativas em cache, p.e. para domínios inexistentes. msgid "Do not create host route to peer (optional)." msgstr "Não crie a rota do host para o peer (opcional)." -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:262 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:264 msgid "Do not forward DNS queries without dots or domain parts." msgstr "Não encaminhar consultas DNS sem pontos ou partes de domínio." -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:383 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:388 msgid "Do not forward reverse lookups for local networks." msgstr "Não encaminhar buscas reversas para redes locais." -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:339 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:344 msgid "Do not listen on the specified interfaces." msgstr "Evite escutar nestas Interfaces." @@ -2394,15 +2415,16 @@ msgstr "" msgid "Do you want to replace the current keys?" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:593 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:606 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:664 msgid "Domain" msgstr "Domínio" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:261 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:263 msgid "Domain required" msgstr "Domínio requerido" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:311 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:316 msgid "Domain whitelist" msgstr "Lista Branca do Domínio" @@ -2467,9 +2489,8 @@ msgid "" "Dropbear offers <abbr title=\"Secure Shell\">SSH</abbr> network shell access " "and an integrated <abbr title=\"Secure Copy\">SCP</abbr> server" msgstr "" -"Dropbear oferece um acesso shell seguro à rede <abbr title=\"Secure " -"Shell\">SSH</abbr> e um servidor <abbr title=\"Secure Copy\">SCP</abbr> " -"integrado" +"Dropbear oferece um acesso shell seguro à rede <abbr title=\"Secure Shell" +"\">SSH</abbr> e um servidor <abbr title=\"Secure Copy\">SCP</abbr> integrado" #: modules/luci-compat/luasrc/model/network/proto_4x6.lua:14 #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dslite.js:11 @@ -2592,8 +2613,8 @@ msgid "" "Enable <abbr title=\"Internet Group Management Protocol\">IGMP</abbr> " "snooping" msgstr "" -"Ativar a monitorização do <abbr title=\"Internet Group Management " -"Protocol\">IGMP</abbr> (Snooping)" +"Ativar a monitorização do <abbr title=\"Internet Group Management Protocol" +"\">IGMP</abbr> (Snooping)" #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:518 msgid "Enable <abbr title=\"Spanning Tree Protocol\">STP</abbr>" @@ -2650,7 +2671,7 @@ msgstr "Ativar o cliente NTP" msgid "Enable Single DES" msgstr "Ativar DES Único" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:480 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:485 msgid "Enable TFTP server" msgstr "Ativar o servidor TFTP" @@ -2668,9 +2689,9 @@ msgstr "Ativar o botão WPS. requer WPA(2)-PSK/WPA3-SAE" #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/uhttpd.js:14 msgid "" -"Enable automatic redirection of <abbr title=\"Hypertext Transfer " -"Protocol\">HTTP</abbr> requests to <abbr title=\"Hypertext Transfer Protocol " -"Secure\">HTTPS</abbr> port." +"Enable automatic redirection of <abbr title=\"Hypertext Transfer Protocol" +"\">HTTP</abbr> requests to <abbr title=\"Hypertext Transfer Protocol Secure" +"\">HTTPS</abbr> port." msgstr "" "Ative o redirecionamento automático das solicitações <abbr title=\"Hypertext " "Transfer Protocol\">HTTP</abbr> à porta <abbr title=\"Hypertext Transfer " @@ -2738,7 +2759,7 @@ msgstr "Ativar suporte para tráfego de multicast (opcional)." msgid "Enable the DF (Don't Fragment) flag of the encapsulating packets." msgstr "Ativa o campo DF (Não Fragmentar) dos pacotes encapsulados." -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:481 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:486 msgid "Enable the built-in single-instance TFTP server." msgstr "Ativar o servidor integrado de instância única de TFTP." @@ -2764,8 +2785,8 @@ msgstr "Ativado" #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:538 msgid "Enables IGMP snooping on this bridge" msgstr "" -"Ativar a monitorização do <abbr title=\"Internet Group Management " -"Protocol\">IGMP</abbr> (Snooping) nesta bridge" +"Ativar a monitorização do <abbr title=\"Internet Group Management Protocol" +"\">IGMP</abbr> (Snooping) nesta bridge" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1522 msgid "" @@ -2859,7 +2880,7 @@ msgstr "Erro" msgid "Error getting PublicKey" msgstr "Erro ao obter a PublicKey" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:29 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:30 msgid "Errored seconds (ES)" msgstr "Segundos com erro (ES)" @@ -2881,11 +2902,11 @@ msgstr "A cada 30 segundos (lento, 0)" msgid "Every second (fast, 1)" msgstr "A cada segundo (rápido, 1)" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:338 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:343 msgid "Exclude interfaces" msgstr "Excluir interfaces" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:307 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:312 msgid "" "Exempt <code>127.0.0.0/8</code> and <code>::1</code> from rebinding checks, " "e.g. for RBL services." @@ -2897,7 +2918,7 @@ msgstr "" msgid "Existing device" msgstr "Aparelho existente" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:409 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:414 msgid "Expand hosts" msgstr "Expandir hosts" @@ -3034,7 +3055,7 @@ msgstr "" msgid "File" msgstr "Ficheiro" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:418 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:423 msgid "" "File listing upstream resolvers, optionally domain-specific, e.g. " "<code>server=1.2.3.4</code>, <code>server=/domain/1.2.3.4</code>." @@ -3047,20 +3068,20 @@ msgstr "" msgid "File not accessible" msgstr "Ficheiro não acessível" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:349 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:354 msgid "File to store DHCP lease information." msgstr "Ficheiro para armazenar informações de concessão de DHCP." -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:357 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:362 msgid "File with upstream resolvers." msgstr "Ficheiro com os resolvedores upstream." #: modules/luci-base/htdocs/luci-static/resources/ui.js:2846 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:507 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:512 msgid "Filename" msgstr "Nome do ficheiro" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:493 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:498 msgid "Filename of the boot image advertised to clients." msgstr "Nome do ficheiro da imagem de inicialização anunciada aos clientes." @@ -3069,11 +3090,11 @@ msgstr "Nome do ficheiro da imagem de inicialização anunciada aos clientes." msgid "Filesystem" msgstr "Sistema de ficheiros" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:382 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:387 msgid "Filter private" msgstr "Filtrar endereços privados" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:387 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:392 msgid "Filter useless" msgstr "Filtrar inúteis" @@ -3143,7 +3164,7 @@ msgstr "Ficheiro de Firmware" msgid "Firmware Version" msgstr "Versão do firmware" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:446 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:451 msgid "Fixed source port for outbound DNS queries." msgstr "Porta de origem fixa para consultas de DNS de saída." @@ -3169,7 +3190,7 @@ msgstr "Operações na memória flash" msgid "Flashing…" msgstr "A fazer o Flash…" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:537 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:542 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:686 msgid "Force" msgstr "Forçar" @@ -3214,16 +3235,16 @@ msgstr "Forçar a atualização" msgid "Force use of NAT-T" msgstr "Forçar o uso do NAT-T" -#: modules/luci-base/luasrc/view/csrftoken.htm:8 +#: modules/luci-base/ucode/template/csrftoken.ut:8 msgid "Form token mismatch" msgstr "Chave electrónica do formulário não corresponde" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:919 msgid "" -"Forward <abbr title=\"Neighbour Discovery Protocol\">NDP</abbr> <abbr " -"title=\"Neighbour Solicitation, Type 135\">NS</abbr> and <abbr " -"title=\"Neighbour Advertisement, Type 136\">NA</abbr> messages between the " -"designated master interface and downstream interfaces." +"Forward <abbr title=\"Neighbour Discovery Protocol\">NDP</abbr> <abbr title=" +"\"Neighbour Solicitation, Type 135\">NS</abbr> and <abbr title=\"Neighbour " +"Advertisement, Type 136\">NA</abbr> messages between the designated master " +"interface and downstream interfaces." msgstr "" "Encaminhe as mensagens <abbr title=\"Neighbour Discovery Protocol\">NDP</" "abbr> <abbr title=\"Neighbour Solicitation, Type 135\">NS</abbr> and <abbr " @@ -3252,7 +3273,7 @@ msgstr "" "Encaminhe as mensagens DHCPv6 entre a interface principal e as interfaces " "\"downstream\"." -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:28 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:29 msgid "Forward Error Correction Seconds (FECS)" msgstr "" "Encaminhar segundos da correção de erros ( <abbr title=\"Forward Error " @@ -3414,15 +3435,15 @@ msgstr "Configurações Globais" msgid "Global network options" msgstr "Opções de rede globais" -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:82 -#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:89 -#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:74 +#: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/header.ut:70 +#: themes/luci-theme-material/ucode/template/themes/material/header.ut:84 +#: themes/luci-theme-openwrt-2020/ucode/template/themes/openwrt2020/header.ut:67 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:92 msgid "Go to firmware upgrade..." msgstr "Ir à atualização do firmware..." -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:72 -#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:64 +#: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/header.ut:60 +#: themes/luci-theme-openwrt-2020/ucode/template/themes/openwrt2020/header.ut:57 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:82 msgid "Go to password configuration..." msgstr "Ir para a configuração da palavra-passe…" @@ -3563,7 +3584,7 @@ msgstr "Acesso HTTP(s)" msgid "Hang Up" msgstr "Desligar" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:33 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:34 msgid "Header Error Code Errors (HEC)" msgstr "" "Erros de Código de Erro de Cabeçalho (<abbr title=\"Header Error Code\">HEC</" @@ -3588,8 +3609,8 @@ msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1140 msgid "Hide <abbr title=\"Extended Service Set Identifier\">ESSID</abbr>" msgstr "" -"Ocultar <abbr title=\"Identificador de Conjunto de Serviços " -"Estendidos\">ESSID</abbr>" +"Ocultar <abbr title=\"Identificador de Conjunto de Serviços Estendidos" +"\">ESSID</abbr>" #: 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 @@ -3620,7 +3641,7 @@ msgstr "Host" msgid "Host expiry timeout" msgstr "Tempo limite de expiração de equipamento" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:508 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:513 msgid "Host requests this filename from the boot server." msgstr "O host solicita este nome de ficheiro no servidor de inicialização." @@ -3629,8 +3650,8 @@ msgid "Host-Uniq tag content" msgstr "Conteúdo da etiqueta Host-Uniq" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:38 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:559 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:607 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:630 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:678 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/10_system.js:54 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:87 #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:135 @@ -3645,7 +3666,7 @@ msgstr "Nome do Host a enviar quando houver um pedido DHCP" msgid "Hostnames" msgstr "Endereços de Hosts" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:551 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:622 msgid "" "Hostnames are used to bind a domain name to an IP address. This setting is " "redundant for hostnames already configured with static leases, but it can be " @@ -3712,7 +3733,7 @@ msgstr "Endereços IP" msgid "IP Protocol" msgstr "Protocolo IP" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:258 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:260 msgid "IP Sets" msgstr "Conjuntos de IP" @@ -3720,7 +3741,7 @@ msgstr "Conjuntos de IP" msgid "IP Type" msgstr "Tipo de IP" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:563 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:634 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:178 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:204 msgid "IP address" @@ -3746,15 +3767,15 @@ msgctxt "nft meta l4proto" msgid "IP protocol" msgstr "Protocolo IP" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:589 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:660 msgid "IP set" msgstr "conjunto de IP" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:295 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:300 msgid "IP sets" msgstr "Conjuntos IP" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:432 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:437 msgid "IPs to override with NXDOMAIN" msgstr "Substituir Domínios NX Falsos" @@ -3795,7 +3816,7 @@ msgstr "IPv4 Superior" #: modules/luci-base/htdocs/luci-static/resources/protocol/static.js:178 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:39 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:665 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:736 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:88 #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:164 msgid "IPv4 address" @@ -3966,7 +3987,7 @@ msgstr "Roteamento com origem IPv6" msgid "IPv6 suffix" msgstr "Sufixo IPv6" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:706 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:777 msgid "IPv6 suffix (hex)" msgstr "" "Sufixo (hex) <abbr title=\"Protocolo de Internet Versão 6\">IPv6</abbr>" @@ -4065,10 +4086,10 @@ msgstr "Se desmarcado, os endereços de servidor DNS anunciados são ignorados" #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:340 msgid "" "If your physical memory is insufficient unused data can be temporarily " -"swapped to a swap-device resulting in a higher amount of usable <abbr " -"title=\"Random Access Memory\">RAM</abbr>. Be aware that swapping data is a " -"very slow process as the swap-device cannot be accessed with the high " -"datarates of the <abbr title=\"Random Access Memory\">RAM</abbr>." +"swapped to a swap-device resulting in a higher amount of usable <abbr title=" +"\"Random Access Memory\">RAM</abbr>. Be aware that swapping data is a very " +"slow process as the swap-device cannot be accessed with the high datarates " +"of the <abbr title=\"Random Access Memory\">RAM</abbr>." msgstr "" "Se a memória física for insuficiente, os dados não usados poderão ser " "guardados temporariamente para um aparelho swap, resultando numa maior " @@ -4077,7 +4098,7 @@ msgstr "" "lento, pois o aparelho swap não pode ser acedido com a alta taxa de dados da " "memória <abbr title=\"Random Access Memory\">RAM</abbr>." -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:363 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:368 msgid "Ignore <code>/etc/hosts</code>" msgstr "Ignorar <code>/etc/hosts</code>" @@ -4085,7 +4106,7 @@ msgstr "Ignorar <code>/etc/hosts</code>" msgid "Ignore interface" msgstr "Ignorar interface" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:352 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:357 msgid "Ignore resolv file" msgstr "Ignorar o ficheiro resolv.conf" @@ -4133,7 +4154,7 @@ msgid "" "order to avoid broadcast loops that can bring the entire LAN to a standstill." msgstr "" -#: modules/luci-base/luasrc/view/csrftoken.htm:13 +#: modules/luci-base/ucode/template/csrftoken.ut:13 msgid "" "In order to prevent unauthorized access to the system, your request has been " "blocked. Click \"Continue »\" below to return to the previous page." @@ -4246,7 +4267,7 @@ msgstr "Restrição de certificado interno (Wildcard)" msgid "Install protocol extensions..." msgstr "Instalar extensões do protocolo..." -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:542 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:547 msgid "Instance" msgstr "Instância" @@ -4335,10 +4356,6 @@ msgstr "Interfaces" msgid "Internal" msgstr "Interno" -#: modules/luci-base/luasrc/view/error500.htm:8 -msgid "Internal Server Error" -msgstr "Erro Interno do Servidor" - #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:285 msgid "Interval For Sending Learning Packets" msgstr "Intervalo para o Envio dos Pacotes de Aprendizagem" @@ -4414,8 +4431,8 @@ msgstr "Comando inválido" msgid "Invalid hexadecimal value" msgstr "Valor hexadecimal inválido" -#: modules/luci-base/luasrc/view/sysauth.htm:12 -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/sysauth.htm:37 +#: modules/luci-base/ucode/template/sysauth.ut:12 +#: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/sysauth.ut:32 msgid "Invalid username and/or password! Please try again." msgstr "Username e/ou password inválidos! Por favor, tente novamente." @@ -4439,8 +4456,8 @@ msgstr "" "A imagem que está a tentar carregar aparenta não caber na flash do " "equipamento, por favor verifique o ficheiro da imagem!" -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:89 -#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:96 +#: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/header.ut:77 +#: themes/luci-theme-material/ucode/template/themes/material/header.ut:91 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:72 msgid "JavaScript required!" msgstr "É necessário JavaScript!" @@ -4572,11 +4589,17 @@ msgstr "Idioma" msgid "Language and Style" msgstr "Língua e Tema" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:560 +msgid "" +"Larger weights (of the same prio) are given a proportionately higher " +"probability of being selected." +msgstr "" + #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:575 msgid "Last member interval" msgstr "O intervalo do último membro" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:23 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:24 msgid "Latency" msgstr "Latência" @@ -4592,11 +4615,11 @@ msgstr "Aprenda" msgid "Learn routes" msgstr "Aprender rotas" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:348 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:353 msgid "Lease file" msgstr "Ficheiro de concessões" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:697 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:768 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:679 msgid "Lease time" msgstr "Tempo de concessão" @@ -4644,19 +4667,19 @@ msgstr "Legenda:" msgid "Limit" msgstr "Limite" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:24 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:25 msgid "Line Attenuation (LATN)" msgstr "Atenuação de Linha (<abbr title=\"Line Attenuation\">LATN</abbr>)" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:18 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:19 msgid "Line Mode" msgstr "Modo da Linha" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:17 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:18 msgid "Line State" msgstr "Estado da Linha" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:19 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:20 msgid "Line Uptime" msgstr "Tempo de Ativo da Linha" @@ -4677,12 +4700,12 @@ msgctxt "nft @ll,off,len" msgid "Link layer header bits %d-%d" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:433 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:438 msgid "List of IP addresses to convert into NXDOMAIN responses." msgstr "Lista de endereços IP a serem convertidos em respostas NXDOMAIN." -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:296 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:581 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:301 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:652 msgid "List of IP sets to populate with the specified domain IPs." msgstr "" "Lista os conjuntos dos IPs para preencher os IPs com domínios especificados." @@ -4719,15 +4742,11 @@ msgstr "" msgid "List of SSH key files for auth" msgstr "Lista de ficheiros de chaves SSH para autenticação" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:312 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:317 msgid "List of domains to allow RFC1918 responses for." msgstr "Lista de domínios para quais permitir respostas de RFC1918." -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:290 -msgid "List of domains to force to an IP address." -msgstr "Lista de domínios a forçar para um endereço IP." - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:283 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:285 msgid "List of upstream resolvers to forward queries to." msgstr "Lista de resolvedores upstream a quem encaminhar as consultas." @@ -4735,7 +4754,7 @@ msgstr "Lista de resolvedores upstream a quem encaminhar as consultas." msgid "Listen Port" msgstr "Porta de escuta" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:332 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:337 msgid "Listen interfaces" msgstr "Interfaces de Escuta" @@ -4744,7 +4763,7 @@ msgid "Listen only on the given interface or, if unspecified, on all" msgstr "" "Escutar apenas na interface fornecida ou, se não especificada, em todas" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:333 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:338 msgid "" "Listen only on the specified interfaces, and loopback if not excluded " "explicitly." @@ -4754,7 +4773,7 @@ msgstr "Escutar apenas nestas interfaces, e na loopback." msgid "ListenPort setting is invalid" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:439 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:444 msgid "Listening port for inbound DNS queries." msgstr "Porta de escuta para entrada de consultas DNS" @@ -4781,9 +4800,9 @@ msgid "Loading directory contents…" msgstr "Carregando o conteúdo do diretório…" #: modules/luci-base/htdocs/luci-static/resources/luci.js:1942 -#: modules/luci-base/luasrc/view/view.htm:4 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:12 -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/sysauth.htm:45 +#: modules/luci-base/ucode/template/view.ut:4 +#: modules/luci-mod-status/ucode/template/admin_status/index.ut:12 +#: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/sysauth.ut:40 msgid "Loading view…" msgstr "Carregando visualização…" @@ -4841,20 +4860,20 @@ msgstr "Hora Local" msgid "Local ULA" msgstr "ULA local" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:273 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:275 msgid "Local domain" msgstr "Domínio local" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:274 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:276 msgid "Local domain suffix appended to DHCP names and hosts file entries." msgstr "" "Sufixo de domínio local anexado a nomes de DHCP e entradas no ficheiro hosts." -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:269 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:271 msgid "Local server" msgstr "Servidor local" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:319 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:324 msgid "Local service only" msgstr "Somente Serviço Local" @@ -4862,7 +4881,7 @@ msgstr "Somente Serviço Local" msgid "Local wireguard key" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:392 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:397 msgid "Localise queries" msgstr "Localizar consultas" @@ -4874,7 +4893,7 @@ msgstr "Bloqueio para BSSID" msgid "Log output level" msgstr "Nível de output do log" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:277 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:279 msgid "Log queries" msgstr "Registo das consultas" @@ -4900,8 +4919,8 @@ msgstr "" msgid "Logical network to which the tunnel will be added (bridged) (optional)." msgstr "Rede lógica onde o túnel será adicionado (bridged) (opcional)." -#: modules/luci-base/luasrc/view/sysauth.htm:38 -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/sysauth.htm:41 +#: modules/luci-base/ucode/template/sysauth.ut:38 +#: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/sysauth.ut:36 msgid "Login" msgstr "Login" @@ -4913,7 +4932,7 @@ msgstr "Sair" msgid "Loose filtering" msgstr "Filtragem livre" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:31 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:32 msgid "Loss of Signal Seconds (LOSS)" msgstr "" "Segundos de Perda de Sinal (<abbr title=\"Loss of Signal Seconds\">LOSS</" @@ -4923,6 +4942,10 @@ msgstr "" msgid "Lowest leased address as offset from the network address." msgstr "O endereço mais baixo concedido como deslocamento do endereço da rede." +#: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/footer.ut:12 +msgid "Lua compatibility mode active" +msgstr "" + #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:48 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:83 msgid "MAC" @@ -4947,7 +4970,7 @@ msgstr "VLAN MAC" #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:591 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:40 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:619 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:690 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1164 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2177 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:56 @@ -5006,6 +5029,10 @@ msgstr "Intervalo MII" msgid "MTU" msgstr "MTU" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:259 +msgid "MX" +msgstr "" + #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:303 msgid "" "Make sure to clone the root filesystem using something like the commands " @@ -5032,26 +5059,25 @@ msgstr "Mestre" msgid "Max <abbr title=\"Router Advertisement\">RA</abbr> interval" msgstr "Intervalo máximo <abbr title=\"Router Advertisement\">RA</abbr>" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:22 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:23 msgid "Max. Attainable Data Rate (ATTNDR)" msgstr "" -"Taxa de Dados Atingível Máxima (<abbr title=\"Maximum Attainable Data " -"Rate\">ATTNDR</abbr>)" +"Taxa de Dados Atingível Máxima (<abbr title=\"Maximum Attainable Data Rate" +"\">ATTNDR</abbr>)" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:452 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:457 msgid "Max. DHCP leases" msgstr "" "<abbr title=\"Máximo\">Max.</abbr> de concessões<abbr title=\"Protocolo de " "Configuracao Dinamica de Hosts\">DHCP</abbr>" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:459 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:464 msgid "Max. EDNS0 packet size" msgstr "" -"Tamanho <abbr title=\"Máximo\">max.</abbr> do pacote <abbr " -"title=\"Mecanismos de Extensão para Sistemas de Nomes de Domínio\">EDNS0</" -"abbr>" +"Tamanho <abbr title=\"Máximo\">max.</abbr> do pacote <abbr title=" +"\"Mecanismos de Extensão para Sistemas de Nomes de Domínio\">EDNS0</abbr>" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:466 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:471 msgid "Max. concurrent queries" msgstr "<abbr title=\"máximo\">Max.</abbr> de consultas concorrentes" @@ -5063,15 +5089,15 @@ msgstr "Idade máxima" msgid "Maximum allowed Listen Interval" msgstr "Intervalo de Escuta máximo permitido" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:453 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:458 msgid "Maximum allowed number of active DHCP leases." msgstr "Quantidade máxima permitida de concessões DHCP ativas." -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:467 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:472 msgid "Maximum allowed number of concurrent DNS queries." msgstr "Quantidade máxima permitida de consultas simultâneas de DNS." -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:460 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:465 msgid "Maximum allowed size of EDNS0 UDP packets." msgstr "Tamanho máximo permitido dos pacotes UDP EDNS0." @@ -5102,7 +5128,7 @@ msgstr "" msgid "Maximum transmit power" msgstr "Potência máxima de transmissão" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:389 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:394 msgid "May prevent VoIP or other services from working." msgstr "" @@ -5425,11 +5451,15 @@ msgstr "Nome da nova rede" msgid "Name of the tunnel device" msgstr "" -#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:46 +#: themes/luci-theme-openwrt-2020/ucode/template/themes/openwrt2020/header.ut:39 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:50 msgid "Navigation" msgstr "Navegação" +#: protocols/luci-proto-nebula/htdocs/luci-static/resources/protocol/nebula.js:10 +msgid "Nebula Network" +msgstr "" + #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:653 msgid "Neighbour cache validity" msgstr "Validade do cache vizinho" @@ -5465,7 +5495,7 @@ msgstr "Ferramentas de Rede" msgid "Network address" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:492 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:497 msgid "Network boot image" msgstr "Imagem de arranque via rede" @@ -5505,7 +5535,7 @@ msgstr "Migração da configuração do ifname da rede" msgid "Network interface" msgstr "Interfaces de rede" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:531 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:536 msgid "Network-ID" msgstr "ID da rede" @@ -5513,7 +5543,7 @@ msgstr "ID da rede" msgid "Never" msgstr "Nunca" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:270 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:272 msgid "" "Never forward matching domains and subdomains, resolve from DHCP or hosts " "files only." @@ -5563,9 +5593,9 @@ msgstr "Sem NAT-T" msgid "No RX signal" msgstr "Sem sinal RX" -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:80 -#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:87 -#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:72 +#: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/header.ut:68 +#: themes/luci-theme-material/ucode/template/themes/material/header.ut:82 +#: themes/luci-theme-openwrt-2020/ucode/template/themes/openwrt2020/header.ut:65 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:90 msgid "" "No changes to settings will be stored and are lost after rebooting. This " @@ -5610,10 +5640,6 @@ msgstr "Não há entradas disponíveis" msgid "No entries in this directory" msgstr "Não há entradas neste diretório" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:82 -msgid "No files found" -msgstr "Não foram encontrados ficheiros" - #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:833 msgid "" "No fixed interface listening port defined, peers might not be able to " @@ -5649,7 +5675,7 @@ msgstr "Não há mais escravos disponíveis" msgid "No more slaves available, can not save interface" msgstr "Não há mais escravos disponíveis, não é possível gravar a interface" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:413 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:418 msgid "No negative cache" msgstr "Sem cache negativa" @@ -5657,8 +5683,8 @@ msgstr "Sem cache negativa" msgid "No nftables ruleset loaded." msgstr "" -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:69 -#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:61 +#: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/header.ut:57 +#: themes/luci-theme-openwrt-2020/ucode/template/themes/openwrt2020/header.ut:54 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:79 msgid "No password set!" msgstr "Sem password definida!" @@ -5698,7 +5724,7 @@ msgstr "Sem zona atribuída" msgid "Noise" msgstr "Ruído" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:26 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:27 msgid "Noise Margin (SNR)" msgstr "" "Margem de Ruído (<abbr title=\"Razão entre Sinal e Ruído/Signal to Noise " @@ -5708,13 +5734,13 @@ msgstr "" msgid "Noise:" msgstr "Ruído:" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:34 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:35 msgid "Non Pre-emptive CRC errors (CRC_P)" msgstr "" "Erros CRC Não Preemptivos<abbr title=\"Non Pre-emptive CRC errors\">CRC_P</" "abbr>" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:325 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:330 msgid "Non-wildcard" msgstr "Sem caracter curinga" @@ -5729,7 +5755,7 @@ msgstr "Nenhum" msgid "Normal" msgstr "Normal" -#: modules/luci-base/luasrc/view/error404.htm:8 +#: modules/luci-base/ucode/template/error404.ut:9 msgid "Not Found" msgstr "Não encontrado" @@ -5781,7 +5807,7 @@ msgstr "Nslookup" msgid "Number of IGMP membership reports" msgstr "Quantidade de relatórios associados ao IGMP" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:474 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:479 msgid "Number of cached DNS entries, 10000 is maximum, 0 is no caching." msgstr "" "Quantidade das entradas DNS em cache, 10000 é o máximo, 0 desativa o cache." @@ -5831,7 +5857,7 @@ msgstr "Atraso do On-State" msgid "On-link" msgstr "Rota On-Link" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:672 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:743 msgid "One of hostname or MAC address must be specified!" msgstr "Um nome de host ou endereço MAC deve ser especificado!" @@ -5871,7 +5897,6 @@ msgid "Open iptables rules overview…" msgstr "" #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:472 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:19 msgid "Open list..." msgstr "Abrir lista..." @@ -5891,8 +5916,8 @@ msgid "" "Protocol\">NDP</abbr> proxying." msgstr "" "Operar em <em>modo relé</em> se uma interface principal designada estiver " -"configurada e ativa, caso contrário desativar fazer proxy do <abbr " -"title=\"Neighbour Discovery Protocol\">NDP</abbr>." +"configurada e ativa, caso contrário desativar fazer proxy do <abbr title=" +"\"Neighbour Discovery Protocol\">NDP</abbr>." #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:723 msgid "" @@ -6038,12 +6063,12 @@ msgstr "Opcional. Porta UDP usada para pacotes saintes ou entrantes." msgid "Options" msgstr "Opções" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:526 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:531 msgid "" "Options for the Network-ID. (Note: needs also Network-ID.) E.g. " -"\"<code>42,192.168.1.4</code>\" for NTP server, \"<code>3,192.168.4.4</" -"code>\" for default route. <code>0.0.0.0</code> means \"the address of the " -"system running dnsmasq\"." +"\"<code>42,192.168.1.4</code>\" for NTP server, \"<code>3,192.168.4.4</code>" +"\" for default route. <code>0.0.0.0</code> means \"the address of the system " +"running dnsmasq\"." msgstr "" "Opções para o ID da rede. (Nota: precisa também do ID da rede.) Por exemplo, " "\"<code>42,192.168.1.4</code>\" para o servidor NTP, \"<code>3,192.168.4.4</" @@ -6054,6 +6079,11 @@ msgstr "" msgid "Options:" msgstr "Opções:" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:584 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:616 +msgid "Ordinal: lower comes first." +msgstr "" + #: protocols/luci-proto-batman-adv/htdocs/luci-static/resources/protocol/batadv.js:55 msgid "Originator Interval" msgstr "" @@ -6330,13 +6360,13 @@ msgctxt "MACVLAN mode" msgid "Pass-through (Mirror physical device to single MAC VLAN)" msgstr "Passagem direta (Aparelho físico espelhado para um único MAC VLAN)" -#: modules/luci-base/luasrc/view/sysauth.htm:29 +#: modules/luci-base/ucode/template/sysauth.ut:29 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1690 #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:51 #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:114 #: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:103 #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:58 -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/sysauth.htm:24 +#: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/sysauth.ut:19 msgid "Password" msgstr "Palavra-passe" @@ -6507,7 +6537,7 @@ msgstr "Ping" msgid "Pkts." msgstr "Pcts." -#: modules/luci-base/luasrc/view/sysauth.htm:19 +#: modules/luci-base/ucode/template/sysauth.ut:19 msgid "Please enter your username and password." msgstr "Insira o seu username e password." @@ -6524,6 +6554,7 @@ msgctxt "Chain hook policy" msgid "Policy: <strong>%h</strong> (%h)" msgstr "" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:579 #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/dropbear.js:21 msgid "Port" msgstr "Porta" @@ -6540,11 +6571,11 @@ msgstr "Estado da porta:" msgid "Potential negation of: %s" msgstr "Negação potencial de: %s" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:37 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:38 msgid "Power Management Mode" msgstr "Modo de Gestão de Energia" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:35 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:36 msgid "Pre-emptive CRC errors (CRCP_P)" msgstr "" "Erros CRC Preemptivos<abbr title=\"Pre-emptive CRC errors\">CRCP_P</abbr>" @@ -6622,6 +6653,8 @@ msgid "Primary becomes active slave whenever it comes back up (always, 0)" msgstr "O primário torna-se um escravo ativo sempre que retornar (sempre, 0)" #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:508 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:584 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:616 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:129 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:197 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:223 @@ -6744,7 +6777,7 @@ msgstr "Celular QMI" msgid "Quality" msgstr "Qualidade" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:428 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:433 msgid "Query all available upstream resolvers." msgstr "Consultar todos os resolvedores disponíveis upstream." @@ -6828,7 +6861,7 @@ msgstr "" "Bytes brutos codificados em hexadecimal. Deixe vazio a não ser que seu " "provedor requeira isso" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:345 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:350 msgid "Read <code>/etc/ethers</code> to configure the DHCP server." msgstr "Ler <code>/etc/ethers</code> para configurar o servidor DHCP." @@ -6844,7 +6877,7 @@ msgstr "Gráficos em Tempo Real" msgid "Reassociation Deadline" msgstr "Limite para Reassociação" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:301 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:306 msgid "Rebind protection" msgstr "Religar protecção" @@ -6929,6 +6962,7 @@ msgid "" msgstr "" #: modules/luci-compat/luasrc/model/network/proto_relay.lua:153 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:611 #: protocols/luci-proto-relay/htdocs/luci-static/resources/protocol/relay.js:39 msgid "Relay" msgstr "Retransmissor" @@ -7019,6 +7053,10 @@ msgstr "Necessário para certos ISPs, p.ex. Charter with DOCSIS 3" msgid "Required. Base64-encoded private key for this interface." msgstr "Obrigatório. Chave privada codificada em Base64 para esta interface." +#: protocols/luci-proto-nebula/htdocs/luci-static/resources/protocol/nebula.js:40 +msgid "Required. Path to the .yml config file for this interface." +msgstr "" + #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:587 msgid "Required. Public key of the WireGuard peer." msgstr "" @@ -7100,7 +7138,7 @@ msgid "Reselection policy for primary slave" msgstr "Política de nova seleção para o escravo primário" #: modules/luci-base/htdocs/luci-static/resources/luci.js:2197 -#: modules/luci-base/luasrc/view/sysauth.htm:39 +#: modules/luci-base/ucode/template/sysauth.ut:39 #: modules/luci-compat/luasrc/view/cbi/delegator.htm:17 #: modules/luci-compat/luasrc/view/cbi/footer.htm:30 #: modules/luci-compat/luasrc/view/cbi/simpleform.htm:66 @@ -7119,10 +7157,14 @@ msgstr "Redefinir para os valores predefinidos" msgid "Resolv and Hosts Files" msgstr "Ficheiros Resolv e Hosts" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:356 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:361 msgid "Resolv file" msgstr "Resolver ficheiro" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:292 +msgid "Resolve specified FQDNs to an IP." +msgstr "Lista de domínios a forçar para um endereço IP." + #: modules/luci-base/htdocs/luci-static/resources/rpc.js:405 msgid "Resource not found" msgstr "Recurso não encontrado" @@ -7149,7 +7191,7 @@ msgstr "Restauração" msgid "Restore backup" msgstr "Restaurar backup" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:393 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:398 msgid "" "Return answers to DNS queries matching the subnet from which the query was " "received if multiple IPs are available." @@ -7238,7 +7280,7 @@ msgstr "" msgid "Robustness" msgstr "Robustez" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:486 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:491 msgid "" "Root directory for files served via TFTP. <em>Enable TFTP server</em> and " "<em>TFTP server root</em> turn on the TFTP server and serve files from " @@ -7349,6 +7391,11 @@ msgstr "SHA256" msgid "SNR" msgstr "SNR" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:258 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:569 +msgid "SRV" +msgstr "" + #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/dropbear.js:10 #: modules/luci-mod-system/root/usr/share/luci/menu.d/luci-mod-system.json:38 msgid "SSH Access" @@ -7495,11 +7542,11 @@ msgstr "Envie o nome do host deste aparelho" msgid "Server" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:519 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:524 msgid "Server address" msgstr "Endereço do servidor" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:513 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:518 msgid "Server name" msgstr "Nome do servidor" @@ -7555,9 +7602,9 @@ msgid "" "When enabled, clients will perform stateless IPv6 address autoconfiguration." msgstr "" "Definir a bandeira de configuração de endereço autónoma nas opções de " -"informação de prefixo das mensagens de <abbr title=\"Router " -"Advertisement\">RA</abbr> enviadas. Quando ativado, os clientes irão " -"realizar a autoconfiguração de endereços IPv6 sem estado." +"informação de prefixo das mensagens de <abbr title=\"Router Advertisement" +"\">RA</abbr> enviadas. Quando ativado, os clientes irão realizar a " +"autoconfiguração de endereços IPv6 sem estado." #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:719 msgid "" @@ -7600,7 +7647,7 @@ msgstr "Definições" msgid "Setup routes for proxied IPv6 neighbours." msgstr "Configuração de rotas para vizinhos de IPv6 que fazem proxy." -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:30 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:31 msgid "Severely Errored Seconds (SES)" msgstr "" "Segundos com erro severos (<abbr title=\"Severely Errored Seconds\">SES</" @@ -7616,7 +7663,6 @@ msgid "Short Preamble" msgstr "Preâmbulo curto" #: 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 msgid "Show current backup file list" msgstr "Mostrar lista ficheiros para backup" @@ -7650,7 +7696,7 @@ msgstr "Sinal" msgid "Signal / Noise" msgstr "Sinal / Ruído" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:25 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:26 msgid "Signal Attenuation (SATN)" msgstr "Atenuação do Sinal (<abbr title=\"Signal Attenuation\">SATN</abbr>)" @@ -7667,7 +7713,7 @@ msgstr "Sinal:" msgid "Size" msgstr "Tamanho" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:473 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:478 msgid "Size of DNS query cache" msgstr "Tamanho do cache de consultas DNS" @@ -7684,12 +7730,12 @@ msgstr "Saltar" msgid "Skip from backup files that are equal to those in /rom" msgstr "Ignore os ficheiros de backup que sejam iguais aos ficheiros em /rom" -#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:42 +#: themes/luci-theme-openwrt-2020/ucode/template/themes/openwrt2020/header.ut:35 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:46 msgid "Skip to content" msgstr "Ir para o conteúdo" -#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:41 +#: themes/luci-theme-openwrt-2020/ucode/template/themes/openwrt2020/header.ut:34 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:45 msgid "Skip to navigation" msgstr "Ir para a navegação" @@ -7707,14 +7753,10 @@ msgstr "VLAN em Software" msgid "Some fields are invalid, cannot save values!" msgstr "Alguns campos são inválidos, não é possível gravar valores!" -#: modules/luci-base/luasrc/view/error404.htm:9 +#: modules/luci-base/ucode/template/error404.ut:10 msgid "Sorry, the object you requested was not found." msgstr "Lamento, o objecto que pediu não foi encontrado." -#: modules/luci-base/luasrc/view/error500.htm:9 -msgid "Sorry, the server encountered an unexpected error." -msgstr "Lamento, o servidor encontrou um erro inesperado." - #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:442 msgid "" "Sorry, there is no sysupgrade support present; a new firmware image must be " @@ -7753,13 +7795,13 @@ msgctxt "nft ip sport" msgid "Source port" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:500 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:505 msgid "" "Special <abbr title=\"Preboot eXecution Environment\">PXE</abbr> boot " "options for Dnsmasq." msgstr "" -"Opções de inicialização especiais <abbr title=\"Preboot eXecution " -"Environment\">PXE</abbr> para o Dnsmasq." +"Opções de inicialização especiais <abbr title=\"Preboot eXecution Environment" +"\">PXE</abbr> para o Dnsmasq." #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:906 msgid "" @@ -8198,7 +8240,7 @@ msgstr "Atribuições Estáticas" msgid "Static address" msgstr "Endereço estático" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:598 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:669 msgid "" "Static leases are used to assign fixed IP addresses and symbolic hostnames " "to DHCP clients. They are also required for non-dynamic interface " @@ -8216,7 +8258,7 @@ msgstr "Limite de inatividade da estação" #: modules/luci-base/root/usr/share/luci/menu.d/luci-base.json:16 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:541 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:929 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:9 +#: modules/luci-mod-status/ucode/template/admin_status/index.ut:9 msgid "Status" msgstr "Estado" @@ -8242,7 +8284,7 @@ msgstr "Uso do armazenamento" msgid "Strict filtering" msgstr "Filtragem rigorosa" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:422 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:427 msgid "Strict order" msgstr "Ordem exacta" @@ -8255,11 +8297,11 @@ msgstr "Forte" msgid "Submit" msgstr "Submeter" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:372 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:377 msgid "Suppress logging" msgstr "Suprimir registros (log)" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:373 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:378 msgid "Suppress logging of the routine operation for the DHCP protocol." msgstr "Suprimir registos (log) de operações rotineiras do protocolo DHCP." @@ -8314,6 +8356,14 @@ msgstr "Sincronizar com o servidor NTP" msgid "Sync with browser" msgstr "Sincronizar com o browser" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:293 +msgid "Syntax: <code>/fqdn[/fqdn…]/[ipaddr]</code>." +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:569 +msgid "Syntax: <code>_service._proto.example.com</code>." +msgstr "" + #: modules/luci-base/root/usr/share/luci/menu.d/luci-base.json:26 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/10_system.js:17 #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:113 @@ -8339,9 +8389,9 @@ msgstr "Propriedades do Sistema" msgid "System log buffer size" msgstr "Tamanho do buffer de registro do sistema" -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:79 -#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:86 -#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:71 +#: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/header.ut:67 +#: themes/luci-theme-material/ucode/template/themes/material/header.ut:81 +#: themes/luci-theme-openwrt-2020/ucode/template/themes/openwrt2020/header.ut:64 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:89 msgid "System running in recovery (initramfs) mode." msgstr "Sistema em execução no modo de recuperação (initramfs)." @@ -8370,7 +8420,7 @@ msgstr "" msgid "TCP:" msgstr "TCP:" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:485 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:490 msgid "TFTP server root" msgstr "Raíz do servidor TFTP" @@ -8395,6 +8445,7 @@ msgstr "Comprimento da fila TX" msgid "Table" msgstr "Tabela" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:574 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:56 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:66 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:187 @@ -8478,15 +8529,15 @@ msgstr "" "A configuração da atualização de pontas HE.net mudou. Você deve agora usar o " "nome do utilizador ao invés do identificador do utilizador!" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:681 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:752 msgid "The IP address %h is already used by another static lease" msgstr "O endereço IP %h já é utilizado por outra concessão estática" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:690 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:761 msgid "The IP address is outside of any DHCP pool address range" msgstr "O endereço IP está fora de qualquer faixa de endereços do DHCP" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:520 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:525 msgid "The IP address of the boot server" msgstr "O endereço IP do servidor de inicialização" @@ -8609,8 +8660,8 @@ msgid "" "The device file of the memory or partition (<abbr title=\"for example\">e.g." "</abbr> <code>/dev/sda1</code>)" msgstr "" -"O ficheiro do aparelho de memória ou da partição (<abbr title=\"por " -"exemplo\">ex.</abbr> <code>/dev/sda1</code>)" +"O ficheiro do aparelho de memória ou da partição (<abbr title=\"por exemplo" +"\">ex.</abbr> <code>/dev/sda1</code>)" #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:450 msgid "The device name \"%s\" is already taken" @@ -8683,7 +8734,7 @@ msgid "" "to be received and retransmitted which costs airtime)" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:514 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:519 msgid "The hostname of the boot server" msgstr "O nome do host do servidor de inicialização" @@ -8782,20 +8833,20 @@ msgstr "O nome da rede já está a ser usado" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:139 msgid "" -"The network ports on this device can be combined to several <abbr " -"title=\"Virtual Local Area Network\">VLAN</abbr>s in which computers can " +"The network ports on this device can be combined to several <abbr title=" +"\"Virtual Local Area Network\">VLAN</abbr>s in which computers can " "communicate directly with each other. <abbr title=\"Virtual Local Area " "Network\">VLAN</abbr>s are often used to separate different network " "segments. Often there is by default one Uplink port for a connection to the " "next greater network like the internet and other ports for a local network." msgstr "" -"As portas de rede neste aparelho podem ser combinadas com várias <abbr " -"title=\"Rede de Área Local Virtual\">VLAN</abbr>s onde os computadores podem " -"comunicar diretamente entre eles. <abbr title=\"Rede de Área Local " -"Virtual\">VLAN</abbr>s são muito utilizadas para separar dois segmentos de " -"rede diferentes. Muitas vezes existe por defeito uma porta de ligação " -"ascendente para uma ligação para a rede acima como a Internet ou outras " -"portas de uma rede local." +"As portas de rede neste aparelho podem ser combinadas com várias <abbr title=" +"\"Rede de Área Local Virtual\">VLAN</abbr>s onde os computadores podem " +"comunicar diretamente entre eles. <abbr title=\"Rede de Área Local Virtual" +"\">VLAN</abbr>s são muito utilizadas para separar dois segmentos de rede " +"diferentes. Muitas vezes existe por defeito uma porta de ligação ascendente " +"para uma ligação para a rede acima como a Internet ou outras portas de uma " +"rede local." #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:759 msgid "" @@ -8846,7 +8897,7 @@ msgstr "" msgid "The selected %s mode is incompatible with %s encryption" msgstr "O modo %s selecionado é incompatível com a criptografia %s" -#: modules/luci-base/luasrc/view/csrftoken.htm:11 +#: modules/luci-base/ucode/template/csrftoken.ut:11 msgid "The submitted security token is invalid or already expired!" msgstr "A chave eletrônica enviada é inválida ou já expirou!" @@ -8929,8 +8980,8 @@ msgid "" "nftables rules is discouraged and may lead to incomplete traffic filtering." msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:746 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:778 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:817 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:849 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:130 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:179 msgid "There are no active leases" @@ -8940,8 +8991,8 @@ msgstr "Não há arrendamentos ativos" msgid "There are no changes to apply" msgstr "Não há alterações a serem aplicadas" -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:70 -#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:62 +#: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/header.ut:58 +#: themes/luci-theme-openwrt-2020/ucode/template/themes/openwrt2020/header.ut:55 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:80 msgid "" "There is no password set on this router. Please configure a root password to " @@ -8964,7 +9015,6 @@ msgid "This does not look like a valid PEM file" msgstr "Isto não parece ser um ficheiro PEM válido" #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:454 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:16 msgid "" "This is a list of shell glob patterns for matching files and directories to " "include during sysupgrade. Modified files in /etc/config/ and certain other " @@ -9010,7 +9060,7 @@ msgstr "" "Este é o endereço da ponta local designado pelo agente de túnel. normalmente " "ele termina com <code>...:2/64</code>" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:266 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:268 msgid "This is the only DHCP server in the local network." msgstr "Este é o único servidor DHCP na rede local." @@ -9099,8 +9149,8 @@ msgstr "Fuso Horário" #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:440 msgid "" "To fully configure the local WireGuard interface from an existing (e.g. " -"provider supplied) configuration file, use the <strong><a class=\"full-" -"import\" href=\"#\">configuration import</a></strong> instead." +"provider supplied) configuration file, use the <strong><a class=\"full-import" +"\" href=\"#\">configuration import</a></strong> instead." msgstr "" #: modules/luci-base/htdocs/luci-static/resources/luci.js:2674 @@ -9265,7 +9315,7 @@ msgstr "Não foi possível determinar o endereço IP externo" msgid "Unable to determine upstream interface" msgstr "Não foi possível determinar a interface com a rede externa" -#: modules/luci-base/luasrc/view/error404.htm:11 +#: modules/luci-base/ucode/template/error404.ut:12 msgid "Unable to dispatch" msgstr "Não é possível a expedição" @@ -9320,7 +9370,7 @@ msgstr "Incapaz de gravar conteúdos: %s" msgid "Unable to verify PIN" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:32 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:33 msgid "Unavailable Seconds (UAS)" msgstr "" "Segundos de indisponibilidade (<abbr title=\"Unavailable Seconds\">UAS</" @@ -9481,7 +9531,7 @@ msgstr "" "Ao pressionar \"Continuar\", as opções ifname serão renomeadas e a rede será " "reiniciada para aplicar a atualização da configuração." -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:423 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:428 msgid "Upstream resolvers will be queried in the order of the resolv file." msgstr "" "Os resolvedores upstream serão consultados na ordem do ficheiro resolv." @@ -9491,7 +9541,7 @@ msgstr "" msgid "Uptime" msgstr "Tempo de atividade" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:344 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:349 msgid "Use <code>/etc/ethers</code>" msgstr "Usar <code>/etc/ethers</code>" @@ -9521,8 +9571,8 @@ msgstr "Usar códigos de países ISO/IEC 3166 alpha2." #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:84 msgid "Use MTU on tunnel interface" msgstr "" -"Use o <abbr title=\"Maximum Transmission Unit/Unidade Máxima de " -"Transmissão\">MTU</abbr> na interface do túnel" +"Use o <abbr title=\"Maximum Transmission Unit/Unidade Máxima de Transmissão" +"\">MTU</abbr> na interface do túnel" #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6in4.js:85 #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6rd.js:65 @@ -9608,7 +9658,7 @@ msgstr "Usar certificados de sistema" msgid "Use system certificates for inner-tunnel" msgstr "Usar certificados de sistema para o túnel interno" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:599 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:670 msgid "" "Use the <em>Add</em> Button to add a new lease entry. The <em>MAC address</" "em> identifies the host, the <em>IPv4 address</em> specifies the fixed " @@ -9669,11 +9719,11 @@ msgstr "" msgid "User key (PEM encoded)" msgstr "Chave do utilizador (codificada em formato PEM)" -#: modules/luci-base/luasrc/view/sysauth.htm:23 +#: modules/luci-base/ucode/template/sysauth.ut:23 #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:112 #: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:101 #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:56 -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/sysauth.htm:18 +#: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/sysauth.ut:13 msgid "Username" msgstr "Nome do utilizador" @@ -9771,7 +9821,7 @@ msgstr "Identificador de rede VXLAN" msgid "VXLANv6 (RFC7348)" msgstr "VXLANv6 (RFC7348)" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:398 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:403 msgid "" "Validate DNS replies and cache DNSSEC data, requires upstream to support " "DNSSEC." @@ -9808,7 +9858,7 @@ msgstr "Fabricante" msgid "Vendor Class to send when requesting DHCP" msgstr "Classe do fabricante para enviar quando requisitar o DHCP" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:403 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:408 msgid "Verify unsigned domain responses really come from unsigned domains." msgstr "" "Verifique se as respostas dos domínios não assinados vêm realmente de " @@ -9888,6 +9938,10 @@ msgstr "" msgid "Weak" msgstr "Fraco" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:589 +msgid "Weight" +msgstr "" + #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1029 msgid "" "When delegating prefixes to multiple downstreams, interfaces with a higher " @@ -10017,7 +10071,7 @@ msgstr "Wireless está desativado" msgid "Wireless network is enabled" msgstr "A rede wireless está ativada" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:278 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:280 msgid "Write received DNS queries to syslog." msgstr "Escrever as consultas DNS recebidas no syslog." @@ -10059,8 +10113,16 @@ msgstr "" "como por exemplo \"rede/network\", o aparelho poderá tornar-se inacessível!</" "strong>" -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:90 -#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:97 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:559 +msgid "You may add multiple records for the same Target." +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:596 +msgid "You may add multiple records for the same domain." +msgstr "" + +#: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/header.ut:78 +#: themes/luci-theme-material/ucode/template/themes/material/header.ut:92 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:73 msgid "" "You must enable JavaScript in your browser or LuCI will not work properly." @@ -10095,7 +10157,17 @@ msgstr "Configurações do ZRam" msgid "ZRam Size" msgstr "Tamanho do ZRam" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:449 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:558 +msgid "_proto: _tcp, _udp, _sctp, _quic, … ." +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:557 +msgid "" +"_service: _sip, _ldap, _imap, _stun, _xmpp-client, … . (Note: while _http is " +"possible, no browsers support SRV records.)" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:454 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:152 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:163 msgid "any" @@ -10206,8 +10278,8 @@ msgstr "p. ex.: --proxy 10.10.10.10.10" msgid "e.g: dump" msgstr "p.ex.: despejo" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:726 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:756 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:797 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:827 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:101 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:148 msgid "expired" @@ -10409,9 +10481,9 @@ msgid "" "<abbr title=\"Hypertext Transfer Protocol Secure\">HTTPS</abbr> network " "access." msgstr "" -"o uHTTPd oferece acesso à rede <abbr title=\"Hypertext Transfer " -"Protocol\">HTTP</abbr> ou <abbr title=\"Hypertext Transfer Protocol " -"Secure\">HTTPS</abbr>." +"o uHTTPd oferece acesso à rede <abbr title=\"Hypertext Transfer Protocol" +"\">HTTP</abbr> ou <abbr title=\"Hypertext Transfer Protocol Secure\">HTTPS</" +"abbr>." #: modules/luci-base/htdocs/luci-static/resources/validation.js:574 msgid "unique value" @@ -10421,9 +10493,9 @@ msgstr "valor único" msgid "unknown" msgstr "desconhecido" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:456 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:724 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:754 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:461 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:795 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:825 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:99 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:146 msgid "unlimited" @@ -10639,6 +10711,21 @@ msgstr "sim" msgid "« Back" msgstr "« Voltar" +#~ msgid "Back to configuration" +#~ msgstr "Voltar à configuração" + +#~ msgid "Close list..." +#~ msgstr "Fechar lista..." + +#~ msgid "Internal Server Error" +#~ msgstr "Erro Interno do Servidor" + +#~ msgid "No files found" +#~ msgstr "Não foram encontrados ficheiros" + +#~ msgid "Sorry, the server encountered an unexpected error." +#~ msgstr "Lamento, o servidor encontrou um erro inesperado." + #~ msgid "Do not forward queries that cannot be answered by public resolvers." #~ msgstr "" #~ "Não encaminhar pedidos que não possam ser respondidos por servidores " @@ -10778,8 +10865,8 @@ msgstr "« Voltar" #~ msgid "" #~ "<ul style=\"list-style-type:none;\"> <li><strong>server mode</strong>: " -#~ "Router advertises itself as the default IPv6 gateway via <abbr " -#~ "title=\"Router Advertisement, ICMPv6 Type 134\">RA</abbr> messages (to " +#~ "Router advertises itself as the default IPv6 gateway via <abbr title=" +#~ "\"Router Advertisement, ICMPv6 Type 134\">RA</abbr> messages (to " #~ "<code>ff02::1</code>) and provides <abbr title=\"Prefix Delegation\">PD</" #~ "abbr> to downstream devices.</li> <li><strong>relay mode</strong>: Router " #~ "relays <abbr title=\"Router Advertisement, ICMPv6 Type 134\">RA</abbr> " @@ -10804,12 +10891,12 @@ msgstr "« Voltar" #~ msgid "" #~ "<ul style=\"list-style-type:none;\"> <li><strong>server mode</strong>: " -#~ "Router assigns IPs and delegates prefixes (<abbr title=\"Prefix " -#~ "Delegation\">PD</abbr>) to downstream interfaces.</li> <li><strong>relay " -#~ "mode</strong>: Router relays WAN interface config downstream. Helps " -#~ "support upstream links that lack <abbr title=\"Prefix Delegation\">PD</" -#~ "abbr>.</li> <li><strong>hybrid mode</strong>: Router does combination of " -#~ "server+relay.</li></ul>" +#~ "Router assigns IPs and delegates prefixes (<abbr title=\"Prefix Delegation" +#~ "\">PD</abbr>) to downstream interfaces.</li> <li><strong>relay mode</" +#~ "strong>: Router relays WAN interface config downstream. Helps support " +#~ "upstream links that lack <abbr title=\"Prefix Delegation\">PD</abbr>.</" +#~ "li> <li><strong>hybrid mode</strong>: Router does combination of server" +#~ "+relay.</li></ul>" #~ msgstr "" #~ "<ul style=\"list-style-type:none;\"> <li><strong> Modo servidor</strong>: " #~ "O roteador atribui os IPs e delega os prefixos (<abbr title=\"Prefix " @@ -10861,18 +10948,18 @@ msgstr "« Voltar" #~ "Advertisement, ICMPv6 Type 134\">RA</abbr>. Default is 600 seconds " #~ "(<code>600</code>)." #~ msgstr "" -#~ "O tempo máximo permitido entre o envio não solicitado do <abbr " -#~ "title=\"Router Advertisement, ICMPv6 Type 134\">RA</abbr>. O tempo " -#~ "predefinido são 600 segundos (<code>600</code>)." +#~ "O tempo máximo permitido entre o envio não solicitado do <abbr title=" +#~ "\"Router Advertisement, ICMPv6 Type 134\">RA</abbr>. O tempo predefinido " +#~ "são 600 segundos (<code>600</code>)." #~ msgid "" #~ "Minimum time allowed between sending unsolicited <abbr title=\"Router " #~ "Advertisement, ICMPv6 Type 134\">RA</abbr>. Default is 200 seconds " #~ "(<code>200</code>)." #~ msgstr "" -#~ "O tempo mínimo permitido entre o envio não solicitado do <abbr " -#~ "title=\"Router Advertisement, ICMPv6 Type 134\">RA</abbr>. O tempo " -#~ "predefinido são 200 segundos (<code>200</code>)." +#~ "O tempo mínimo permitido entre o envio não solicitado do <abbr title=" +#~ "\"Router Advertisement, ICMPv6 Type 134\">RA</abbr>. O tempo predefinido " +#~ "são 200 segundos (<code>200</code>)." #~ msgid "Override MAC address" #~ msgstr "Sobrescrever o endereço MAC" @@ -10909,30 +10996,30 @@ msgstr "« Voltar" #~ "<abbr title=\"Neighbour Discovery Protocol\">NDP</abbr> Proxy como um " #~ "Proxy ARP para o IPv6: unifique os hosts em diferentes segmentos de " #~ "hardware físico na mesma sub-rede IP. Consiste em <abbr title=\"Neighbour " -#~ "Solicitation, Type 135\">NS</abbr> e nas mensagens <abbr " -#~ "title=\"Neighbour Advertisement, Type 136\">NA</abbr>. <abbr " -#~ "title=\"Neighbour Discovery Protocol\">NDP</abbr>-O Proxy escuta o <abbr " -#~ "title=\"Neighbour Solicitation, Type 135\">NS</abbr> numa interface " -#~ "marcada como <code>master</code> com valor boleano como 1 (ou seja, o " -#~ "principal), depois consulta as interfaces escravo/interno para este IP " -#~ "alvo antes de finalmente enviar uma mensagem <abbr title=\"Neighbour " -#~ "Advertisement, Type 136\">NA</abbr>. <abbr title=\"Neighbour Discovery " -#~ "Protocol\">O NDP</abbr> é um ARP efetivo para o IPv6. <abbr " -#~ "title=\"Neighbour Solicitation, Type 135\">NS</abbr> e <abbr " -#~ "title=\"Neighbour Advertisement, Type 136\">NA</abbr> detectam se os " -#~ "endereços são alcançáveis e se estão duplicados num enlace, é um pré-" -#~ "requisito próprio para a auto configuração do SLAAC.<br /> <ul " -#~ "style=\"list-style-type:none;\"> <li><strong> desativado</strong>: Não as " -#~ "mensagens do <abbr title=\"Neighbour Discovery Protocol\">NDP</abbr> são " -#~ "enviadas pelas interfaces verdadeiras do proxy <code>ndproxy_slave</code>." -#~ "</li> <li><strong>modo de distribuição</strong>: As mensagens dos proxies " -#~ "<abbr title=\"Neighbour Discovery Protocol\">NDP</abbr> a partir das " -#~ "interfaces verdadeiras do <code>master</code> para o <code>ndproxy_slave</" -#~ "code>. Ajuda a compatibilidade dos provedores dos enlaces sem <abbr " -#~ "title=\"Prefix Delegation\">PD</abbr> e para os hosts que forem um proxy " -#~ "do firewall.</li> <li><strong>modo híbrido</strong>: O modo de " -#~ "distribuição está desativado até que a interface <code>master</code> " -#~ "tenha um valor boleano igual a 1.</li></ul>" +#~ "Solicitation, Type 135\">NS</abbr> e nas mensagens <abbr title=" +#~ "\"Neighbour Advertisement, Type 136\">NA</abbr>. <abbr title=\"Neighbour " +#~ "Discovery Protocol\">NDP</abbr>-O Proxy escuta o <abbr title=\"Neighbour " +#~ "Solicitation, Type 135\">NS</abbr> numa interface marcada como " +#~ "<code>master</code> com valor boleano como 1 (ou seja, o principal), " +#~ "depois consulta as interfaces escravo/interno para este IP alvo antes de " +#~ "finalmente enviar uma mensagem <abbr title=\"Neighbour Advertisement, " +#~ "Type 136\">NA</abbr>. <abbr title=\"Neighbour Discovery Protocol\">O NDP</" +#~ "abbr> é um ARP efetivo para o IPv6. <abbr title=\"Neighbour Solicitation, " +#~ "Type 135\">NS</abbr> e <abbr title=\"Neighbour Advertisement, Type " +#~ "136\">NA</abbr> detectam se os endereços são alcançáveis e se estão " +#~ "duplicados num enlace, é um pré-requisito próprio para a auto " +#~ "configuração do SLAAC.<br /> <ul style=\"list-style-type:none;\"> " +#~ "<li><strong> desativado</strong>: Não as mensagens do <abbr title=" +#~ "\"Neighbour Discovery Protocol\">NDP</abbr> são enviadas pelas interfaces " +#~ "verdadeiras do proxy <code>ndproxy_slave</code>.</li> <li><strong>modo de " +#~ "distribuição</strong>: As mensagens dos proxies <abbr title=\"Neighbour " +#~ "Discovery Protocol\">NDP</abbr> a partir das interfaces verdadeiras do " +#~ "<code>master</code> para o <code>ndproxy_slave</code>. Ajuda a " +#~ "compatibilidade dos provedores dos enlaces sem <abbr title=\"Prefix " +#~ "Delegation\">PD</abbr> e para os hosts que forem um proxy do firewall.</" +#~ "li> <li><strong>modo híbrido</strong>: O modo de distribuição está " +#~ "desativado até que a interface <code>master</code> tenha um valor boleano " +#~ "igual a 1.</li></ul>" #~ msgid "" #~ "Router Lifetime published in <abbr title=\"Router Advertisement, ICMPv6 " @@ -10960,9 +11047,9 @@ msgstr "« Voltar" #~ "de 1280." #~ msgid "" -#~ "The maximum hops to be published in <abbr title=\"Router " -#~ "Advertisement\">RA</abbr> messages.<br />Default is 0 (<code>0</code>), " -#~ "meaning unspecified. Max 255." +#~ "The maximum hops to be published in <abbr title=\"Router Advertisement" +#~ "\">RA</abbr> messages.<br />Default is 0 (<code>0</code>), meaning " +#~ "unspecified. Max 255." #~ msgstr "" #~ "A quantidade de saltos máximos que serão publicados nas mensagens <abbr " #~ "title=\"Router Advertisement\">RA</abbr>.<br />O padrão é 0 (<code>0</" @@ -11195,12 +11282,12 @@ msgstr "« Voltar" #~ msgid "" #~ "The filesystem that was used to format the memory (<abbr title=\"for " -#~ "example\">e.g.</abbr> <samp><abbr title=\"Third Extended " -#~ "Filesystem\">ext3</abbr></samp>)" +#~ "example\">e.g.</abbr> <samp><abbr title=\"Third Extended Filesystem" +#~ "\">ext3</abbr></samp>)" #~ msgstr "" -#~ "O sistema que foi usado para formatar a memória (<abbr title=\"por " -#~ "exemplo\">ex.</abbr> <samp><abbr title=\"Sistema de Arquivos ext3\">ext3</" -#~ "abbr></samp>)" +#~ "O sistema que foi usado para formatar a memória (<abbr title=\"por exemplo" +#~ "\">ex.</abbr> <samp><abbr title=\"Sistema de Arquivos ext3\">ext3</abbr></" +#~ "samp>)" #~ msgid "" #~ "The flash image was uploaded. Below is the checksum and file size listed, " diff --git a/modules/luci-base/po/pt_BR/base.po b/modules/luci-base/po/pt_BR/base.po index a467b35cc0..97583b2076 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-10-04 18:07+0000\n" +"PO-Revision-Date: 2022-10-25 10:20+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" @@ -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.14.1\n" +"X-Generator: Weblate 4.14.2-dev\n" #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:643 msgctxt "Yet unknown nftables table family (\"family\" table \"name\")" @@ -24,7 +24,6 @@ msgid "%.1f dB" msgstr "%.1f dB" #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:123 -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:117 msgid "%d Bit" msgstr "%d Bit" @@ -238,6 +237,22 @@ msgstr "<abbr title=\"Router Advertisement\">RA</abbr> MTU" msgid "<abbr title=\"Router Advertisement\">RA</abbr>-Service" msgstr "<abbr title=\"Router Advertisement\">RA</abbr>-Serviço" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:294 +msgid "" +"<code>/#/</code> matches any domain. <code>/example.com/</code> returns " +"NXDOMAIN." +msgstr "" +"<code>/#/</code> corresponde a qualquer domínio. <code>/example.com/</code> " +"retorna NXDOMAIN." + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:295 +msgid "" +"<code>/example.com/#</code> returns NULL addresses (<code>0.0.0.0</code> and " +"<code>::</code>) for example.com and its subdomains." +msgstr "" +"<code>/example.com/#</code> retorna endereços NULL (<code>0.0.0.0</code> e " +"<code>::</code>) para example.com e os seus subdomínios." + #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:87 msgctxt "nft relational \">\" operator expression" msgid "<var>%s</var> greater than <strong>%s</strong>" @@ -414,7 +429,7 @@ msgstr "" msgid "ATM device number" msgstr "Número do dispositivo ATM" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:36 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:37 msgid "ATU-C System Vendor ID" msgstr "Identificador de" @@ -424,7 +439,7 @@ msgstr "Identificador de" msgid "Absent Interface" msgstr "Interface ausente" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:320 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:325 msgid "Accept DNS queries only from hosts whose address is on a local subnet." msgstr "" "Limite o serviço DNS para subredes das interfaces nas quais estamos servindo " @@ -564,12 +579,10 @@ msgstr "Adicione uma instância" #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:171 #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:177 #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:274 -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:165 -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:268 msgid "Add key" msgstr "Adicione uma chave" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:410 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:415 msgid "Add local domain suffix to names served from hosts files." msgstr "Adiciona um sufixo de domínio local para equipamentos conhecidos." @@ -590,11 +603,11 @@ msgstr "Adicionar à lista negra" msgid "Add to Whitelist" msgstr "Adicionar à lista branca" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:367 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:372 msgid "Additional hosts files" msgstr "Arquivos adicionais de equipamentos conhecidos (hosts)" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:417 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:422 msgid "Additional servers file" msgstr "Arquivo de servidores adicionais" @@ -624,7 +637,7 @@ msgstr "A definição do endereço é inválido" msgid "Address to access local relay bridge" msgstr "Endereço para acessar a ponte por retransmissão local" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:289 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:291 msgid "Addresses" msgstr "Endereços" @@ -657,7 +670,7 @@ msgstr "Tempo de envelhecimento" msgid "Aggregate Originator Messages" msgstr "Mensagens agregadas do originador" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:27 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:28 msgid "Aggregate Transmit Power (ACTATP)" msgstr "" "Potência de Transmissão Agregada (<abbr title=\"Aggregate Transmit Power" @@ -700,11 +713,11 @@ msgstr "Interface Adicional" msgid "Alias of \"%s\"" msgstr "Interface adicional de \"%s\"" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:427 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:432 msgid "All servers" msgstr "Todos os Servidores" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:378 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:383 msgid "" "Allocate IP addresses sequentially, starting from the lowest available " "address." @@ -712,7 +725,7 @@ msgstr "" "Aloque endereços IP sequencialmente, iniciando a partir do endereço mais " "baixo disponível." -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:377 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:382 msgid "Allocate IPs sequentially" msgstr "Alocar endereços IP sequencialmente" @@ -743,7 +756,7 @@ msgstr "Permitir taxas legadas do 802.11b" msgid "Allow listed only" msgstr "Permitir somente os listados" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:306 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:311 msgid "Allow localhost" msgstr "Permitir computador local" @@ -789,7 +802,7 @@ msgstr "Sempre desligado (kernel: nenhum)" msgid "Always on (kernel: default-on)" msgstr "Sempre ligado (kernel: padrão)" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:538 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:543 msgid "Always send DHCP Options. Sometimes needed, with e.g. PXELinux." msgstr "" "Sempre envie opções DHCP. Às vezes necessário com, por exemplo, PXELinux." @@ -821,7 +834,7 @@ msgid "An optional, short description for this device" msgstr "Uma descrição opcional e curta para este dispositivo" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1484 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:20 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:21 msgid "Annex" msgstr "Anexo" @@ -941,7 +954,7 @@ msgstr "Qualquer pacote" msgid "Any zone" msgstr "Qualquer zona" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:532 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:537 msgid "Apply DHCP Options to this net. (Empty = all clients)." msgstr "Aplique as opções DHCP nesta rede. (Vazio = todos os clientes)." @@ -1040,11 +1053,11 @@ msgstr "Autenticação" msgid "Authentication Type" msgstr "Tipo de Autenticação" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:265 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:267 msgid "Authoritative" msgstr "Autoritário" -#: modules/luci-base/luasrc/view/sysauth.htm:17 +#: modules/luci-base/ucode/template/sysauth.ut:17 #: themes/luci-theme-bootstrap/htdocs/luci-static/resources/view/bootstrap/sysauth.js:11 msgid "Authorization Required" msgstr "Autenticação Obrigatória" @@ -1120,7 +1133,7 @@ msgstr "Média:" msgid "Avoid Bridge Loops" msgstr "Evite os loops da ponte" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:388 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:393 msgid "" "Avoid uselessly triggering dial-on-demand links (filters SRV/SOA records and " "names with underscores)." @@ -1157,10 +1170,6 @@ msgstr "Voltar" msgid "Back to Overview" msgstr "Voltar para Visão Geral" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:48 -msgid "Back to configuration" -msgstr "Voltar para configuração" - #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:826 msgid "Back to peer configuration" msgstr "Retorna à configuração de pares" @@ -1174,7 +1183,6 @@ msgid "Backup / Flash Firmware" msgstr "Cópia de Segurança / Gravar Firmware" #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:351 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:12 msgid "Backup file list" msgstr "Lista de arquivos para a cópia de segurança" @@ -1225,7 +1233,6 @@ msgid "Beacon Interval" msgstr "Intervalo do quadro de monitoramento (Beacon)" #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:352 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:46 msgid "" "Below is the determined list of files to backup. It consists of changed " "configuration files marked by opkg, essential base files and the user " @@ -1239,7 +1246,7 @@ msgstr "" msgid "Bind NTP server" msgstr "Servidor NTP Bind" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:326 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:331 msgid "Bind dynamically to interfaces rather than wildcard address." msgstr "" "Vincula dinamicamente nas interfaces em vez do endereço curinga (recomendado " @@ -1257,6 +1264,21 @@ msgstr "" msgid "Bind interface" msgstr "Interface Vinculada" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:595 +msgid "" +"Bind service records to a domain name: specify the location of services." +msgstr "" +"Vincula os registros do serviço a um nome de domínio: especifique o local " +"dos serviços." + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:556 +msgid "" +"Bind service records to a domain name: specify the location of services. See " +"<a href=\"%s\">RFC2782</a>." +msgstr "" +"Vincula os registros do serviço a um nome de domínio: especifique o local " +"dos serviços. Consulte <a href=\"%s\">RFC2782</a>." + #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:59 #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:64 #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:64 @@ -1362,6 +1384,10 @@ msgstr "" msgid "CLAT configuration failed" msgstr "Configuração CLAT falhou" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:574 +msgid "CNAME or fqdn" +msgstr "CNAME ou fqdn" + #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/processes.js:72 msgid "CPU usage (%)" msgstr "Uso da CPU (%)" @@ -1388,7 +1414,6 @@ msgstr "A chamada falhou" #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:295 #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:209 #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:487 -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:203 msgid "Cancel" msgstr "Cancelar" @@ -1612,7 +1637,6 @@ msgstr "" #: modules/luci-base/htdocs/luci-static/resources/ui.js:4392 #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:173 #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:179 -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:167 msgid "Close" msgstr "Fechar" @@ -1629,17 +1653,13 @@ msgstr "" "Feche as conexões inativas após uma dada quantidade de segundos. Use 0 para " "manter as conexões" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:49 -msgid "Close list..." -msgstr "Fechar a lista..." - #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:44 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:63 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2184 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:391 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:352 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:355 -#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:72 +#: themes/luci-theme-material/ucode/template/themes/material/header.ut:66 msgid "Collecting data..." msgstr "Coletando dados..." @@ -1679,6 +1699,10 @@ msgstr "" msgid "Compute outgoing checksum (optional)." msgstr "Cálculo do checksum de saída (opcional)." +#: protocols/luci-proto-nebula/htdocs/luci-static/resources/protocol/nebula.js:40 +msgid "Config File" +msgstr "Arquivo de configuração" + #: modules/luci-base/htdocs/luci-static/resources/ui.js:4375 #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:454 msgid "Configuration" @@ -1934,7 +1958,7 @@ msgstr "Porta DAE" msgid "DAE-Secret" msgstr "Segredo DAE" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:525 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:530 msgid "DHCP Options" msgstr "Opções do DHCP" @@ -1974,11 +1998,11 @@ msgstr "Serviço DHCPv6" msgid "DNS" msgstr "DNS" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:282 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:284 msgid "DNS forwardings" msgstr "Encaminhamentos do DNS" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:445 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:450 msgid "DNS query port" msgstr "" "Porta de consulta <abbr title=\"Sistema de Nomes de Domínios\">DNS</abbr>" @@ -1987,7 +2011,7 @@ msgstr "" msgid "DNS search domains" msgstr "Domínios de pesquisa do DNS" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:438 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:443 msgid "DNS server port" msgstr "" "Porta do servidor <abbr title=\"Sistema de Nomes de Domínios\">DNS</abbr>" @@ -2004,11 +2028,11 @@ msgstr "Peso do DNS" msgid "DNS-Label / FQDN" msgstr "Rótulo DNS / FQDN" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:397 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:402 msgid "DNSSEC" msgstr "DNSSEC" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:402 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:407 msgid "DNSSEC check unsigned" msgstr "Verificar DNSSEC sem assinatura" @@ -2021,11 +2045,11 @@ msgid "DS-Lite AFTR address" msgstr "Endereço DS-Lite AFTR" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1481 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:44 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:45 msgid "DSL" msgstr "DSL" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:14 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:15 msgid "DSL Status" msgstr "Estado da DSL" @@ -2040,12 +2064,12 @@ msgstr "" "Traffic Indication Message\">DTIM</abbr>" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:59 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:700 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:771 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:136 msgid "DUID" msgstr "DUID" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:21 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:22 msgid "Data Rate" msgstr "Taxa de Dados" @@ -2109,7 +2133,6 @@ msgstr "Apagar" #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:205 #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:211 -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:199 msgid "Delete key" msgstr "Apagar chave" @@ -2299,7 +2322,7 @@ msgstr "Desativado" msgid "Disassociate On Low Acknowledgement" msgstr "Desassocie quando houver baixa confirmação de recebimento" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:302 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:307 msgid "" "Discard upstream responses containing <a href=\"%s\">RFC1918</a> addresses." msgstr "" @@ -2347,7 +2370,7 @@ msgstr "Distância para o computador mais distante da rede (em metros)." msgid "Distributed ARP Table" msgstr "Tabela ARP distribuída" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:543 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:548 msgid "" "Dnsmasq instance to which this boot section is bound. If unspecified, the " "section is valid for all dnsmasq instances." @@ -2366,7 +2389,7 @@ msgstr "" "Dinâmica de Hosts\">DHCP</abbr> e o encaminhador para o <abbr title=" "\"Sistema dos Nomes de Domínios\">DNS</abbr>." -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:414 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:419 msgid "Do not cache negative replies, e.g. for non-existent domains." msgstr "" "Não mantenha em cache qualquer retorno negativo como domínios inexistentes " @@ -2380,15 +2403,15 @@ msgstr "" msgid "Do not create host route to peer (optional)." msgstr "Não crie a rota do host para o peer (opcional)." -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:262 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:264 msgid "Do not forward DNS queries without dots or domain parts." msgstr "Não encaminhe as consultas DNS sem os pontos ou as partes do domínio." -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:383 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:388 msgid "Do not forward reverse lookups for local networks." msgstr "Não encaminhe buscas pelo endereço reverso para as redes locais." -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:339 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:344 msgid "Do not listen on the specified interfaces." msgstr "Evite escutar nestas Interfaces." @@ -2426,7 +2449,6 @@ msgid "Do you really want to delete \"%s\" ?" msgstr "Você realmente deseja apagar \"%s\" ?" #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:206 -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:200 msgid "Do you really want to delete the following SSH key?" msgstr "Você realmente deseja apagar a seguinte chave SSH?" @@ -2446,15 +2468,16 @@ msgstr "Deseja substituir o PSK atual?" msgid "Do you want to replace the current keys?" msgstr "Deseja substituir as chaves atuais?" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:593 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:606 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:664 msgid "Domain" msgstr "Domínio" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:261 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:263 msgid "Domain required" msgstr "Requerer domínio" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:311 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:316 msgid "Domain whitelist" msgstr "Lista branca de domínios" @@ -2705,7 +2728,7 @@ msgstr "Ative o cliente <abbr title=\"Network Time Protocol\">NTP</abbr>" msgid "Enable Single DES" msgstr "Ative o DES Simples" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:480 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:485 msgid "Enable TFTP server" msgstr "Ative o servidor TFTP" @@ -2794,7 +2817,7 @@ msgstr "Ative o suporte para o tráfego multicast (opcional)." msgid "Enable the DF (Don't Fragment) flag of the encapsulating packets." msgstr "Ative o campo DF (Não Fragmentar) dos pacotes encapsulados." -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:481 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:486 msgid "Enable the built-in single-instance TFTP server." msgstr "Ative o servidor TFTP integrado com única instância." @@ -2915,7 +2938,7 @@ msgstr "Erro" msgid "Error getting PublicKey" msgstr "Houve um erro ao obter a PublicKey" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:29 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:30 msgid "Errored seconds (ES)" msgstr "Segundos com erro (ES)" @@ -2937,11 +2960,11 @@ msgstr "A cada 30 segundos (lento, 0)" msgid "Every second (fast, 1)" msgstr "A cada segundo (rápido, 1)" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:338 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:343 msgid "Exclude interfaces" msgstr "Excluir interfaces" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:307 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:312 msgid "" "Exempt <code>127.0.0.0/8</code> and <code>::1</code> from rebinding checks, " "e.g. for RBL services." @@ -2953,7 +2976,7 @@ msgstr "" msgid "Existing device" msgstr "Dispositivo existente" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:409 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:414 msgid "Expand hosts" msgstr "Expandir arquivos de equipamentos conhecidos (hosts)" @@ -3092,7 +3115,7 @@ msgstr "Houve uma falha ao definir o modo de operação" msgid "File" msgstr "Arquivo" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:418 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:423 msgid "" "File listing upstream resolvers, optionally domain-specific, e.g. " "<code>server=1.2.3.4</code>, <code>server=/domain/1.2.3.4</code>." @@ -3105,20 +3128,20 @@ msgstr "" msgid "File not accessible" msgstr "Arquivo não associado" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:349 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:354 msgid "File to store DHCP lease information." msgstr "O arquivo para armazenar as informações da locação do DHCP." -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:357 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:362 msgid "File with upstream resolvers." msgstr "Arquivo com os resolvedores upstream." #: modules/luci-base/htdocs/luci-static/resources/ui.js:2846 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:507 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:512 msgid "Filename" msgstr "Nome do arquivo" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:493 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:498 msgid "Filename of the boot image advertised to clients." msgstr "Nome do arquivo da imagem de boot que é anunciada aos clientes." @@ -3127,11 +3150,11 @@ msgstr "Nome do arquivo da imagem de boot que é anunciada aos clientes." msgid "Filesystem" msgstr "Sistema de arquivo" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:382 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:387 msgid "Filter private" msgstr "Filtrar endereços privados" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:387 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:392 msgid "Filter useless" msgstr "Filtrar consultas inúteis" @@ -3201,7 +3224,7 @@ msgstr "Arquivo do firmware" msgid "Firmware Version" msgstr "Versão do firmware" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:446 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:451 msgid "Fixed source port for outbound DNS queries." msgstr "Porta fixa da origem para a saída das consultas DNS." @@ -3227,7 +3250,7 @@ msgstr "Operações na memória flash" msgid "Flashing…" msgstr "Instalando…" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:537 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:542 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:686 msgid "Force" msgstr "Impor" @@ -3272,7 +3295,7 @@ msgstr "Atualização forçada" msgid "Force use of NAT-T" msgstr "Impor o uso de NAT-T" -#: modules/luci-base/luasrc/view/csrftoken.htm:8 +#: modules/luci-base/ucode/template/csrftoken.ut:8 msgid "Form token mismatch" msgstr "Chave eletrônica do formulário não casa" @@ -3310,7 +3333,7 @@ msgstr "" "Encaminhe as mensagens DHCPv6 entre a interface principal e as interfaces " "\"downstream\"." -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:28 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:29 msgid "Forward Error Correction Seconds (FECS)" msgstr "" "Segundos a frente de correção de erros ( <abbr title=\"Forward Error " @@ -3473,18 +3496,16 @@ msgstr "Configurações Globais" msgid "Global network options" msgstr "Opção global de rede" -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:82 -#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:89 -#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:74 +#: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/header.ut:70 +#: themes/luci-theme-material/ucode/template/themes/material/header.ut:84 +#: themes/luci-theme-openwrt-2020/ucode/template/themes/openwrt2020/header.ut:67 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:92 -#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:72 msgid "Go to firmware upgrade..." msgstr "Ir para a atualização do firmware..." -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:72 -#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:64 +#: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/header.ut:60 +#: themes/luci-theme-openwrt-2020/ucode/template/themes/openwrt2020/header.ut:57 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:82 -#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:62 msgid "Go to password configuration..." msgstr "Ir para a configuração de senha..." @@ -3624,7 +3645,7 @@ msgstr "Acesso HTTP(s)" msgid "Hang Up" msgstr "Suspender" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:33 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:34 msgid "Header Error Code Errors (HEC)" msgstr "" "Erros de Código de Erro de Cabeçalho (<abbr title=\"Header Error Code\">HEC</" @@ -3681,7 +3702,7 @@ msgstr "Host" msgid "Host expiry timeout" msgstr "Tempo limite de expiração de equipamento" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:508 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:513 msgid "Host requests this filename from the boot server." msgstr "O Host solicita este nome de arquivo no servidor de inicialização." @@ -3690,8 +3711,8 @@ msgid "Host-Uniq tag content" msgstr "Conteúdo da etiqueta única do equipamento" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:38 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:559 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:607 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:630 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:678 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/10_system.js:54 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:87 #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:135 @@ -3706,7 +3727,7 @@ msgstr "Nome do equipamento enviado quando requisitar DHCP" msgid "Hostnames" msgstr "Nome dos equipamentos" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:551 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:622 msgid "" "Hostnames are used to bind a domain name to an IP address. This setting is " "redundant for hostnames already configured with static leases, but it can be " @@ -3773,7 +3794,7 @@ msgstr "Endereços IP" msgid "IP Protocol" msgstr "Protocolo IP" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:258 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:260 msgid "IP Sets" msgstr "Conjuntos IP" @@ -3781,7 +3802,7 @@ msgstr "Conjuntos IP" msgid "IP Type" msgstr "Tipo de IP" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:563 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:634 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:178 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:204 msgid "IP address" @@ -3807,15 +3828,15 @@ msgctxt "nft meta l4proto" msgid "IP protocol" msgstr "Protocolo IP" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:589 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:660 msgid "IP set" msgstr "conjunto IP" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:295 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:300 msgid "IP sets" msgstr "Conjuntos IP" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:432 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:437 msgid "IPs to override with NXDOMAIN" msgstr "Substitua por um domínio NX falso" @@ -3856,7 +3877,7 @@ msgstr "Conexão do enlace IPv4" #: modules/luci-base/htdocs/luci-static/resources/protocol/static.js:178 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:39 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:665 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:736 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:88 #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:164 msgid "IPv4 address" @@ -4029,7 +4050,7 @@ msgstr "Roteamento com origem IPv6" msgid "IPv6 suffix" msgstr "Sufixo IPv6" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:706 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:777 msgid "IPv6 suffix (hex)" msgstr "" "<abbr title=\"Internet Protocol Version 6/Protocolo Internet Versão " @@ -4146,7 +4167,7 @@ msgstr "" "de transferência tão altas com a memória <abbr title=\"Memória de Acesso " "Aleatório\">RAM</abbr>." -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:363 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:368 msgid "Ignore <code>/etc/hosts</code>" msgstr "Ignorar <code>/etc/hosts</code>" @@ -4154,7 +4175,7 @@ msgstr "Ignorar <code>/etc/hosts</code>" msgid "Ignore interface" msgstr "Ignorar interface" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:352 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:357 msgid "Ignore resolv file" msgstr "Ignorar o arquivo de resolução de nomes (resolv.conf)" @@ -4206,7 +4227,7 @@ msgstr "" "ponte, visando evitar os loops de transmissão que podem levar toda a LAN a " "uma paralisação." -#: modules/luci-base/luasrc/view/csrftoken.htm:13 +#: modules/luci-base/ucode/template/csrftoken.ut:13 msgid "" "In order to prevent unauthorized access to the system, your request has been " "blocked. Click \"Continue »\" below to return to the previous page." @@ -4319,7 +4340,7 @@ msgstr "Restrição de certificado interno (Asterisco)" msgid "Install protocol extensions..." msgstr "Instalar extensões de protocolo..." -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:542 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:547 msgid "Instance" msgstr "Instância" @@ -4408,10 +4429,6 @@ msgstr "Interfaces" msgid "Internal" msgstr "Interno" -#: modules/luci-base/luasrc/view/error500.htm:8 -msgid "Internal Server Error" -msgstr "Erro Interno no Servidor" - #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:285 msgid "Interval For Sending Learning Packets" msgstr "Intervalo para o Envio dos Pacotes de Aprendizagem" @@ -4490,8 +4507,8 @@ msgstr "Comando inválido" msgid "Invalid hexadecimal value" msgstr "Valor hexadecimal inválido" -#: modules/luci-base/luasrc/view/sysauth.htm:12 -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/sysauth.htm:37 +#: modules/luci-base/ucode/template/sysauth.ut:12 +#: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/sysauth.ut:32 msgid "Invalid username and/or password! Please try again." msgstr "Usuário e/ou senha inválida! Por favor, tente novamente." @@ -4515,8 +4532,8 @@ msgstr "" "A imagem que está a tentar carregar aparenta nao caber na flash do " "equipamento. Por favor verifique o arquivo da imagem!" -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:89 -#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:96 +#: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/header.ut:77 +#: themes/luci-theme-material/ucode/template/themes/material/header.ut:91 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:72 msgid "JavaScript required!" msgstr "É necessário JavaScript!" @@ -4648,11 +4665,19 @@ msgstr "Idioma" msgid "Language and Style" msgstr "Idioma e Estilo" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:560 +msgid "" +"Larger weights (of the same prio) are given a proportionately higher " +"probability of being selected." +msgstr "" +"Pesos maiores (do mesmo prio) recebem uma probabilidade proporcionalmente " +"maior de serem selecionados." + #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:575 msgid "Last member interval" msgstr "O intervalo do último membro" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:23 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:24 msgid "Latency" msgstr "Latência" @@ -4668,11 +4693,11 @@ msgstr "Aprenda" msgid "Learn routes" msgstr "Aprenda as rotas" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:348 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:353 msgid "Lease file" msgstr "Arquivo de atribuições" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:697 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:768 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:679 msgid "Lease time" msgstr "Tempo de concessão" @@ -4720,19 +4745,19 @@ msgstr "Legenda:" msgid "Limit" msgstr "Limite" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:24 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:25 msgid "Line Attenuation (LATN)" msgstr "Atenuação de Linha (<abbr title=\"Line Attenuation\">LATN</abbr>)" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:18 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:19 msgid "Line Mode" msgstr "Modo da Linha" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:17 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:18 msgid "Line State" msgstr "Estado da Linha" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:19 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:20 msgid "Line Uptime" msgstr "Tempo de Atividade da Linha" @@ -4753,12 +4778,12 @@ msgctxt "nft @ll,off,len" msgid "Link layer header bits %d-%d" msgstr "Bits do cabeçalho da camada do enlace %d-%d" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:433 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:438 msgid "List of IP addresses to convert into NXDOMAIN responses." msgstr "Lista dos endereços IP que serão convertidos em respostas NXDOMAIN." -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:296 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:581 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:301 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:652 msgid "List of IP sets to populate with the specified domain IPs." msgstr "" "Lista os conjuntos dos IPs para preencher os IPs com domínios especificados." @@ -4795,15 +4820,11 @@ msgstr "" msgid "List of SSH key files for auth" msgstr "Lista de arquivos de chaves SSH para autenticação" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:312 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:317 msgid "List of domains to allow RFC1918 responses for." msgstr "Lista dos domínios com permissão para respostas RFC1918." -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:290 -msgid "List of domains to force to an IP address." -msgstr "Lista dos domínios que serão impostos num endereço IP." - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:283 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:285 msgid "List of upstream resolvers to forward queries to." msgstr "" "Lista de resolvedores upstream para onde as consultas serão encaminhadas." @@ -4812,7 +4833,7 @@ msgstr "" msgid "Listen Port" msgstr "Porta de escuta" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:332 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:337 msgid "Listen interfaces" msgstr "Interfaces de escuta" @@ -4821,7 +4842,7 @@ msgid "Listen only on the given interface or, if unspecified, on all" msgstr "" "Escuta apenas na interface especificada. Se não especificado, escuta em todas" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:333 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:338 msgid "" "Listen only on the specified interfaces, and loopback if not excluded " "explicitly." @@ -4831,7 +4852,7 @@ msgstr "Escute somente nestas interfaces e na interface local (loopback)." msgid "ListenPort setting is invalid" msgstr "A configuração ListenPort está inválida" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:439 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:444 msgid "Listening port for inbound DNS queries." msgstr "Porta de escuta para o recebimento das consultas do DNS." @@ -4858,9 +4879,9 @@ msgid "Loading directory contents…" msgstr "Carregando conteúdo do diretório…" #: modules/luci-base/htdocs/luci-static/resources/luci.js:1942 -#: modules/luci-base/luasrc/view/view.htm:4 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:12 -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/sysauth.htm:45 +#: modules/luci-base/ucode/template/view.ut:4 +#: modules/luci-mod-status/ucode/template/admin_status/index.ut:12 +#: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/sysauth.ut:40 msgid "Loading view…" msgstr "Carregando a visualização…" @@ -4918,21 +4939,21 @@ msgstr "Hora local" msgid "Local ULA" msgstr "ULA local" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:273 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:275 msgid "Local domain" msgstr "Domínio local" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:274 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:276 msgid "Local domain suffix appended to DHCP names and hosts file entries." msgstr "" "O sufixo do domínio local anexado aos nomes DHCP e as entradas dos arquivos " "hosts." -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:269 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:271 msgid "Local server" msgstr "Servidor local" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:319 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:324 msgid "Local service only" msgstr "Somente o serviço local" @@ -4940,7 +4961,7 @@ msgstr "Somente o serviço local" msgid "Local wireguard key" msgstr "Chave wireguard local" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:392 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:397 msgid "Localise queries" msgstr "Localizar consultas" @@ -4952,7 +4973,7 @@ msgstr "Bloqueio para BSSID" msgid "Log output level" msgstr "Nível de detalhamento de saída dos registros" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:277 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:279 msgid "Log queries" msgstr "Registar as consultas" @@ -4978,8 +4999,8 @@ msgstr "" msgid "Logical network to which the tunnel will be added (bridged) (optional)." msgstr "Rede lógica onde o túnel será adicionado (bridged) (opcional)." -#: modules/luci-base/luasrc/view/sysauth.htm:38 -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/sysauth.htm:41 +#: modules/luci-base/ucode/template/sysauth.ut:38 +#: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/sysauth.ut:36 msgid "Login" msgstr "Entrar" @@ -4991,7 +5012,7 @@ msgstr "Sair" msgid "Loose filtering" msgstr "Filtragem livre" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:31 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:32 msgid "Loss of Signal Seconds (LOSS)" msgstr "" "Segundos de Perda de Sinal (<abbr title=\"Loss of Signal Seconds\">LOSS</" @@ -5001,6 +5022,10 @@ msgstr "" msgid "Lowest leased address as offset from the network address." msgstr "O endereço mais baixo concedido como deslocamento do endereço da rede." +#: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/footer.ut:12 +msgid "Lua compatibility mode active" +msgstr "Modo de compatibilidade lua ativo" + #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:48 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:83 msgid "MAC" @@ -5025,7 +5050,7 @@ msgstr "VLAN MAC" #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:591 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:40 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:619 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:690 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1164 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2177 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:56 @@ -5084,6 +5109,10 @@ msgstr "Intervalo MII" msgid "MTU" msgstr "MTU" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:259 +msgid "MX" +msgstr "MX" + #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:303 msgid "" "Make sure to clone the root filesystem using something like the commands " @@ -5110,25 +5139,25 @@ msgstr "Mestre" msgid "Max <abbr title=\"Router Advertisement\">RA</abbr> interval" msgstr "Intervalo máximo <abbr title=\"Router Advertisement\">RA</abbr>" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:22 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:23 msgid "Max. Attainable Data Rate (ATTNDR)" msgstr "" "Taxa de Dados Atingível Máxima (<abbr title=\"Maximum Attainable Data Rate" "\">ATTNDR</abbr>)" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:452 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:457 msgid "Max. DHCP leases" msgstr "" "Numero máximo de concessões <abbr title=\"Protocolo de Configuração Dinâmica " "de Equipamentos\">DHCP</abbr>" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:459 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:464 msgid "Max. EDNS0 packet size" msgstr "" "Tamanho máximo do pacote do <abbr title=\"Extension Mechanisms for Domain " "Name System\">EDNS0</abbr>" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:466 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:471 msgid "Max. concurrent queries" msgstr "Número máximo de consultas concorrentes" @@ -5140,15 +5169,15 @@ msgstr "Idade máxima" msgid "Maximum allowed Listen Interval" msgstr "Intervalo máximo permitido de escuta" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:453 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:458 msgid "Maximum allowed number of active DHCP leases." msgstr "A quantidade máxima permitida para as alocações ativas do DHCP." -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:467 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:472 msgid "Maximum allowed number of concurrent DNS queries." msgstr "A quantidade máxima permitida de consultas concorrentes do DNS." -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:460 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:465 msgid "Maximum allowed size of EDNS0 UDP packets." msgstr "O tamanho máximo permitido dos pacotes UDP EDNS.0." @@ -5178,7 +5207,7 @@ msgstr "" msgid "Maximum transmit power" msgstr "Potência máxima de transmissão" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:389 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:394 msgid "May prevent VoIP or other services from working." msgstr "Pode impedir o funcionamento do VoIP ou de outros serviços." @@ -5501,12 +5530,15 @@ msgstr "Nome da nova rede" msgid "Name of the tunnel device" msgstr "Nome do túnel do dispositivo" -#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:46 +#: themes/luci-theme-openwrt-2020/ucode/template/themes/openwrt2020/header.ut:39 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:50 -#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:44 msgid "Navigation" msgstr "Navegação" +#: protocols/luci-proto-nebula/htdocs/luci-static/resources/protocol/nebula.js:10 +msgid "Nebula Network" +msgstr "Rede Nebulosa" + #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:653 msgid "Neighbour cache validity" msgstr "Validade do cache vizinho" @@ -5542,7 +5574,7 @@ msgstr "Utilitários de Rede" msgid "Network address" msgstr "Endereço de rede" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:492 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:497 msgid "Network boot image" msgstr "Imagem de boot pela rede" @@ -5582,7 +5614,7 @@ msgstr "Migração da configuração do ifname da rede" msgid "Network interface" msgstr "Interfaces de rede" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:531 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:536 msgid "Network-ID" msgstr "Network-ID" @@ -5590,7 +5622,7 @@ msgstr "Network-ID" msgid "Never" msgstr "Nunca" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:270 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:272 msgid "" "Never forward matching domains and subdomains, resolve from DHCP or hosts " "files only." @@ -5640,11 +5672,10 @@ msgstr "Sem NAT-T" msgid "No RX signal" msgstr "Sem sinal RX" -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:80 -#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:87 -#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:72 +#: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/header.ut:68 +#: themes/luci-theme-material/ucode/template/themes/material/header.ut:82 +#: themes/luci-theme-openwrt-2020/ucode/template/themes/openwrt2020/header.ut:65 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:90 -#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:70 msgid "" "No changes to settings will be stored and are lost after rebooting. This " "mode should only be used to install a firmware upgrade" @@ -5688,10 +5719,6 @@ msgstr "Não há entradas disponíveis" msgid "No entries in this directory" msgstr "Nenhuma entrada neste diretório" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:82 -msgid "No files found" -msgstr "Nenhum arquivo encontrado" - #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:833 msgid "" "No fixed interface listening port defined, peers might not be able to " @@ -5729,7 +5756,7 @@ msgstr "Não há mais escravos disponíveis" msgid "No more slaves available, can not save interface" msgstr "Não há mais escravos disponíveis, não é possível salvar a interface" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:413 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:418 msgid "No negative cache" msgstr "Nenhum cache negativo" @@ -5737,10 +5764,9 @@ msgstr "Nenhum cache negativo" msgid "No nftables ruleset loaded." msgstr "Nenhuma regra nftables foi carregada." -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:69 -#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:61 +#: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/header.ut:57 +#: themes/luci-theme-openwrt-2020/ucode/template/themes/openwrt2020/header.ut:54 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:79 -#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:59 msgid "No password set!" msgstr "Nenhuma senha definida!" @@ -5750,8 +5776,6 @@ msgstr "Não há pares definidos ainda." #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:146 #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:283 -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:140 -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:277 msgid "No public keys present yet." msgstr "Nenhuma chave pública presente ainda." @@ -5781,7 +5805,7 @@ msgstr "Nenhuma zona definida" msgid "Noise" msgstr "Ruído" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:26 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:27 msgid "Noise Margin (SNR)" msgstr "" "Margem de Ruído (<abbr title=\"Razão entre Sinal e Ruído/Signal to Noise " @@ -5791,13 +5815,13 @@ msgstr "" msgid "Noise:" msgstr "Ruído:" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:34 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:35 msgid "Non Pre-emptive CRC errors (CRC_P)" msgstr "" "Erros CRC Não Preemptivos<abbr title=\"Non Pre-emptive CRC errors\">CRC_P</" "abbr>" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:325 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:330 msgid "Non-wildcard" msgstr "Sem caracter curinga" @@ -5812,7 +5836,7 @@ msgstr "Nenhum" msgid "Normal" msgstr "Normal" -#: modules/luci-base/luasrc/view/error404.htm:8 +#: modules/luci-base/ucode/template/error404.ut:9 msgid "Not Found" msgstr "Não Encontrado" @@ -5864,7 +5888,7 @@ msgstr "Nslookup" msgid "Number of IGMP membership reports" msgstr "Quantidade de relatórios associados ao IGMP" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:474 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:479 msgid "Number of cached DNS entries, 10000 is maximum, 0 is no caching." msgstr "" "A quantidade das entradas DNS em cache, 10000 é o máximo, 0 desativa o cache." @@ -5914,7 +5938,7 @@ msgstr "Atraso no estado de conexões" msgid "On-link" msgstr "Rota em enlace" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:672 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:743 msgid "One of hostname or MAC address must be specified!" msgstr "" "É necessário especificar ao menos um nome de equipamento ou endereço MAC!" @@ -5955,7 +5979,6 @@ msgid "Open iptables rules overview…" msgstr "Abrir a visão geral das regras do iptables…" #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:472 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:19 msgid "Open list..." msgstr "Abrir lista..." @@ -6128,7 +6151,7 @@ msgstr "Opcional. Porta UDP usada para pacotes saintes ou entrantes." msgid "Options" msgstr "Opções" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:526 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:531 msgid "" "Options for the Network-ID. (Note: needs also Network-ID.) E.g. " "\"<code>42,192.168.1.4</code>\" for NTP server, \"<code>3,192.168.4.4</code>" @@ -6141,10 +6164,14 @@ msgstr "" "\"o endereço do sistema executando o dnsmasq\"." #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:125 -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:119 msgid "Options:" msgstr "Opções:" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:584 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:616 +msgid "Ordinal: lower comes first." +msgstr "Ordinal: o menor vem primeiro." + #: protocols/luci-proto-batman-adv/htdocs/luci-static/resources/protocol/batadv.js:55 msgid "Originator Interval" msgstr "Intervalo do originador" @@ -6424,13 +6451,13 @@ msgctxt "MACVLAN mode" msgid "Pass-through (Mirror physical device to single MAC VLAN)" msgstr "Passagem direta (Dispositivo físico espelhado para um único MAC VLAN)" -#: modules/luci-base/luasrc/view/sysauth.htm:29 +#: modules/luci-base/ucode/template/sysauth.ut:29 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1690 #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:51 #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:114 #: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:103 #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:58 -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/sysauth.htm:24 +#: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/sysauth.ut:19 msgid "Password" msgstr "Senha" @@ -6458,7 +6485,6 @@ msgid "Password2" msgstr "Senha2" #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:266 -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:260 msgid "Paste or drag SSH key file…" msgstr "Colar ou arrastar arquivo chave SSH…" @@ -6606,7 +6632,7 @@ msgstr "Ping" msgid "Pkts." msgstr "Pcts." -#: modules/luci-base/luasrc/view/sysauth.htm:19 +#: modules/luci-base/ucode/template/sysauth.ut:19 msgid "Please enter your username and password." msgstr "Entre com o nome do seu usuário e a senha." @@ -6623,6 +6649,7 @@ msgctxt "Chain hook policy" msgid "Policy: <strong>%h</strong> (%h)" msgstr "Política: <strong>%h</strong> (%h)" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:579 #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/dropbear.js:21 msgid "Port" msgstr "Porta" @@ -6639,11 +6666,11 @@ msgstr "Status da porta:" msgid "Potential negation of: %s" msgstr "Negação potencial de: %s" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:37 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:38 msgid "Power Management Mode" msgstr "Modo de Gerenciamento de Energia" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:35 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:36 msgid "Pre-emptive CRC errors (CRCP_P)" msgstr "" "Erros CRC Preemptivos<abbr title=\"Pre-emptive CRC errors\">CRCP_P</abbr>" @@ -6723,6 +6750,8 @@ msgid "Primary becomes active slave whenever it comes back up (always, 0)" msgstr "O primário se torna um escravo ativo sempre que retornar (sempre, 0)" #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:508 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:584 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:616 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:129 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:197 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:223 @@ -6818,7 +6847,6 @@ msgid "Public key: %h" msgstr "Chave pública: %h" #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:290 -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:284 msgid "" "Public keys allow for the passwordless SSH logins with a higher security " "compared to the use of plain passwords. In order to upload a new key to the " @@ -6849,7 +6877,7 @@ msgstr "Celular QMI" msgid "Quality" msgstr "Qualidade" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:428 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:433 msgid "Query all available upstream resolvers." msgstr "" "Consulte todos os servidores <abbr title=\"Domain Name System\">DNS</abbr> " @@ -6935,7 +6963,7 @@ msgstr "" "Bytes brutos codificados em hexadecimal. Deixe vazio a não ser que seu " "provedor requeira isso" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:345 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:350 msgid "Read <code>/etc/ethers</code> to configure the DHCP server." msgstr "Leia o <code>/etc/ethers</code> para configurar o servidor DHCP." @@ -6951,7 +6979,7 @@ msgstr "Gráficos em Tempo Real" msgid "Reassociation Deadline" msgstr "Limite para Reassociação" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:301 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:306 msgid "Rebind protection" msgstr "Proteção contra \"Rebind\"" @@ -7038,6 +7066,7 @@ msgstr "" "ou igual ao valor especificado" #: modules/luci-compat/luasrc/model/network/proto_relay.lua:153 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:611 #: protocols/luci-proto-relay/htdocs/luci-static/resources/protocol/relay.js:39 msgid "Relay" msgstr "Retransmissor" @@ -7129,6 +7158,11 @@ msgstr "" msgid "Required. Base64-encoded private key for this interface." msgstr "Obrigatório. Chave privada codificada em Base64 para esta interface." +#: protocols/luci-proto-nebula/htdocs/luci-static/resources/protocol/nebula.js:40 +msgid "Required. Path to the .yml config file for this interface." +msgstr "" +"Obrigatório. O caminho para o arquivo de configuração .yml desta interface." + #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:587 msgid "Required. Public key of the WireGuard peer." msgstr "Obrigatório. Chave pública do par WireGuard." @@ -7210,7 +7244,7 @@ msgid "Reselection policy for primary slave" msgstr "Política de nova seleção para o escravo primário" #: modules/luci-base/htdocs/luci-static/resources/luci.js:2197 -#: modules/luci-base/luasrc/view/sysauth.htm:39 +#: modules/luci-base/ucode/template/sysauth.ut:39 #: modules/luci-compat/luasrc/view/cbi/delegator.htm:17 #: modules/luci-compat/luasrc/view/cbi/footer.htm:30 #: modules/luci-compat/luasrc/view/cbi/simpleform.htm:66 @@ -7229,10 +7263,14 @@ msgstr "Redefina para os valores padrão" msgid "Resolv and Hosts Files" msgstr "Arquivos resolv e hosts" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:356 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:361 msgid "Resolv file" msgstr "Arquivo resolv" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:292 +msgid "Resolve specified FQDNs to an IP." +msgstr "Lista dos domínios que serão impostos num endereço IP." + #: modules/luci-base/htdocs/luci-static/resources/rpc.js:405 msgid "Resource not found" msgstr "Recurso não encontrado" @@ -7259,7 +7297,7 @@ msgstr "Restauração" msgid "Restore backup" msgstr "Restaure uma cópia de segurança" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:393 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:398 msgid "" "Return answers to DNS queries matching the subnet from which the query was " "received if multiple IPs are available." @@ -7354,7 +7392,7 @@ msgstr "" msgid "Robustness" msgstr "Robustez" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:486 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:491 msgid "" "Root directory for files served via TFTP. <em>Enable TFTP server</em> and " "<em>TFTP server root</em> turn on the TFTP server and serve files from " @@ -7466,6 +7504,11 @@ msgstr "SHA256" msgid "SNR" msgstr "SNR" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:258 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:569 +msgid "SRV" +msgstr "SRV" + #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/dropbear.js:10 #: modules/luci-mod-system/root/usr/share/luci/menu.d/luci-mod-system.json:38 msgid "SSH Access" @@ -7485,7 +7528,6 @@ msgstr "Usuário do SSH" #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:289 #: modules/luci-mod-system/root/usr/share/luci/menu.d/luci-mod-system.json:51 -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:283 msgid "SSH-Keys" msgstr "Chaves SSH" @@ -7613,11 +7655,11 @@ msgstr "Envie o nome de host deste dispositivo" msgid "Server" msgstr "Servidor" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:519 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:524 msgid "Server address" msgstr "Endereço do servidor" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:513 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:518 msgid "Server name" msgstr "Nome do servidor" @@ -7718,7 +7760,7 @@ msgstr "Configurações" msgid "Setup routes for proxied IPv6 neighbours." msgstr "Rotas de configuração para vizinhos IPv6 que tiverem proxy." -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:30 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:31 msgid "Severely Errored Seconds (SES)" msgstr "" "Segundos com erro severos (<abbr title=\"Severely Errored Seconds\">SES</" @@ -7734,7 +7776,6 @@ msgid "Short Preamble" msgstr "Preâmbulo curto" #: 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 msgid "Show current backup file list" msgstr "Mostra a lista atual de arquivos para a cópia de segurança" @@ -7768,7 +7809,7 @@ msgstr "Sinal" msgid "Signal / Noise" msgstr "Sinal / Ruído" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:25 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:26 msgid "Signal Attenuation (SATN)" msgstr "Atenuação do Sinal (<abbr title=\"Signal Attenuation\">SATN</abbr>)" @@ -7785,7 +7826,7 @@ msgstr "Sinal:" msgid "Size" msgstr "Tamanho" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:473 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:478 msgid "Size of DNS query cache" msgstr "Tamanho do cache de consultas DNS" @@ -7802,15 +7843,13 @@ msgstr "Pular" msgid "Skip from backup files that are equal to those in /rom" msgstr "Ignore os arquivos de backup que sejam iguais aos arquivos em /rom" -#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:42 +#: themes/luci-theme-openwrt-2020/ucode/template/themes/openwrt2020/header.ut:35 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:46 -#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:40 msgid "Skip to content" msgstr "Pular para o conteúdo" -#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:41 +#: themes/luci-theme-openwrt-2020/ucode/template/themes/openwrt2020/header.ut:34 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:45 -#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:39 msgid "Skip to navigation" msgstr "Pular para a navegação" @@ -7827,14 +7866,10 @@ msgstr "VLAN em Software" msgid "Some fields are invalid, cannot save values!" msgstr "Alguns campos estão inválidos e os valores não podem ser salvos!" -#: modules/luci-base/luasrc/view/error404.htm:9 +#: modules/luci-base/ucode/template/error404.ut:10 msgid "Sorry, the object you requested was not found." msgstr "Desculpe o objeto solicitado não foi encontrado." -#: modules/luci-base/luasrc/view/error500.htm:9 -msgid "Sorry, the server encountered an unexpected error." -msgstr "Desculpe, o servidor encontrou um erro inesperado." - #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:442 msgid "" "Sorry, there is no sysupgrade support present; a new firmware image must be " @@ -7873,7 +7908,7 @@ msgctxt "nft ip sport" msgid "Source port" msgstr "Porta de origem" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:500 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:505 msgid "" "Special <abbr title=\"Preboot eXecution Environment\">PXE</abbr> boot " "options for Dnsmasq." @@ -8332,7 +8367,7 @@ msgstr "Alocações Estáticas" msgid "Static address" msgstr "Endereço Estático" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:598 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:669 msgid "" "Static leases are used to assign fixed IP addresses and symbolic hostnames " "to DHCP clients. They are also required for non-dynamic interface " @@ -8350,7 +8385,7 @@ msgstr "Limite de inatividade da estação" #: modules/luci-base/root/usr/share/luci/menu.d/luci-base.json:16 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:541 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:929 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:9 +#: modules/luci-mod-status/ucode/template/admin_status/index.ut:9 msgid "Status" msgstr "Condição Geral" @@ -8376,7 +8411,7 @@ msgstr "Uso do armazenamento" msgid "Strict filtering" msgstr "Filtragem rigorosa" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:422 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:427 msgid "Strict order" msgstr "Ordem Exata" @@ -8389,11 +8424,11 @@ msgstr "Forte" msgid "Submit" msgstr "Enviar" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:372 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:377 msgid "Suppress logging" msgstr "Suprimir registros (log)" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:373 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:378 msgid "Suppress logging of the routine operation for the DHCP protocol." msgstr "Suprima dos registros (log) as operações rotineiras do protocolo DHCP." @@ -8448,6 +8483,14 @@ msgstr "Sincronize com o servidor NTP" msgid "Sync with browser" msgstr "Sincronize com o navegador" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:293 +msgid "Syntax: <code>/fqdn[/fqdn…]/[ipaddr]</code>." +msgstr "Sintaxe: <code>/fqdn[/fqdn…]/[ipaddr]</code>." + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:569 +msgid "Syntax: <code>_service._proto.example.com</code>." +msgstr "Sintaxe: <code>_service._proto.example.com</code>." + #: modules/luci-base/root/usr/share/luci/menu.d/luci-base.json:26 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/10_system.js:17 #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:113 @@ -8473,11 +8516,10 @@ msgstr "Propriedades do Sistema" msgid "System log buffer size" msgstr "Tamanho do buffer de registro do sistema" -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:79 -#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:86 -#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:71 +#: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/header.ut:67 +#: themes/luci-theme-material/ucode/template/themes/material/header.ut:81 +#: themes/luci-theme-openwrt-2020/ucode/template/themes/openwrt2020/header.ut:64 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:89 -#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:69 msgid "System running in recovery (initramfs) mode." msgstr "Sistema funcionando em modo de recuperação (initramfs)." @@ -8505,7 +8547,7 @@ msgstr "Porta de origem TCP" msgid "TCP:" msgstr "TCP:" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:485 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:490 msgid "TFTP server root" msgstr "Raiz do servidor TFTP" @@ -8530,6 +8572,7 @@ msgstr "Comprimento da fila TX" msgid "Table" msgstr "Tabela" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:574 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:56 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:66 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:187 @@ -8615,15 +8658,15 @@ msgstr "" "A configuração da atualização de pontas HE.net mudou. Você deve agora usar o " "nome do usuário ao invés do identificador do usuário!" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:681 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:752 msgid "The IP address %h is already used by another static lease" msgstr "O endereço IP %h já é utilizado por outra concessão estática" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:690 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:761 msgid "The IP address is outside of any DHCP pool address range" msgstr "O endereço IP está fora de qualquer faixa de endereços do DHCP" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:520 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:525 msgid "The IP address of the boot server" msgstr "O endereço IP do servidor de inicialização" @@ -8802,12 +8845,10 @@ msgstr "" "WireGuard para configurar uma conexão neste dispositivo." #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:172 -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:166 msgid "The given SSH public key has already been added." msgstr "A chave pública SSH fornecida já foi adicionada." #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:178 -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:172 msgid "" "The given SSH public key is invalid. Please supply proper public RSA, " "ED25519 or ECDSA keys." @@ -8827,7 +8868,7 @@ msgstr "" "TQ de cada OGM encaminhado, propagando assim o custo de um salto extra (o " "pacote deve ser recebido e retransmitido, o que custa tempo de antena)" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:514 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:519 msgid "The hostname of the boot server" msgstr "O nome do host do servidor de inicialização" @@ -9000,7 +9041,7 @@ msgstr "" msgid "The selected %s mode is incompatible with %s encryption" msgstr "O modo %s selecionado é incompatível com a criptografia %s" -#: modules/luci-base/luasrc/view/csrftoken.htm:11 +#: modules/luci-base/ucode/template/csrftoken.ut:11 msgid "The submitted security token is invalid or already expired!" msgstr "A chave eletrônica enviada é inválida ou já expirou!" @@ -9089,8 +9130,8 @@ msgstr "" "regras do iptables com o nftables é desencorajada e pode levar a uma " "incompleta filtragem de tráfego." -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:746 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:778 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:817 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:849 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:130 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:179 msgid "There are no active leases" @@ -9100,10 +9141,9 @@ msgstr "Não há concessões de IP ativas no momento" msgid "There are no changes to apply" msgstr "Não há alterações a serem aplicadas" -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:70 -#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:62 +#: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/header.ut:58 +#: themes/luci-theme-openwrt-2020/ucode/template/themes/openwrt2020/header.ut:55 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:80 -#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:60 msgid "" "There is no password set on this router. Please configure a root password to " "protect the web interface." @@ -9125,7 +9165,6 @@ msgid "This does not look like a valid PEM file" msgstr "Isso não se parece com um arquivo PEM válido" #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:454 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:16 msgid "" "This is a list of shell glob patterns for matching files and directories to " "include during sysupgrade. Modified files in /etc/config/ and certain other " @@ -9179,7 +9218,7 @@ msgstr "" "Este é o endereço da ponta local designado pelo agente de túnel. normalmente " "ele termina com <code>...:2/64</code>" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:266 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:268 msgid "This is the only DHCP server in the local network." msgstr "Este é o único servidor DHCP na rede local." @@ -9439,7 +9478,7 @@ msgstr "Não foi possível determinar o endereço IP externo" msgid "Unable to determine upstream interface" msgstr "Não foi possível determinar a interface com a rede externa" -#: modules/luci-base/luasrc/view/error404.htm:11 +#: modules/luci-base/ucode/template/error404.ut:12 msgid "Unable to dispatch" msgstr "Não é possível a expedição" @@ -9494,7 +9533,7 @@ msgstr "Não foi possível salvar os conteúdos: %s" msgid "Unable to verify PIN" msgstr "Não foi possível verificar o PIN" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:32 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:33 msgid "Unavailable Seconds (UAS)" msgstr "" "Segundos de indisponibilidade (<abbr title=\"Unavailable Seconds\">UAS</" @@ -9555,7 +9594,6 @@ msgid "Unmount" msgstr "Desmontar" #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:121 -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:115 msgid "Unnamed key" msgstr "Chave sem nome" @@ -9656,7 +9694,7 @@ msgstr "" "Ao pressionar \"Continuar\", as opções ifname serão renomeadas e a rede será " "reiniciada para aplicar a atualização da configuração." -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:423 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:428 msgid "Upstream resolvers will be queried in the order of the resolv file." msgstr "" "Os resolvedores upstream serão consultados na ordem que estiverem no arquivo " @@ -9667,7 +9705,7 @@ msgstr "" msgid "Uptime" msgstr "Tempo de atividade" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:344 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:349 msgid "Use <code>/etc/ethers</code>" msgstr "Usar <code>/etc/ethers</code>" @@ -9784,7 +9822,7 @@ msgstr "Utilize os certificados do sistema" msgid "Use system certificates for inner-tunnel" msgstr "Utilizar certificados de sistema para túnel interno" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:599 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:670 msgid "" "Use the <em>Add</em> Button to add a new lease entry. The <em>MAC address</" "em> identifies the host, the <em>IPv4 address</em> specifies the fixed " @@ -9845,11 +9883,11 @@ msgstr "Identificador do usuário" msgid "User key (PEM encoded)" msgstr "Chave do usuário (codificada em formato PEM)" -#: modules/luci-base/luasrc/view/sysauth.htm:23 +#: modules/luci-base/ucode/template/sysauth.ut:23 #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:112 #: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:101 #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:56 -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/sysauth.htm:18 +#: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/sysauth.ut:13 msgid "Username" msgstr "Nome do usuário" @@ -9932,7 +9970,7 @@ msgstr "VPNC (VPN do CISCO 3000 (e outros))" #: protocols/luci-proto-vti/htdocs/luci-static/resources/protocol/vti.js:10 msgid "VTI" -msgstr "" +msgstr "VTI" #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:10 msgid "VXLAN (RFC7348)" @@ -9947,7 +9985,7 @@ msgstr "Identificador de rede VXLAN" msgid "VXLANv6 (RFC7348)" msgstr "VXLANv6 (RFC7348)" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:398 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:403 msgid "" "Validate DNS replies and cache DNSSEC data, requires upstream to support " "DNSSEC." @@ -9984,7 +10022,7 @@ msgstr "Fabricante" msgid "Vendor Class to send when requesting DHCP" msgstr "Classe do fabricante para enviar quando requisitar o DHCP" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:403 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:408 msgid "Verify unsigned domain responses really come from unsigned domains." msgstr "" "Verifique se as respostas dos domínios não assinados vêm realmente de " @@ -10065,6 +10103,10 @@ msgstr "" msgid "Weak" msgstr "Fraco" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:589 +msgid "Weight" +msgstr "Peso" + #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1029 msgid "" "When delegating prefixes to multiple downstreams, interfaces with a higher " @@ -10206,7 +10248,7 @@ msgstr "A rede sem fio está desabilitada" msgid "Wireless network is enabled" msgstr "A rede sem fio está habilitada" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:278 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:280 msgid "Write received DNS queries to syslog." msgstr "Salve as consultas recebidas do DNS no syslog." @@ -10248,8 +10290,16 @@ msgstr "" "por exemplo \"rede/network\", o dispositivo poderá ficar inacessível!</" "strong>" -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:90 -#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:97 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:559 +msgid "You may add multiple records for the same Target." +msgstr "Você pode adicionar vários registros para o mesmo destino." + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:596 +msgid "You may add multiple records for the same domain." +msgstr "Você pode adicionar vários registros para o mesmo domínio." + +#: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/header.ut:78 +#: themes/luci-theme-material/ucode/template/themes/material/header.ut:92 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:73 msgid "" "You must enable JavaScript in your browser or LuCI will not work properly." @@ -10284,7 +10334,19 @@ msgstr "Configurações ZRam" msgid "ZRam Size" msgstr "Tamanho ZRam" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:449 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:558 +msgid "_proto: _tcp, _udp, _sctp, _quic, … ." +msgstr "_proto: _tcp, _udp, _sctp, _quic, … ." + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:557 +msgid "" +"_service: _sip, _ldap, _imap, _stun, _xmpp-client, … . (Note: while _http is " +"possible, no browsers support SRV records.)" +msgstr "" +"_service: _sip, _ldap, _imap, _stun, _xmpp-client, … . (Observação: embora o " +"_http seja possível, nenhum navegador suporta registros SRV.)" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:454 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:152 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:163 msgid "any" @@ -10395,8 +10457,8 @@ msgstr "por exemplo: --proxy 10.10.10.10.10" msgid "e.g: dump" msgstr "por exemplo: despejo" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:726 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:756 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:797 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:827 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:101 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:148 msgid "expired" @@ -10613,9 +10675,9 @@ msgstr "valor único" msgid "unknown" msgstr "desconhecido" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:456 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:724 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:754 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:461 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:795 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:825 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:99 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:146 msgid "unlimited" @@ -10831,6 +10893,21 @@ msgstr "sim" msgid "« Back" msgstr "« Voltar" +#~ msgid "Back to configuration" +#~ msgstr "Voltar para configuração" + +#~ msgid "Close list..." +#~ msgstr "Fechar a lista..." + +#~ msgid "Internal Server Error" +#~ msgstr "Erro Interno no Servidor" + +#~ msgid "No files found" +#~ msgstr "Nenhum arquivo encontrado" + +#~ msgid "Sorry, the server encountered an unexpected error." +#~ msgstr "Desculpe, o servidor encontrou um erro inesperado." + #~ msgid "Do not forward queries that cannot be answered by public resolvers." #~ msgstr "" #~ "Não encaminhe as requisições que não possam ser respondidas pelos " diff --git a/modules/luci-base/po/ro/base.po b/modules/luci-base/po/ro/base.po index 4cf7dab565..3284b0a0c1 100644 --- a/modules/luci-base/po/ro/base.po +++ b/modules/luci-base/po/ro/base.po @@ -23,7 +23,6 @@ msgid "%.1f dB" msgstr "%.1f dB" #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:123 -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:117 msgid "%d Bit" msgstr "%d Bit" @@ -235,6 +234,18 @@ msgstr "<abbr title=\"Router Advertisement\">RA</abbr> MTU" msgid "<abbr title=\"Router Advertisement\">RA</abbr>-Service" msgstr "Serviciu-<abbr title=\"Router Advertisement\">RA</abbr>" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:294 +msgid "" +"<code>/#/</code> matches any domain. <code>/example.com/</code> returns " +"NXDOMAIN." +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:295 +msgid "" +"<code>/example.com/#</code> returns NULL addresses (<code>0.0.0.0</code> and " +"<code>::</code>) for example.com and its subdomains." +msgstr "" + #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:87 msgctxt "nft relational \">\" operator expression" msgid "<var>%s</var> greater than <strong>%s</strong>" @@ -404,7 +415,7 @@ msgstr "" msgid "ATM device number" msgstr "Număr echipament ATM" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:36 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:37 msgid "ATU-C System Vendor ID" msgstr "ID-ul furnizorului sistemului ATU-C" @@ -414,7 +425,7 @@ msgstr "ID-ul furnizorului sistemului ATU-C" msgid "Absent Interface" msgstr "Interfață Absentă" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:320 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:325 msgid "Accept DNS queries only from hosts whose address is on a local subnet." msgstr "" "Acceptați interogări DNS numai de la gazde a căror adresă se află într-o " @@ -552,12 +563,10 @@ msgstr "Adăugați o instanță" #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:171 #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:177 #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:274 -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:165 -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:268 msgid "Add key" msgstr "Adăugați cheia" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:410 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:415 msgid "Add local domain suffix to names served from hosts files." msgstr "" "Adăugați sufixul domeniului local la numele servite din fișierele hosts." @@ -579,11 +588,11 @@ msgstr "Adăugați pe lista neagră" msgid "Add to Whitelist" msgstr "Adăugați la lista albă" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:367 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:372 msgid "Additional hosts files" msgstr "Fișiere de tip hosts adiționale" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:417 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:422 msgid "Additional servers file" msgstr "Fișier suplimentar pentru servere" @@ -613,7 +622,7 @@ msgstr "Setarea adresei nu este valabilă" msgid "Address to access local relay bridge" msgstr "Adresa de acces punte locala repetor" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:289 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:291 msgid "Addresses" msgstr "Adrese" @@ -646,7 +655,7 @@ msgstr "Timp de învechire" msgid "Aggregate Originator Messages" msgstr "Agregarea mesajelor inițiatorului" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:27 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:28 msgid "Aggregate Transmit Power (ACTATP)" msgstr "Puterea de transmisie agregată (ACTATP)" @@ -687,11 +696,11 @@ msgstr "Alias Interfață" msgid "Alias of \"%s\"" msgstr "Alias al lui \"%s\"" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:427 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:432 msgid "All servers" msgstr "Toate serverele" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:378 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:383 msgid "" "Allocate IP addresses sequentially, starting from the lowest available " "address." @@ -699,7 +708,7 @@ msgstr "" "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 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:382 msgid "Allocate IPs sequentially" msgstr "Alocă IP-urile secvențial" @@ -729,7 +738,7 @@ msgstr "Permiteți rate de transfer învechite 802.11b" msgid "Allow listed only" msgstr "Permiteți doar din listă" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:306 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:311 msgid "Allow localhost" msgstr "Permiteți localhost" @@ -773,7 +782,7 @@ msgstr "Întotdeauna oprit (kernel: niciunul)" msgid "Always on (kernel: default-on)" msgstr "Întotdeauna activat (kernel: implicit activat)" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:538 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:543 msgid "Always send DHCP Options. Sometimes needed, with e.g. PXELinux." msgstr "" "Trimiteți întotdeauna opțiunile DHCP. Uneori ele sunt necesare, de exemplu, " @@ -806,7 +815,7 @@ msgid "An optional, short description for this device" msgstr "O scurtă descriere opțională pentru acest dispozitiv" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1484 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:20 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:21 msgid "Annex" msgstr "Anexa" @@ -926,7 +935,7 @@ msgstr "Orice pachet" msgid "Any zone" msgstr "Orice zonă" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:532 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:537 msgid "Apply DHCP Options to this net. (Empty = all clients)." msgstr "Aplicați opțiunile DHCP la această rețea. (Gol = toți clienții)." @@ -1026,11 +1035,11 @@ msgstr "Autentificare" msgid "Authentication Type" msgstr "Tipul Autentificării" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:265 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:267 msgid "Authoritative" msgstr "Autoritar" -#: modules/luci-base/luasrc/view/sysauth.htm:17 +#: modules/luci-base/ucode/template/sysauth.ut:17 #: themes/luci-theme-bootstrap/htdocs/luci-static/resources/view/bootstrap/sysauth.js:11 msgid "Authorization Required" msgstr "Autorizație Necesară" @@ -1102,7 +1111,7 @@ msgstr "In medie:" msgid "Avoid Bridge Loops" msgstr "Evitați buclele de pod" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:388 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:393 msgid "" "Avoid uselessly triggering dial-on-demand links (filters SRV/SOA records and " "names with underscores)." @@ -1139,10 +1148,6 @@ msgstr "Inapoi" msgid "Back to Overview" msgstr "Înapoi la Prezentare generală" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:48 -msgid "Back to configuration" -msgstr "Înapoi la configurare" - #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:826 msgid "Back to peer configuration" msgstr "Înapoi la configurația peer" @@ -1156,7 +1161,6 @@ msgid "Backup / Flash Firmware" msgstr "Salvați / Scrieți Firmware" #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:351 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:12 msgid "Backup file list" msgstr "Salvează lista de fișiere" @@ -1207,7 +1211,6 @@ msgid "Beacon Interval" msgstr "Interval de semnalizare" #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:352 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:46 msgid "" "Below is the determined list of files to backup. It consists of changed " "configuration files marked by opkg, essential base files and the user " @@ -1221,7 +1224,7 @@ msgstr "" msgid "Bind NTP server" msgstr "Legătura serverului NTP" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:326 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:331 msgid "Bind dynamically to interfaces rather than wildcard address." msgstr "" "Se leagă în mod dinamic la interfețe mai degrabă decât la adrese wildcard." @@ -1238,6 +1241,17 @@ msgstr "" msgid "Bind interface" msgstr "Legați interfața" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:595 +msgid "" +"Bind service records to a domain name: specify the location of services." +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:556 +msgid "" +"Bind service records to a domain name: specify the location of services. See " +"<a href=\"%s\">RFC2782</a>." +msgstr "" + #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:59 #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:64 #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:64 @@ -1343,6 +1357,10 @@ msgstr "" msgid "CLAT configuration failed" msgstr "Configurarea CLAT a eșuat" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:574 +msgid "CNAME or fqdn" +msgstr "" + #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/processes.js:72 msgid "CPU usage (%)" msgstr "Utilizarea procesorului (%)" @@ -1369,7 +1387,6 @@ msgstr "Apel eșuat" #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:295 #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:209 #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:487 -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:203 msgid "Cancel" msgstr "Anulare" @@ -1587,7 +1604,6 @@ msgstr "ID-ul de client care se trimite la solicitarea DHCP" #: modules/luci-base/htdocs/luci-static/resources/ui.js:4392 #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:173 #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:179 -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:167 msgid "Close" msgstr "Închideți" @@ -1604,17 +1620,13 @@ msgstr "" "Închideți conexiunea inactivă după un număr de secunde dat, utilizați 0 " "pentru a menține conexiunea" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:49 -msgid "Close list..." -msgstr "Închideți lista..." - #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:44 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:63 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2184 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:391 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:352 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:355 -#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:72 +#: themes/luci-theme-material/ucode/template/themes/material/header.ut:66 msgid "Collecting data..." msgstr "Colectare date..." @@ -1654,6 +1666,10 @@ msgstr "" msgid "Compute outgoing checksum (optional)." msgstr "Calculați suma de control de ieșire (opțional)." +#: protocols/luci-proto-nebula/htdocs/luci-static/resources/protocol/nebula.js:40 +msgid "Config File" +msgstr "" + #: modules/luci-base/htdocs/luci-static/resources/ui.js:4375 #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:454 msgid "Configuration" @@ -1912,7 +1928,7 @@ msgstr "Portul-DAE" msgid "DAE-Secret" msgstr "Secretul-DAE" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:525 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:530 msgid "DHCP Options" msgstr "Opțiuni DHCP" @@ -1952,11 +1968,11 @@ msgstr "Serviciul DHCPv6" msgid "DNS" msgstr "DNS" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:282 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:284 msgid "DNS forwardings" msgstr "Redirecționări DNS" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:445 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:450 msgid "DNS query port" msgstr "Port de interogare DNS" @@ -1964,7 +1980,7 @@ msgstr "Port de interogare DNS" msgid "DNS search domains" msgstr "Domenii de căutare DNS" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:438 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:443 msgid "DNS server port" msgstr "Portul serverului DNS" @@ -1980,11 +1996,11 @@ msgstr "Pondere DNS" msgid "DNS-Label / FQDN" msgstr "Etichetă DNS / FQDN" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:397 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:402 msgid "DNSSEC" msgstr "DNSSEC" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:402 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:407 msgid "DNSSEC check unsigned" msgstr "Verificare DNSSEC nesemnată" @@ -1997,11 +2013,11 @@ msgid "DS-Lite AFTR address" msgstr "Adresa DS-Lite AFTR" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1481 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:44 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:45 msgid "DSL" msgstr "DSL" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:14 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:15 msgid "DSL Status" msgstr "Starea DSL" @@ -2014,12 +2030,12 @@ msgid "DTIM Interval" msgstr "Interval DTIM" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:59 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:700 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:771 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:136 msgid "DUID" msgstr "DUID" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:21 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:22 msgid "Data Rate" msgstr "Rata de date" @@ -2083,7 +2099,6 @@ msgstr "Ștergeți" #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:205 #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:211 -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:199 msgid "Delete key" msgstr "Ștergeți cheia" @@ -2272,7 +2287,7 @@ msgstr "Dezactivat" msgid "Disassociate On Low Acknowledgement" msgstr "Dezasociere la recunoaștere scăzută" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:302 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:307 msgid "" "Discard upstream responses containing <a href=\"%s\">RFC1918</a> addresses." msgstr "" @@ -2320,7 +2335,7 @@ msgstr "Distanța până la cel mai îndepărtat membru al rețelei, în metri." msgid "Distributed ARP Table" msgstr "Tabel ARP distribuit" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:543 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:548 msgid "" "Dnsmasq instance to which this boot section is bound. If unspecified, the " "section is valid for all dnsmasq instances." @@ -2338,7 +2353,7 @@ msgstr "" "\">DHCP</abbr> și <abbr title=\"Domain Name System\">DNS</abbr> " "redirecționator." -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:414 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:419 msgid "Do not cache negative replies, e.g. for non-existent domains." msgstr "" "Nu puneți în cache răspunsurile negative, de exemplu pentru domenii " @@ -2352,15 +2367,15 @@ msgstr "" msgid "Do not create host route to peer (optional)." msgstr "Nu creați o rută gazdă către partener (opțional)." -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:262 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:264 msgid "Do not forward DNS queries without dots or domain parts." msgstr "Nu transmiteți interogări DNS fără puncte sau părți de domeniu." -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:383 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:388 msgid "Do not forward reverse lookups for local networks." msgstr "Nu redirecționați căutările inverse pentru rețelele locale." -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:339 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:344 msgid "Do not listen on the specified interfaces." msgstr "Nu ascultați pe interfețele specificate." @@ -2398,7 +2413,6 @@ msgid "Do you really want to delete \"%s\" ?" msgstr "Sigur doriți să ștergeți \"%s\" ?" #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:206 -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:200 msgid "Do you really want to delete the following SSH key?" msgstr "Sigur doriți să ștergeți această cheie SSH?" @@ -2418,15 +2432,16 @@ msgstr "Doriți să înlocuiți PSK-ul actual?" msgid "Do you want to replace the current keys?" msgstr "Doriți să înlocuiți cheile actuale?" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:593 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:606 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:664 msgid "Domain" msgstr "Domeniu" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:261 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:263 msgid "Domain required" msgstr "Domeniul este necesar" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:311 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:316 msgid "Domain whitelist" msgstr "Lista albă de domenii" @@ -2673,7 +2688,7 @@ msgstr "Activați clientul NTP" msgid "Enable Single DES" msgstr "Activează DES unic" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:480 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:485 msgid "Enable TFTP server" msgstr "Activați serverul TFTP" @@ -2763,7 +2778,7 @@ msgstr "Activați suportul pentru traficul multicast (opțional)." msgid "Enable the DF (Don't Fragment) flag of the encapsulating packets." msgstr "Activați indicatorul DF (Don't Fragment) al pachetelor încapsulate." -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:481 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:486 msgid "Enable the built-in single-instance TFTP server." msgstr "Activați serverul TFTP încorporat într-o singură instanță." @@ -2884,7 +2899,7 @@ msgstr "Eroare" msgid "Error getting PublicKey" msgstr "Eroare la obținerea PublicKey" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:29 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:30 msgid "Errored seconds (ES)" msgstr "Secunde eronate (ES)" @@ -2906,11 +2921,11 @@ msgstr "La fiecare 30 de secunde (lent, 0)" msgid "Every second (fast, 1)" msgstr "La fiecare secundă (rapid, 1)" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:338 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:343 msgid "Exclude interfaces" msgstr "Excludeți interfețele" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:307 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:312 msgid "" "Exempt <code>127.0.0.0/8</code> and <code>::1</code> from rebinding checks, " "e.g. for RBL services." @@ -2922,7 +2937,7 @@ msgstr "" msgid "Existing device" msgstr "Dispozitiv existent" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:409 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:414 msgid "Expand hosts" msgstr "Extindeți gazdele" @@ -3058,7 +3073,7 @@ msgstr "Nu s-a reușit setarea modului de operare" msgid "File" msgstr "Fișier" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:418 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:423 msgid "" "File listing upstream resolvers, optionally domain-specific, e.g. " "<code>server=1.2.3.4</code>, <code>server=/domain/1.2.3.4</code>." @@ -3070,20 +3085,20 @@ msgstr "" msgid "File not accessible" msgstr "Fișierul nu este accesibil" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:349 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:354 msgid "File to store DHCP lease information." msgstr "Fișier în care se stochează informațiile de închiriere DHCP." -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:357 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:362 msgid "File with upstream resolvers." msgstr "Fișier cu rezolvatori din amonte." #: modules/luci-base/htdocs/luci-static/resources/ui.js:2846 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:507 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:512 msgid "Filename" msgstr "Numele fișierului" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:493 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:498 msgid "Filename of the boot image advertised to clients." msgstr "Numele de fișier al imaginii de pornire anunțate clienților." @@ -3092,11 +3107,11 @@ msgstr "Numele de fișier al imaginii de pornire anunțate clienților." msgid "Filesystem" msgstr "Sistemul de fișiere" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:382 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:387 msgid "Filter private" msgstr "Filtrați privatele" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:387 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:392 msgid "Filter useless" msgstr "Filtrați nefolosite" @@ -3163,7 +3178,7 @@ msgstr "Fișier firmware" msgid "Firmware Version" msgstr "Versiunea Firmware-ului" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:446 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:451 msgid "Fixed source port for outbound DNS queries." msgstr "Port sursă fix pentru interogările DNS de ieșire." @@ -3189,7 +3204,7 @@ msgstr "Operațiuni de scriere" msgid "Flashing…" msgstr "Scriere…" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:537 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:542 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:686 msgid "Force" msgstr "Forțați" @@ -3234,7 +3249,7 @@ msgstr "Forțați upgrade-ul" msgid "Force use of NAT-T" msgstr "Forțați utilizarea NAT-T" -#: modules/luci-base/luasrc/view/csrftoken.htm:8 +#: modules/luci-base/ucode/template/csrftoken.ut:8 msgid "Form token mismatch" msgstr "Necorespundere între simboluri de formular" @@ -3272,7 +3287,7 @@ msgstr "" "Redirecționează mesajele DHCPv6 între interfața principală desemnată și " "interfețele din downstream." -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:28 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:29 msgid "Forward Error Correction Seconds (FECS)" msgstr "Secunde de corecție a erorilor înainte (FECS)" @@ -3435,18 +3450,16 @@ msgstr "Setări generale" msgid "Global network options" msgstr "Opțiuni de rețea globală" -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:82 -#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:89 -#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:74 +#: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/header.ut:70 +#: themes/luci-theme-material/ucode/template/themes/material/header.ut:84 +#: themes/luci-theme-openwrt-2020/ucode/template/themes/openwrt2020/header.ut:67 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:92 -#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:72 msgid "Go to firmware upgrade..." msgstr "Mergeți la actualizarea firmware-ului..." -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:72 -#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:64 +#: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/header.ut:60 +#: themes/luci-theme-openwrt-2020/ucode/template/themes/openwrt2020/header.ut:57 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:82 -#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:62 msgid "Go to password configuration..." msgstr "Mergeți la configurarea parolei..." @@ -3586,7 +3599,7 @@ msgstr "Acces HTTP(S)" msgid "Hang Up" msgstr "Închideți" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:33 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:34 msgid "Header Error Code Errors (HEC)" msgstr "Erori de cod de eroare de antet (HEC)" @@ -3639,7 +3652,7 @@ msgstr "Gazdă" msgid "Host expiry timeout" msgstr "Timpul de expirare a gazdei" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:508 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:513 msgid "Host requests this filename from the boot server." msgstr "Gazda solicită acest nume de fișier de la serverul de pornire." @@ -3648,8 +3661,8 @@ msgid "Host-Uniq tag content" msgstr "Conținutul etichetei Host-Uniq" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:38 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:559 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:607 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:630 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:678 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/10_system.js:54 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:87 #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:135 @@ -3664,7 +3677,7 @@ msgstr "Numele gazdei care trebuie trimis atunci când se solicită DHCP" msgid "Hostnames" msgstr "Numele gazdelor (hostnames)" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:551 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:622 msgid "" "Hostnames are used to bind a domain name to an IP address. This setting is " "redundant for hostnames already configured with static leases, but it can be " @@ -3732,7 +3745,7 @@ msgstr "Adrese IP" msgid "IP Protocol" msgstr "Protocolul IP" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:258 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:260 msgid "IP Sets" msgstr "Seturi IP" @@ -3740,7 +3753,7 @@ msgstr "Seturi IP" msgid "IP Type" msgstr "Tip IP" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:563 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:634 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:178 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:204 msgid "IP address" @@ -3766,15 +3779,15 @@ msgctxt "nft meta l4proto" msgid "IP protocol" msgstr "Protocolul IP" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:589 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:660 msgid "IP set" msgstr "Set IP" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:295 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:300 msgid "IP sets" msgstr "Seturi IP" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:432 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:437 msgid "IPs to override with NXDOMAIN" msgstr "Bogus NX Domain Override" @@ -3815,7 +3828,7 @@ msgstr "Conexiune IPv4 externă" #: modules/luci-base/htdocs/luci-static/resources/protocol/static.js:178 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:39 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:665 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:736 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:88 #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:164 msgid "IPv4 address" @@ -3986,7 +3999,7 @@ msgstr "Rutarea la sursă IPv6" msgid "IPv6 suffix" msgstr "Sufixul IPv6" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:706 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:777 msgid "IPv6 suffix (hex)" msgstr "Sufixul IPv6 (hexagonal)" @@ -4099,7 +4112,7 @@ msgstr "" "deoarece dispozitivul swap nu poate fi accesat cu vitezele mari de date ale " "<abbr title=\"Random Access Memory\">RAM</abbr>." -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:363 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:368 msgid "Ignore <code>/etc/hosts</code>" msgstr "Ignorați <code>/etc/hosts</code>" @@ -4107,7 +4120,7 @@ msgstr "Ignorați <code>/etc/hosts</code>" msgid "Ignore interface" msgstr "Ignorați interfața" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:352 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:357 msgid "Ignore resolv file" msgstr "Ignoră fișierul resolv" @@ -4158,7 +4171,7 @@ msgstr "" "evitare a buclelor de bridge pentru a evita buclele de difuzare care pot " "bloca întreaga rețea LAN." -#: modules/luci-base/luasrc/view/csrftoken.htm:13 +#: modules/luci-base/ucode/template/csrftoken.ut:13 msgid "" "In order to prevent unauthorized access to the system, your request has been " "blocked. Click \"Continue »\" below to return to the previous page." @@ -4272,7 +4285,7 @@ msgstr "Constrângerea certificatului interior (Wildcard)" msgid "Install protocol extensions..." msgstr "Instalați extensiile de protocol..." -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:542 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:547 msgid "Instance" msgstr "Instanța" @@ -4361,10 +4374,6 @@ msgstr "Interfețe" msgid "Internal" msgstr "Internă" -#: modules/luci-base/luasrc/view/error500.htm:8 -msgid "Internal Server Error" -msgstr "Eroare internă de server" - #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:285 msgid "Interval For Sending Learning Packets" msgstr "Interval pentru trimiterea pachetelor de învățare" @@ -4438,8 +4447,8 @@ msgstr "Comandă invalidă" msgid "Invalid hexadecimal value" msgstr "Valoare hexazecimală invalidă" -#: modules/luci-base/luasrc/view/sysauth.htm:12 -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/sysauth.htm:37 +#: modules/luci-base/ucode/template/sysauth.ut:12 +#: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/sysauth.ut:32 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." @@ -4464,8 +4473,8 @@ msgstr "" "Se pare că încercați să scrieți o imagine care nu se încadrează în memoria " "flash, vă rugăm să verificați fișierul imagine!" -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:89 -#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:96 +#: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/header.ut:77 +#: themes/luci-theme-material/ucode/template/themes/material/header.ut:91 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:72 msgid "JavaScript required!" msgstr "JavaScript este necesar!" @@ -4597,11 +4606,17 @@ msgstr "Limba" msgid "Language and Style" msgstr "Limba și stilul interfeței" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:560 +msgid "" +"Larger weights (of the same prio) are given a proportionately higher " +"probability of being selected." +msgstr "" + #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:575 msgid "Last member interval" msgstr "Intervalul ultimului membru" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:23 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:24 msgid "Latency" msgstr "Latență" @@ -4617,11 +4632,11 @@ msgstr "Învățați" msgid "Learn routes" msgstr "Învățați rutele" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:348 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:353 msgid "Lease file" msgstr "Fișier de închiriere" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:697 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:768 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:679 msgid "Lease time" msgstr "Timp de închiriere" @@ -4669,19 +4684,19 @@ msgstr "Legendă:" msgid "Limit" msgstr "Limită" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:24 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:25 msgid "Line Attenuation (LATN)" msgstr "Atenuarea liniei (LATN)" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:18 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:19 msgid "Line Mode" msgstr "Mod linie" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:17 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:18 msgid "Line State" msgstr "Stare de linie" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:19 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:20 msgid "Line Uptime" msgstr "Timpul de funcționare a liniei" @@ -4702,12 +4717,12 @@ msgctxt "nft @ll,off,len" msgid "Link layer header bits %d-%d" msgstr "Biți de antet de nivel de legătură %d-%d" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:433 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:438 msgid "List of IP addresses to convert into NXDOMAIN responses." msgstr "Lista de adrese IP care trebuie convertite în răspunsuri NXDOMAIN." -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:296 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:581 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:301 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:652 msgid "List of IP sets to populate with the specified domain IPs." msgstr "" "Listă de seturi IP care trebuie completate cu IP-urile de domeniu " @@ -4747,15 +4762,11 @@ msgstr "" msgid "List of SSH key files for auth" msgstr "Lista de fișiere de chei SSH pentru autentificare" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:312 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:317 msgid "List of domains to allow RFC1918 responses for." msgstr "Lista domeniilor pentru care se permit răspunsurile RFC1918." -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:290 -msgid "List of domains to force to an IP address." -msgstr "Lista domeniilor care trebuie forțate la o adresă IP." - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:283 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:285 msgid "List of upstream resolvers to forward queries to." msgstr "Lista de rezolvatori din upstream către care se transmit interogările." @@ -4763,7 +4774,7 @@ msgstr "Lista de rezolvatori din upstream către care se transmit interogările. msgid "Listen Port" msgstr "Port de ascultare" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:332 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:337 msgid "Listen interfaces" msgstr "Interfețe de ascultare" @@ -4773,7 +4784,7 @@ msgstr "" "Ascultă numai pe interfața dată sau, dacă nu este specificat, pe toate " "interfețele" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:333 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:338 msgid "" "Listen only on the specified interfaces, and loopback if not excluded " "explicitly." @@ -4785,7 +4796,7 @@ msgstr "" msgid "ListenPort setting is invalid" msgstr "Setarea ListenPort nu este validă" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:439 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:444 msgid "Listening port for inbound DNS queries." msgstr "Port de ascultare pentru interogările DNS de intrare." @@ -4812,9 +4823,9 @@ msgid "Loading directory contents…" msgstr "Încărcarea conținutului directorului…" #: modules/luci-base/htdocs/luci-static/resources/luci.js:1942 -#: modules/luci-base/luasrc/view/view.htm:4 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:12 -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/sysauth.htm:45 +#: modules/luci-base/ucode/template/view.ut:4 +#: modules/luci-mod-status/ucode/template/admin_status/index.ut:12 +#: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/sysauth.ut:40 msgid "Loading view…" msgstr "Se încarcă vizualizarea…" @@ -4872,21 +4883,21 @@ msgstr "Ora locală" msgid "Local ULA" msgstr "ULA locală" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:273 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:275 msgid "Local domain" msgstr "Domeniu local" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:274 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:276 msgid "Local domain suffix appended to DHCP names and hosts file entries." msgstr "" "Sufixul domeniului local adăugat la numele DHCP și la intrările din fișierul " "hosts." -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:269 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:271 msgid "Local server" msgstr "Server local" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:319 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:324 msgid "Local service only" msgstr "Doar serviciu local" @@ -4894,7 +4905,7 @@ msgstr "Doar serviciu local" msgid "Local wireguard key" msgstr "Cheie locală wireguard" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:392 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:397 msgid "Localise queries" msgstr "Localizați interogările" @@ -4906,7 +4917,7 @@ msgstr "Blocare la BSSID" msgid "Log output level" msgstr "Nivelul de ieșire a jurnalului" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:277 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:279 msgid "Log queries" msgstr "Scrieți in jurnal interogările" @@ -4933,8 +4944,8 @@ msgstr "" msgid "Logical network to which the tunnel will be added (bridged) (optional)." msgstr "Rețeaua logică la care va fi adăugat tunelul (punte) (opțional)." -#: modules/luci-base/luasrc/view/sysauth.htm:38 -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/sysauth.htm:41 +#: modules/luci-base/ucode/template/sysauth.ut:38 +#: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/sysauth.ut:36 msgid "Login" msgstr "Autentificare" @@ -4946,7 +4957,7 @@ msgstr "Deconectare" msgid "Loose filtering" msgstr "Filtrare liberă" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:31 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:32 msgid "Loss of Signal Seconds (LOSS)" msgstr "Secunde de pierdere a semnalului (LOSS)" @@ -4954,6 +4965,10 @@ msgstr "Secunde de pierdere a semnalului (LOSS)" msgid "Lowest leased address as offset from the network address." msgstr "Cea mai joasă adresă închiriată ca decalaj față de adresa de rețea." +#: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/footer.ut:12 +msgid "Lua compatibility mode active" +msgstr "" + #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:48 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:83 msgid "MAC" @@ -4978,7 +4993,7 @@ msgstr "MAC VLAN" #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:591 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:40 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:619 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:690 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1164 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2177 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:56 @@ -5037,6 +5052,10 @@ msgstr "Intervalul MII" msgid "MTU" msgstr "MTU" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:259 +msgid "MX" +msgstr "" + #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:303 msgid "" "Make sure to clone the root filesystem using something like the commands " @@ -5063,19 +5082,19 @@ msgstr "Principal" msgid "Max <abbr title=\"Router Advertisement\">RA</abbr> interval" msgstr "Intervalul maxim <abbr title=\"Router Advertisement\">RA</abbr>" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:22 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:23 msgid "Max. Attainable Data Rate (ATTNDR)" msgstr "Max. Rata de date realizabilă (ATTNDR)" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:452 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:457 msgid "Max. DHCP leases" msgstr "Max. Închirieri DHCP" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:459 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:464 msgid "Max. EDNS0 packet size" msgstr "Dimensiunea maximă a pachetului EDNS0" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:466 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:471 msgid "Max. concurrent queries" msgstr "Numărul maxim de interogări simultane" @@ -5087,15 +5106,15 @@ msgstr "Vârsta maximă" msgid "Maximum allowed Listen Interval" msgstr "Intervalul de ascultare maxim permis" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:453 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:458 msgid "Maximum allowed number of active DHCP leases." msgstr "Numărul maxim permis de închirieri DHCP active." -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:467 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:472 msgid "Maximum allowed number of concurrent DNS queries." msgstr "Numărul maxim de interogări DNS simultane." -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:460 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:465 msgid "Maximum allowed size of EDNS0 UDP packets." msgstr "Dimensiunea maximă permisă a pachetelor UDP EDNS0." @@ -5125,7 +5144,7 @@ msgstr "" msgid "Maximum transmit power" msgstr "Putere maximă de transmisie" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:389 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:394 msgid "May prevent VoIP or other services from working." msgstr "Poate împiedica funcționarea serviciilor VoIP sau a altor servicii." @@ -5448,12 +5467,15 @@ msgstr "Numele noii rețele" msgid "Name of the tunnel device" msgstr "Numele dispozitivului de tunel" -#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:46 +#: themes/luci-theme-openwrt-2020/ucode/template/themes/openwrt2020/header.ut:39 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:50 -#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:44 msgid "Navigation" msgstr "Navigare" +#: protocols/luci-proto-nebula/htdocs/luci-static/resources/protocol/nebula.js:10 +msgid "Nebula Network" +msgstr "" + #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:653 msgid "Neighbour cache validity" msgstr "Valabilitatea cache-ului de vecinătate" @@ -5489,7 +5511,7 @@ msgstr "Utilitare de rețea" msgid "Network address" msgstr "Adresa de rețea" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:492 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:497 msgid "Network boot image" msgstr "Imagine de pornire în rețea" @@ -5529,7 +5551,7 @@ msgstr "Migrarea configurației rețelei ifname" msgid "Network interface" msgstr "Interfață de rețea" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:531 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:536 msgid "Network-ID" msgstr "ID-ul rețelei" @@ -5537,7 +5559,7 @@ msgstr "ID-ul rețelei" msgid "Never" msgstr "Niciodată" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:270 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:272 msgid "" "Never forward matching domains and subdomains, resolve from DHCP or hosts " "files only." @@ -5587,11 +5609,10 @@ msgstr "Fără NAT-T" msgid "No RX signal" msgstr "Fără recepție semnal (RX)" -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:80 -#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:87 -#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:72 +#: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/header.ut:68 +#: themes/luci-theme-material/ucode/template/themes/material/header.ut:82 +#: themes/luci-theme-openwrt-2020/ucode/template/themes/openwrt2020/header.ut:65 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:90 -#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:70 msgid "" "No changes to settings will be stored and are lost after rebooting. This " "mode should only be used to install a firmware upgrade" @@ -5635,10 +5656,6 @@ msgstr "Fără intrări disponibile" msgid "No entries in this directory" msgstr "Fără intrări în acest director" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:82 -msgid "No files found" -msgstr "Nu s-au găsit fișiere" - #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:833 msgid "" "No fixed interface listening port defined, peers might not be able to " @@ -5676,7 +5693,7 @@ msgstr "Nu mai sunt secundari disponibili" msgid "No more slaves available, can not save interface" msgstr "Nu mai sunt secundare disponibile, nu se poate salva interfața" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:413 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:418 msgid "No negative cache" msgstr "Fără memorie cache negativă" @@ -5684,10 +5701,9 @@ msgstr "Fără memorie cache negativă" msgid "No nftables ruleset loaded." msgstr "Nu s-a încărcat niciun set de reguli nftables." -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:69 -#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:61 +#: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/header.ut:57 +#: themes/luci-theme-openwrt-2020/ucode/template/themes/openwrt2020/header.ut:54 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:79 -#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:59 msgid "No password set!" msgstr "Nu este setată nicio parolă!" @@ -5697,8 +5713,6 @@ msgstr "Încă nu sunt definiți peers." #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:146 #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:283 -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:140 -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:277 msgid "No public keys present yet." msgstr "Fără chei publice prezente încă." @@ -5728,7 +5742,7 @@ msgstr "Nici o zonă atribuită" msgid "Noise" msgstr "Zgomot" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:26 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:27 msgid "Noise Margin (SNR)" msgstr "Marja de zgomot (SNR)" @@ -5736,11 +5750,11 @@ msgstr "Marja de zgomot (SNR)" msgid "Noise:" msgstr "Zgomot:" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:34 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:35 msgid "Non Pre-emptive CRC errors (CRC_P)" msgstr "Erori CRC non-preemptive (CRC_P)" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:325 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:330 msgid "Non-wildcard" msgstr "Fără-wildcard" @@ -5755,7 +5769,7 @@ msgstr "Nici unul" msgid "Normal" msgstr "Normal" -#: modules/luci-base/luasrc/view/error404.htm:8 +#: modules/luci-base/ucode/template/error404.ut:9 msgid "Not Found" msgstr "Nu a fost găsit" @@ -5807,7 +5821,7 @@ msgstr "Căutare DNS" msgid "Number of IGMP membership reports" msgstr "Numărul de rapoarte de apartenență IGMP" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:474 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:479 msgid "Number of cached DNS entries, 10000 is maximum, 0 is no caching." msgstr "" "Numărul de intrări DNS stocate în memoria cache, 10000 este maxim, 0 " @@ -5858,7 +5872,7 @@ msgstr "Întârziere în stare activă" msgid "On-link" msgstr "Pornit de pe link" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:672 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:743 msgid "One of hostname or MAC address must be specified!" msgstr "Trebuie specificat unul dintre numele de gazdă sau adresa MAC!" @@ -5898,7 +5912,6 @@ msgid "Open iptables rules overview…" msgstr "Deschideți prezentarea generală a regulilor iptables…" #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:472 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:19 msgid "Open list..." msgstr "Deschideți lista..." @@ -6071,7 +6084,7 @@ msgstr "Opțional. Port UDP utilizat pentru pachetele de ieșire și de intrare. msgid "Options" msgstr "Opțiuni" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:526 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:531 msgid "" "Options for the Network-ID. (Note: needs also Network-ID.) E.g. " "\"<code>42,192.168.1.4</code>\" for NTP server, \"<code>3,192.168.4.4</code>" @@ -6084,10 +6097,14 @@ msgstr "" "sistemului care rulează dnsmasq\"." #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:125 -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:119 msgid "Options:" msgstr "Opțiuni:" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:584 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:616 +msgid "Ordinal: lower comes first." +msgstr "" + #: protocols/luci-proto-batman-adv/htdocs/luci-static/resources/protocol/batadv.js:55 msgid "Originator Interval" msgstr "Intervalul de origine" @@ -6363,13 +6380,13 @@ msgctxt "MACVLAN mode" msgid "Pass-through (Mirror physical device to single MAC VLAN)" msgstr "Pass-through (dispozitiv fizic în oglindă pentru un singur MAC VLAN)" -#: modules/luci-base/luasrc/view/sysauth.htm:29 +#: modules/luci-base/ucode/template/sysauth.ut:29 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1690 #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:51 #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:114 #: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:103 #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:58 -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/sysauth.htm:24 +#: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/sysauth.ut:19 msgid "Password" msgstr "Parolă" @@ -6397,7 +6414,6 @@ msgid "Password2" msgstr "Parola2" #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:266 -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:260 msgid "Paste or drag SSH key file…" msgstr "Lipiți sau trageți fișierul cu cheia SSH…" @@ -6545,7 +6561,7 @@ msgstr "Ping" msgid "Pkts." msgstr "Pachete." -#: modules/luci-base/luasrc/view/sysauth.htm:19 +#: modules/luci-base/ucode/template/sysauth.ut:19 msgid "Please enter your username and password." msgstr "Vă rugăm să introduceți numele de utilizator și parola." @@ -6562,6 +6578,7 @@ msgctxt "Chain hook policy" msgid "Policy: <strong>%h</strong> (%h)" msgstr "Politica: <strong>%h</strong> (%h)" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:579 #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/dropbear.js:21 msgid "Port" msgstr "Port" @@ -6578,11 +6595,11 @@ msgstr "Starea portului:" msgid "Potential negation of: %s" msgstr "Negație potențială a: %s" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:37 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:38 msgid "Power Management Mode" msgstr "Modul de gestionare a energiei" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:35 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:36 msgid "Pre-emptive CRC errors (CRCP_P)" msgstr "Erori CRC preemptive (CRCP_P)" @@ -6663,6 +6680,8 @@ msgstr "" "(întotdeauna, 0)" #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:508 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:584 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:616 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:129 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:197 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:223 @@ -6758,7 +6777,6 @@ msgid "Public key: %h" msgstr "Cheia publică: %h" #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:290 -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:284 msgid "" "Public keys allow for the passwordless SSH logins with a higher security " "compared to the use of plain passwords. In order to upload a new key to the " @@ -6789,7 +6807,7 @@ msgstr "QMI Celular" msgid "Quality" msgstr "Calitate" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:428 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:433 msgid "Query all available upstream resolvers." msgstr "Interoghează toți rezolvatorii din amonte disponibili." @@ -6873,7 +6891,7 @@ msgstr "" "Octeți brute codificați în format hexazecimal. Lăsați gol, cu excepția " "cazului în care ISP-ul dumneavoastră solicită acest lucru" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:345 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:350 msgid "Read <code>/etc/ethers</code> to configure the DHCP server." msgstr "Citiți <code>/etc/ethers</code> pentru a configura serverul DHCP." @@ -6889,7 +6907,7 @@ msgstr "Grafice în timp real" msgid "Reassociation Deadline" msgstr "Termenul limită pentru reasociere" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:301 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:306 msgid "Rebind protection" msgstr "Protecție de relegare" @@ -6976,6 +6994,7 @@ msgstr "" "egală cu valoarea specificată" #: modules/luci-compat/luasrc/model/network/proto_relay.lua:153 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:611 #: protocols/luci-proto-relay/htdocs/luci-static/resources/protocol/relay.js:39 msgid "Relay" msgstr "Releu" @@ -7069,6 +7088,10 @@ msgid "Required. Base64-encoded private key for this interface." msgstr "" "Este necesar. Cheia privată codificată în baza 64 pentru această interfață." +#: protocols/luci-proto-nebula/htdocs/luci-static/resources/protocol/nebula.js:40 +msgid "Required. Path to the .yml config file for this interface." +msgstr "" + #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:587 msgid "Required. Public key of the WireGuard peer." msgstr "Este necesar. Cheia publică a omologului WireGuard." @@ -7151,7 +7174,7 @@ msgid "Reselection policy for primary slave" msgstr "Politica de realegere pentru secundara principală" #: modules/luci-base/htdocs/luci-static/resources/luci.js:2197 -#: modules/luci-base/luasrc/view/sysauth.htm:39 +#: modules/luci-base/ucode/template/sysauth.ut:39 #: modules/luci-compat/luasrc/view/cbi/delegator.htm:17 #: modules/luci-compat/luasrc/view/cbi/footer.htm:30 #: modules/luci-compat/luasrc/view/cbi/simpleform.htm:66 @@ -7170,10 +7193,14 @@ msgstr "Resetați la valorile implicite" msgid "Resolv and Hosts Files" msgstr "Fișierele de rezolvare și host-uri DNS" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:356 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:361 msgid "Resolv file" msgstr "Fișierul de rezolvare" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:292 +msgid "Resolve specified FQDNs to an IP." +msgstr "Lista domeniilor care trebuie forțate la o adresă IP." + #: modules/luci-base/htdocs/luci-static/resources/rpc.js:405 msgid "Resource not found" msgstr "Resursa nu a fost găsită" @@ -7200,7 +7227,7 @@ msgstr "Restaurează" msgid "Restore backup" msgstr "Restaurați o copie de rezervă" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:393 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:398 msgid "" "Return answers to DNS queries matching the subnet from which the query was " "received if multiple IPs are available." @@ -7294,7 +7321,7 @@ msgstr "" msgid "Robustness" msgstr "Robustețe" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:486 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:491 msgid "" "Root directory for files served via TFTP. <em>Enable TFTP server</em> and " "<em>TFTP server root</em> turn on the TFTP server and serve files from " @@ -7406,6 +7433,11 @@ msgstr "SHA256" msgid "SNR" msgstr "SNR" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:258 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:569 +msgid "SRV" +msgstr "" + #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/dropbear.js:10 #: modules/luci-mod-system/root/usr/share/luci/menu.d/luci-mod-system.json:38 msgid "SSH Access" @@ -7425,7 +7457,6 @@ msgstr "Nume de utilizator SSH" #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:289 #: modules/luci-mod-system/root/usr/share/luci/menu.d/luci-mod-system.json:51 -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:283 msgid "SSH-Keys" msgstr "Chei SSH" @@ -7553,11 +7584,11 @@ msgstr "Trimiteți numele de gazdă al acestui dispozitiv" msgid "Server" msgstr "Serverul" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:519 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:524 msgid "Server address" msgstr "Adresa serverului" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:513 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:518 msgid "Server name" msgstr "Nume server" @@ -7656,7 +7687,7 @@ msgstr "Setări" msgid "Setup routes for proxied IPv6 neighbours." msgstr "Configurarea rutelor pentru vecinii IPv6 proxi." -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:30 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:31 msgid "Severely Errored Seconds (SES)" msgstr "Secunde cu erori grave (SES)" @@ -7670,7 +7701,6 @@ msgid "Short Preamble" 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 msgid "Show current backup file list" msgstr "Afișați lista curentă de fișiere de rezervă" @@ -7704,7 +7734,7 @@ msgstr "Semnal" msgid "Signal / Noise" msgstr "Semnal / Zgomot" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:25 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:26 msgid "Signal Attenuation (SATN)" msgstr "Atenuarea semnalului (SATN)" @@ -7721,7 +7751,7 @@ msgstr "Semnal:" msgid "Size" msgstr "Mărime" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:473 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:478 msgid "Size of DNS query cache" msgstr "Dimensiunea cache-ului de interogare DNS" @@ -7738,15 +7768,13 @@ msgstr "Sari" msgid "Skip from backup files that are equal to those in /rom" msgstr "Omiteți din fișierele de rezervă care sunt egale cu cele din /rom" -#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:42 +#: themes/luci-theme-openwrt-2020/ucode/template/themes/openwrt2020/header.ut:35 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:46 -#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:40 msgid "Skip to content" msgstr "Sari la conținut" -#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:41 +#: themes/luci-theme-openwrt-2020/ucode/template/themes/openwrt2020/header.ut:34 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:45 -#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:39 msgid "Skip to navigation" msgstr "Sari la navigare" @@ -7763,14 +7791,10 @@ msgstr "VLAN software" msgid "Some fields are invalid, cannot save values!" msgstr "Unele câmpuri sunt invalide, nu se pot salva valorile!" -#: modules/luci-base/luasrc/view/error404.htm:9 +#: modules/luci-base/ucode/template/error404.ut:10 msgid "Sorry, the object you requested was not found." msgstr "Ne pare rău, obiectul pe care l-ați solicitat nu a fost găsit." -#: modules/luci-base/luasrc/view/error500.htm:9 -msgid "Sorry, the server encountered an unexpected error." -msgstr "Ne pare rău, serverul a întâmpinat o eroare neașteptată." - #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:442 msgid "" "Sorry, there is no sysupgrade support present; a new firmware image must be " @@ -7809,7 +7833,7 @@ msgctxt "nft ip sport" msgid "Source port" msgstr "Portul sursă" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:500 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:505 msgid "" "Special <abbr title=\"Preboot eXecution Environment\">PXE</abbr> boot " "options for Dnsmasq." @@ -8268,7 +8292,7 @@ msgstr "Închirieri Statice" msgid "Static address" msgstr "Adresă statică" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:598 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:669 msgid "" "Static leases are used to assign fixed IP addresses and symbolic hostnames " "to DHCP clients. They are also required for non-dynamic interface " @@ -8286,7 +8310,7 @@ msgstr "Limita de inactivitate a stației" #: modules/luci-base/root/usr/share/luci/menu.d/luci-base.json:16 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:541 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:929 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:9 +#: modules/luci-mod-status/ucode/template/admin_status/index.ut:9 msgid "Status" msgstr "Stare" @@ -8312,7 +8336,7 @@ msgstr "Stocare" msgid "Strict filtering" msgstr "Filtrare strictă" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:422 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:427 msgid "Strict order" msgstr "Ordine strictă" @@ -8325,11 +8349,11 @@ msgstr "Puternică" msgid "Submit" msgstr "Trimiteți" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:372 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:377 msgid "Suppress logging" msgstr "Suprimați înregistrarea in jurnal" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:373 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:378 msgid "Suppress logging of the routine operation for the DHCP protocol." msgstr "" "Suprimați înregistrarea în jurnal a operațiunii de rutină pentru protocolul " @@ -8386,6 +8410,14 @@ msgstr "Sincronizați cu serverul NTP" msgid "Sync with browser" msgstr "Sincronizați cu browserul" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:293 +msgid "Syntax: <code>/fqdn[/fqdn…]/[ipaddr]</code>." +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:569 +msgid "Syntax: <code>_service._proto.example.com</code>." +msgstr "" + #: modules/luci-base/root/usr/share/luci/menu.d/luci-base.json:26 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/10_system.js:17 #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:113 @@ -8411,11 +8443,10 @@ msgstr "Proprietăți sistem" msgid "System log buffer size" msgstr "Dimensiunea tamponului de jurnal de sistem" -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:79 -#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:86 -#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:71 +#: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/header.ut:67 +#: themes/luci-theme-material/ucode/template/themes/material/header.ut:81 +#: themes/luci-theme-openwrt-2020/ucode/template/themes/openwrt2020/header.ut:64 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:89 -#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:69 msgid "System running in recovery (initramfs) mode." msgstr "Sistemul rulează în modul de recuperare (initramfs)." @@ -8443,7 +8474,7 @@ msgstr "Portul sursă TCP" msgid "TCP:" msgstr "TCP:" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:485 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:490 msgid "TFTP server root" msgstr "Rădăcina serverului TFTP" @@ -8468,6 +8499,7 @@ msgstr "Lungimea cozii TX" msgid "Table" msgstr "Tabelul" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:574 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:56 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:66 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:187 @@ -8554,15 +8586,15 @@ msgstr "" "trebuie să folosiți numele de utilizator simplu în loc de ID-ul de " "utilizator!" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:681 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:752 msgid "The IP address %h is already used by another static lease" msgstr "Adresa IP %h este deja folosită de o altă închiriere statică" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:690 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:761 msgid "The IP address is outside of any DHCP pool address range" msgstr "Adresa IP se află în afara oricărui interval de adrese de grup DHCP" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:520 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:525 msgid "The IP address of the boot server" msgstr "Adresa IP a serverului de pornire" @@ -8749,12 +8781,10 @@ msgstr "" "pentru a stabili o conexiune cu acest dispozitiv." #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:172 -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:166 msgid "The given SSH public key has already been added." msgstr "Cheia publică SSH dată a fost deja adăugată." #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:178 -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:172 msgid "" "The given SSH public key is invalid. Please supply proper public RSA, " "ED25519 or ECDSA keys." @@ -8775,7 +8805,7 @@ msgstr "" "unui salt suplimentar (pachetul trebuie să fie primit și retransmis, ceea ce " "costă timp de emisie)" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:514 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:519 msgid "The hostname of the boot server" msgstr "Numele de gazdă al serverului de boot-are" @@ -8950,7 +8980,7 @@ msgstr "" msgid "The selected %s mode is incompatible with %s encryption" msgstr "Modul %s selectat este incompatibil cu criptarea %s" -#: modules/luci-base/luasrc/view/csrftoken.htm:11 +#: modules/luci-base/ucode/template/csrftoken.ut:11 msgid "The submitted security token is invalid or already expired!" msgstr "Tokenul de securitate trimis este nevalid sau a expirat deja!" @@ -9039,8 +9069,8 @@ msgstr "" "regulilor iptables și nftables este descurajată și poate duce la o filtrare " "incompletă a traficului." -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:746 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:778 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:817 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:849 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:130 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:179 msgid "There are no active leases" @@ -9050,10 +9080,9 @@ msgstr "Nu există închirieri active" msgid "There are no changes to apply" msgstr "Nu există modificări de aplicat" -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:70 -#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:62 +#: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/header.ut:58 +#: themes/luci-theme-openwrt-2020/ucode/template/themes/openwrt2020/header.ut:55 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:80 -#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:60 msgid "" "There is no password set on this router. Please configure a root password to " "protect the web interface." @@ -9075,7 +9104,6 @@ msgid "This does not look like a valid PEM file" msgstr "Acesta nu pare a fi un fișier PEM valid" #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:454 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:16 msgid "" "This is a list of shell glob patterns for matching files and directories to " "include during sysupgrade. Modified files in /etc/config/ and certain other " @@ -9128,7 +9156,7 @@ msgstr "" "Aceasta este adresa locală a punctului final atribuită de către brokerul de " "tunel, de obicei se termină cu <code>...:2/64</code>" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:266 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:268 msgid "This is the only DHCP server in the local network." msgstr "Acesta este singurul server DHCP din rețeaua locală." @@ -9390,7 +9418,7 @@ msgstr "Nu se poate determina adresa IP externă" msgid "Unable to determine upstream interface" msgstr "Nu se poate determina interfața în flux ascendent" -#: modules/luci-base/luasrc/view/error404.htm:11 +#: modules/luci-base/ucode/template/error404.ut:12 msgid "Unable to dispatch" msgstr "Imposibilitatea de a expedia" @@ -9445,7 +9473,7 @@ msgstr "Nu se poate salva conținutul: %s" msgid "Unable to verify PIN" msgstr "Nu se poate verifica PIN-ul" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:32 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:33 msgid "Unavailable Seconds (UAS)" msgstr "Secunde indisponibile (UAS)" @@ -9504,7 +9532,6 @@ msgid "Unmount" msgstr "Demontează" #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:121 -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:115 msgid "Unnamed key" msgstr "Cheie fără nume" @@ -9604,7 +9631,7 @@ msgstr "" "La apăsarea \"Continuați\", opțiunile ifname vor fi redenumite și rețeaua va " "fi repornită pentru a aplica configurația actualizată." -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:423 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:428 msgid "Upstream resolvers will be queried in the order of the resolv file." msgstr "" "Rezolutorii din upstream vor fi interogați în ordinea din fișierul resolv." @@ -9614,7 +9641,7 @@ msgstr "" msgid "Uptime" msgstr "Timp de funcționare" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:344 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:349 msgid "Use <code>/etc/ethers</code>" msgstr "Folosește <code>/etc/ethers</code>" @@ -9729,7 +9756,7 @@ msgstr "Utilizați certificatele de sistem" msgid "Use system certificates for inner-tunnel" msgstr "Utilizați certificate de sistem pentru tunelul interior" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:599 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:670 msgid "" "Use the <em>Add</em> Button to add a new lease entry. The <em>MAC address</" "em> identifies the host, the <em>IPv4 address</em> specifies the fixed " @@ -9790,11 +9817,11 @@ msgstr "Identificatorul utilizatorului" msgid "User key (PEM encoded)" msgstr "Cheie utilizator (codare PEM)" -#: modules/luci-base/luasrc/view/sysauth.htm:23 +#: modules/luci-base/ucode/template/sysauth.ut:23 #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:112 #: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:101 #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:56 -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/sysauth.htm:18 +#: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/sysauth.ut:13 msgid "Username" msgstr "Nume Utilizator" @@ -9892,7 +9919,7 @@ msgstr "Identificatorul rețelei VXLAN" msgid "VXLANv6 (RFC7348)" msgstr "VXLANv6 (RFC7348)" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:398 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:403 msgid "" "Validate DNS replies and cache DNSSEC data, requires upstream to support " "DNSSEC." @@ -9929,7 +9956,7 @@ msgstr "Furnizor" msgid "Vendor Class to send when requesting DHCP" msgstr "Clasa furnizorului care trebuie trimisă la solicitarea DHCP" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:403 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:408 msgid "Verify unsigned domain responses really come from unsigned domains." msgstr "" "Verificați dacă răspunsurile din domenii nesemnate provin într-adevăr din " @@ -10009,6 +10036,10 @@ msgstr "" msgid "Weak" msgstr "Slabă" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:589 +msgid "Weight" +msgstr "" + #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1029 msgid "" "When delegating prefixes to multiple downstreams, interfaces with a higher " @@ -10152,7 +10183,7 @@ msgstr "Rețeaua wireless este dezactivată" msgid "Wireless network is enabled" msgstr "Rețeaua wireless este activată" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:278 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:280 msgid "Write received DNS queries to syslog." msgstr "Scrieți interogările DNS primite in syslog." @@ -10193,8 +10224,16 @@ msgstr "" "dezactivați scripturi init esențiale, cum ar fi \"network\", dispozitivul " "dvs. ar putea deveni inaccesibil!</strong>" -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:90 -#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:97 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:559 +msgid "You may add multiple records for the same Target." +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:596 +msgid "You may add multiple records for the same domain." +msgstr "" + +#: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/header.ut:78 +#: themes/luci-theme-material/ucode/template/themes/material/header.ut:92 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:73 msgid "" "You must enable JavaScript in your browser or LuCI will not work properly." @@ -10229,7 +10268,17 @@ msgstr "Setări ZRam" msgid "ZRam Size" msgstr "Dimensiunea ZRam" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:449 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:558 +msgid "_proto: _tcp, _udp, _sctp, _quic, … ." +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:557 +msgid "" +"_service: _sip, _ldap, _imap, _stun, _xmpp-client, … . (Note: while _http is " +"possible, no browsers support SRV records.)" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:454 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:152 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:163 msgid "any" @@ -10340,8 +10389,8 @@ msgstr "de exemplu: --proxy 10.10.10.10" msgid "e.g: dump" msgstr "de exemplu: dump" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:726 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:756 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:797 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:827 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:101 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:148 msgid "expired" @@ -10558,9 +10607,9 @@ msgstr "valoare unică" msgid "unknown" msgstr "necunoscut" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:456 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:724 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:754 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:461 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:795 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:825 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:99 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:146 msgid "unlimited" @@ -10776,6 +10825,21 @@ msgstr "da" msgid "« Back" msgstr "« Înapoi" +#~ msgid "Back to configuration" +#~ msgstr "Înapoi la configurare" + +#~ msgid "Close list..." +#~ msgstr "Închideți lista..." + +#~ msgid "Internal Server Error" +#~ msgstr "Eroare internă de server" + +#~ msgid "No files found" +#~ msgstr "Nu s-au găsit fișiere" + +#~ msgid "Sorry, the server encountered an unexpected error." +#~ msgstr "Ne pare rău, serverul a întâmpinat o eroare neașteptată." + #~ msgid "Do not forward queries that cannot be answered by public resolvers." #~ msgstr "" #~ "Nu transmiteți interogări la care nu pot răspunde rezolvatorii publici." diff --git a/modules/luci-base/po/ru/base.po b/modules/luci-base/po/ru/base.po index e38aaeacb2..a0ddbb221b 100644 --- a/modules/luci-base/po/ru/base.po +++ b/modules/luci-base/po/ru/base.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: LuCI: base\n" "POT-Creation-Date: 2010-05-09 01:01+0300\n" -"PO-Revision-Date: 2022-10-09 16:44+0000\n" -"Last-Translator: Anton Kikin <a.a.kikin@gmail.com>\n" +"PO-Revision-Date: 2022-10-25 10:20+0000\n" +"Last-Translator: sergio <sergio+it@outerface.net>\n" "Language-Team: Russian <https://hosted.weblate.org/projects/openwrt/luci/ru/>" "\n" "Language: ru\n" @@ -12,7 +12,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.14.1\n" +"X-Generator: Weblate 4.14.2-dev\n" "Project-Info: Это технический перевод, не дословный. Главное-удобный русский " "интерфейс, все проверялось в графическом режиме, совместим с другими apps\n" @@ -238,6 +238,22 @@ msgstr "<abbr title=\"Router Advertisement\">RA</abbr> MTU" msgid "<abbr title=\"Router Advertisement\">RA</abbr>-Service" msgstr "Служба <abbr title=\"Router Advertisement\">RA</abbr>" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:294 +msgid "" +"<code>/#/</code> matches any domain. <code>/example.com/</code> returns " +"NXDOMAIN." +msgstr "" +"<code>/#/</code> соответствует любому домену. <code>/example.com/</code> " +"возвращает NXDOMAIN." + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:295 +msgid "" +"<code>/example.com/#</code> returns NULL addresses (<code>0.0.0.0</code> and " +"<code>::</code>) for example.com and its subdomains." +msgstr "" +"<code>/example.com/#</code> возвращает NULL адреса (<code>0.0.0.0</code> и " +"<code>::</code>) для example.com и его поддоменов." + #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:87 msgctxt "nft relational \">\" operator expression" msgid "<var>%s</var> greater than <strong>%s</strong>" @@ -407,7 +423,7 @@ msgstr "" msgid "ATM device number" msgstr "ATM номер устройства" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:36 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:37 msgid "ATU-C System Vendor ID" msgstr "ATU-C идентификатор производителя" @@ -417,7 +433,7 @@ msgstr "ATU-C идентификатор производителя" msgid "Absent Interface" msgstr "Отсутствующий интерфейс" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:320 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:325 msgid "Accept DNS queries only from hosts whose address is on a local subnet." msgstr "Ограничение сервиса DNS, для подсетей интерфейса использующего DNS." @@ -556,7 +572,7 @@ msgstr "Добавить экземпляр" msgid "Add key" msgstr "Добавить ключ" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:410 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:415 msgid "Add local domain suffix to names served from hosts files." msgstr "" "Добавить локальный суффикс домена для имен из файла hosts (/etc/hosts)." @@ -578,11 +594,11 @@ msgstr "Добавить в черный список" msgid "Add to Whitelist" msgstr "Добавить в белый список" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:367 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:372 msgid "Additional hosts files" msgstr "Дополнительный hosts файл" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:417 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:422 msgid "Additional servers file" msgstr "Дополнительный файл серверов" @@ -612,7 +628,7 @@ msgstr "Неверная настройка параметра Address" msgid "Address to access local relay bridge" msgstr "Адрес для доступа к локальному мосту-ретранслятору" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:289 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:291 msgid "Addresses" msgstr "Адреса" @@ -645,7 +661,7 @@ msgstr "Время устаревания" msgid "Aggregate Originator Messages" msgstr "Агрегировать сообщения отправителей" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:27 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:28 msgid "Aggregate Transmit Power (ACTATP)" msgstr "Общая мощность передачи (ACTATP)" @@ -685,18 +701,18 @@ msgstr "Псевдоним" msgid "Alias of \"%s\"" msgstr "Псевдоним интерфейса \"%s\"" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:427 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:432 msgid "All servers" msgstr "Все серверы" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:378 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:383 msgid "" "Allocate IP addresses sequentially, starting from the lowest available " "address." msgstr "" "Выделять IP-адреса последовательно, начинать с меньшего доступного адреса." -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:377 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:382 msgid "Allocate IPs sequentially" msgstr "Выделять IP-адреса последовательно" @@ -728,7 +744,7 @@ msgstr "Разрешить стандарт 802.11b" msgid "Allow listed only" msgstr "Разрешить только перечисленные" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:306 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:311 msgid "Allow localhost" msgstr "Разрешить localhost" @@ -774,7 +790,7 @@ msgstr "Всегда выключен (kernel: none)" msgid "Always on (kernel: default-on)" msgstr "Всегда включен (kernel: default-on)" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:538 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:543 msgid "Always send DHCP Options. Sometimes needed, with e.g. PXELinux." msgstr "" "Всегда отправлять опции DHCP. Это требуется в некоторых случаях, например, " @@ -805,7 +821,7 @@ msgid "An optional, short description for this device" msgstr "Необязательное, краткое описание для этого устройства" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1484 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:20 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:21 msgid "Annex" msgstr "Annex" @@ -926,7 +942,7 @@ msgstr "Любой пакет" msgid "Any zone" msgstr "Любая зона" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:532 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:537 msgid "Apply DHCP Options to this net. (Empty = all clients)." msgstr "Применить опции DHCP к этой сети (пусто = все клиенты)." @@ -1025,11 +1041,11 @@ msgstr "Аутентификация" msgid "Authentication Type" msgstr "Тип аутентификации" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:265 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:267 msgid "Authoritative" msgstr "Основной" -#: modules/luci-base/luasrc/view/sysauth.htm:17 +#: modules/luci-base/ucode/template/sysauth.ut:17 #: themes/luci-theme-bootstrap/htdocs/luci-static/resources/view/bootstrap/sysauth.js:11 msgid "Authorization Required" msgstr "Веб-интерфейс" @@ -1105,7 +1121,7 @@ msgstr "Средняя:" msgid "Avoid Bridge Loops" msgstr "Избегать мостовых петель" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:388 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:393 msgid "" "Avoid uselessly triggering dial-on-demand links (filters SRV/SOA records and " "names with underscores)." @@ -1142,10 +1158,6 @@ msgstr "Назад" msgid "Back to Overview" msgstr "Назад к обзору" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:48 -msgid "Back to configuration" -msgstr "Назад к настройкам" - #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:826 msgid "Back to peer configuration" msgstr "Вернуться к конфигурации узла" @@ -1159,7 +1171,6 @@ msgid "Backup / Flash Firmware" msgstr "Восстановление / Обновление" #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:351 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:12 msgid "Backup file list" msgstr "Список файлов для резервного копирования" @@ -1209,7 +1220,6 @@ msgid "Beacon Interval" msgstr "Интервал рассылки пакетов Beacon" #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:352 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:46 msgid "" "Below is the determined list of files to backup. It consists of changed " "configuration files marked by opkg, essential base files and the user " @@ -1223,7 +1233,7 @@ msgstr "" msgid "Bind NTP server" msgstr "Привязать NTP-сервер" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:326 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:331 msgid "Bind dynamically to interfaces rather than wildcard address." msgstr "" "Привязывать динамически к интерфейсам, а не по шаблону адреса (рекомендуется " @@ -1241,6 +1251,20 @@ msgstr "" msgid "Bind interface" msgstr "Открытый интерфейс" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:595 +msgid "" +"Bind service records to a domain name: specify the location of services." +msgstr "" +"Привязка записей служб к доменному имени: определение местоположения служб." + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:556 +msgid "" +"Bind service records to a domain name: specify the location of services. See " +"<a href=\"%s\">RFC2782</a>." +msgstr "" +"Привязка записей служб к доменному имени: определение местоположения служб. " +"См. <a href=\"%s\">RFC2782</a>." + #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:59 #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:64 #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:64 @@ -1346,6 +1370,10 @@ msgstr "" msgid "CLAT configuration failed" msgstr "Ошибка конфигурации CLAT" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:574 +msgid "CNAME or fqdn" +msgstr "CNAME или fqdn" + #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/processes.js:72 msgid "CPU usage (%)" msgstr "Использование ЦП (%)" @@ -1607,17 +1635,13 @@ msgstr "" "Завершать неактивное соединение после заданного интервала (сек.), " "используйте значение 0 для удержания неактивного соединения" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:49 -msgid "Close list..." -msgstr "Закрыть список..." - #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:44 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:63 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2184 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:391 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:352 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:355 -#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:72 +#: themes/luci-theme-material/ucode/template/themes/material/header.ut:66 msgid "Collecting data..." msgstr "Сбор данных..." @@ -1656,6 +1680,10 @@ msgstr "" msgid "Compute outgoing checksum (optional)." msgstr "Вычислять исходящую контрольную сумму (опционально)." +#: protocols/luci-proto-nebula/htdocs/luci-static/resources/protocol/nebula.js:40 +msgid "Config File" +msgstr "Конфигурационный файл" + #: modules/luci-base/htdocs/luci-static/resources/ui.js:4375 #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:454 msgid "Configuration" @@ -1705,8 +1733,8 @@ msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:764 msgid "" -"Configures the operation mode of the <abbr title=\"Router " -"Advertisement\">RA</abbr> service on this interface." +"Configures the operation mode of the <abbr title=\"Router Advertisement" +"\">RA</abbr> service on this interface." msgstr "" "Конфигурирует режим работы службы <abbr title=\"Router Advertisement\">RA</" "abbr> на данном интерфейсе." @@ -1890,8 +1918,8 @@ msgstr "Произвольный интервал мигания (kernel: timer) #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/leds.js:59 msgid "" -"Customizes the behaviour of the device <abbr title=\"Light Emitting " -"Diode\">LED</abbr>s if possible." +"Customizes the behaviour of the device <abbr title=\"Light Emitting Diode" +"\">LED</abbr>s if possible." msgstr "" "Настройка поведения светодиодной индикации устройства, если это возможно." @@ -1911,7 +1939,7 @@ msgstr "DAE-порт" msgid "DAE-Secret" msgstr "DAE-секрет" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:525 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:530 msgid "DHCP Options" msgstr "Опции DHCP" @@ -1951,11 +1979,11 @@ msgstr "DHCPv6 сервис" msgid "DNS" msgstr "DNS" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:282 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:284 msgid "DNS forwardings" msgstr "Перенаправление запросов DNS" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:445 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:450 msgid "DNS query port" msgstr "<abbr title=\"Система доменных имён\">DNS</abbr> порт запроса" @@ -1963,7 +1991,7 @@ msgstr "<abbr title=\"Система доменных имён\">DNS</abbr> по msgid "DNS search domains" msgstr "Домены поиска DNS" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:438 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:443 msgid "DNS server port" msgstr "<abbr title=\"Система доменных имен\">DNS</abbr> порт сервера" @@ -1979,11 +2007,11 @@ msgstr "Вес DNS" msgid "DNS-Label / FQDN" msgstr "DNS-имя / FQDN" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:397 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:402 msgid "DNSSEC" msgstr "DNSSEC" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:402 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:407 msgid "DNSSEC check unsigned" msgstr "DNSSEC проверка без знака" @@ -1996,11 +2024,11 @@ msgid "DS-Lite AFTR address" msgstr "DS-Lite AFTR-адрес" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1481 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:44 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:45 msgid "DSL" msgstr "DSL" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:14 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:15 msgid "DSL Status" msgstr "Состояние DSL" @@ -2013,12 +2041,12 @@ msgid "DTIM Interval" msgstr "Интервал DTIM" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:59 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:700 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:771 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:136 msgid "DUID" msgstr "DUID" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:21 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:22 msgid "Data Rate" msgstr "Скорость передачи данных" @@ -2270,12 +2298,12 @@ msgstr "Отключено" msgid "Disassociate On Low Acknowledgement" msgstr "Не ассоциировать при низком подтверждении" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:302 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:307 msgid "" "Discard upstream responses containing <a href=\"%s\">RFC1918</a> addresses." msgstr "" -"Отбрасывать ответы вышестоящего сервера, содержащие адреса <a " -"href=\"%s\">RFC1918</a>." +"Отбрасывать ответы вышестоящего сервера, содержащие адреса <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 @@ -2318,7 +2346,7 @@ msgstr "Расстояние до самого удалённого сетево msgid "Distributed ARP Table" msgstr "Распределенная таблица ARP" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:543 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:548 msgid "" "Dnsmasq instance to which this boot section is bound. If unspecified, the " "section is valid for all dnsmasq instances." @@ -2328,16 +2356,16 @@ msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:246 msgid "" -"Dnsmasq is a lightweight <abbr title=\"Dynamic Host Configuration " -"Protocol\">DHCP</abbr> server and <abbr title=\"Domain Name System\">DNS</" -"abbr> forwarder." +"Dnsmasq is a lightweight <abbr title=\"Dynamic Host Configuration Protocol" +"\">DHCP</abbr> server and <abbr title=\"Domain Name System\">DNS</abbr> " +"forwarder." msgstr "" -"Dnsmasq содержит в себе <abbr title=\"Протокол динамической настройки " -"узла\">DHCP</abbr>-сервер и <abbr title=\"Служба доменных имён\">DNS</abbr>-" -"прокси для сетевых экранов <abbr title=\"Преобразование сетевых " -"адресов\">NAT</abbr>." +"Dnsmasq содержит в себе <abbr title=\"Протокол динамической настройки узла" +"\">DHCP</abbr>-сервер и <abbr title=\"Служба доменных имён\">DNS</abbr>-" +"прокси для сетевых экранов <abbr title=\"Преобразование сетевых адресов" +"\">NAT</abbr>." -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:414 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:419 msgid "Do not cache negative replies, e.g. for non-existent domains." msgstr "Не кешировать отрицательные ответы, в т.ч. для несуществующих доменов." @@ -2349,17 +2377,17 @@ msgstr "Не кешировать отрицательные ответы, в т msgid "Do not create host route to peer (optional)." msgstr "Не создавать маршрут к узлу (опционально)." -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:262 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:264 msgid "Do not forward DNS queries without dots or domain parts." msgstr "" "Не перенаправлять <abbr title=\"Служба доменных имён\">DNS</abbr>-запросы " "без <abbr title=\"Служба доменных имён\">DNS</abbr>-имени." -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:383 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:388 msgid "Do not forward reverse lookups for local networks." msgstr "Не перенаправлять обратные DNS-запросы для локальных сетей." -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:339 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:344 msgid "Do not listen on the specified interfaces." msgstr "Запретить прослушивание этих интерфейсов." @@ -2377,8 +2405,8 @@ msgid "" "Do not proxy any <abbr title=\"Neighbour Discovery Protocol\">NDP</abbr> " "packets." msgstr "" -"Не проксировать любые пакеты <abbr title=\"Neighbour Discovery " -"Protocol\">NDP</abbr>." +"Не проксировать любые пакеты <abbr title=\"Neighbour Discovery Protocol" +"\">NDP</abbr>." #: modules/luci-base/htdocs/luci-static/resources/protocol/dhcp.js:25 msgid "Do not send a hostname" @@ -2416,15 +2444,16 @@ msgstr "Вы хотите заменить текущий PSK?" msgid "Do you want to replace the current keys?" msgstr "Вы хотите заменить текущие ключи?" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:593 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:606 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:664 msgid "Domain" msgstr "Домен" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:261 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:263 msgid "Domain required" msgstr "Требуется домен" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:311 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:316 msgid "Domain whitelist" msgstr "Белый список доменов" @@ -2671,7 +2700,7 @@ msgstr "Включить NTP-клиент" msgid "Enable Single DES" msgstr "Включить Single DES" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:480 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:485 msgid "Enable TFTP server" msgstr "Включить TFTP-сервер" @@ -2689,9 +2718,9 @@ msgstr "Включить WPS при нажатии на кнопку, в реж #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/uhttpd.js:14 msgid "" -"Enable automatic redirection of <abbr title=\"Hypertext Transfer " -"Protocol\">HTTP</abbr> requests to <abbr title=\"Hypertext Transfer Protocol " -"Secure\">HTTPS</abbr> port." +"Enable automatic redirection of <abbr title=\"Hypertext Transfer Protocol" +"\">HTTP</abbr> requests to <abbr title=\"Hypertext Transfer Protocol Secure" +"\">HTTPS</abbr> port." msgstr "" "Перенаправлять запросы с <abbr title=\"Hypertext Transfer Protocol\">HTTP</" "abbr> на порт <abbr title=\"Hypertext Transfer Protocol Secure\">HTTPS</" @@ -2761,7 +2790,7 @@ msgstr "Включить поддержку мультикаст трафика msgid "Enable the DF (Don't Fragment) flag of the encapsulating packets." msgstr "Включите флаг DF (не Фрагментировать) инкапсулирующих пакетов." -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:481 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:486 msgid "Enable the built-in single-instance TFTP server." msgstr "Включить встроенный одноэкземплярный сервер TFTP." @@ -2882,7 +2911,7 @@ msgstr "Ошибка" msgid "Error getting PublicKey" msgstr "Ошибка получения публичного ключа" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:29 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:30 msgid "Errored seconds (ES)" msgstr "Ошибочные секунды (ES)" @@ -2904,11 +2933,11 @@ msgstr "Каждые 30 секунд (slow, 0)" msgid "Every second (fast, 1)" msgstr "Каждую секунду (fast, 1)" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:338 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:343 msgid "Exclude interfaces" msgstr "Исключить интерфейсы" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:307 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:312 msgid "" "Exempt <code>127.0.0.0/8</code> and <code>::1</code> from rebinding checks, " "e.g. for RBL services." @@ -2920,7 +2949,7 @@ msgstr "" msgid "Existing device" msgstr "Существующее устройство" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:409 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:414 msgid "Expand hosts" msgstr "Расширять имена узлов" @@ -3056,7 +3085,7 @@ msgstr "Не удалось установить режим работы" msgid "File" msgstr "Файл" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:418 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:423 msgid "" "File listing upstream resolvers, optionally domain-specific, e.g. " "<code>server=1.2.3.4</code>, <code>server=/domain/1.2.3.4</code>." @@ -3068,22 +3097,22 @@ msgstr "" msgid "File not accessible" msgstr "Файл не доступен" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:349 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:354 msgid "File to store DHCP lease information." msgstr "" "Файл, где хранятся арендованные <abbr title=\"Протокол динамической " "настройки узла\">DHCP</abbr>-адреса." -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:357 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:362 msgid "File with upstream resolvers." msgstr "Локальный <abbr title=\"Служба доменных имён\">DNS</abbr>-файл." #: modules/luci-base/htdocs/luci-static/resources/ui.js:2846 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:507 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:512 msgid "Filename" msgstr "Имя файла" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:493 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:498 msgid "Filename of the boot image advertised to clients." msgstr "Имя загрузочного образа, извещаемого клиентам." @@ -3092,11 +3121,11 @@ msgstr "Имя загрузочного образа, извещаемого к msgid "Filesystem" msgstr "Файловая система" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:382 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:387 msgid "Filter private" msgstr "Фильтровать частные" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:387 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:392 msgid "Filter useless" msgstr "Фильтровать бесполезные" @@ -3163,7 +3192,7 @@ msgstr "Файл прошивки" msgid "Firmware Version" msgstr "Версия прошивки" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:446 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:451 msgid "Fixed source port for outbound DNS queries." msgstr "Фиксированный порт для исходящих DNS-запросов." @@ -3189,7 +3218,7 @@ msgstr "Операции с прошивкой" msgid "Flashing…" msgstr "Прошивка…" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:537 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:542 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:686 msgid "Force" msgstr "Принудительно (Force)" @@ -3234,21 +3263,21 @@ msgstr "Принудительная прошивка" msgid "Force use of NAT-T" msgstr "Принудительно использовать NAT-T" -#: modules/luci-base/luasrc/view/csrftoken.htm:8 +#: modules/luci-base/ucode/template/csrftoken.ut:8 msgid "Form token mismatch" msgstr "Несоответствие маркеров формы" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:919 msgid "" -"Forward <abbr title=\"Neighbour Discovery Protocol\">NDP</abbr> <abbr " -"title=\"Neighbour Solicitation, Type 135\">NS</abbr> and <abbr " -"title=\"Neighbour Advertisement, Type 136\">NA</abbr> messages between the " -"designated master interface and downstream interfaces." +"Forward <abbr title=\"Neighbour Discovery Protocol\">NDP</abbr> <abbr title=" +"\"Neighbour Solicitation, Type 135\">NS</abbr> and <abbr title=\"Neighbour " +"Advertisement, Type 136\">NA</abbr> messages between the designated master " +"interface and downstream interfaces." msgstr "" "Пересылать <abbr title=\"Neighbour Discovery Protocol\">NDP</abbr> <abbr " -"title=\"Neighbour Solicitation, Type 135\">NS</abbr> и <abbr " -"title=\"Neighbour Advertisement, Type 136\">NA</abbr> сообщения между " -"назначенным мастер интерфейсом и downstream интерфейсами." +"title=\"Neighbour Solicitation, Type 135\">NS</abbr> и <abbr title=" +"\"Neighbour Advertisement, Type 136\">NA</abbr> сообщения между назначенным " +"мастер интерфейсом и downstream интерфейсами." #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:770 msgid "" @@ -3272,7 +3301,7 @@ msgstr "" "Пересылать сообщения DHCPv6 между назначенным мастер интерфейсом и " "downstream интерфейсами." -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:28 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:29 msgid "Forward Error Correction Seconds (FECS)" msgstr "Секунды прямой коррекции ошибок (FECS)" @@ -3431,15 +3460,15 @@ msgstr "Основные настройки" msgid "Global network options" msgstr "Основные настройки сети" -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:82 -#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:89 -#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:74 +#: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/header.ut:70 +#: themes/luci-theme-material/ucode/template/themes/material/header.ut:84 +#: themes/luci-theme-openwrt-2020/ucode/template/themes/openwrt2020/header.ut:67 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:92 msgid "Go to firmware upgrade..." msgstr "Перейти к обновлению прошивки..." -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:72 -#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:64 +#: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/header.ut:60 +#: themes/luci-theme-openwrt-2020/ucode/template/themes/openwrt2020/header.ut:57 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:82 msgid "Go to password configuration..." msgstr "Перейти к настройке пароля..." @@ -3580,7 +3609,7 @@ msgstr "Доступ по HTTP(S)" msgid "Hang Up" msgstr "Перезапустить" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:33 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:34 msgid "Header Error Code Errors (HEC)" msgstr "Ошибки контроля ошибок заголовка (HEC)" @@ -3633,7 +3662,7 @@ msgstr "Устройство" msgid "Host expiry timeout" msgstr "Время ожидания хоста" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:508 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:513 msgid "Host requests this filename from the boot server." msgstr "Хост запрашивает указанный файл с сервера загрузки." @@ -3642,8 +3671,8 @@ msgid "Host-Uniq tag content" msgstr "Содержимое Host-Uniq тега" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:38 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:559 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:607 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:630 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:678 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/10_system.js:54 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:87 #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:135 @@ -3658,7 +3687,7 @@ msgstr "Имя хоста в DHCP-запросах" msgid "Hostnames" msgstr "Имена устройств" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:551 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:622 msgid "" "Hostnames are used to bind a domain name to an IP address. This setting is " "redundant for hostnames already configured with static leases, but it can be " @@ -3725,7 +3754,7 @@ msgstr "IP-адреса" msgid "IP Protocol" msgstr "IP-протокол" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:258 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:260 msgid "IP Sets" msgstr "Списки IP" @@ -3733,7 +3762,7 @@ msgstr "Списки IP" msgid "IP Type" msgstr "Тип IP" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:563 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:634 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:178 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:204 msgid "IP address" @@ -3759,15 +3788,15 @@ msgctxt "nft meta l4proto" msgid "IP protocol" msgstr "IP-протокол" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:589 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:660 msgid "IP set" msgstr "Список IP" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:295 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:300 msgid "IP sets" msgstr "Списки IP" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:432 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:437 msgid "IPs to override with NXDOMAIN" msgstr "Переопределение поддельного NX-домена" @@ -3808,7 +3837,7 @@ msgstr "Подключение IPv4 (upstream)" #: modules/luci-base/htdocs/luci-static/resources/protocol/static.js:178 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:39 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:665 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:736 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:88 #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:164 msgid "IPv4 address" @@ -3979,7 +4008,7 @@ msgstr "Явная маршрутизация IPv6" msgid "IPv6 suffix" msgstr "IPv6 суффикс" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:706 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:777 msgid "IPv6 suffix (hex)" msgstr "Суффикс IPv6 (hex)" @@ -4081,10 +4110,10 @@ msgstr "Если не выбрано, то извещаемые адреса DNS #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:340 msgid "" "If your physical memory is insufficient unused data can be temporarily " -"swapped to a swap-device resulting in a higher amount of usable <abbr " -"title=\"Random Access Memory\">RAM</abbr>. Be aware that swapping data is a " -"very slow process as the swap-device cannot be accessed with the high " -"datarates of the <abbr title=\"Random Access Memory\">RAM</abbr>." +"swapped to a swap-device resulting in a higher amount of usable <abbr title=" +"\"Random Access Memory\">RAM</abbr>. Be aware that swapping data is a very " +"slow process as the swap-device cannot be accessed with the high datarates " +"of the <abbr title=\"Random Access Memory\">RAM</abbr>." msgstr "" "Если физической памяти не достаточно, то неиспользуемые данные могут быть " "временно перемещены в раздел подкачки, что в свою очередь приведет к " @@ -4093,7 +4122,7 @@ msgstr "" "устройство, на котором располагается раздел подкачки, работает гораздо " "медленнее, чем <abbr title=\"Random Access Memory\">RAM</abbr>." -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:363 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:368 msgid "Ignore <code>/etc/hosts</code>" msgstr "Игнорировать <code>/etc/hosts</code>" @@ -4101,7 +4130,7 @@ msgstr "Игнорировать <code>/etc/hosts</code>" msgid "Ignore interface" msgstr "Игнорировать интерфейс" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:352 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:357 msgid "Ignore resolv file" msgstr "Игнорировать файл resolv" @@ -4152,7 +4181,7 @@ msgstr "" "мостовых петель, чтобы избежать широковещательных петель, которые могут " "привести к нарушению работы всей локальной сети." -#: modules/luci-base/luasrc/view/csrftoken.htm:13 +#: modules/luci-base/ucode/template/csrftoken.ut:13 msgid "" "In order to prevent unauthorized access to the system, your request has been " "blocked. Click \"Continue »\" below to return to the previous page." @@ -4266,7 +4295,7 @@ msgstr "Внутреннее ограничение сертификата (Wild msgid "Install protocol extensions..." msgstr "Установить расширения протокола..." -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:542 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:547 msgid "Instance" msgstr "Экземпляр" @@ -4355,10 +4384,6 @@ msgstr "Интерфейсы" msgid "Internal" msgstr "Внутренний" -#: modules/luci-base/luasrc/view/error500.htm:8 -msgid "Internal Server Error" -msgstr "Внутренняя ошибка сервера" - #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:285 msgid "Interval For Sending Learning Packets" msgstr "Интервал отправки обучающих (learning) пакетов" @@ -4437,8 +4462,8 @@ msgstr "Неверная команда" msgid "Invalid hexadecimal value" msgstr "Неверное шестнадцатеричное значение" -#: modules/luci-base/luasrc/view/sysauth.htm:12 -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/sysauth.htm:37 +#: modules/luci-base/ucode/template/sysauth.ut:12 +#: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/sysauth.ut:32 msgid "Invalid username and/or password! Please try again." msgstr "Неверный логин и/или пароль! Попробуйте снова." @@ -4462,8 +4487,8 @@ msgstr "" "Оказалось, что вы пытаетесь прошить устройство прошивкой, которая по размеру " "не помещается в чип флэш-памяти, проверьте ваш файл прошивки!" -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:89 -#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:96 +#: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/header.ut:77 +#: themes/luci-theme-material/ucode/template/themes/material/header.ut:91 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:72 msgid "JavaScript required!" msgstr "Требуется JavaScript!" @@ -4595,11 +4620,19 @@ msgstr "Язык" msgid "Language and Style" msgstr "Язык и тема" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:560 +msgid "" +"Larger weights (of the same prio) are given a proportionately higher " +"probability of being selected." +msgstr "" +"Большие веса (с одинаковым приоритетом) имеют пропорционально большую " +"вероятность быть выбранными." + #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:575 msgid "Last member interval" msgstr "Интервал последнего членства" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:23 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:24 msgid "Latency" msgstr "Задержка" @@ -4615,11 +4648,11 @@ msgstr "Обучение" msgid "Learn routes" msgstr "Изучать маршруты" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:348 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:353 msgid "Lease file" msgstr "Файл аренд" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:697 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:768 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:679 msgid "Lease time" msgstr "Срок аренды адреса" @@ -4665,19 +4698,19 @@ msgstr "События:" msgid "Limit" msgstr "Предел" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:24 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:25 msgid "Line Attenuation (LATN)" msgstr "Затухание линии (LATN)" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:18 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:19 msgid "Line Mode" msgstr "Режим линии" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:17 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:18 msgid "Line State" msgstr "Состояние Линии" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:19 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:20 msgid "Line Uptime" msgstr "Время бесперебойной работы линии" @@ -4698,12 +4731,12 @@ msgctxt "nft @ll,off,len" msgid "Link layer header bits %d-%d" msgstr "Биты заголовка канального уровня %d–%d" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:433 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:438 msgid "List of IP addresses to convert into NXDOMAIN responses." msgstr "Список IP адресов, поставляющих поддельные результаты домена NX." -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:296 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:581 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:301 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:652 msgid "List of IP sets to populate with the specified domain IPs." msgstr "" "Список наборов IP-адресов для заполнения указанными IP-адресами доменов." @@ -4740,15 +4773,11 @@ msgstr "" msgid "List of SSH key files for auth" msgstr "Список файлов ключей SSH для авторизации" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:312 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:317 msgid "List of domains to allow RFC1918 responses for." msgstr "Список доменов, для которых разрешены ответы RFC1918." -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:290 -msgid "List of domains to force to an IP address." -msgstr "Список доменов для принудительного преобразования в IP-адрес." - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:283 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:285 msgid "List of upstream resolvers to forward queries to." msgstr "" "Список <abbr title=\"Domain Name System\">DNS</abbr>-серверов для " @@ -4758,7 +4787,7 @@ msgstr "" msgid "Listen Port" msgstr "Порт для входящих соединений" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:332 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:337 msgid "Listen interfaces" msgstr "Интерфейс для входящих соединений" @@ -4768,7 +4797,7 @@ msgstr "" "Принимать подключения только на указанном интерфейсе или, если интерфейс не " "задан, на всех интерфейсах" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:333 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:338 msgid "" "Listen only on the specified interfaces, and loopback if not excluded " "explicitly." @@ -4778,7 +4807,7 @@ msgstr "Ограничьте прослушивание этих интерфе msgid "ListenPort setting is invalid" msgstr "Неверная настройка параметра ListenPort" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:439 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:444 msgid "Listening port for inbound DNS queries." msgstr "Порт для входящих DNS-запросов." @@ -4805,9 +4834,9 @@ msgid "Loading directory contents…" msgstr "Загрузка содержимого директории…" #: modules/luci-base/htdocs/luci-static/resources/luci.js:1942 -#: modules/luci-base/luasrc/view/view.htm:4 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:12 -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/sysauth.htm:45 +#: modules/luci-base/ucode/template/view.ut:4 +#: modules/luci-mod-status/ucode/template/admin_status/index.ut:12 +#: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/sysauth.ut:40 msgid "Loading view…" msgstr "Загрузка страницы…" @@ -4865,21 +4894,21 @@ msgstr "Время" msgid "Local ULA" msgstr "Локальный ULA" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:273 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:275 msgid "Local domain" msgstr "Локальный домен" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:274 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:276 msgid "Local domain suffix appended to DHCP names and hosts file entries." msgstr "" "Суффикс локального домена, который будет добавлен к DHCP-именам и записи " "файла hosts (/etc/hosts)." -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:269 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:271 msgid "Local server" msgstr "Локальный сервер" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:319 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:324 msgid "Local service only" msgstr "Только локальный DNS" @@ -4887,7 +4916,7 @@ msgstr "Только локальный DNS" msgid "Local wireguard key" msgstr "Локальный ключ WireGuard" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:392 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:397 msgid "Localise queries" msgstr "Локализовывать запросы" @@ -4899,7 +4928,7 @@ msgstr "Подключаться к BSSID" msgid "Log output level" msgstr "Запись событий" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:277 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:279 msgid "Log queries" msgstr "Запись запросов" @@ -4926,8 +4955,8 @@ msgid "Logical network to which the tunnel will be added (bridged) (optional)." msgstr "" "Логическая сеть, к которой будет добавлен туннель (мост) (опционально)." -#: modules/luci-base/luasrc/view/sysauth.htm:38 -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/sysauth.htm:41 +#: modules/luci-base/ucode/template/sysauth.ut:38 +#: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/sysauth.ut:36 msgid "Login" msgstr "Войти" @@ -4939,7 +4968,7 @@ msgstr "Выйти" msgid "Loose filtering" msgstr "Слабая фильтрация" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:31 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:32 msgid "Loss of Signal Seconds (LOSS)" msgstr "Потеря сигнала в секундах (LOSS)" @@ -4947,6 +4976,10 @@ msgstr "Потеря сигнала в секундах (LOSS)" msgid "Lowest leased address as offset from the network address." msgstr "Минимальный адрес аренды." +#: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/footer.ut:12 +msgid "Lua compatibility mode active" +msgstr "Режим совместимости с Lua активен" + #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:48 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:83 msgid "MAC" @@ -4971,7 +5004,7 @@ msgstr "MAC VLAN" #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:591 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:40 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:619 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:690 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1164 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2177 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:56 @@ -5030,6 +5063,10 @@ msgstr "MII интервал" msgid "MTU" msgstr "MTU" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:259 +msgid "MX" +msgstr "MX" + #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:303 msgid "" "Make sure to clone the root filesystem using something like the commands " @@ -5058,23 +5095,23 @@ msgstr "" "Максимальный интервал <abbr title=\"Router Advertisement\">RA</abbr> " "сообщений" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:22 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:23 msgid "Max. Attainable Data Rate (ATTNDR)" msgstr "Макс. достижимая скорость передачи данных (ATTNDR)" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:452 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:457 msgid "Max. DHCP leases" msgstr "" -"<abbr title=\"максимальное\">Макс.</abbr> кол-во аренд <abbr " -"title=\"Протокол динамической настройки узла\">DHCP</abbr> аренды" +"<abbr title=\"максимальное\">Макс.</abbr> кол-во аренд <abbr title=" +"\"Протокол динамической настройки узла\">DHCP</abbr> аренды" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:459 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:464 msgid "Max. EDNS0 packet size" msgstr "" "<abbr title=\"максимальный\">Макс.</abbr><abbr title=\"Extension Mechanisms " "for Domain Name System\">EDNS0</abbr> размер пакета" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:466 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:471 msgid "Max. concurrent queries" msgstr "" "<abbr title=\"максимальное\">Макс.</abbr> кол-во одновременных запросов" @@ -5087,15 +5124,15 @@ msgstr "Максимальный возраст" msgid "Maximum allowed Listen Interval" msgstr "Максимально разрешенное значение интервала прослушивания клиента" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:453 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:458 msgid "Maximum allowed number of active DHCP leases." msgstr "Максимальное количество активных арендованных DHCP-адресов." -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:467 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:472 msgid "Maximum allowed number of concurrent DNS queries." msgstr "Максимально допустимое количество одновременных DNS-запросов." -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:460 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:465 msgid "Maximum allowed size of EDNS0 UDP packets." msgstr "Максимально допустимый размер UDP пакетов EDNS0." @@ -5117,15 +5154,14 @@ msgid "" "Maximum time allowed between sending unsolicited <abbr title=\"Router " "Advertisement, ICMPv6 Type 134\">RA</abbr>. Default is 600 seconds." msgstr "" -"Максимальное время, допустимое между отправкой незапрашиваемых <abbr " -"title=\"Router Advertisement, ICMPv6 Type 134\">RA</abbr>. По умолчанию 600 " -"секунд." +"Максимальное время, допустимое между отправкой незапрашиваемых <abbr title=" +"\"Router Advertisement, ICMPv6 Type 134\">RA</abbr>. По умолчанию 600 секунд." #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:947 msgid "Maximum transmit power" msgstr "Максимальная мощность передачи" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:389 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:394 msgid "May prevent VoIP or other services from working." msgstr "Может препятствовать работе VoIP или других служб." @@ -5224,9 +5260,8 @@ msgid "" "Minimum time allowed between sending unsolicited <abbr title=\"Router " "Advertisement, ICMPv6 Type 134\">RA</abbr>. Default is 200 seconds." msgstr "" -"Минимальное время, допустимое между отправкой незапрашиваемых <abbr " -"title=\"Router Advertisement, ICMPv6 Type 134\">RA</abbr>. По умолчанию 200 " -"секунд." +"Минимальное время, допустимое между отправкой незапрашиваемых <abbr title=" +"\"Router Advertisement, ICMPv6 Type 134\">RA</abbr>. По умолчанию 200 секунд." #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:204 msgid "Mirror monitor port" @@ -5449,11 +5484,15 @@ msgstr "Имя новой сети" msgid "Name of the tunnel device" msgstr "Имя туннельного устройства" -#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:46 +#: themes/luci-theme-openwrt-2020/ucode/template/themes/openwrt2020/header.ut:39 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:50 msgid "Navigation" msgstr "Навигация" +#: protocols/luci-proto-nebula/htdocs/luci-static/resources/protocol/nebula.js:10 +msgid "Nebula Network" +msgstr "Сеть Nebula" + #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:653 msgid "Neighbour cache validity" msgstr "Действительность кэша соседей" @@ -5489,7 +5528,7 @@ msgstr "Сетевые утилиты" msgid "Network address" msgstr "Сетевой адрес" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:492 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:497 msgid "Network boot image" msgstr "Образ системы для сетевой загрузки" @@ -5529,7 +5568,7 @@ msgstr "Миграция конфигурации сетевых интерфе msgid "Network interface" msgstr "Сетевой интерфейс" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:531 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:536 msgid "Network-ID" msgstr "Network-ID" @@ -5537,7 +5576,7 @@ msgstr "Network-ID" msgid "Never" msgstr "Никогда" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:270 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:272 msgid "" "Never forward matching domains and subdomains, resolve from DHCP or hosts " "files only." @@ -5588,9 +5627,9 @@ msgstr "Без NAT-T" msgid "No RX signal" msgstr "Rx сигнал отсутствует" -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:80 -#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:87 -#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:72 +#: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/header.ut:68 +#: themes/luci-theme-material/ucode/template/themes/material/header.ut:82 +#: themes/luci-theme-openwrt-2020/ucode/template/themes/openwrt2020/header.ut:65 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:90 msgid "" "No changes to settings will be stored and are lost after rebooting. This " @@ -5634,10 +5673,6 @@ msgstr "Нет доступных записей" msgid "No entries in this directory" msgstr "Нет элементов в этом каталоге" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:82 -msgid "No files found" -msgstr "Файлы не найдены" - #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:833 msgid "" "No fixed interface listening port defined, peers might not be able to " @@ -5676,7 +5711,7 @@ msgstr "Больше нет доступных ведомых интерфейс msgid "No more slaves available, can not save interface" msgstr "Больше нет доступных ведомых, сохранить интерфейс невозможно" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:413 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:418 msgid "No negative cache" msgstr "Отключить кэш отрицательных ответов" @@ -5684,8 +5719,8 @@ msgstr "Отключить кэш отрицательных ответов" msgid "No nftables ruleset loaded." msgstr "Не загружен набор правил nftables." -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:69 -#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:61 +#: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/header.ut:57 +#: themes/luci-theme-openwrt-2020/ucode/template/themes/openwrt2020/header.ut:54 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:79 msgid "No password set!" msgstr "Пароль не установлен!" @@ -5725,7 +5760,7 @@ msgstr "Зона не присвоена" msgid "Noise" msgstr "Шум" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:26 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:27 msgid "Noise Margin (SNR)" msgstr "Соотношение сигнал/шум (SNR)" @@ -5733,11 +5768,11 @@ msgstr "Соотношение сигнал/шум (SNR)" msgid "Noise:" msgstr "Шум:" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:34 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:35 msgid "Non Pre-emptive CRC errors (CRC_P)" msgstr "Ошибки без предварительного CRC (CRC_P)" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:325 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:330 msgid "Non-wildcard" msgstr "Не использовать wildcard" @@ -5752,7 +5787,7 @@ msgstr "Ничего" msgid "Normal" msgstr "Нормально" -#: modules/luci-base/luasrc/view/error404.htm:8 +#: modules/luci-base/ucode/template/error404.ut:9 msgid "Not Found" msgstr "Не найдено" @@ -5804,7 +5839,7 @@ msgstr "DNS-запрос" msgid "Number of IGMP membership reports" msgstr "Количество отчётов о членстве IGMP" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:474 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:479 msgid "Number of cached DNS entries, 10000 is maximum, 0 is no caching." msgstr "" "Количество кэшированных DNS записей (максимум — 10000, 0 — отключить " @@ -5855,7 +5890,7 @@ msgstr "Задержка включенного состояния" msgid "On-link" msgstr "On-link маршрут" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:672 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:743 msgid "One of hostname or MAC address must be specified!" msgstr "Должен быть указан либо MAC-адрес, либо имя хоста!" @@ -5895,7 +5930,6 @@ msgid "Open iptables rules overview…" msgstr "Открыть обзор правил iptables…" #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:472 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:19 msgid "Open list..." msgstr "Открыть список..." @@ -6068,12 +6102,12 @@ msgstr "" msgid "Options" msgstr "Опции" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:526 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:531 msgid "" "Options for the Network-ID. (Note: needs also Network-ID.) E.g. " -"\"<code>42,192.168.1.4</code>\" for NTP server, \"<code>3,192.168.4.4</" -"code>\" for default route. <code>0.0.0.0</code> means \"the address of the " -"system running dnsmasq\"." +"\"<code>42,192.168.1.4</code>\" for NTP server, \"<code>3,192.168.4.4</code>" +"\" for default route. <code>0.0.0.0</code> means \"the address of the system " +"running dnsmasq\"." msgstr "" "Параметры для Network-ID (примечание: необходим также Network-ID). Например, " "<code>42,192.168.1.4</code> для NTP-сервера, <code>3,192.168.4.4</code> для " @@ -6084,6 +6118,11 @@ msgstr "" msgid "Options:" msgstr "Опции:" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:584 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:616 +msgid "Ordinal: lower comes first." +msgstr "По порядку: меньший идет первым." + #: protocols/luci-proto-batman-adv/htdocs/luci-static/resources/protocol/batadv.js:55 msgid "Originator Interval" msgstr "Интервал отправителя" @@ -6359,13 +6398,13 @@ msgctxt "MACVLAN mode" msgid "Pass-through (Mirror physical device to single MAC VLAN)" msgstr "Pass-through (зеркалирование физического устройства в один MAC VLAN)" -#: modules/luci-base/luasrc/view/sysauth.htm:29 +#: modules/luci-base/ucode/template/sysauth.ut:29 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1690 #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:51 #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:114 #: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:103 #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:58 -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/sysauth.htm:24 +#: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/sysauth.ut:19 msgid "Password" msgstr "Пароль" @@ -6539,7 +6578,7 @@ msgstr "Пинг-запрос" msgid "Pkts." msgstr "пакетов" -#: modules/luci-base/luasrc/view/sysauth.htm:19 +#: modules/luci-base/ucode/template/sysauth.ut:19 msgid "Please enter your username and password." msgstr "Пожалуйста, введите имя пользователя и пароль." @@ -6556,6 +6595,7 @@ msgctxt "Chain hook policy" msgid "Policy: <strong>%h</strong> (%h)" msgstr "Политика: <strong>%h</strong> (%h)" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:579 #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/dropbear.js:21 msgid "Port" msgstr "Порт" @@ -6572,11 +6612,11 @@ msgstr "Состояние порта:" msgid "Potential negation of: %s" msgstr "Потенциальное отрицание: %s" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:37 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:38 msgid "Power Management Mode" msgstr "Режим управления питанием" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:35 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:36 msgid "Pre-emptive CRC errors (CRCP_P)" msgstr "Предварительные ошибки CRC (CRCP_P)" @@ -6657,6 +6697,8 @@ msgstr "" "(always, 0)" #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:508 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:584 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:616 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:129 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:197 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:223 @@ -6782,7 +6824,7 @@ msgstr "QMI модем" msgid "Quality" msgstr "Качество" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:428 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:433 msgid "Query all available upstream resolvers." msgstr "" "Опрашивать все имеющиеся внешние <abbr title=\"Domain Name System\">DNS</" @@ -6868,7 +6910,7 @@ msgstr "" "Строка в шестнадцатеричном коде. Оставьте пустой, если ваш провайдер не " "требует этого" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:345 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:350 msgid "Read <code>/etc/ethers</code> to configure the DHCP server." msgstr "Читать <code>/etc/ethers</code> для настройки DHCP сервера." @@ -6884,7 +6926,7 @@ msgstr "Мониторинг" msgid "Reassociation Deadline" msgstr "Срок реассоциации" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:301 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:306 msgid "Rebind protection" msgstr "Защита от DNS Rebinding" @@ -6972,6 +7014,7 @@ msgstr "" "указанному значению" #: modules/luci-compat/luasrc/model/network/proto_relay.lua:153 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:611 #: protocols/luci-proto-relay/htdocs/luci-static/resources/protocol/relay.js:39 msgid "Relay" msgstr "Ретранслятор" @@ -7063,6 +7106,10 @@ msgstr "" msgid "Required. Base64-encoded private key for this interface." msgstr "Обязательно. Приватный ключ в кодировке Base64 для этого интерфейса." +#: protocols/luci-proto-nebula/htdocs/luci-static/resources/protocol/nebula.js:40 +msgid "Required. Path to the .yml config file for this interface." +msgstr "Обязательно. Путь к файлу конфигурации .yml для этого интерфейса." + #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:587 msgid "Required. Public key of the WireGuard peer." msgstr "Обязательно. Публичный ключ WireGuard узла." @@ -7146,7 +7193,7 @@ msgid "Reselection policy for primary slave" msgstr "Политика переизбрания для первичного ведомого" #: modules/luci-base/htdocs/luci-static/resources/luci.js:2197 -#: modules/luci-base/luasrc/view/sysauth.htm:39 +#: modules/luci-base/ucode/template/sysauth.ut:39 #: modules/luci-compat/luasrc/view/cbi/delegator.htm:17 #: modules/luci-compat/luasrc/view/cbi/footer.htm:30 #: modules/luci-compat/luasrc/view/cbi/simpleform.htm:66 @@ -7165,10 +7212,14 @@ msgstr "Сбросить на значения по умолчанию" msgid "Resolv and Hosts Files" msgstr "Файлы resolv и hosts" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:356 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:361 msgid "Resolv file" msgstr "Файл resolv" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:292 +msgid "Resolve specified FQDNs to an IP." +msgstr "Список доменов для принудительного преобразования в IP-адрес." + #: modules/luci-base/htdocs/luci-static/resources/rpc.js:405 msgid "Resource not found" msgstr "Ресурс не найден" @@ -7195,7 +7246,7 @@ msgstr "Восстановить" msgid "Restore backup" msgstr "Восстановить резервную копию" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:393 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:398 msgid "" "Return answers to DNS queries matching the subnet from which the query was " "received if multiple IPs are available." @@ -7291,7 +7342,7 @@ msgstr "" msgid "Robustness" msgstr "Надёжность" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:486 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:491 msgid "" "Root directory for files served via TFTP. <em>Enable TFTP server</em> and " "<em>TFTP server root</em> turn on the TFTP server and serve files from " @@ -7402,6 +7453,11 @@ msgstr "SHA256" msgid "SNR" msgstr "SNR" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:258 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:569 +msgid "SRV" +msgstr "SRV" + #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/dropbear.js:10 #: modules/luci-mod-system/root/usr/share/luci/menu.d/luci-mod-system.json:38 msgid "SSH Access" @@ -7546,11 +7602,11 @@ msgstr "Отправлять имя хоста этого устройства" msgid "Server" msgstr "Сервер" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:519 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:524 msgid "Server address" msgstr "Адрес сервера" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:513 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:518 msgid "Server name" msgstr "Имя сервера" @@ -7649,7 +7705,7 @@ msgstr "Настройки" msgid "Setup routes for proxied IPv6 neighbours." msgstr "Настройка маршрутов для проксированных соседей IPv6." -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:30 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:31 msgid "Severely Errored Seconds (SES)" msgstr "Число секунд с многочисленными ошибками (SES)" @@ -7663,7 +7719,6 @@ msgid "Short Preamble" msgstr "Короткая преамбула" #: 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 msgid "Show current backup file list" msgstr "Показать текущий список файлов резервной копии" @@ -7697,7 +7752,7 @@ msgstr "Сигнал" msgid "Signal / Noise" msgstr "Сигнал / шум" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:25 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:26 msgid "Signal Attenuation (SATN)" msgstr "Затухание сигнала (SATN)" @@ -7714,7 +7769,7 @@ msgstr "Сигнал:" msgid "Size" msgstr "Размер" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:473 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:478 msgid "Size of DNS query cache" msgstr "Размер кэша DNS запроса" @@ -7731,12 +7786,12 @@ msgstr "Пропустить" msgid "Skip from backup files that are equal to those in /rom" msgstr "Исключить из резервной копии файлы, совпадающие с файлами в /rom" -#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:42 +#: themes/luci-theme-openwrt-2020/ucode/template/themes/openwrt2020/header.ut:35 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:46 msgid "Skip to content" msgstr "Перейти к содержимому" -#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:41 +#: themes/luci-theme-openwrt-2020/ucode/template/themes/openwrt2020/header.ut:34 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:45 msgid "Skip to navigation" msgstr "Перейти к навигации" @@ -7754,14 +7809,10 @@ msgstr "Программное обеспечение VLAN" msgid "Some fields are invalid, cannot save values!" msgstr "Некоторые значения полей недопустимы, невозможно сохранить информацию!" -#: modules/luci-base/luasrc/view/error404.htm:9 +#: modules/luci-base/ucode/template/error404.ut:10 msgid "Sorry, the object you requested was not found." msgstr "Извините, запрошенный объект не был найден." -#: modules/luci-base/luasrc/view/error500.htm:9 -msgid "Sorry, the server encountered an unexpected error." -msgstr "Извините, сервер столкнулся с неожиданной ошибкой." - #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:442 msgid "" "Sorry, there is no sysupgrade support present; a new firmware image must be " @@ -7800,7 +7851,7 @@ msgctxt "nft ip sport" msgid "Source port" msgstr "Порт источника" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:500 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:505 msgid "" "Special <abbr title=\"Preboot eXecution Environment\">PXE</abbr> boot " "options for Dnsmasq." @@ -8257,7 +8308,7 @@ msgstr "Постоянные аренды" msgid "Static address" msgstr "Статический адрес" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:598 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:669 msgid "" "Static leases are used to assign fixed IP addresses and symbolic hostnames " "to DHCP clients. They are also required for non-dynamic interface " @@ -8274,7 +8325,7 @@ msgstr "Максимально допустимое время бездейст #: modules/luci-base/root/usr/share/luci/menu.d/luci-base.json:16 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:541 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:929 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:9 +#: modules/luci-mod-status/ucode/template/admin_status/index.ut:9 msgid "Status" msgstr "Состояние" @@ -8300,7 +8351,7 @@ msgstr "Хранилище" msgid "Strict filtering" msgstr "Строгая фильтрация" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:422 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:427 msgid "Strict order" msgstr "Строгий порядок" @@ -8313,11 +8364,11 @@ msgstr "Сильная" msgid "Submit" msgstr "Применить" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:372 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:377 msgid "Suppress logging" msgstr "Подавить логирование" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:373 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:378 msgid "Suppress logging of the routine operation for the DHCP protocol." msgstr "Подавить логирование стандартной работы этих протоколов." @@ -8372,6 +8423,14 @@ msgstr "Синхрон. по NTP" msgid "Sync with browser" msgstr "Скопир. из браузера" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:293 +msgid "Syntax: <code>/fqdn[/fqdn…]/[ipaddr]</code>." +msgstr "Синтаксис: <code>/fqdn[/fqdn…]/[ipaddr]</code>." + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:569 +msgid "Syntax: <code>_service._proto.example.com</code>." +msgstr "Синтаксис: <code>_service._proto.example.com</code>." + #: modules/luci-base/root/usr/share/luci/menu.d/luci-base.json:26 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/10_system.js:17 #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:113 @@ -8397,9 +8456,9 @@ msgstr "Свойства системы" msgid "System log buffer size" msgstr "Размер системного журнала" -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:79 -#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:86 -#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:71 +#: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/header.ut:67 +#: themes/luci-theme-material/ucode/template/themes/material/header.ut:81 +#: themes/luci-theme-openwrt-2020/ucode/template/themes/openwrt2020/header.ut:64 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:89 msgid "System running in recovery (initramfs) mode." msgstr "Система работает в режиме восстановления (initramfs)." @@ -8428,7 +8487,7 @@ msgstr "TCP-порт источника" msgid "TCP:" msgstr "TCP:" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:485 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:490 msgid "TFTP server root" msgstr "TFTP сервер root" @@ -8453,6 +8512,7 @@ msgstr "Длина очереди Tx" msgid "Table" msgstr "Таблица" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:574 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:56 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:66 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:187 @@ -8538,15 +8598,15 @@ msgstr "" "HE.net конфигурация обновления конечной точки изменена, теперь вы должны " "использовать простое имя пользователя вместо ID пользователя!" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:681 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:752 msgid "The IP address %h is already used by another static lease" msgstr "IP-адрес %h уже используется в другой постоянной аренде" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:690 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:761 msgid "The IP address is outside of any DHCP pool address range" msgstr "IP-адрес находится вне диапазона пула адресов DHCP" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:520 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:525 msgid "The IP address of the boot server" msgstr "IP-адрес сервера загрузки" @@ -8742,7 +8802,7 @@ msgstr "" "дополнительного перехода (пакет должен быть получен и повторно передан, что " "требует затрат эфирного времени)" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:514 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:519 msgid "The hostname of the boot server" msgstr "Имя хоста сервера загрузки" @@ -8842,17 +8902,17 @@ msgstr "Имя сети уже используется" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:139 msgid "" -"The network ports on this device can be combined to several <abbr " -"title=\"Virtual Local Area Network\">VLAN</abbr>s in which computers can " +"The network ports on this device can be combined to several <abbr title=" +"\"Virtual Local Area Network\">VLAN</abbr>s in which computers can " "communicate directly with each other. <abbr title=\"Virtual Local Area " "Network\">VLAN</abbr>s are often used to separate different network " "segments. Often there is by default one Uplink port for a connection to the " "next greater network like the internet and other ports for a local network." msgstr "" -"Сетевые порты этого устройства могут быть объединены в несколько <abbr " -"title=\"Virtual Local Area Network\">VLAN</abbr>ов, в которых компьютеры " -"могут связываться напрямую между собой. <abbr title=\"Виртуальные локальные " -"сети\">VLAN</abbr>ы часто используются для разделения нескольких сетевых " +"Сетевые порты этого устройства могут быть объединены в несколько <abbr title=" +"\"Virtual Local Area Network\">VLAN</abbr>ов, в которых компьютеры могут " +"связываться напрямую между собой. <abbr title=\"Виртуальные локальные сети" +"\">VLAN</abbr>ы часто используются для разделения нескольких сетевых " "сегментов. Обычно по умолчанию используется один порт для подключения к " "внешней сети, например к Интернету и другие порты предназначенные для " "внутренней — локальной сети." @@ -8914,7 +8974,7 @@ msgstr "" msgid "The selected %s mode is incompatible with %s encryption" msgstr "Выбранный режим %s несовместим с шифрованием %s" -#: modules/luci-base/luasrc/view/csrftoken.htm:11 +#: modules/luci-base/ucode/template/csrftoken.ut:11 msgid "The submitted security token is invalid or already expired!" msgstr "Представленный маркер безопасности недействителен или уже истек!" @@ -9000,8 +9060,8 @@ msgstr "" "iptables и nftables не рекомендуется и может привести к неполной фильтрации " "трафика." -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:746 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:778 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:817 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:849 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:130 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:179 msgid "There are no active leases" @@ -9011,8 +9071,8 @@ msgstr "Нет активных арендованных адресов" msgid "There are no changes to apply" msgstr "Нет изменений для применения" -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:70 -#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:62 +#: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/header.ut:58 +#: themes/luci-theme-openwrt-2020/ucode/template/themes/openwrt2020/header.ut:55 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:80 msgid "" "There is no password set on this router. Please configure a root password to " @@ -9035,7 +9095,6 @@ msgid "This does not look like a valid PEM file" msgstr "Это не похоже на корректный PEM файл" #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:454 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:16 msgid "" "This is a list of shell glob patterns for matching files and directories to " "include during sysupgrade. Modified files in /etc/config/ and certain other " @@ -9088,7 +9147,7 @@ msgstr "" "Это локальный адрес, назначенный туннельным брокером, обычно заканчивается " "на <code>...:2/64</code>" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:266 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:268 msgid "This is the only DHCP server in the local network." msgstr "" "Это единственный <abbr title=\"Протокол динамической настройки узла\">DHCP</" @@ -9176,8 +9235,8 @@ msgstr "Часовой пояс" #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:440 msgid "" "To fully configure the local WireGuard interface from an existing (e.g. " -"provider supplied) configuration file, use the <strong><a class=\"full-" -"import\" href=\"#\">configuration import</a></strong> instead." +"provider supplied) configuration file, use the <strong><a class=\"full-import" +"\" href=\"#\">configuration import</a></strong> instead." msgstr "" "Чтобы полностью настроить локальный интерфейс WireGuard из существующего " "(например, предоставленного провайдером) файла конфигурации, используйте " @@ -9346,7 +9405,7 @@ msgstr "Невозможно определить внешний IP-адрес" msgid "Unable to determine upstream interface" msgstr "Невозможно определить основной (upstream) интерфейс" -#: modules/luci-base/luasrc/view/error404.htm:11 +#: modules/luci-base/ucode/template/error404.ut:12 msgid "Unable to dispatch" msgstr "Невозможно обработать запрос для" @@ -9401,7 +9460,7 @@ msgstr "Невозможно сохранить содержимое: %s" msgid "Unable to verify PIN" msgstr "Не удается проверить PIN-код" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:32 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:33 msgid "Unavailable Seconds (UAS)" msgstr "Секунды неготовности (UAS)" @@ -9557,7 +9616,7 @@ msgstr "" "После нажатия кнопки «Продолжить» опции ifname будут переименованы, и сеть " "будет перезапущена для применения обновленной конфигурации." -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:423 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:428 msgid "Upstream resolvers will be queried in the order of the resolv file." msgstr "" "<abbr title=\"Система доменных имен\">DNS</abbr> сервера будут опрошены в " @@ -9568,7 +9627,7 @@ msgstr "" msgid "Uptime" msgstr "Время работы" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:344 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:349 msgid "Use <code>/etc/ethers</code>" msgstr "Использовать <code>/etc/ethers</code>" @@ -9685,7 +9744,7 @@ msgid "Use system certificates for inner-tunnel" msgstr "" "Использовать системные сертификаты для внутреннего туннеля (inner-tunnel)" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:599 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:670 msgid "" "Use the <em>Add</em> Button to add a new lease entry. The <em>MAC address</" "em> identifies the host, the <em>IPv4 address</em> specifies the fixed " @@ -9746,11 +9805,11 @@ msgstr "Идентификатор пользователя" msgid "User key (PEM encoded)" msgstr "Ключ пользователя (PEM encoded)" -#: modules/luci-base/luasrc/view/sysauth.htm:23 +#: modules/luci-base/ucode/template/sysauth.ut:23 #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:112 #: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:101 #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:56 -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/sysauth.htm:18 +#: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/sysauth.ut:13 msgid "Username" msgstr "Имя пользователя" @@ -9833,7 +9892,7 @@ msgstr "VPNC (CISCO 3000 (и другие) VPN)" #: protocols/luci-proto-vti/htdocs/luci-static/resources/protocol/vti.js:10 msgid "VTI" -msgstr "" +msgstr "VTI" #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:10 msgid "VXLAN (RFC7348)" @@ -9848,7 +9907,7 @@ msgstr "Сетевой идентификатор VXLAN" msgid "VXLANv6 (RFC7348)" msgstr "VXLANv6 (RFC7348)" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:398 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:403 msgid "" "Validate DNS replies and cache DNSSEC data, requires upstream to support " "DNSSEC." @@ -9886,7 +9945,7 @@ msgid "Vendor Class to send when requesting DHCP" msgstr "" "Класс производителя (Vendor class), который отправлять при DHCP-запросах" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:403 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:408 msgid "Verify unsigned domain responses really come from unsigned domains." msgstr "" "Проверять, действительно ли ответы от неподписанных доменов приходят от " @@ -9967,6 +10026,10 @@ msgstr "" msgid "Weak" msgstr "Слабая" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:589 +msgid "Weight" +msgstr "Вес" + #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1029 msgid "" "When delegating prefixes to multiple downstreams, interfaces with a higher " @@ -10110,7 +10173,7 @@ msgstr "Беспроводная сеть отключена" msgid "Wireless network is enabled" msgstr "Беспроводная сеть включена" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:278 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:280 msgid "Write received DNS queries to syslog." msgstr "Записывать полученные DNS-запросы в системный журнал." @@ -10151,8 +10214,16 @@ msgstr "" "><strong>Внимание: если вы выключите один из основных скриптов инициализации " "(например \"network\"), ваше устройство может оказаться недоступным!</strong>" -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:90 -#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:97 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:559 +msgid "You may add multiple records for the same Target." +msgstr "Вы можете добавить несколько записей для одной и той же цели." + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:596 +msgid "You may add multiple records for the same domain." +msgstr "Вы можете добавить несколько записей для одного и того же домена." + +#: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/header.ut:78 +#: themes/luci-theme-material/ucode/template/themes/material/header.ut:92 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:73 msgid "" "You must enable JavaScript in your browser or LuCI will not work properly." @@ -10187,7 +10258,19 @@ msgstr "Настройки ZRam" msgid "ZRam Size" msgstr "Размер ZRam" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:449 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:558 +msgid "_proto: _tcp, _udp, _sctp, _quic, … ." +msgstr "_proto: _tcp, _udp, _sctp, _quic, … ." + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:557 +msgid "" +"_service: _sip, _ldap, _imap, _stun, _xmpp-client, … . (Note: while _http is " +"possible, no browsers support SRV records.)" +msgstr "" +"_service: _sip, _ldap, _imap, _stun, _xmpp-client, … . (Примечание: хотя " +"_http возможен, ни один браузер не поддерживает SRV-записи)." + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:454 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:152 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:163 msgid "any" @@ -10298,8 +10381,8 @@ msgstr "например: --proxy 10.10.10.10" msgid "e.g: dump" msgstr "например: dump" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:726 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:756 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:797 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:827 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:101 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:148 msgid "expired" @@ -10503,9 +10586,9 @@ msgid "" "<abbr title=\"Hypertext Transfer Protocol Secure\">HTTPS</abbr> network " "access." msgstr "" -"uHTTPd предоставляет доступ по <abbr title=\"Hypertext Transfer " -"Protocol\">HTTP</abbr> или <abbr title=\"Hypertext Transfer Protocol " -"Secure\">HTTPS</abbr>." +"uHTTPd предоставляет доступ по <abbr title=\"Hypertext Transfer Protocol" +"\">HTTP</abbr> или <abbr title=\"Hypertext Transfer Protocol Secure\">HTTPS</" +"abbr>." #: modules/luci-base/htdocs/luci-static/resources/validation.js:574 msgid "unique value" @@ -10515,9 +10598,9 @@ msgstr "уникальное значение" msgid "unknown" msgstr "неизвестный" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:456 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:724 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:754 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:461 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:795 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:825 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:99 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:146 msgid "unlimited" @@ -10733,6 +10816,21 @@ msgstr "да" msgid "« Back" msgstr "« Назад" +#~ msgid "Back to configuration" +#~ msgstr "Назад к настройкам" + +#~ msgid "Close list..." +#~ msgstr "Закрыть список..." + +#~ msgid "Internal Server Error" +#~ msgstr "Внутренняя ошибка сервера" + +#~ msgid "No files found" +#~ msgstr "Файлы не найдены" + +#~ msgid "Sorry, the server encountered an unexpected error." +#~ msgstr "Извините, сервер столкнулся с неожиданной ошибкой." + #~ msgid "Do not forward queries that cannot be answered by public resolvers." #~ msgstr "" #~ "Не перенаправлять запросы, которые не могут быть обработаны публичными " @@ -10909,8 +11007,8 @@ msgstr "« Назад" #~ msgid "" #~ "<ul style=\"list-style-type:none;\"> <li><strong>server mode</strong>: " -#~ "Router advertises itself as the default IPv6 gateway via <abbr " -#~ "title=\"Router Advertisement, ICMPv6 Type 134\">RA</abbr> messages (to " +#~ "Router advertises itself as the default IPv6 gateway via <abbr title=" +#~ "\"Router Advertisement, ICMPv6 Type 134\">RA</abbr> messages (to " #~ "<code>ff02::1</code>) and provides <abbr title=\"Prefix Delegation\">PD</" #~ "abbr> to downstream devices.</li> <li><strong>relay mode</strong>: Router " #~ "relays <abbr title=\"Router Advertisement, ICMPv6 Type 134\">RA</abbr> " @@ -10930,26 +11028,26 @@ msgstr "« Назад" #~ "расширяет конфигурацию интерфейсов восходящего потока (например, WAN) и " #~ "префиксы для интерфейсов нисходящего потока (например, LAN).</li> " #~ "<li><strong>гибридный режим</strong>: Маршрутизатор выполняет обе роли; " -#~ "расширяет конфигурацию и префиксы устройств и использует <abbr " -#~ "title=\"Prefix Delegation\">PD</abbr> локально.</li></ul>" +#~ "расширяет конфигурацию и префиксы устройств и использует <abbr title=" +#~ "\"Prefix Delegation\">PD</abbr> локально.</li></ul>" #~ msgid "" #~ "<ul style=\"list-style-type:none;\"> <li><strong>server mode</strong>: " -#~ "Router assigns IPs and delegates prefixes (<abbr title=\"Prefix " -#~ "Delegation\">PD</abbr>) to downstream interfaces.</li> <li><strong>relay " -#~ "mode</strong>: Router relays WAN interface config downstream. Helps " -#~ "support upstream links that lack <abbr title=\"Prefix Delegation\">PD</" -#~ "abbr>.</li> <li><strong>hybrid mode</strong>: Router does combination of " -#~ "server+relay.</li></ul>" +#~ "Router assigns IPs and delegates prefixes (<abbr title=\"Prefix Delegation" +#~ "\">PD</abbr>) to downstream interfaces.</li> <li><strong>relay mode</" +#~ "strong>: Router relays WAN interface config downstream. Helps support " +#~ "upstream links that lack <abbr title=\"Prefix Delegation\">PD</abbr>.</" +#~ "li> <li><strong>hybrid mode</strong>: Router does combination of server" +#~ "+relay.</li></ul>" #~ msgstr "" #~ "<ul style=\"list-style-type:none;\"> <li><strong>режим сервера</strong>: " -#~ "Маршрутизатор назначает IP-адреса и делегирует префиксы (<abbr " -#~ "title=\"Prefix Delegation\">PD</abbr>) интерфейсам нисходящего потока.</" -#~ "li> <li><strong>режим передачи</strong>: Маршрутизатор передаёт " -#~ "конфигурацию WAN интерфейса в нисходящих поток. Помогает поддерживать " -#~ "восходящие соединения, в которых отсутствует <abbr title=\"Prefix " -#~ "Delegation\">PD</abbr>.</li> <li><strong>гибридный режим</strong>: " -#~ "Маршрутизатор работает в комбинации режимов сервера и передачи.</li></ul>" +#~ "Маршрутизатор назначает IP-адреса и делегирует префиксы (<abbr title=" +#~ "\"Prefix Delegation\">PD</abbr>) интерфейсам нисходящего потока.</li> " +#~ "<li><strong>режим передачи</strong>: Маршрутизатор передаёт конфигурацию " +#~ "WAN интерфейса в нисходящих поток. Помогает поддерживать восходящие " +#~ "соединения, в которых отсутствует <abbr title=\"Prefix Delegation\">PD</" +#~ "abbr>.</li> <li><strong>гибридный режим</strong>: Маршрутизатор работает " +#~ "в комбинации режимов сервера и передачи.</li></ul>" #~ msgid "Always, even if no public prefix is available." #~ msgstr "Всегда, даже если нет публичного префикса." @@ -10975,16 +11073,15 @@ msgstr "« Назад" #~ "DHCPv6.</li> <li><strong>stateful-only</strong>: No SLAAC. Router assigns " #~ "an IPv6 address to a host via DHCPv6.</li></ul>" #~ msgstr "" -#~ "Значение по умолчанию — 'без и с сохранением состояния'<br /> <ul " -#~ "style=\"list-style-type:none;\"> <li><strong>без сохранения состояния</" -#~ "strong>: Маршрутизатор объявляет префиксы, хост использует <abbr title=\\" -#~ "\\\\\"Stateless Address Auto Config\\\\\\\">SLAAC</abbr> для " -#~ "самостоятельного назначения своего адреса. DHCPv6 не используется.</li> " -#~ "<li><strong>без и с сохранением состояния</strong>: В дополнение к SLAAC " -#~ "маршрутизатор назначает IPv6-адрес хосту через DHCPv6.</li> " -#~ "<li><strong>только с сохранением состояния</strong>: SLAAC не " -#~ "используется. Маршрутизатор назначает IPv6-адрес хосту через DHCPv6.</" -#~ "li></ul>" +#~ "Значение по умолчанию — 'без и с сохранением состояния'<br /> <ul style=" +#~ "\"list-style-type:none;\"> <li><strong>без сохранения состояния</strong>: " +#~ "Маршрутизатор объявляет префиксы, хост использует <abbr title=\\\\\\" +#~ "\"Stateless Address Auto Config\\\\\\\">SLAAC</abbr> для самостоятельного " +#~ "назначения своего адреса. DHCPv6 не используется.</li> <li><strong>без и " +#~ "с сохранением состояния</strong>: В дополнение к SLAAC маршрутизатор " +#~ "назначает IPv6-адрес хосту через DHCPv6.</li> <li><strong>только с " +#~ "сохранением состояния</strong>: SLAAC не используется. Маршрутизатор " +#~ "назначает IPv6-адрес хосту через DHCPv6.</li></ul>" #~ msgid "Learn routes from NDP" #~ msgstr "Изучать маршруты с помощью NDP" @@ -11057,13 +11154,13 @@ msgstr "« Назад" #~ "SLAAC.<br /> <ul style=\"list-style-type:none;\"> <li><strong>disabled</" #~ "strong>: Никакие <abbr title=\"Протокол обнаружения соседей\">NDP</abbr> " #~ "сообщения не проксируются через true интерфейсы <code>ndproxy_slave</" -#~ "code>.</li> <li><strong>режим реле</strong>: Сообщения прокси <abbr " -#~ "title=\"Протокол обнаружения соседей\">NDP</abbr> из <code>master</code> " -#~ "через true интерфейсы <code>ndproxy_slave</code>. Helps to support " -#~ "provider links without <abbr title=\"Prefix Delegation\">PD</abbr>, and " -#~ "to firewall proxied hosts.</li> <li><strong>гибридный режим</strong>: " -#~ "Режим реле отключен, если логический интерфейс <code>master</code> " -#~ "является 1.</li></ul>" +#~ "code>.</li> <li><strong>режим реле</strong>: Сообщения прокси <abbr title=" +#~ "\"Протокол обнаружения соседей\">NDP</abbr> из <code>master</code> через " +#~ "true интерфейсы <code>ndproxy_slave</code>. Helps to support provider " +#~ "links without <abbr title=\"Prefix Delegation\">PD</abbr>, and to " +#~ "firewall proxied hosts.</li> <li><strong>гибридный режим</strong>: Режим " +#~ "реле отключен, если логический интерфейс <code>master</code> является 1.</" +#~ "li></ul>" #~ msgid "" #~ "Router Lifetime published in <abbr title=\"Router Advertisement, ICMPv6 " @@ -11091,9 +11188,9 @@ msgstr "« Назад" #~ "1280." #~ msgid "" -#~ "The maximum hops to be published in <abbr title=\"Router " -#~ "Advertisement\">RA</abbr> messages.<br />Default is 0 (<code>0</code>), " -#~ "meaning unspecified. Max 255." +#~ "The maximum hops to be published in <abbr title=\"Router Advertisement" +#~ "\">RA</abbr> messages.<br />Default is 0 (<code>0</code>), meaning " +#~ "unspecified. Max 255." #~ msgstr "" #~ "Максимальное число прыжков, публикуемое в <abbr title=\"Router " #~ "Advertisement\">RA</abbr> сообщениях.<br />По умолчанию 0 <code>0</" @@ -11134,9 +11231,9 @@ msgstr "« Назад" #~ "адрес хосту через DHCPv6.</li><ul>" #~ msgid "" -#~ "The maximum hops to be published in <abbr title=\"Router " -#~ "Advertisement\">RA</abbr> messages.<br>Default is 0 (<code>0</code>), " -#~ "meaning unspecified. Max 255." +#~ "The maximum hops to be published in <abbr title=\"Router Advertisement" +#~ "\">RA</abbr> messages.<br>Default is 0 (<code>0</code>), meaning " +#~ "unspecified. Max 255." #~ msgstr "" #~ "Максимальное число прыжков, публикуемое в <abbr title=\"Router " #~ "Advertisement\">RA</abbr> сообщениях. По умолчанию 0 (<code>0</code>), то " @@ -11409,11 +11506,11 @@ msgstr "« Назад" #~ msgid "" #~ "The filesystem that was used to format the memory (<abbr title=\"for " -#~ "example\">e.g.</abbr> <samp><abbr title=\"Third Extended " -#~ "Filesystem\">ext3</abbr></samp>)" +#~ "example\">e.g.</abbr> <samp><abbr title=\"Third Extended Filesystem" +#~ "\">ext3</abbr></samp>)" #~ msgstr "" -#~ "Файловая система (<abbr title=\"например\">напр.</abbr> <samp><abbr " -#~ "title=\"Third Extended Filesystem\">ext3</abbr></samp>)." +#~ "Файловая система (<abbr title=\"например\">напр.</abbr> <samp><abbr title=" +#~ "\"Third Extended Filesystem\">ext3</abbr></samp>)." #~ msgid "" #~ "The flash image was uploaded. Below is the checksum and file size listed, " diff --git a/modules/luci-base/po/sk/base.po b/modules/luci-base/po/sk/base.po index da5f28b740..9355a2ec7d 100644 --- a/modules/luci-base/po/sk/base.po +++ b/modules/luci-base/po/sk/base.po @@ -231,6 +231,18 @@ msgstr "" msgid "<abbr title=\"Router Advertisement\">RA</abbr>-Service" msgstr "" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:294 +msgid "" +"<code>/#/</code> matches any domain. <code>/example.com/</code> returns " +"NXDOMAIN." +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:295 +msgid "" +"<code>/example.com/#</code> returns NULL addresses (<code>0.0.0.0</code> and " +"<code>::</code>) for example.com and its subdomains." +msgstr "" + #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:87 msgctxt "nft relational \">\" operator expression" msgid "<var>%s</var> greater than <strong>%s</strong>" @@ -389,7 +401,7 @@ msgstr "" msgid "ATM device number" msgstr "Číslo zariadenia ATM" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:36 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:37 msgid "ATU-C System Vendor ID" msgstr "" @@ -399,7 +411,7 @@ msgstr "" msgid "Absent Interface" msgstr "Chýbajúce rozhranie" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:320 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:325 msgid "Accept DNS queries only from hosts whose address is on a local subnet." msgstr "Obmedzenie služby DNS rozhraniam podsietí, ktorým sa poskytuje DNS." @@ -538,7 +550,7 @@ msgstr "Pridať inštanciu" msgid "Add key" msgstr "Pridať kľúč" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:410 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:415 msgid "Add local domain suffix to names served from hosts files." msgstr "" @@ -559,11 +571,11 @@ msgstr "" msgid "Add to Whitelist" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:367 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:372 msgid "Additional hosts files" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:417 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:422 msgid "Additional servers file" msgstr "Súbor s dodatočnými servermi" @@ -593,7 +605,7 @@ msgstr "" msgid "Address to access local relay bridge" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:289 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:291 msgid "Addresses" msgstr "" @@ -626,7 +638,7 @@ msgstr "" msgid "Aggregate Originator Messages" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:27 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:28 msgid "Aggregate Transmit Power (ACTATP)" msgstr "" @@ -662,17 +674,17 @@ msgstr "Prezývka rozhrania" msgid "Alias of \"%s\"" msgstr "Prezývka pre „%s“" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:427 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:432 msgid "All servers" msgstr "Všetky servery" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:378 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:383 msgid "" "Allocate IP addresses sequentially, starting from the lowest available " "address." msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:377 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:382 msgid "Allocate IPs sequentially" msgstr "" @@ -700,7 +712,7 @@ msgstr "Umožniť zastaralé rýchlosti 802.11b" msgid "Allow listed only" msgstr "Povoliť iba zo zoznamu" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:306 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:311 msgid "Allow localhost" msgstr "" @@ -744,7 +756,7 @@ msgstr "" msgid "Always on (kernel: default-on)" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:538 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:543 msgid "Always send DHCP Options. Sometimes needed, with e.g. PXELinux." msgstr "" @@ -773,7 +785,7 @@ msgid "An optional, short description for this device" msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1484 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:20 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:21 msgid "Annex" msgstr "" @@ -887,7 +899,7 @@ msgstr "" msgid "Any zone" msgstr "Akákoľvek zóna" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:532 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:537 msgid "Apply DHCP Options to this net. (Empty = all clients)." msgstr "" @@ -978,11 +990,11 @@ msgstr "Overenie totožnosti" msgid "Authentication Type" msgstr "Typ overenia totožnosti" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:265 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:267 msgid "Authoritative" msgstr "Autoritatívny" -#: modules/luci-base/luasrc/view/sysauth.htm:17 +#: modules/luci-base/ucode/template/sysauth.ut:17 #: themes/luci-theme-bootstrap/htdocs/luci-static/resources/view/bootstrap/sysauth.js:11 msgid "Authorization Required" msgstr "Vyžaduje sa overenie totožnosti" @@ -1052,7 +1064,7 @@ msgstr "Priemer:" msgid "Avoid Bridge Loops" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:388 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:393 msgid "" "Avoid uselessly triggering dial-on-demand links (filters SRV/SOA records and " "names with underscores)." @@ -1087,10 +1099,6 @@ msgstr "" msgid "Back to Overview" msgstr "Späť na prehľad" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:48 -msgid "Back to configuration" -msgstr "Späť na konfiguráciu" - #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:826 msgid "Back to peer configuration" msgstr "" @@ -1104,7 +1112,6 @@ msgid "Backup / Flash Firmware" msgstr "Zálohovať / nahrať firmvér" #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:351 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:12 msgid "Backup file list" msgstr "" @@ -1146,7 +1153,6 @@ msgid "Beacon Interval" msgstr "" #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:352 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:46 msgid "" "Below is the determined list of files to backup. It consists of changed " "configuration files marked by opkg, essential base files and the user " @@ -1157,7 +1163,7 @@ msgstr "" msgid "Bind NTP server" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:326 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:331 msgid "Bind dynamically to interfaces rather than wildcard address." msgstr "" @@ -1173,6 +1179,17 @@ msgstr "" msgid "Bind interface" msgstr "Previazať rozhranie" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:595 +msgid "" +"Bind service records to a domain name: specify the location of services." +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:556 +msgid "" +"Bind service records to a domain name: specify the location of services. See " +"<a href=\"%s\">RFC2782</a>." +msgstr "" + #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:59 #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:64 #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:64 @@ -1275,6 +1292,10 @@ msgstr "" msgid "CLAT configuration failed" msgstr "" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:574 +msgid "CNAME or fqdn" +msgstr "" + #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/processes.js:72 msgid "CPU usage (%)" msgstr "Využitie CPU (%)" @@ -1519,17 +1540,13 @@ msgid "" "persist connection" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:49 -msgid "Close list..." -msgstr "Zavrieť zoznam..." - #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:44 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:63 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2184 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:391 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:352 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:355 -#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:72 +#: themes/luci-theme-material/ucode/template/themes/material/header.ut:66 msgid "Collecting data..." msgstr "Zbieram dáta..." @@ -1564,6 +1581,10 @@ msgstr "" msgid "Compute outgoing checksum (optional)." msgstr "" +#: protocols/luci-proto-nebula/htdocs/luci-static/resources/protocol/nebula.js:40 +msgid "Config File" +msgstr "" + #: modules/luci-base/htdocs/luci-static/resources/ui.js:4375 #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:454 msgid "Configuration" @@ -1603,8 +1624,8 @@ msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:764 msgid "" -"Configures the operation mode of the <abbr title=\"Router " -"Advertisement\">RA</abbr> service on this interface." +"Configures the operation mode of the <abbr title=\"Router Advertisement" +"\">RA</abbr> service on this interface." msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:879 @@ -1780,8 +1801,8 @@ msgstr "" #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/leds.js:59 msgid "" -"Customizes the behaviour of the device <abbr title=\"Light Emitting " -"Diode\">LED</abbr>s if possible." +"Customizes the behaviour of the device <abbr title=\"Light Emitting Diode" +"\">LED</abbr>s if possible." msgstr "" "Umožní prispôsobiť správanie <abbr title=\"Light Emitting Diode\">LED</abbr> " "diód zariadenia, ak je to možné." @@ -1802,7 +1823,7 @@ msgstr "" msgid "DAE-Secret" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:525 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:530 msgid "DHCP Options" msgstr "" @@ -1842,11 +1863,11 @@ msgstr "Služba DHCPv6" msgid "DNS" msgstr "DNS" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:282 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:284 msgid "DNS forwardings" msgstr "Presmerovania DNS" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:445 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:450 msgid "DNS query port" msgstr "<abbr title=\"Doménový názvový systém\">DNS</abbr> dotaz na port" @@ -1854,7 +1875,7 @@ msgstr "<abbr title=\"Doménový názvový systém\">DNS</abbr> dotaz na port" msgid "DNS search domains" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:438 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:443 msgid "DNS server port" msgstr "Port <abbr title=\"Doménový názvový systém\">DNS</abbr> servera" @@ -1870,11 +1891,11 @@ msgstr "" msgid "DNS-Label / FQDN" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:397 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:402 msgid "DNSSEC" msgstr "DNSSEC" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:402 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:407 msgid "DNSSEC check unsigned" msgstr "" @@ -1887,11 +1908,11 @@ msgid "DS-Lite AFTR address" msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1481 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:44 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:45 msgid "DSL" msgstr "DSL" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:14 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:15 msgid "DSL Status" msgstr "Stav DSL" @@ -1904,12 +1925,12 @@ msgid "DTIM Interval" msgstr "Interval DTIM" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:59 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:700 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:771 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:136 msgid "DUID" msgstr "DUID" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:21 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:22 msgid "Data Rate" msgstr "Prenosová rýchlosť" @@ -2152,7 +2173,7 @@ msgstr "" msgid "Disassociate On Low Acknowledgement" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:302 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:307 msgid "" "Discard upstream responses containing <a href=\"%s\">RFC1918</a> addresses." msgstr "" @@ -2198,7 +2219,7 @@ msgstr "Vzdialenosť v metroch k najvzdialenejšiemu členovi siete." msgid "Distributed ARP Table" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:543 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:548 msgid "" "Dnsmasq instance to which this boot section is bound. If unspecified, the " "section is valid for all dnsmasq instances." @@ -2206,12 +2227,12 @@ msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:246 msgid "" -"Dnsmasq is a lightweight <abbr title=\"Dynamic Host Configuration " -"Protocol\">DHCP</abbr> server and <abbr title=\"Domain Name System\">DNS</" -"abbr> forwarder." +"Dnsmasq is a lightweight <abbr title=\"Dynamic Host Configuration Protocol" +"\">DHCP</abbr> server and <abbr title=\"Domain Name System\">DNS</abbr> " +"forwarder." msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:414 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:419 msgid "Do not cache negative replies, e.g. for non-existent domains." msgstr "" @@ -2223,15 +2244,15 @@ msgstr "" msgid "Do not create host route to peer (optional)." msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:262 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:264 msgid "Do not forward DNS queries without dots or domain parts." msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:383 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:388 msgid "Do not forward reverse lookups for local networks." msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:339 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:344 msgid "Do not listen on the specified interfaces." msgstr "Zabránenie načúvaniu na týchto rozhraniach." @@ -2284,15 +2305,16 @@ msgstr "" msgid "Do you want to replace the current keys?" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:593 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:606 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:664 msgid "Domain" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:261 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:263 msgid "Domain required" msgstr "Vyžaduje sa doména" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:311 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:316 msgid "Domain whitelist" msgstr "Biela listina domén" @@ -2528,7 +2550,7 @@ msgstr "Povoliť klienta NTP" msgid "Enable Single DES" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:480 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:485 msgid "Enable TFTP server" msgstr "Povoliť server TFTP" @@ -2546,9 +2568,9 @@ msgstr "Povoliť tlačidlo WPS, vyžaduje WPA(2)-PSK/WPA3-SAE" #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/uhttpd.js:14 msgid "" -"Enable automatic redirection of <abbr title=\"Hypertext Transfer " -"Protocol\">HTTP</abbr> requests to <abbr title=\"Hypertext Transfer Protocol " -"Secure\">HTTPS</abbr> port." +"Enable automatic redirection of <abbr title=\"Hypertext Transfer Protocol" +"\">HTTP</abbr> requests to <abbr title=\"Hypertext Transfer Protocol Secure" +"\">HTTPS</abbr> port." msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:977 @@ -2611,7 +2633,7 @@ msgstr "" msgid "Enable the DF (Don't Fragment) flag of the encapsulating packets." msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:481 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:486 msgid "Enable the built-in single-instance TFTP server." msgstr "" @@ -2728,7 +2750,7 @@ msgstr "Chyba" msgid "Error getting PublicKey" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:29 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:30 msgid "Errored seconds (ES)" msgstr "" @@ -2750,11 +2772,11 @@ msgstr "" msgid "Every second (fast, 1)" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:338 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:343 msgid "Exclude interfaces" msgstr "Vylúčiť rozhrania" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:307 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:312 msgid "" "Exempt <code>127.0.0.0/8</code> and <code>::1</code> from rebinding checks, " "e.g. for RBL services." @@ -2764,7 +2786,7 @@ msgstr "" msgid "Existing device" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:409 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:414 msgid "Expand hosts" msgstr "" @@ -2900,7 +2922,7 @@ msgstr "" msgid "File" msgstr "Súbor" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:418 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:423 msgid "" "File listing upstream resolvers, optionally domain-specific, e.g. " "<code>server=1.2.3.4</code>, <code>server=/domain/1.2.3.4</code>." @@ -2910,20 +2932,20 @@ msgstr "" msgid "File not accessible" msgstr "Súbor nie je prístupný" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:349 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:354 msgid "File to store DHCP lease information." msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:357 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:362 msgid "File with upstream resolvers." msgstr "" #: modules/luci-base/htdocs/luci-static/resources/ui.js:2846 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:507 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:512 msgid "Filename" msgstr "Názov súboru" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:493 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:498 msgid "Filename of the boot image advertised to clients." msgstr "Názov súboru obrazu zavedenia oznámeného klientom" @@ -2932,11 +2954,11 @@ msgstr "Názov súboru obrazu zavedenia oznámeného klientom" msgid "Filesystem" msgstr "Súborový systém" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:382 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:387 msgid "Filter private" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:387 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:392 msgid "Filter useless" msgstr "" @@ -3000,7 +3022,7 @@ msgstr "Súbor firmvéru" msgid "Firmware Version" msgstr "Verzia firmvéru" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:446 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:451 msgid "Fixed source port for outbound DNS queries." msgstr "" @@ -3026,7 +3048,7 @@ msgstr "Operácie nahrávania" msgid "Flashing…" msgstr "Nahráva sa…" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:537 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:542 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:686 msgid "Force" msgstr "Vynútiť" @@ -3071,16 +3093,16 @@ msgstr "Vynútiť aktualizáciu" msgid "Force use of NAT-T" msgstr "" -#: modules/luci-base/luasrc/view/csrftoken.htm:8 +#: modules/luci-base/ucode/template/csrftoken.ut:8 msgid "Form token mismatch" msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:919 msgid "" -"Forward <abbr title=\"Neighbour Discovery Protocol\">NDP</abbr> <abbr " -"title=\"Neighbour Solicitation, Type 135\">NS</abbr> and <abbr " -"title=\"Neighbour Advertisement, Type 136\">NA</abbr> messages between the " -"designated master interface and downstream interfaces." +"Forward <abbr title=\"Neighbour Discovery Protocol\">NDP</abbr> <abbr title=" +"\"Neighbour Solicitation, Type 135\">NS</abbr> and <abbr title=\"Neighbour " +"Advertisement, Type 136\">NA</abbr> messages between the designated master " +"interface and downstream interfaces." msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:770 @@ -3100,7 +3122,7 @@ msgid "" "downstream interfaces." msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:28 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:29 msgid "Forward Error Correction Seconds (FECS)" msgstr "" @@ -3257,15 +3279,15 @@ msgstr "Globálne nastavenia" msgid "Global network options" msgstr "Globálne voľby siete" -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:82 -#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:89 -#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:74 +#: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/header.ut:70 +#: themes/luci-theme-material/ucode/template/themes/material/header.ut:84 +#: themes/luci-theme-openwrt-2020/ucode/template/themes/openwrt2020/header.ut:67 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:92 msgid "Go to firmware upgrade..." msgstr "" -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:72 -#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:64 +#: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/header.ut:60 +#: themes/luci-theme-openwrt-2020/ucode/template/themes/openwrt2020/header.ut:57 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:82 msgid "Go to password configuration..." msgstr "Prejsť na konfiguráciu hesla..." @@ -3406,7 +3428,7 @@ msgstr "" msgid "Hang Up" msgstr "Zložiť" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:33 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:34 msgid "Header Error Code Errors (HEC)" msgstr "" @@ -3460,7 +3482,7 @@ msgstr "Hostiteľ" msgid "Host expiry timeout" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:508 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:513 msgid "Host requests this filename from the boot server." msgstr "" @@ -3469,8 +3491,8 @@ msgid "Host-Uniq tag content" msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:38 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:559 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:607 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:630 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:678 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/10_system.js:54 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:87 #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:135 @@ -3485,7 +3507,7 @@ msgstr "Názov hostiteľa na odoslanie pri požadovaní servera DHCP" msgid "Hostnames" msgstr "Názvy hostiteľov" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:551 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:622 msgid "" "Hostnames are used to bind a domain name to an IP address. This setting is " "redundant for hostnames already configured with static leases, but it can be " @@ -3549,7 +3571,7 @@ msgstr "Adresy IP" msgid "IP Protocol" msgstr "Protokol IP" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:258 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:260 msgid "IP Sets" msgstr "" @@ -3557,7 +3579,7 @@ msgstr "" msgid "IP Type" msgstr "Typ IP" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:563 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:634 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:178 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:204 msgid "IP address" @@ -3583,15 +3605,15 @@ msgctxt "nft meta l4proto" msgid "IP protocol" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:589 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:660 msgid "IP set" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:295 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:300 msgid "IP sets" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:432 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:437 msgid "IPs to override with NXDOMAIN" msgstr "" @@ -3633,7 +3655,7 @@ msgstr "IPv4 prúd" #: modules/luci-base/htdocs/luci-static/resources/protocol/static.js:178 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:39 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:665 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:736 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:88 #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:164 msgid "IPv4 address" @@ -3804,7 +3826,7 @@ msgstr "" msgid "IPv6 suffix" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:706 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:777 msgid "IPv6 suffix (hex)" msgstr "" "<abbr title=\"Internetový Protokol Verzia 6\">IPv6</abbr>-Prípona (hex)" @@ -3897,13 +3919,13 @@ msgstr "" #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:340 msgid "" "If your physical memory is insufficient unused data can be temporarily " -"swapped to a swap-device resulting in a higher amount of usable <abbr " -"title=\"Random Access Memory\">RAM</abbr>. Be aware that swapping data is a " -"very slow process as the swap-device cannot be accessed with the high " -"datarates of the <abbr title=\"Random Access Memory\">RAM</abbr>." +"swapped to a swap-device resulting in a higher amount of usable <abbr title=" +"\"Random Access Memory\">RAM</abbr>. Be aware that swapping data is a very " +"slow process as the swap-device cannot be accessed with the high datarates " +"of the <abbr title=\"Random Access Memory\">RAM</abbr>." msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:363 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:368 msgid "Ignore <code>/etc/hosts</code>" msgstr "Ignorovať súbor <code>/etc/hosts</code>" @@ -3911,7 +3933,7 @@ msgstr "Ignorovať súbor <code>/etc/hosts</code>" msgid "Ignore interface" msgstr "Ignorovať rozhranie" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:352 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:357 msgid "Ignore resolv file" msgstr "" @@ -3959,7 +3981,7 @@ msgid "" "order to avoid broadcast loops that can bring the entire LAN to a standstill." msgstr "" -#: modules/luci-base/luasrc/view/csrftoken.htm:13 +#: modules/luci-base/ucode/template/csrftoken.ut:13 msgid "" "In order to prevent unauthorized access to the system, your request has been " "blocked. Click \"Continue »\" below to return to the previous page." @@ -4068,7 +4090,7 @@ msgstr "" msgid "Install protocol extensions..." msgstr "Inštalovať rozšírenia protokolu..." -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:542 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:547 msgid "Instance" msgstr "" @@ -4155,10 +4177,6 @@ msgstr "Rozhranie" msgid "Internal" msgstr "" -#: modules/luci-base/luasrc/view/error500.htm:8 -msgid "Internal Server Error" -msgstr "Interná chyba serveru" - #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:285 msgid "Interval For Sending Learning Packets" msgstr "" @@ -4227,8 +4245,8 @@ msgstr "Neplatný príkaz" msgid "Invalid hexadecimal value" msgstr "" -#: modules/luci-base/luasrc/view/sysauth.htm:12 -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/sysauth.htm:37 +#: modules/luci-base/ucode/template/sysauth.ut:12 +#: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/sysauth.ut:32 msgid "Invalid username and/or password! Please try again." msgstr "" @@ -4252,8 +4270,8 @@ msgstr "" "Zdá sa, že sa pokúšate nahrať obraz, ktorý sa nezmestí do pamäte flash. " "Prosím, overte súbor obrazu!" -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:89 -#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:96 +#: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/header.ut:77 +#: themes/luci-theme-material/ucode/template/themes/material/header.ut:91 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:72 msgid "JavaScript required!" msgstr "Vyžaduje sa JavaScript!" @@ -4385,11 +4403,17 @@ msgstr "Jazyk" msgid "Language and Style" msgstr "Jazyk a štýl" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:560 +msgid "" +"Larger weights (of the same prio) are given a proportionately higher " +"probability of being selected." +msgstr "" + #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:575 msgid "Last member interval" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:23 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:24 msgid "Latency" msgstr "Oneskorenie" @@ -4405,11 +4429,11 @@ msgstr "" msgid "Learn routes" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:348 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:353 msgid "Lease file" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:697 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:768 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:679 msgid "Lease time" msgstr "Čas prenájmu" @@ -4453,19 +4477,19 @@ msgstr "Legenda:" msgid "Limit" msgstr "Obmedzenie" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:24 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:25 msgid "Line Attenuation (LATN)" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:18 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:19 msgid "Line Mode" msgstr "Režim linky" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:17 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:18 msgid "Line State" msgstr "Stav linky" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:19 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:20 msgid "Line Uptime" msgstr "Doba pripojenia linky" @@ -4486,12 +4510,12 @@ msgctxt "nft @ll,off,len" msgid "Link layer header bits %d-%d" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:433 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:438 msgid "List of IP addresses to convert into NXDOMAIN responses." msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:296 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:581 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:301 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:652 msgid "List of IP sets to populate with the specified domain IPs." msgstr "" @@ -4517,15 +4541,11 @@ msgstr "" msgid "List of SSH key files for auth" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:312 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:317 msgid "List of domains to allow RFC1918 responses for." msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:290 -msgid "List of domains to force to an IP address." -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:283 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:285 msgid "List of upstream resolvers to forward queries to." msgstr "" "Zoznam serverov <abbr title=\"Domain Name System\">DNS</abbr>, ktorým sa " @@ -4535,7 +4555,7 @@ msgstr "" msgid "Listen Port" msgstr "Načúvací port" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:332 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:337 msgid "Listen interfaces" msgstr "Načúvacie rozhrania" @@ -4544,7 +4564,7 @@ msgid "Listen only on the given interface or, if unspecified, on all" msgstr "" "Načúvať iba na zadaných rozhraniach, alebo na všetkých, ak nie sú určené" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:333 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:338 msgid "" "Listen only on the specified interfaces, and loopback if not excluded " "explicitly." @@ -4554,7 +4574,7 @@ msgstr "Obmedzenie načúvanie na tieto rozhrania a slučku." msgid "ListenPort setting is invalid" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:439 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:444 msgid "Listening port for inbound DNS queries." msgstr "" @@ -4581,9 +4601,9 @@ msgid "Loading directory contents…" msgstr "Načítava sa obsah priečinka…" #: modules/luci-base/htdocs/luci-static/resources/luci.js:1942 -#: modules/luci-base/luasrc/view/view.htm:4 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:12 -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/sysauth.htm:45 +#: modules/luci-base/ucode/template/view.ut:4 +#: modules/luci-mod-status/ucode/template/admin_status/index.ut:12 +#: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/sysauth.ut:40 msgid "Loading view…" msgstr "Načítava sa zobrazenie…" @@ -4641,19 +4661,19 @@ msgstr "Miestny čas" msgid "Local ULA" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:273 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:275 msgid "Local domain" msgstr "Miestna doména" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:274 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:276 msgid "Local domain suffix appended to DHCP names and hosts file entries." msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:269 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:271 msgid "Local server" msgstr "Miestny server" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:319 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:324 msgid "Local service only" msgstr "Iba miestna služba" @@ -4661,7 +4681,7 @@ msgstr "Iba miestna služba" msgid "Local wireguard key" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:392 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:397 msgid "Localise queries" msgstr "Lokalizovať požiadavky" @@ -4673,7 +4693,7 @@ msgstr "" msgid "Log output level" msgstr "Úroveň výstupného záznamu" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:277 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:279 msgid "Log queries" msgstr "" @@ -4697,8 +4717,8 @@ msgstr "" msgid "Logical network to which the tunnel will be added (bridged) (optional)." msgstr "" -#: modules/luci-base/luasrc/view/sysauth.htm:38 -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/sysauth.htm:41 +#: modules/luci-base/ucode/template/sysauth.ut:38 +#: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/sysauth.ut:36 msgid "Login" msgstr "Prihlásiť sa" @@ -4710,7 +4730,7 @@ msgstr "Odhlásiť sa" msgid "Loose filtering" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:31 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:32 msgid "Loss of Signal Seconds (LOSS)" msgstr "Sekundy straty signálu (LOSS)" @@ -4718,6 +4738,10 @@ msgstr "Sekundy straty signálu (LOSS)" msgid "Lowest leased address as offset from the network address." msgstr "" +#: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/footer.ut:12 +msgid "Lua compatibility mode active" +msgstr "" + #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:48 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:83 msgid "MAC" @@ -4742,7 +4766,7 @@ msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:591 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:40 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:619 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:690 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1164 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2177 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:56 @@ -4801,6 +4825,10 @@ msgstr "" msgid "MTU" msgstr "MTU" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:259 +msgid "MX" +msgstr "" + #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:303 msgid "" "Make sure to clone the root filesystem using something like the commands " @@ -4825,23 +4853,23 @@ msgstr "" msgid "Max <abbr title=\"Router Advertisement\">RA</abbr> interval" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:22 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:23 msgid "Max. Attainable Data Rate (ATTNDR)" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:452 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:457 msgid "Max. DHCP leases" msgstr "" "<abbr title=\"maximalny\">Max. počet</abbr> <abbr title=\"Konfiguračný " "protokol dynamického hostiteľa\">DHCP</abbr> prenájmov" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:459 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:464 msgid "Max. EDNS0 packet size" msgstr "" -"<abbr title=\"maximálna\">Max.</abbr> veľkosť paketu <abbr " -"title=\"Mechanizmy rozšírenia pre systém názvov domén\">EDNS0</abbr>" +"<abbr title=\"maximálna\">Max.</abbr> veľkosť paketu <abbr title=" +"\"Mechanizmy rozšírenia pre systém názvov domén\">EDNS0</abbr>" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:466 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:471 msgid "Max. concurrent queries" msgstr "<abbr title=\"maximálny\">Max.</abbr> počet súbežných dotazov" @@ -4853,15 +4881,15 @@ msgstr "" msgid "Maximum allowed Listen Interval" msgstr "Maximálny povolený interval načúvania" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:453 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:458 msgid "Maximum allowed number of active DHCP leases." msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:467 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:472 msgid "Maximum allowed number of concurrent DNS queries." msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:460 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:465 msgid "Maximum allowed size of EDNS0 UDP packets." msgstr "" @@ -4888,7 +4916,7 @@ msgstr "" msgid "Maximum transmit power" msgstr "Maximálny vysielací výkon" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:389 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:394 msgid "May prevent VoIP or other services from working." msgstr "" @@ -5202,11 +5230,15 @@ msgstr "Názov novej siete" msgid "Name of the tunnel device" msgstr "" -#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:46 +#: themes/luci-theme-openwrt-2020/ucode/template/themes/openwrt2020/header.ut:39 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:50 msgid "Navigation" msgstr "Navigácia" +#: protocols/luci-proto-nebula/htdocs/luci-static/resources/protocol/nebula.js:10 +msgid "Nebula Network" +msgstr "" + #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:653 msgid "Neighbour cache validity" msgstr "" @@ -5242,7 +5274,7 @@ msgstr "Sieťové nástroje" msgid "Network address" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:492 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:497 msgid "Network boot image" msgstr "Obraz sieťového zavedenia" @@ -5282,7 +5314,7 @@ msgstr "" msgid "Network interface" msgstr "Sieťové rozhranie" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:531 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:536 msgid "Network-ID" msgstr "" @@ -5290,7 +5322,7 @@ msgstr "" msgid "Never" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:270 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:272 msgid "" "Never forward matching domains and subdomains, resolve from DHCP or hosts " "files only." @@ -5338,9 +5370,9 @@ msgstr "Bez NAT-T" msgid "No RX signal" msgstr "" -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:80 -#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:87 -#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:72 +#: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/header.ut:68 +#: themes/luci-theme-material/ucode/template/themes/material/header.ut:82 +#: themes/luci-theme-openwrt-2020/ucode/template/themes/openwrt2020/header.ut:65 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:90 msgid "" "No changes to settings will be stored and are lost after rebooting. This " @@ -5382,10 +5414,6 @@ msgstr "" msgid "No entries in this directory" msgstr "V tomto adresári nie sú žiadne položky" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:82 -msgid "No files found" -msgstr "Nenašli sa žiadne súbory" - #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:833 msgid "" "No fixed interface listening port defined, peers might not be able to " @@ -5421,7 +5449,7 @@ msgstr "" msgid "No more slaves available, can not save interface" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:413 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:418 msgid "No negative cache" msgstr "" @@ -5429,8 +5457,8 @@ msgstr "" msgid "No nftables ruleset loaded." msgstr "" -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:69 -#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:61 +#: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/header.ut:57 +#: themes/luci-theme-openwrt-2020/ucode/template/themes/openwrt2020/header.ut:54 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:79 msgid "No password set!" msgstr "Nie je nastavené heslo!" @@ -5470,7 +5498,7 @@ msgstr "Žiadna priradená zóna" msgid "Noise" msgstr "Šum" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:26 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:27 msgid "Noise Margin (SNR)" msgstr "" @@ -5478,11 +5506,11 @@ msgstr "" msgid "Noise:" msgstr "Šum:" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:34 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:35 msgid "Non Pre-emptive CRC errors (CRC_P)" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:325 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:330 msgid "Non-wildcard" msgstr "" @@ -5497,7 +5525,7 @@ msgstr "" msgid "Normal" msgstr "" -#: modules/luci-base/luasrc/view/error404.htm:8 +#: modules/luci-base/ucode/template/error404.ut:9 msgid "Not Found" msgstr "Nenájdené" @@ -5547,7 +5575,7 @@ msgstr "" msgid "Number of IGMP membership reports" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:474 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:479 msgid "Number of cached DNS entries, 10000 is maximum, 0 is no caching." msgstr "" @@ -5596,7 +5624,7 @@ msgstr "" msgid "On-link" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:672 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:743 msgid "One of hostname or MAC address must be specified!" msgstr "" @@ -5632,7 +5660,6 @@ msgid "Open iptables rules overview…" msgstr "" #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:472 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:19 msgid "Open list..." msgstr "Otvoriť zoznam..." @@ -5776,18 +5803,23 @@ msgstr "" msgid "Options" msgstr "Voľby" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:526 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:531 msgid "" "Options for the Network-ID. (Note: needs also Network-ID.) E.g. " -"\"<code>42,192.168.1.4</code>\" for NTP server, \"<code>3,192.168.4.4</" -"code>\" for default route. <code>0.0.0.0</code> means \"the address of the " -"system running dnsmasq\"." +"\"<code>42,192.168.1.4</code>\" for NTP server, \"<code>3,192.168.4.4</code>" +"\" for default route. <code>0.0.0.0</code> means \"the address of the system " +"running dnsmasq\"." msgstr "" #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:125 msgid "Options:" msgstr "" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:584 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:616 +msgid "Ordinal: lower comes first." +msgstr "" + #: protocols/luci-proto-batman-adv/htdocs/luci-static/resources/protocol/batadv.js:55 msgid "Originator Interval" msgstr "" @@ -6059,13 +6091,13 @@ msgctxt "MACVLAN mode" msgid "Pass-through (Mirror physical device to single MAC VLAN)" msgstr "" -#: modules/luci-base/luasrc/view/sysauth.htm:29 +#: modules/luci-base/ucode/template/sysauth.ut:29 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1690 #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:51 #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:114 #: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:103 #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:58 -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/sysauth.htm:24 +#: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/sysauth.ut:19 msgid "Password" msgstr "Heslo" @@ -6236,7 +6268,7 @@ msgstr "Ping" msgid "Pkts." msgstr "" -#: modules/luci-base/luasrc/view/sysauth.htm:19 +#: modules/luci-base/ucode/template/sysauth.ut:19 msgid "Please enter your username and password." msgstr "Prosím, zadajte vaše používateľské meno a heslo." @@ -6253,6 +6285,7 @@ msgctxt "Chain hook policy" msgid "Policy: <strong>%h</strong> (%h)" msgstr "" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:579 #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/dropbear.js:21 msgid "Port" msgstr "Port" @@ -6269,11 +6302,11 @@ msgstr "Stav portu:" msgid "Potential negation of: %s" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:37 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:38 msgid "Power Management Mode" msgstr "Režim správy napájania" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:35 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:36 msgid "Pre-emptive CRC errors (CRCP_P)" msgstr "" @@ -6346,6 +6379,8 @@ msgid "Primary becomes active slave whenever it comes back up (always, 0)" msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:508 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:584 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:616 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:129 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:197 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:223 @@ -6461,7 +6496,7 @@ msgstr "" msgid "Quality" msgstr "Kvalita" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:428 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:433 msgid "Query all available upstream resolvers." msgstr "" @@ -6543,11 +6578,11 @@ msgstr "" msgid "Raw hex-encoded bytes. Leave empty unless your ISP require this" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:345 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:350 msgid "Read <code>/etc/ethers</code> to configure the DHCP server." msgstr "" -"Prečítanie súboru <code>/etc/ethers</code> na nastavenie servera <abbr " -"title=\"Dynamic Host Configuration Protocol\">DHCP</abbr>" +"Prečítanie súboru <code>/etc/ethers</code> na nastavenie servera <abbr title=" +"\"Dynamic Host Configuration Protocol\">DHCP</abbr>" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:559 msgid "Really switch protocol?" @@ -6561,7 +6596,7 @@ msgstr "Grafy v reálnom čase" msgid "Reassociation Deadline" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:301 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:306 msgid "Rebind protection" msgstr "" @@ -6646,6 +6681,7 @@ msgid "" msgstr "" #: modules/luci-compat/luasrc/model/network/proto_relay.lua:153 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:611 #: protocols/luci-proto-relay/htdocs/luci-static/resources/protocol/relay.js:39 msgid "Relay" msgstr "" @@ -6736,6 +6772,10 @@ msgstr "" msgid "Required. Base64-encoded private key for this interface." msgstr "" +#: protocols/luci-proto-nebula/htdocs/luci-static/resources/protocol/nebula.js:40 +msgid "Required. Path to the .yml config file for this interface." +msgstr "" + #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:587 msgid "Required. Public key of the WireGuard peer." msgstr "" @@ -6817,7 +6857,7 @@ msgid "Reselection policy for primary slave" msgstr "" #: modules/luci-base/htdocs/luci-static/resources/luci.js:2197 -#: modules/luci-base/luasrc/view/sysauth.htm:39 +#: modules/luci-base/ucode/template/sysauth.ut:39 #: modules/luci-compat/luasrc/view/cbi/delegator.htm:17 #: modules/luci-compat/luasrc/view/cbi/footer.htm:30 #: modules/luci-compat/luasrc/view/cbi/simpleform.htm:66 @@ -6836,10 +6876,14 @@ msgstr "Obnoviť na predvolené hodnoty" msgid "Resolv and Hosts Files" msgstr "Súbory Resolv a Hosts" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:356 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:361 msgid "Resolv file" msgstr "" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:292 +msgid "Resolve specified FQDNs to an IP." +msgstr "" + #: modules/luci-base/htdocs/luci-static/resources/rpc.js:405 msgid "Resource not found" msgstr "Prostriedok sa nenašiel" @@ -6866,7 +6910,7 @@ msgstr "Obnoviť" msgid "Restore backup" msgstr "Obnoviť zo zálohy" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:393 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:398 msgid "" "Return answers to DNS queries matching the subnet from which the query was " "received if multiple IPs are available." @@ -6952,7 +6996,7 @@ msgstr "" msgid "Robustness" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:486 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:491 msgid "" "Root directory for files served via TFTP. <em>Enable TFTP server</em> and " "<em>TFTP server root</em> turn on the TFTP server and serve files from " @@ -7057,6 +7101,11 @@ msgstr "SHA256" msgid "SNR" msgstr "" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:258 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:569 +msgid "SRV" +msgstr "" + #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/dropbear.js:10 #: modules/luci-mod-system/root/usr/share/luci/menu.d/luci-mod-system.json:38 msgid "SSH Access" @@ -7194,11 +7243,11 @@ msgstr "" msgid "Server" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:519 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:524 msgid "Server address" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:513 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:518 msgid "Server name" msgstr "" @@ -7286,7 +7335,7 @@ msgstr "" msgid "Setup routes for proxied IPv6 neighbours." msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:30 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:31 msgid "Severely Errored Seconds (SES)" msgstr "" @@ -7300,7 +7349,6 @@ msgid "Short Preamble" msgstr "" #: 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 msgid "Show current backup file list" msgstr "" @@ -7334,7 +7382,7 @@ msgstr "Signál" msgid "Signal / Noise" msgstr "Signál / Šum" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:25 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:26 msgid "Signal Attenuation (SATN)" msgstr "" @@ -7351,7 +7399,7 @@ msgstr "Signál:" msgid "Size" msgstr "Veľkosť" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:473 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:478 msgid "Size of DNS query cache" msgstr "" @@ -7368,12 +7416,12 @@ msgstr "Preskočiť" msgid "Skip from backup files that are equal to those in /rom" msgstr "" -#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:42 +#: themes/luci-theme-openwrt-2020/ucode/template/themes/openwrt2020/header.ut:35 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:46 msgid "Skip to content" msgstr "Preskočiť na obsah" -#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:41 +#: themes/luci-theme-openwrt-2020/ucode/template/themes/openwrt2020/header.ut:34 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:45 msgid "Skip to navigation" msgstr "Preskočiť na navigáciu" @@ -7391,14 +7439,10 @@ msgstr "Softvérová VLAN" msgid "Some fields are invalid, cannot save values!" msgstr "Niektoré polia sú neplatné. Nedajú sa uložiť hodnoty!" -#: modules/luci-base/luasrc/view/error404.htm:9 +#: modules/luci-base/ucode/template/error404.ut:10 msgid "Sorry, the object you requested was not found." msgstr "Prepáčte, objekt, ktorý ste požadovali sa nenašiel." -#: modules/luci-base/luasrc/view/error500.htm:9 -msgid "Sorry, the server encountered an unexpected error." -msgstr "Prepáčte, serve narazil na neočakávanú chybu." - #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:442 msgid "" "Sorry, there is no sysupgrade support present; a new firmware image must be " @@ -7434,7 +7478,7 @@ msgctxt "nft ip sport" msgid "Source port" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:500 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:505 msgid "" "Special <abbr title=\"Preboot eXecution Environment\">PXE</abbr> boot " "options for Dnsmasq." @@ -7805,7 +7849,7 @@ msgstr "Statické prenájmy" msgid "Static address" msgstr "Pevná adresa" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:598 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:669 msgid "" "Static leases are used to assign fixed IP addresses and symbolic hostnames " "to DHCP clients. They are also required for non-dynamic interface " @@ -7819,7 +7863,7 @@ msgstr "Limit nečinnosti stanice" #: modules/luci-base/root/usr/share/luci/menu.d/luci-base.json:16 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:541 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:929 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:9 +#: modules/luci-mod-status/ucode/template/admin_status/index.ut:9 msgid "Status" msgstr "Stav" @@ -7845,7 +7889,7 @@ msgstr "" msgid "Strict filtering" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:422 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:427 msgid "Strict order" msgstr "" @@ -7858,11 +7902,11 @@ msgstr "" msgid "Submit" msgstr "Odoslať" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:372 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:377 msgid "Suppress logging" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:373 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:378 msgid "Suppress logging of the routine operation for the DHCP protocol." msgstr "" @@ -7915,6 +7959,14 @@ msgstr "Synch. so serverom NTP" msgid "Sync with browser" msgstr "Synch. s prehliadačom" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:293 +msgid "Syntax: <code>/fqdn[/fqdn…]/[ipaddr]</code>." +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:569 +msgid "Syntax: <code>_service._proto.example.com</code>." +msgstr "" + #: modules/luci-base/root/usr/share/luci/menu.d/luci-base.json:26 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/10_system.js:17 #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:113 @@ -7940,9 +7992,9 @@ msgstr "Vlastnosti systému" msgid "System log buffer size" msgstr "Veľkosť vyrovnávacej pamäte systémového denníka" -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:79 -#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:86 -#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:71 +#: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/header.ut:67 +#: themes/luci-theme-material/ucode/template/themes/material/header.ut:81 +#: themes/luci-theme-openwrt-2020/ucode/template/themes/openwrt2020/header.ut:64 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:89 msgid "System running in recovery (initramfs) mode." msgstr "" @@ -7971,7 +8023,7 @@ msgstr "" msgid "TCP:" msgstr "TCP:" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:485 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:490 msgid "TFTP server root" msgstr "Koreňový priečinok servera TFTP" @@ -7996,6 +8048,7 @@ msgstr "" msgid "Table" msgstr "Tabuľka" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:574 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:56 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:66 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:187 @@ -8066,15 +8119,15 @@ msgid "" "username instead of the user ID!" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:681 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:752 msgid "The IP address %h is already used by another static lease" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:690 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:761 msgid "The IP address is outside of any DHCP pool address range" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:520 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:525 msgid "The IP address of the boot server" msgstr "" @@ -8247,7 +8300,7 @@ msgid "" "to be received and retransmitted which costs airtime)" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:514 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:519 msgid "The hostname of the boot server" msgstr "" @@ -8332,8 +8385,8 @@ msgstr "Názov siete sa už používa" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:139 msgid "" -"The network ports on this device can be combined to several <abbr " -"title=\"Virtual Local Area Network\">VLAN</abbr>s in which computers can " +"The network ports on this device can be combined to several <abbr title=" +"\"Virtual Local Area Network\">VLAN</abbr>s in which computers can " "communicate directly with each other. <abbr title=\"Virtual Local Area " "Network\">VLAN</abbr>s are often used to separate different network " "segments. Often there is by default one Uplink port for a connection to the " @@ -8384,7 +8437,7 @@ msgstr "" msgid "The selected %s mode is incompatible with %s encryption" msgstr "Vybraný režim %s nie je kompatibilný so šifrovaním %s" -#: modules/luci-base/luasrc/view/csrftoken.htm:11 +#: modules/luci-base/ucode/template/csrftoken.ut:11 msgid "The submitted security token is invalid or already expired!" msgstr "" @@ -8458,8 +8511,8 @@ msgid "" "nftables rules is discouraged and may lead to incomplete traffic filtering." msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:746 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:778 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:817 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:849 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:130 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:179 msgid "There are no active leases" @@ -8469,8 +8522,8 @@ msgstr "" msgid "There are no changes to apply" msgstr "Nie sú žiadne zmeny na aplikovanie" -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:70 -#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:62 +#: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/header.ut:58 +#: themes/luci-theme-openwrt-2020/ucode/template/themes/openwrt2020/header.ut:55 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:80 msgid "" "There is no password set on this router. Please configure a root password to " @@ -8494,7 +8547,6 @@ msgid "This does not look like a valid PEM file" msgstr "" #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:454 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:16 msgid "" "This is a list of shell glob patterns for matching files and directories to " "include during sysupgrade. Modified files in /etc/config/ and certain other " @@ -8532,11 +8584,11 @@ msgid "" "ends with <code>...:2/64</code>" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:266 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:268 msgid "This is the only DHCP server in the local network." msgstr "" -"Toto je jediný server <abbr title=\"Dynamic Host Configuration " -"Protocol\">DHCP</abbr> v miestnej sieti" +"Toto je jediný server <abbr title=\"Dynamic Host Configuration Protocol" +"\">DHCP</abbr> v miestnej sieti" #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6in4.js:73 msgid "This is the plain username for logging into the account" @@ -8615,8 +8667,8 @@ msgstr "Časové pásmo" #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:440 msgid "" "To fully configure the local WireGuard interface from an existing (e.g. " -"provider supplied) configuration file, use the <strong><a class=\"full-" -"import\" href=\"#\">configuration import</a></strong> instead." +"provider supplied) configuration file, use the <strong><a class=\"full-import" +"\" href=\"#\">configuration import</a></strong> instead." msgstr "" #: modules/luci-base/htdocs/luci-static/resources/luci.js:2674 @@ -8782,7 +8834,7 @@ msgstr "" msgid "Unable to determine upstream interface" msgstr "" -#: modules/luci-base/luasrc/view/error404.htm:11 +#: modules/luci-base/ucode/template/error404.ut:12 msgid "Unable to dispatch" msgstr "" @@ -8837,7 +8889,7 @@ msgstr "Nie je možné uložiť obsah: %s" msgid "Unable to verify PIN" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:32 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:33 msgid "Unavailable Seconds (UAS)" msgstr "" @@ -8983,7 +9035,7 @@ msgid "" "will be restarted to apply the updated configuration." msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:423 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:428 msgid "Upstream resolvers will be queried in the order of the resolv file." msgstr "" "<abbr title=\"Doménový názvový systém\">DNS</abbr> servery budú dotazované v " @@ -8994,7 +9046,7 @@ msgstr "" msgid "Uptime" msgstr "Doba spustenia" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:344 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:349 msgid "Use <code>/etc/ethers</code>" msgstr "Použiť súbor <code>/etc/ethers</code>" @@ -9105,7 +9157,7 @@ msgstr "" msgid "Use system certificates for inner-tunnel" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:599 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:670 msgid "" "Use the <em>Add</em> Button to add a new lease entry. The <em>MAC address</" "em> identifies the host, the <em>IPv4 address</em> specifies the fixed " @@ -9156,11 +9208,11 @@ msgstr "" msgid "User key (PEM encoded)" msgstr "" -#: modules/luci-base/luasrc/view/sysauth.htm:23 +#: modules/luci-base/ucode/template/sysauth.ut:23 #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:112 #: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:101 #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:56 -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/sysauth.htm:18 +#: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/sysauth.ut:13 msgid "Username" msgstr "Používateľské meno" @@ -9258,7 +9310,7 @@ msgstr "" msgid "VXLANv6 (RFC7348)" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:398 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:403 msgid "" "Validate DNS replies and cache DNSSEC data, requires upstream to support " "DNSSEC." @@ -9291,7 +9343,7 @@ msgstr "Dodávateľ" msgid "Vendor Class to send when requesting DHCP" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:403 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:408 msgid "Verify unsigned domain responses really come from unsigned domains." msgstr "" @@ -9366,6 +9418,10 @@ msgstr "Varovanie: Existujú neuložené zmeny, ktoré sa pri reštarte stratia! msgid "Weak" msgstr "" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:589 +msgid "Weight" +msgstr "" + #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1029 msgid "" "When delegating prefixes to multiple downstreams, interfaces with a higher " @@ -9486,7 +9542,7 @@ msgstr "Bezdrôtová sieť je zakázaná" msgid "Wireless network is enabled" msgstr "Bezdrôtová sieť je povolená" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:278 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:280 msgid "Write received DNS queries to syslog." msgstr "" @@ -9525,8 +9581,16 @@ msgstr "" "základné iniciačné skripty, napríklad „sieť“, vaše zariadenie by sa mohlo " "stať neprístupným!</strong>" -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:90 -#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:97 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:559 +msgid "You may add multiple records for the same Target." +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:596 +msgid "You may add multiple records for the same domain." +msgstr "" + +#: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/header.ut:78 +#: themes/luci-theme-material/ucode/template/themes/material/header.ut:92 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:73 msgid "" "You must enable JavaScript in your browser or LuCI will not work properly." @@ -9555,7 +9619,17 @@ msgstr "Nastavenia ZRam" msgid "ZRam Size" msgstr "Veľkosť ZRam" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:449 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:558 +msgid "_proto: _tcp, _udp, _sctp, _quic, … ." +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:557 +msgid "" +"_service: _sip, _ldap, _imap, _stun, _xmpp-client, … . (Note: while _http is " +"possible, no browsers support SRV records.)" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:454 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:152 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:163 msgid "any" @@ -9666,8 +9740,8 @@ msgstr "" msgid "e.g: dump" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:726 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:756 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:797 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:827 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:101 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:148 msgid "expired" @@ -9878,9 +9952,9 @@ msgstr "jedinečná hodnota" msgid "unknown" msgstr "neznámy" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:456 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:724 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:754 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:461 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:795 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:825 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:99 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:146 msgid "unlimited" @@ -10096,6 +10170,21 @@ msgstr "áno" msgid "« Back" msgstr "« Späť" +#~ msgid "Back to configuration" +#~ msgstr "Späť na konfiguráciu" + +#~ msgid "Close list..." +#~ msgstr "Zavrieť zoznam..." + +#~ msgid "Internal Server Error" +#~ msgstr "Interná chyba serveru" + +#~ msgid "No files found" +#~ msgstr "Nenašli sa žiadne súbory" + +#~ msgid "Sorry, the server encountered an unexpected error." +#~ msgstr "Prepáčte, serve narazil na neočakávanú chybu." + #~ msgid "Generate Key" #~ msgstr "Generovať kľúč" diff --git a/modules/luci-base/po/sv/base.po b/modules/luci-base/po/sv/base.po index fce2bcbc83..60c3820f0c 100644 --- a/modules/luci-base/po/sv/base.po +++ b/modules/luci-base/po/sv/base.po @@ -22,7 +22,6 @@ msgid "%.1f dB" msgstr "%.1f dB" #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:123 -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:117 msgid "%d Bit" msgstr "%d Bit" @@ -231,6 +230,18 @@ msgstr "<abbr title=\"Router Advertisement\">RA</abbr> MTU" msgid "<abbr title=\"Router Advertisement\">RA</abbr>-Service" msgstr "<abbr title=\"Router Advertisement\">RA</abbr>-tjänst" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:294 +msgid "" +"<code>/#/</code> matches any domain. <code>/example.com/</code> returns " +"NXDOMAIN." +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:295 +msgid "" +"<code>/example.com/#</code> returns NULL addresses (<code>0.0.0.0</code> and " +"<code>::</code>) for example.com and its subdomains." +msgstr "" + #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:87 msgctxt "nft relational \">\" operator expression" msgid "<var>%s</var> greater than <strong>%s</strong>" @@ -390,7 +401,7 @@ msgstr "" msgid "ATM device number" msgstr "ATM enhetsnummer" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:36 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:37 msgid "ATU-C System Vendor ID" msgstr "" @@ -400,7 +411,7 @@ msgstr "" msgid "Absent Interface" msgstr "Frånvarande gränssnitt" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:320 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:325 msgid "Accept DNS queries only from hosts whose address is on a local subnet." msgstr "" "Acceptera DNS-förfrågningar endast från värdar vars adress är i ett lokalt " @@ -538,12 +549,10 @@ msgstr "Lägg till instans" #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:171 #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:177 #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:274 -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:165 -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:268 msgid "Add key" msgstr "Lägg till nyckel" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:410 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:415 msgid "Add local domain suffix to names served from hosts files." msgstr "Lägg till lokala domänsuffix i namn från host-filer." @@ -564,11 +573,11 @@ msgstr "Lägg till i Blockeringslistan" msgid "Add to Whitelist" msgstr "Lägg till i Vitlista" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:367 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:372 msgid "Additional hosts files" msgstr "Ytterligare värdfiler" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:417 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:422 msgid "Additional servers file" msgstr "Ytterligare server-filer" @@ -598,7 +607,7 @@ msgstr "" msgid "Address to access local relay bridge" msgstr "Adress för att komma åt lokal reläbrygga" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:289 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:291 msgid "Addresses" msgstr "Adresser" @@ -631,7 +640,7 @@ msgstr "" msgid "Aggregate Originator Messages" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:27 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:28 msgid "Aggregate Transmit Power (ACTATP)" msgstr "" @@ -667,18 +676,18 @@ msgstr "Alias-gränssnitt" msgid "Alias of \"%s\"" msgstr "Alias för \"%s\"" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:427 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:432 msgid "All servers" msgstr "Alla Servrar" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:378 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:383 msgid "" "Allocate IP addresses sequentially, starting from the lowest available " "address." msgstr "" "Allokera IP-adresser sekventiellt med start från den lägsta möjliga adressen." -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:377 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:382 msgid "Allocate IPs sequentially" msgstr "Allokera IP sekventiellt" @@ -706,7 +715,7 @@ msgstr "" msgid "Allow listed only" msgstr "Tillåt enbart listade" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:306 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:311 msgid "Allow localhost" msgstr "Tillåt localhost" @@ -752,7 +761,7 @@ msgstr "Alltid av (kärna: ingen)" msgid "Always on (kernel: default-on)" msgstr "Alltid på (kärna: standard-på)" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:538 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:543 msgid "Always send DHCP Options. Sometimes needed, with e.g. PXELinux." msgstr "" "Skicka alltid DHCP-alternativ. Ibland så behövs det med till exempel " @@ -783,7 +792,7 @@ msgid "An optional, short description for this device" msgstr "En valfri, kort beskrivning för den här enheten" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1484 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:20 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:21 msgid "Annex" msgstr "Tillbyggnad" @@ -901,7 +910,7 @@ msgstr "" msgid "Any zone" msgstr "Någon zon" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:532 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:537 msgid "Apply DHCP Options to this net. (Empty = all clients)." msgstr "Verkställ DHCP-alternativ till det här nätet. (Tom = alla klienter)." @@ -994,11 +1003,11 @@ msgstr "Autentisering" msgid "Authentication Type" msgstr "Typ av autentisering" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:265 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:267 msgid "Authoritative" msgstr "Auktoritär" -#: modules/luci-base/luasrc/view/sysauth.htm:17 +#: modules/luci-base/ucode/template/sysauth.ut:17 #: themes/luci-theme-bootstrap/htdocs/luci-static/resources/view/bootstrap/sysauth.js:11 msgid "Authorization Required" msgstr "Tillstånd krävs" @@ -1068,7 +1077,7 @@ msgstr "Snitt:" msgid "Avoid Bridge Loops" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:388 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:393 msgid "" "Avoid uselessly triggering dial-on-demand links (filters SRV/SOA records and " "names with underscores)." @@ -1103,10 +1112,6 @@ msgstr "Bakåt" msgid "Back to Overview" msgstr "Backa till Överblick" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:48 -msgid "Back to configuration" -msgstr "Backa till konfiguration" - #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:826 msgid "Back to peer configuration" msgstr "" @@ -1120,7 +1125,6 @@ msgid "Backup / Flash Firmware" msgstr "Säkerhetskopiera / Flasha inre mjukvara" #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:351 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:12 msgid "Backup file list" msgstr "Säkerhetskopiera fillista" @@ -1162,7 +1166,6 @@ msgid "Beacon Interval" msgstr "" #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:352 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:46 msgid "" "Below is the determined list of files to backup. It consists of changed " "configuration files marked by opkg, essential base files and the user " @@ -1173,7 +1176,7 @@ msgstr "" msgid "Bind NTP server" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:326 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:331 msgid "Bind dynamically to interfaces rather than wildcard address." msgstr "" @@ -1189,6 +1192,17 @@ msgstr "" msgid "Bind interface" msgstr "Bind gränssnitt" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:595 +msgid "" +"Bind service records to a domain name: specify the location of services." +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:556 +msgid "" +"Bind service records to a domain name: specify the location of services. See " +"<a href=\"%s\">RFC2782</a>." +msgstr "" + #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:59 #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:64 #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:64 @@ -1292,6 +1306,10 @@ msgstr "" msgid "CLAT configuration failed" msgstr "CLAT konfiguration misslyckades" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:574 +msgid "CNAME or fqdn" +msgstr "" + #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/processes.js:72 msgid "CPU usage (%)" msgstr "CPU-användning (%)" @@ -1318,7 +1336,6 @@ msgstr "Anrop misslyckades" #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:295 #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:209 #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:487 -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:203 msgid "Cancel" msgstr "Avbryt" @@ -1518,7 +1535,6 @@ msgstr "Klient-ID att skicka vid DHCP-förfrågning" #: modules/luci-base/htdocs/luci-static/resources/ui.js:4392 #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:173 #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:179 -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:167 msgid "Close" msgstr "Stäng" @@ -1533,17 +1549,13 @@ msgid "" "persist connection" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:49 -msgid "Close list..." -msgstr "Stäng ner lista..." - #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:44 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:63 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2184 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:391 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:352 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:355 -#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:72 +#: themes/luci-theme-material/ucode/template/themes/material/header.ut:66 msgid "Collecting data..." msgstr "Samlar in data..." @@ -1578,6 +1590,10 @@ msgstr "" msgid "Compute outgoing checksum (optional)." msgstr "" +#: protocols/luci-proto-nebula/htdocs/luci-static/resources/protocol/nebula.js:40 +msgid "Config File" +msgstr "" + #: modules/luci-base/htdocs/luci-static/resources/ui.js:4375 #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:454 msgid "Configuration" @@ -1811,7 +1827,7 @@ msgstr "DAE-port" msgid "DAE-Secret" msgstr "DAE-nyckel" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:525 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:530 msgid "DHCP Options" msgstr "" @@ -1851,11 +1867,11 @@ msgstr "DHCPv6-tjänst" msgid "DNS" msgstr "DNS" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:282 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:284 msgid "DNS forwardings" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:445 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:450 msgid "DNS query port" msgstr "<abbr title=\"Domain Name System\">DNS</abbr>förfrågningsport" @@ -1863,7 +1879,7 @@ msgstr "<abbr title=\"Domain Name System\">DNS</abbr>förfrågningsport" msgid "DNS search domains" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:438 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:443 msgid "DNS server port" msgstr "<abbr title=\"Domain Name System\">DNS</abbr>server-port" @@ -1879,11 +1895,11 @@ msgstr "" msgid "DNS-Label / FQDN" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:397 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:402 msgid "DNSSEC" msgstr "DNSSEC" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:402 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:407 msgid "DNSSEC check unsigned" msgstr "" @@ -1896,11 +1912,11 @@ msgid "DS-Lite AFTR address" msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1481 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:44 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:45 msgid "DSL" msgstr "DSL" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:14 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:15 msgid "DSL Status" msgstr "DSL-status" @@ -1913,12 +1929,12 @@ msgid "DTIM Interval" msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:59 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:700 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:771 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:136 msgid "DUID" msgstr "DUID" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:21 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:22 msgid "Data Rate" msgstr "Datahastighet" @@ -1975,7 +1991,6 @@ msgstr "Radera" #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:205 #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:211 -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:199 msgid "Delete key" msgstr "Radera nyckel" @@ -2164,7 +2179,7 @@ msgstr "" msgid "Disassociate On Low Acknowledgement" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:302 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:307 msgid "" "Discard upstream responses containing <a href=\"%s\">RFC1918</a> addresses." msgstr "" @@ -2210,7 +2225,7 @@ msgstr "Avstånd till nätverksmedlemmen längst bort i metrar." msgid "Distributed ARP Table" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:543 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:548 msgid "" "Dnsmasq instance to which this boot section is bound. If unspecified, the " "section is valid for all dnsmasq instances." @@ -2223,7 +2238,7 @@ msgid "" "forwarder." msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:414 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:419 msgid "Do not cache negative replies, e.g. for non-existent domains." msgstr "Cachea inte negativa svar, t.ex för icke-existerade domäner." @@ -2235,17 +2250,17 @@ msgstr "Cachea inte negativa svar, t.ex för icke-existerade domäner." msgid "Do not create host route to peer (optional)." msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:262 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:264 msgid "Do not forward DNS queries without dots or domain parts." msgstr "" "Vidarebefordra inte <abbr title=\"Domain Name System\">DNS</abbr>-" "förfrågningar utan <abbr title=\"Domain Name System\">DNS</abbr>-namn." -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:383 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:388 msgid "Do not forward reverse lookups for local networks." msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:339 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:344 msgid "Do not listen on the specified interfaces." msgstr "Förhindra lyssning på dessa gränssnitt." @@ -2279,7 +2294,6 @@ msgid "Do you really want to delete \"%s\" ?" msgstr "Vill du verkligen radera \"%s\" ?" #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:206 -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:200 msgid "Do you really want to delete the following SSH key?" msgstr "Vill du verkligen ta bort följande SSH-nyckel?" @@ -2299,15 +2313,16 @@ msgstr "" msgid "Do you want to replace the current keys?" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:593 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:606 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:664 msgid "Domain" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:261 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:263 msgid "Domain required" msgstr "Domän krävs" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:311 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:316 msgid "Domain whitelist" msgstr "Vitlista för domäner" @@ -2542,7 +2557,7 @@ msgstr "Aktivera NTP-klient" msgid "Enable Single DES" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:480 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:485 msgid "Enable TFTP server" msgstr "Aktivera TFTP-server" @@ -2625,7 +2640,7 @@ msgstr "" msgid "Enable the DF (Don't Fragment) flag of the encapsulating packets." msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:481 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:486 msgid "Enable the built-in single-instance TFTP server." msgstr "" @@ -2742,7 +2757,7 @@ msgstr "Fel" msgid "Error getting PublicKey" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:29 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:30 msgid "Errored seconds (ES)" msgstr "" @@ -2764,11 +2779,11 @@ msgstr "" msgid "Every second (fast, 1)" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:338 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:343 msgid "Exclude interfaces" msgstr "Inkludera inte dessa gränssnitt" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:307 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:312 msgid "" "Exempt <code>127.0.0.0/8</code> and <code>::1</code> from rebinding checks, " "e.g. for RBL services." @@ -2778,7 +2793,7 @@ msgstr "" msgid "Existing device" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:409 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:414 msgid "Expand hosts" msgstr "Expandera värdar" @@ -2912,7 +2927,7 @@ msgstr "" msgid "File" msgstr "Fil" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:418 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:423 msgid "" "File listing upstream resolvers, optionally domain-specific, e.g. " "<code>server=1.2.3.4</code>, <code>server=/domain/1.2.3.4</code>." @@ -2922,20 +2937,20 @@ msgstr "" msgid "File not accessible" msgstr "Fil ej nåbar" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:349 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:354 msgid "File to store DHCP lease information." msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:357 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:362 msgid "File with upstream resolvers." msgstr "lokal <abbr title=\"Domain Name System\">DNS</abbr>-fil." #: modules/luci-base/htdocs/luci-static/resources/ui.js:2846 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:507 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:512 msgid "Filename" msgstr "Filnamn" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:493 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:498 msgid "Filename of the boot image advertised to clients." msgstr "" @@ -2944,11 +2959,11 @@ msgstr "" msgid "Filesystem" msgstr "Filsystem" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:382 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:387 msgid "Filter private" msgstr "Filtrera privata" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:387 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:392 msgid "Filter useless" msgstr "Filtrera icke-användbara" @@ -3012,7 +3027,7 @@ msgstr "Fil för inbyggd programvara" msgid "Firmware Version" msgstr "Firmware Version" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:446 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:451 msgid "Fixed source port for outbound DNS queries." msgstr "" @@ -3038,7 +3053,7 @@ msgstr "" msgid "Flashing…" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:537 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:542 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:686 msgid "Force" msgstr "Tvinga" @@ -3083,7 +3098,7 @@ msgstr "Tvinga uppgradering" msgid "Force use of NAT-T" msgstr "Tvinga användning av NAT-T" -#: modules/luci-base/luasrc/view/csrftoken.htm:8 +#: modules/luci-base/ucode/template/csrftoken.ut:8 msgid "Form token mismatch" msgstr "" @@ -3112,7 +3127,7 @@ msgid "" "downstream interfaces." msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:28 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:29 msgid "Forward Error Correction Seconds (FECS)" msgstr "" @@ -3269,18 +3284,16 @@ msgstr "Globala inställningar" msgid "Global network options" msgstr "Globala nätverksalternativ" -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:82 -#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:89 -#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:74 +#: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/header.ut:70 +#: themes/luci-theme-material/ucode/template/themes/material/header.ut:84 +#: themes/luci-theme-openwrt-2020/ucode/template/themes/openwrt2020/header.ut:67 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:92 -#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:72 msgid "Go to firmware upgrade..." msgstr "" -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:72 -#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:64 +#: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/header.ut:60 +#: themes/luci-theme-openwrt-2020/ucode/template/themes/openwrt2020/header.ut:57 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:82 -#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:62 msgid "Go to password configuration..." msgstr "Gå till lösenordskonfiguration..." @@ -3420,7 +3433,7 @@ msgstr "" msgid "Hang Up" msgstr "Lägg på" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:33 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:34 msgid "Header Error Code Errors (HEC)" msgstr "" @@ -3473,7 +3486,7 @@ msgstr "Värd" msgid "Host expiry timeout" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:508 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:513 msgid "Host requests this filename from the boot server." msgstr "" @@ -3482,8 +3495,8 @@ msgid "Host-Uniq tag content" msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:38 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:559 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:607 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:630 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:678 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/10_system.js:54 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:87 #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:135 @@ -3498,7 +3511,7 @@ msgstr "Värdnamn att skicka vid DHCP-förfrågningar" msgid "Hostnames" msgstr "Värdnamn" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:551 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:622 msgid "" "Hostnames are used to bind a domain name to an IP address. This setting is " "redundant for hostnames already configured with static leases, but it can be " @@ -3562,7 +3575,7 @@ msgstr "IP-adresser" msgid "IP Protocol" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:258 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:260 msgid "IP Sets" msgstr "" @@ -3570,7 +3583,7 @@ msgstr "" msgid "IP Type" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:563 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:634 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:178 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:204 msgid "IP address" @@ -3596,15 +3609,15 @@ msgctxt "nft meta l4proto" msgid "IP protocol" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:589 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:660 msgid "IP set" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:295 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:300 msgid "IP sets" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:432 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:437 msgid "IPs to override with NXDOMAIN" msgstr "" @@ -3645,7 +3658,7 @@ msgstr "" #: modules/luci-base/htdocs/luci-static/resources/protocol/static.js:178 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:39 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:665 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:736 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:88 #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:164 msgid "IPv4 address" @@ -3816,7 +3829,7 @@ msgstr "" msgid "IPv6 suffix" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:706 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:777 msgid "IPv6 suffix (hex)" msgstr "<abbr title=\"Internet Protocol Version 6\">IPv6</abbr>Suffix (hex)" @@ -3914,7 +3927,7 @@ msgid "" "of the <abbr title=\"Random Access Memory\">RAM</abbr>." msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:363 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:368 msgid "Ignore <code>/etc/hosts</code>" msgstr "Ignorera <code>/etc/hosts</code>" @@ -3922,7 +3935,7 @@ msgstr "Ignorera <code>/etc/hosts</code>" msgid "Ignore interface" msgstr "Ignorera gränssnitt" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:352 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:357 msgid "Ignore resolv file" msgstr "Ignorera resolv-fil" @@ -3970,7 +3983,7 @@ msgid "" "order to avoid broadcast loops that can bring the entire LAN to a standstill." msgstr "" -#: modules/luci-base/luasrc/view/csrftoken.htm:13 +#: modules/luci-base/ucode/template/csrftoken.ut:13 msgid "" "In order to prevent unauthorized access to the system, your request has been " "blocked. Click \"Continue »\" below to return to the previous page." @@ -4079,7 +4092,7 @@ msgstr "" msgid "Install protocol extensions..." msgstr "Installera protokoll-förlängningar..." -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:542 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:547 msgid "Instance" msgstr "" @@ -4166,10 +4179,6 @@ msgstr "Gränssnitt" msgid "Internal" msgstr "Internt" -#: modules/luci-base/luasrc/view/error500.htm:8 -msgid "Internal Server Error" -msgstr "Internt server-fel" - #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:285 msgid "Interval For Sending Learning Packets" msgstr "" @@ -4238,8 +4247,8 @@ msgstr "" msgid "Invalid hexadecimal value" msgstr "" -#: modules/luci-base/luasrc/view/sysauth.htm:12 -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/sysauth.htm:37 +#: modules/luci-base/ucode/template/sysauth.ut:12 +#: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/sysauth.ut:32 msgid "Invalid username and/or password! Please try again." msgstr "Ogiltigt användarnamn och/eller lösenord! Vänligen försök igen." @@ -4261,8 +4270,8 @@ msgid "" "flash memory, please verify the image file!" msgstr "" -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:89 -#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:96 +#: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/header.ut:77 +#: themes/luci-theme-material/ucode/template/themes/material/header.ut:91 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:72 msgid "JavaScript required!" msgstr "JavaScript krävs!" @@ -4394,11 +4403,17 @@ msgstr "Språk" msgid "Language and Style" msgstr "Språk och Stil" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:560 +msgid "" +"Larger weights (of the same prio) are given a proportionately higher " +"probability of being selected." +msgstr "" + #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:575 msgid "Last member interval" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:23 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:24 msgid "Latency" msgstr "Latens" @@ -4414,11 +4429,11 @@ msgstr "" msgid "Learn routes" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:348 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:353 msgid "Lease file" msgstr "Kontraktsfil" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:697 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:768 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:679 msgid "Lease time" msgstr "Kontraktstid" @@ -4462,19 +4477,19 @@ msgstr "" msgid "Limit" msgstr "Begränsa" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:24 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:25 msgid "Line Attenuation (LATN)" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:18 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:19 msgid "Line Mode" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:17 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:18 msgid "Line State" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:19 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:20 msgid "Line Uptime" msgstr "" @@ -4495,12 +4510,12 @@ msgctxt "nft @ll,off,len" msgid "Link layer header bits %d-%d" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:433 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:438 msgid "List of IP addresses to convert into NXDOMAIN responses." msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:296 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:581 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:301 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:652 msgid "List of IP sets to populate with the specified domain IPs." msgstr "" @@ -4526,15 +4541,11 @@ msgstr "" msgid "List of SSH key files for auth" msgstr "Lista över SSH-nyckelfiler för auth" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:312 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:317 msgid "List of domains to allow RFC1918 responses for." msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:290 -msgid "List of domains to force to an IP address." -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:283 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:285 msgid "List of upstream resolvers to forward queries to." msgstr "" @@ -4542,7 +4553,7 @@ msgstr "" msgid "Listen Port" msgstr "Lyssningsport" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:332 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:337 msgid "Listen interfaces" msgstr "" @@ -4551,7 +4562,7 @@ msgid "Listen only on the given interface or, if unspecified, on all" msgstr "" "Lyssna endast på det angivna gränssnittet eller, om o-specificerat på alla" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:333 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:338 msgid "" "Listen only on the specified interfaces, and loopback if not excluded " "explicitly." @@ -4561,7 +4572,7 @@ msgstr "" msgid "ListenPort setting is invalid" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:439 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:444 msgid "Listening port for inbound DNS queries." msgstr "Lyssningsportar för ankommande DNS-förfrågningar." @@ -4588,9 +4599,9 @@ msgid "Loading directory contents…" msgstr "" #: modules/luci-base/htdocs/luci-static/resources/luci.js:1942 -#: modules/luci-base/luasrc/view/view.htm:4 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:12 -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/sysauth.htm:45 +#: modules/luci-base/ucode/template/view.ut:4 +#: modules/luci-mod-status/ucode/template/admin_status/index.ut:12 +#: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/sysauth.ut:40 msgid "Loading view…" msgstr "" @@ -4648,19 +4659,19 @@ msgstr "Lokal tid" msgid "Local ULA" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:273 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:275 msgid "Local domain" msgstr "Lokal domän" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:274 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:276 msgid "Local domain suffix appended to DHCP names and hosts file entries." msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:269 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:271 msgid "Local server" msgstr "Lokal server" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:319 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:324 msgid "Local service only" msgstr "Enbart lokal tjänst" @@ -4668,7 +4679,7 @@ msgstr "Enbart lokal tjänst" msgid "Local wireguard key" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:392 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:397 msgid "Localise queries" msgstr "Lokalisera förfrågningar" @@ -4680,7 +4691,7 @@ msgstr "" msgid "Log output level" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:277 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:279 msgid "Log queries" msgstr "" @@ -4704,8 +4715,8 @@ msgstr "" msgid "Logical network to which the tunnel will be added (bridged) (optional)." msgstr "" -#: modules/luci-base/luasrc/view/sysauth.htm:38 -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/sysauth.htm:41 +#: modules/luci-base/ucode/template/sysauth.ut:38 +#: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/sysauth.ut:36 msgid "Login" msgstr "Logga in" @@ -4717,7 +4728,7 @@ msgstr "Logga ut" msgid "Loose filtering" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:31 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:32 msgid "Loss of Signal Seconds (LOSS)" msgstr "" @@ -4725,6 +4736,10 @@ msgstr "" msgid "Lowest leased address as offset from the network address." msgstr "" +#: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/footer.ut:12 +msgid "Lua compatibility mode active" +msgstr "" + #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:48 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:83 msgid "MAC" @@ -4749,7 +4764,7 @@ msgstr "MAC VLAN" #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:591 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:40 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:619 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:690 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1164 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2177 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:56 @@ -4808,6 +4823,10 @@ msgstr "" msgid "MTU" msgstr "MTU" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:259 +msgid "MX" +msgstr "" + #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:303 msgid "" "Make sure to clone the root filesystem using something like the commands " @@ -4832,21 +4851,21 @@ msgstr "Mästare" msgid "Max <abbr title=\"Router Advertisement\">RA</abbr> interval" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:22 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:23 msgid "Max. Attainable Data Rate (ATTNDR)" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:452 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:457 msgid "Max. DHCP leases" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:459 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:464 msgid "Max. EDNS0 packet size" msgstr "" "<abbr title=\"maximal\">Max.</abbr><abbr title=\"Extension Mechanisms for " "Domain Name System\">EDNS0</abbr>paketstorlek" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:466 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:471 msgid "Max. concurrent queries" msgstr "" @@ -4858,15 +4877,15 @@ msgstr "" msgid "Maximum allowed Listen Interval" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:453 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:458 msgid "Maximum allowed number of active DHCP leases." msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:467 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:472 msgid "Maximum allowed number of concurrent DNS queries." msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:460 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:465 msgid "Maximum allowed size of EDNS0 UDP packets." msgstr "" @@ -4893,7 +4912,7 @@ msgstr "" msgid "Maximum transmit power" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:389 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:394 msgid "May prevent VoIP or other services from working." msgstr "" @@ -5207,12 +5226,15 @@ msgstr "Namnet på det nya nätverket" msgid "Name of the tunnel device" msgstr "" -#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:46 +#: themes/luci-theme-openwrt-2020/ucode/template/themes/openwrt2020/header.ut:39 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:50 -#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:44 msgid "Navigation" msgstr "Navigering" +#: protocols/luci-proto-nebula/htdocs/luci-static/resources/protocol/nebula.js:10 +msgid "Nebula Network" +msgstr "" + #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:653 msgid "Neighbour cache validity" msgstr "" @@ -5248,7 +5270,7 @@ msgstr "Nätverksverktyg" msgid "Network address" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:492 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:497 msgid "Network boot image" msgstr "Uppstartsbild för nätverket" @@ -5288,7 +5310,7 @@ msgstr "" msgid "Network interface" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:531 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:536 msgid "Network-ID" msgstr "" @@ -5296,7 +5318,7 @@ msgstr "" msgid "Never" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:270 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:272 msgid "" "Never forward matching domains and subdomains, resolve from DHCP or hosts " "files only." @@ -5344,11 +5366,10 @@ msgstr "Ingen NAT-T" msgid "No RX signal" msgstr "" -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:80 -#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:87 -#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:72 +#: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/header.ut:68 +#: themes/luci-theme-material/ucode/template/themes/material/header.ut:82 +#: themes/luci-theme-openwrt-2020/ucode/template/themes/openwrt2020/header.ut:65 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:90 -#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:70 msgid "" "No changes to settings will be stored and are lost after rebooting. This " "mode should only be used to install a firmware upgrade" @@ -5389,10 +5410,6 @@ msgstr "" msgid "No entries in this directory" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:82 -msgid "No files found" -msgstr "Inga filer hittades" - #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:833 msgid "" "No fixed interface listening port defined, peers might not be able to " @@ -5428,7 +5445,7 @@ msgstr "" msgid "No more slaves available, can not save interface" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:413 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:418 msgid "No negative cache" msgstr "Ingen negativ cache" @@ -5436,10 +5453,9 @@ msgstr "Ingen negativ cache" msgid "No nftables ruleset loaded." msgstr "" -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:69 -#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:61 +#: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/header.ut:57 +#: themes/luci-theme-openwrt-2020/ucode/template/themes/openwrt2020/header.ut:54 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:79 -#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:59 msgid "No password set!" msgstr "Inget lösenord inställt!" @@ -5449,8 +5465,6 @@ msgstr "" #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:146 #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:283 -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:140 -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:277 msgid "No public keys present yet." msgstr "" @@ -5480,7 +5494,7 @@ msgstr "" msgid "Noise" msgstr "Buller" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:26 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:27 msgid "Noise Margin (SNR)" msgstr "" @@ -5488,11 +5502,11 @@ msgstr "" msgid "Noise:" msgstr "Buller:" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:34 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:35 msgid "Non Pre-emptive CRC errors (CRC_P)" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:325 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:330 msgid "Non-wildcard" msgstr "" @@ -5507,7 +5521,7 @@ msgstr "Ingen" msgid "Normal" msgstr "Normal" -#: modules/luci-base/luasrc/view/error404.htm:8 +#: modules/luci-base/ucode/template/error404.ut:9 msgid "Not Found" msgstr "Hittades inte" @@ -5557,7 +5571,7 @@ msgstr "Nslookup" msgid "Number of IGMP membership reports" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:474 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:479 msgid "Number of cached DNS entries, 10000 is maximum, 0 is no caching." msgstr "" @@ -5606,7 +5620,7 @@ msgstr "" msgid "On-link" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:672 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:743 msgid "One of hostname or MAC address must be specified!" msgstr "En utav värdnamn eller MAC-adress måste anges!" @@ -5642,7 +5656,6 @@ msgid "Open iptables rules overview…" msgstr "" #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:472 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:19 msgid "Open list..." msgstr "Öppna lista..." @@ -5786,7 +5799,7 @@ msgstr "" msgid "Options" msgstr "Alternativ" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:526 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:531 msgid "" "Options for the Network-ID. (Note: needs also Network-ID.) E.g. " "\"<code>42,192.168.1.4</code>\" for NTP server, \"<code>3,192.168.4.4</code>" @@ -5795,10 +5808,14 @@ msgid "" msgstr "" #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:125 -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:119 msgid "Options:" msgstr "" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:584 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:616 +msgid "Ordinal: lower comes first." +msgstr "" + #: protocols/luci-proto-batman-adv/htdocs/luci-static/resources/protocol/batadv.js:55 msgid "Originator Interval" msgstr "" @@ -6070,13 +6087,13 @@ msgctxt "MACVLAN mode" msgid "Pass-through (Mirror physical device to single MAC VLAN)" msgstr "" -#: modules/luci-base/luasrc/view/sysauth.htm:29 +#: modules/luci-base/ucode/template/sysauth.ut:29 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1690 #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:51 #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:114 #: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:103 #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:58 -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/sysauth.htm:24 +#: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/sysauth.ut:19 msgid "Password" msgstr "Lösenord" @@ -6104,7 +6121,6 @@ msgid "Password2" msgstr "Lösenord2" #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:266 -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:260 msgid "Paste or drag SSH key file…" msgstr "" @@ -6248,7 +6264,7 @@ msgstr "Ping" msgid "Pkts." msgstr "Pkt." -#: modules/luci-base/luasrc/view/sysauth.htm:19 +#: modules/luci-base/ucode/template/sysauth.ut:19 msgid "Please enter your username and password." msgstr "Vänligen ange ditt användarnamn och lösenord." @@ -6265,6 +6281,7 @@ msgctxt "Chain hook policy" msgid "Policy: <strong>%h</strong> (%h)" msgstr "" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:579 #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/dropbear.js:21 msgid "Port" msgstr "Port" @@ -6281,11 +6298,11 @@ msgstr "Port-status:" msgid "Potential negation of: %s" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:37 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:38 msgid "Power Management Mode" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:35 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:36 msgid "Pre-emptive CRC errors (CRCP_P)" msgstr "" @@ -6358,6 +6375,8 @@ msgid "Primary becomes active slave whenever it comes back up (always, 0)" msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:508 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:584 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:616 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:129 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:197 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:223 @@ -6449,7 +6468,6 @@ msgid "Public key: %h" msgstr "" #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:290 -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:284 msgid "" "Public keys allow for the passwordless SSH logins with a higher security " "compared to the use of plain passwords. In order to upload a new key to the " @@ -6474,7 +6492,7 @@ msgstr "QMI-telefoni" msgid "Quality" msgstr "Kvalité" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:428 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:433 msgid "Query all available upstream resolvers." msgstr "" @@ -6556,7 +6574,7 @@ msgstr "" msgid "Raw hex-encoded bytes. Leave empty unless your ISP require this" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:345 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:350 msgid "Read <code>/etc/ethers</code> to configure the DHCP server." msgstr "Läs <code>/etc/ethers</code> för att ställa in DHCP-servern." @@ -6572,7 +6590,7 @@ msgstr "Realtidsgrafer" msgid "Reassociation Deadline" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:301 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:306 msgid "Rebind protection" msgstr "" @@ -6657,6 +6675,7 @@ msgid "" msgstr "" #: modules/luci-compat/luasrc/model/network/proto_relay.lua:153 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:611 #: protocols/luci-proto-relay/htdocs/luci-static/resources/protocol/relay.js:39 msgid "Relay" msgstr "Relä" @@ -6747,6 +6766,10 @@ msgstr "" msgid "Required. Base64-encoded private key for this interface." msgstr "" +#: protocols/luci-proto-nebula/htdocs/luci-static/resources/protocol/nebula.js:40 +msgid "Required. Path to the .yml config file for this interface." +msgstr "" + #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:587 msgid "Required. Public key of the WireGuard peer." msgstr "" @@ -6828,7 +6851,7 @@ msgid "Reselection policy for primary slave" msgstr "" #: modules/luci-base/htdocs/luci-static/resources/luci.js:2197 -#: modules/luci-base/luasrc/view/sysauth.htm:39 +#: modules/luci-base/ucode/template/sysauth.ut:39 #: modules/luci-compat/luasrc/view/cbi/delegator.htm:17 #: modules/luci-compat/luasrc/view/cbi/footer.htm:30 #: modules/luci-compat/luasrc/view/cbi/simpleform.htm:66 @@ -6847,10 +6870,14 @@ msgstr "Återställ till standard" msgid "Resolv and Hosts Files" msgstr "Resolv och Värd-filer" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:356 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:361 msgid "Resolv file" msgstr "Resolv-fil" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:292 +msgid "Resolve specified FQDNs to an IP." +msgstr "" + #: modules/luci-base/htdocs/luci-static/resources/rpc.js:405 msgid "Resource not found" msgstr "" @@ -6877,7 +6904,7 @@ msgstr "Återställ" msgid "Restore backup" msgstr "Återställ säkerhetskopian" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:393 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:398 msgid "" "Return answers to DNS queries matching the subnet from which the query was " "received if multiple IPs are available." @@ -6963,7 +6990,7 @@ msgstr "" msgid "Robustness" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:486 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:491 msgid "" "Root directory for files served via TFTP. <em>Enable TFTP server</em> and " "<em>TFTP server root</em> turn on the TFTP server and serve files from " @@ -7066,6 +7093,11 @@ msgstr "SHA256" msgid "SNR" msgstr "SNR" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:258 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:569 +msgid "SRV" +msgstr "" + #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/dropbear.js:10 #: modules/luci-mod-system/root/usr/share/luci/menu.d/luci-mod-system.json:38 msgid "SSH Access" @@ -7085,7 +7117,6 @@ msgstr "Användarnamn för SSH" #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:289 #: modules/luci-mod-system/root/usr/share/luci/menu.d/luci-mod-system.json:51 -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:283 msgid "SSH-Keys" msgstr "SSH-nycklar" @@ -7204,11 +7235,11 @@ msgstr "" msgid "Server" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:519 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:524 msgid "Server address" msgstr "Server-adress" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:513 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:518 msgid "Server name" msgstr "" @@ -7296,7 +7327,7 @@ msgstr "Inställningar" msgid "Setup routes for proxied IPv6 neighbours." msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:30 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:31 msgid "Severely Errored Seconds (SES)" msgstr "" @@ -7310,7 +7341,6 @@ msgid "Short Preamble" msgstr "" #: 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 msgid "Show current backup file list" msgstr "" @@ -7344,7 +7374,7 @@ msgstr "Signal" msgid "Signal / Noise" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:25 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:26 msgid "Signal Attenuation (SATN)" msgstr "" @@ -7361,7 +7391,7 @@ msgstr "Signal:" msgid "Size" msgstr "Storlek" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:473 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:478 msgid "Size of DNS query cache" msgstr "" @@ -7378,15 +7408,13 @@ msgstr "Hoppa över" msgid "Skip from backup files that are equal to those in /rom" msgstr "" -#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:42 +#: themes/luci-theme-openwrt-2020/ucode/template/themes/openwrt2020/header.ut:35 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:46 -#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:40 msgid "Skip to content" msgstr "Hoppa över till innehåll" -#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:41 +#: themes/luci-theme-openwrt-2020/ucode/template/themes/openwrt2020/header.ut:34 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:45 -#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:39 msgid "Skip to navigation" msgstr "Hoppa över till navigering" @@ -7403,14 +7431,10 @@ msgstr "" msgid "Some fields are invalid, cannot save values!" msgstr "Några fält är ogiltiga, kan inte spara värden!" -#: modules/luci-base/luasrc/view/error404.htm:9 +#: modules/luci-base/ucode/template/error404.ut:10 msgid "Sorry, the object you requested was not found." msgstr "Tyvärr, objektet som du frågade efter kunde inte hittas." -#: modules/luci-base/luasrc/view/error500.htm:9 -msgid "Sorry, the server encountered an unexpected error." -msgstr "Tyvärr, servern stötte på ett oväntat fel." - #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:442 msgid "" "Sorry, there is no sysupgrade support present; a new firmware image must be " @@ -7446,7 +7470,7 @@ msgctxt "nft ip sport" msgid "Source port" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:500 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:505 msgid "" "Special <abbr title=\"Preboot eXecution Environment\">PXE</abbr> boot " "options for Dnsmasq." @@ -7814,7 +7838,7 @@ msgstr "" msgid "Static address" msgstr "Statiska adresser" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:598 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:669 msgid "" "Static leases are used to assign fixed IP addresses and symbolic hostnames " "to DHCP clients. They are also required for non-dynamic interface " @@ -7828,7 +7852,7 @@ msgstr "" #: modules/luci-base/root/usr/share/luci/menu.d/luci-base.json:16 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:541 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:929 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:9 +#: modules/luci-mod-status/ucode/template/admin_status/index.ut:9 msgid "Status" msgstr "Status" @@ -7854,7 +7878,7 @@ msgstr "" msgid "Strict filtering" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:422 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:427 msgid "Strict order" msgstr "Strikt sortering" @@ -7867,11 +7891,11 @@ msgstr "" msgid "Submit" msgstr "Skicka" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:372 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:377 msgid "Suppress logging" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:373 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:378 msgid "Suppress logging of the routine operation for the DHCP protocol." msgstr "" @@ -7924,6 +7948,14 @@ msgstr "" msgid "Sync with browser" msgstr "Synkronisera med webbläsare" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:293 +msgid "Syntax: <code>/fqdn[/fqdn…]/[ipaddr]</code>." +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:569 +msgid "Syntax: <code>_service._proto.example.com</code>." +msgstr "" + #: modules/luci-base/root/usr/share/luci/menu.d/luci-base.json:26 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/10_system.js:17 #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:113 @@ -7949,11 +7981,10 @@ msgstr "Systemets egenskaper" msgid "System log buffer size" msgstr "" -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:79 -#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:86 -#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:71 +#: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/header.ut:67 +#: themes/luci-theme-material/ucode/template/themes/material/header.ut:81 +#: themes/luci-theme-openwrt-2020/ucode/template/themes/openwrt2020/header.ut:64 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:89 -#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:69 msgid "System running in recovery (initramfs) mode." msgstr "" @@ -7981,7 +8012,7 @@ msgstr "" msgid "TCP:" msgstr "TCP:" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:485 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:490 msgid "TFTP server root" msgstr "Root för TFTP-server" @@ -8006,6 +8037,7 @@ msgstr "" msgid "Table" msgstr "Tabell" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:574 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:56 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:66 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:187 @@ -8076,15 +8108,15 @@ msgid "" "username instead of the user ID!" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:681 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:752 msgid "The IP address %h is already used by another static lease" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:690 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:761 msgid "The IP address is outside of any DHCP pool address range" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:520 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:525 msgid "The IP address of the boot server" msgstr "" @@ -8232,12 +8264,10 @@ msgid "" msgstr "" #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:172 -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:166 msgid "The given SSH public key has already been added." msgstr "" #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:178 -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:172 msgid "" "The given SSH public key is invalid. Please supply proper public RSA, " "ED25519 or ECDSA keys." @@ -8251,7 +8281,7 @@ msgid "" "to be received and retransmitted which costs airtime)" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:514 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:519 msgid "The hostname of the boot server" msgstr "" @@ -8388,7 +8418,7 @@ msgstr "" msgid "The selected %s mode is incompatible with %s encryption" msgstr "" -#: modules/luci-base/luasrc/view/csrftoken.htm:11 +#: modules/luci-base/ucode/template/csrftoken.ut:11 msgid "The submitted security token is invalid or already expired!" msgstr "" @@ -8458,8 +8488,8 @@ msgid "" "nftables rules is discouraged and may lead to incomplete traffic filtering." msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:746 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:778 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:817 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:849 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:130 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:179 msgid "There are no active leases" @@ -8469,10 +8499,9 @@ msgstr "" msgid "There are no changes to apply" msgstr "" -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:70 -#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:62 +#: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/header.ut:58 +#: themes/luci-theme-openwrt-2020/ucode/template/themes/openwrt2020/header.ut:55 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:80 -#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:60 msgid "" "There is no password set on this router. Please configure a root password to " "protect the web interface." @@ -8494,7 +8523,6 @@ msgid "This does not look like a valid PEM file" msgstr "" #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:454 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:16 msgid "" "This is a list of shell glob patterns for matching files and directories to " "include during sysupgrade. Modified files in /etc/config/ and certain other " @@ -8530,7 +8558,7 @@ msgid "" "ends with <code>...:2/64</code>" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:266 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:268 msgid "This is the only DHCP server in the local network." msgstr "" @@ -8774,7 +8802,7 @@ msgstr "" msgid "Unable to determine upstream interface" msgstr "" -#: modules/luci-base/luasrc/view/error404.htm:11 +#: modules/luci-base/ucode/template/error404.ut:12 msgid "Unable to dispatch" msgstr "Det går inte att skicka" @@ -8829,7 +8857,7 @@ msgstr "" msgid "Unable to verify PIN" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:32 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:33 msgid "Unavailable Seconds (UAS)" msgstr "Otillgängliga Sekunder (UAS)" @@ -8884,7 +8912,6 @@ msgid "Unmount" msgstr "Avmontera" #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:121 -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:115 msgid "Unnamed key" msgstr "" @@ -8974,7 +9001,7 @@ msgid "" "will be restarted to apply the updated configuration." msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:423 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:428 msgid "Upstream resolvers will be queried in the order of the resolv file." msgstr "" @@ -8983,7 +9010,7 @@ msgstr "" msgid "Uptime" msgstr "Upptid" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:344 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:349 msgid "Use <code>/etc/ethers</code>" msgstr "Använd <code>/etc/ethers</code>" @@ -9094,7 +9121,7 @@ msgstr "" msgid "Use system certificates for inner-tunnel" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:599 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:670 msgid "" "Use the <em>Add</em> Button to add a new lease entry. The <em>MAC address</" "em> identifies the host, the <em>IPv4 address</em> specifies the fixed " @@ -9145,11 +9172,11 @@ msgstr "" msgid "User key (PEM encoded)" msgstr "Användarnyckel (PEM-krypterad)" -#: modules/luci-base/luasrc/view/sysauth.htm:23 +#: modules/luci-base/ucode/template/sysauth.ut:23 #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:112 #: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:101 #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:56 -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/sysauth.htm:18 +#: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/sysauth.ut:13 msgid "Username" msgstr "Användarnamn" @@ -9247,7 +9274,7 @@ msgstr "" msgid "VXLANv6 (RFC7348)" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:398 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:403 msgid "" "Validate DNS replies and cache DNSSEC data, requires upstream to support " "DNSSEC." @@ -9280,7 +9307,7 @@ msgstr "Tillverkare" msgid "Vendor Class to send when requesting DHCP" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:403 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:408 msgid "Verify unsigned domain responses really come from unsigned domains." msgstr "" @@ -9356,6 +9383,10 @@ msgstr "" msgid "Weak" msgstr "" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:589 +msgid "Weight" +msgstr "" + #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1029 msgid "" "When delegating prefixes to multiple downstreams, interfaces with a higher " @@ -9476,7 +9507,7 @@ msgstr "Trådlöst nätverk är avstängt" msgid "Wireless network is enabled" msgstr "Trådlöst nätverk är aktiverat" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:278 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:280 msgid "Write received DNS queries to syslog." msgstr "Skriv mottagna DNS-förfrågningar till syslogg." @@ -9511,8 +9542,16 @@ msgid "" "scripts like \"network\", your device might become inaccessible!</strong>" msgstr "" -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:90 -#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:97 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:559 +msgid "You may add multiple records for the same Target." +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:596 +msgid "You may add multiple records for the same domain." +msgstr "" + +#: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/header.ut:78 +#: themes/luci-theme-material/ucode/template/themes/material/header.ut:92 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:73 msgid "" "You must enable JavaScript in your browser or LuCI will not work properly." @@ -9543,7 +9582,17 @@ msgstr "" msgid "ZRam Size" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:449 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:558 +msgid "_proto: _tcp, _udp, _sctp, _quic, … ." +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:557 +msgid "" +"_service: _sip, _ldap, _imap, _stun, _xmpp-client, … . (Note: while _http is " +"possible, no browsers support SRV records.)" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:454 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:152 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:163 msgid "any" @@ -9654,8 +9703,8 @@ msgstr "" msgid "e.g: dump" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:726 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:756 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:797 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:827 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:101 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:148 msgid "expired" @@ -9866,9 +9915,9 @@ msgstr "" msgid "unknown" msgstr "okänd" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:456 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:724 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:754 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:461 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:795 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:825 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:99 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:146 msgid "unlimited" @@ -10084,6 +10133,21 @@ msgstr "ja" msgid "« Back" msgstr "« Bakåt" +#~ msgid "Back to configuration" +#~ msgstr "Backa till konfiguration" + +#~ msgid "Close list..." +#~ msgstr "Stäng ner lista..." + +#~ msgid "Internal Server Error" +#~ msgstr "Internt server-fel" + +#~ msgid "No files found" +#~ msgstr "Inga filer hittades" + +#~ msgid "Sorry, the server encountered an unexpected error." +#~ msgstr "Tyvärr, servern stötte på ett oväntat fel." + #~ msgid "Do not forward queries that cannot be answered by public resolvers." #~ msgstr "" #~ "Vidarebefordra inte förfrågningar som inte kan ta emot svar från publika " diff --git a/modules/luci-base/po/templates/base.pot b/modules/luci-base/po/templates/base.pot index b9925aef7e..42fb7c34b1 100644 --- a/modules/luci-base/po/templates/base.pot +++ b/modules/luci-base/po/templates/base.pot @@ -217,6 +217,18 @@ msgstr "" msgid "<abbr title=\"Router Advertisement\">RA</abbr>-Service" msgstr "" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:294 +msgid "" +"<code>/#/</code> matches any domain. <code>/example.com/</code> returns " +"NXDOMAIN." +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:295 +msgid "" +"<code>/example.com/#</code> returns NULL addresses (<code>0.0.0.0</code> and " +"<code>::</code>) for example.com and its subdomains." +msgstr "" + #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:87 msgctxt "nft relational \">\" operator expression" msgid "<var>%s</var> greater than <strong>%s</strong>" @@ -374,7 +386,7 @@ msgstr "" msgid "ATM device number" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:36 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:37 msgid "ATU-C System Vendor ID" msgstr "" @@ -384,7 +396,7 @@ msgstr "" msgid "Absent Interface" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:320 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:325 msgid "Accept DNS queries only from hosts whose address is on a local subnet." msgstr "" @@ -523,7 +535,7 @@ msgstr "" msgid "Add key" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:410 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:415 msgid "Add local domain suffix to names served from hosts files." msgstr "" @@ -544,11 +556,11 @@ msgstr "" msgid "Add to Whitelist" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:367 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:372 msgid "Additional hosts files" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:417 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:422 msgid "Additional servers file" msgstr "" @@ -578,7 +590,7 @@ msgstr "" msgid "Address to access local relay bridge" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:289 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:291 msgid "Addresses" msgstr "" @@ -611,7 +623,7 @@ msgstr "" msgid "Aggregate Originator Messages" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:27 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:28 msgid "Aggregate Transmit Power (ACTATP)" msgstr "" @@ -647,17 +659,17 @@ msgstr "" msgid "Alias of \"%s\"" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:427 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:432 msgid "All servers" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:378 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:383 msgid "" "Allocate IP addresses sequentially, starting from the lowest available " "address." msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:377 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:382 msgid "Allocate IPs sequentially" msgstr "" @@ -685,7 +697,7 @@ msgstr "" msgid "Allow listed only" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:306 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:311 msgid "Allow localhost" msgstr "" @@ -729,7 +741,7 @@ msgstr "" msgid "Always on (kernel: default-on)" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:538 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:543 msgid "Always send DHCP Options. Sometimes needed, with e.g. PXELinux." msgstr "" @@ -756,7 +768,7 @@ msgid "An optional, short description for this device" msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1484 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:20 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:21 msgid "Annex" msgstr "" @@ -870,7 +882,7 @@ msgstr "" msgid "Any zone" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:532 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:537 msgid "Apply DHCP Options to this net. (Empty = all clients)." msgstr "" @@ -960,11 +972,11 @@ msgstr "" msgid "Authentication Type" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:265 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:267 msgid "Authoritative" msgstr "" -#: modules/luci-base/luasrc/view/sysauth.htm:17 +#: modules/luci-base/ucode/template/sysauth.ut:17 #: themes/luci-theme-bootstrap/htdocs/luci-static/resources/view/bootstrap/sysauth.js:11 msgid "Authorization Required" msgstr "" @@ -1034,7 +1046,7 @@ msgstr "" msgid "Avoid Bridge Loops" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:388 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:393 msgid "" "Avoid uselessly triggering dial-on-demand links (filters SRV/SOA records and " "names with underscores)." @@ -1069,10 +1081,6 @@ msgstr "" msgid "Back to Overview" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:48 -msgid "Back to configuration" -msgstr "" - #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:826 msgid "Back to peer configuration" msgstr "" @@ -1086,7 +1094,6 @@ msgid "Backup / Flash Firmware" msgstr "" #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:351 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:12 msgid "Backup file list" msgstr "" @@ -1128,7 +1135,6 @@ msgid "Beacon Interval" msgstr "" #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:352 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:46 msgid "" "Below is the determined list of files to backup. It consists of changed " "configuration files marked by opkg, essential base files and the user " @@ -1139,7 +1145,7 @@ msgstr "" msgid "Bind NTP server" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:326 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:331 msgid "Bind dynamically to interfaces rather than wildcard address." msgstr "" @@ -1155,6 +1161,17 @@ msgstr "" msgid "Bind interface" msgstr "" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:595 +msgid "" +"Bind service records to a domain name: specify the location of services." +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:556 +msgid "" +"Bind service records to a domain name: specify the location of services. See " +"<a href=\"%s\">RFC2782</a>." +msgstr "" + #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:59 #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:64 #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:64 @@ -1257,6 +1274,10 @@ msgstr "" msgid "CLAT configuration failed" msgstr "" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:574 +msgid "CNAME or fqdn" +msgstr "" + #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/processes.js:72 msgid "CPU usage (%)" msgstr "" @@ -1494,17 +1515,13 @@ msgid "" "persist connection" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:49 -msgid "Close list..." -msgstr "" - #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:44 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:63 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2184 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:391 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:352 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:355 -#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:72 +#: themes/luci-theme-material/ucode/template/themes/material/header.ut:66 msgid "Collecting data..." msgstr "" @@ -1539,6 +1556,10 @@ msgstr "" msgid "Compute outgoing checksum (optional)." msgstr "" +#: protocols/luci-proto-nebula/htdocs/luci-static/resources/protocol/nebula.js:40 +msgid "Config File" +msgstr "" + #: modules/luci-base/htdocs/luci-static/resources/ui.js:4375 #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:454 msgid "Configuration" @@ -1578,8 +1599,8 @@ msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:764 msgid "" -"Configures the operation mode of the <abbr title=\"Router " -"Advertisement\">RA</abbr> service on this interface." +"Configures the operation mode of the <abbr title=\"Router Advertisement" +"\">RA</abbr> service on this interface." msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:879 @@ -1752,8 +1773,8 @@ msgstr "" #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/leds.js:59 msgid "" -"Customizes the behaviour of the device <abbr title=\"Light Emitting " -"Diode\">LED</abbr>s if possible." +"Customizes the behaviour of the device <abbr title=\"Light Emitting Diode" +"\">LED</abbr>s if possible." msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:673 @@ -1772,7 +1793,7 @@ msgstr "" msgid "DAE-Secret" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:525 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:530 msgid "DHCP Options" msgstr "" @@ -1812,11 +1833,11 @@ msgstr "" msgid "DNS" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:282 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:284 msgid "DNS forwardings" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:445 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:450 msgid "DNS query port" msgstr "" @@ -1824,7 +1845,7 @@ msgstr "" msgid "DNS search domains" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:438 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:443 msgid "DNS server port" msgstr "" @@ -1840,11 +1861,11 @@ msgstr "" msgid "DNS-Label / FQDN" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:397 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:402 msgid "DNSSEC" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:402 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:407 msgid "DNSSEC check unsigned" msgstr "" @@ -1857,11 +1878,11 @@ msgid "DS-Lite AFTR address" msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1481 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:44 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:45 msgid "DSL" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:14 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:15 msgid "DSL Status" msgstr "" @@ -1874,12 +1895,12 @@ msgid "DTIM Interval" msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:59 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:700 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:771 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:136 msgid "DUID" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:21 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:22 msgid "Data Rate" msgstr "" @@ -2122,7 +2143,7 @@ msgstr "" msgid "Disassociate On Low Acknowledgement" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:302 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:307 msgid "" "Discard upstream responses containing <a href=\"%s\">RFC1918</a> addresses." msgstr "" @@ -2168,7 +2189,7 @@ msgstr "" msgid "Distributed ARP Table" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:543 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:548 msgid "" "Dnsmasq instance to which this boot section is bound. If unspecified, the " "section is valid for all dnsmasq instances." @@ -2176,12 +2197,12 @@ msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:246 msgid "" -"Dnsmasq is a lightweight <abbr title=\"Dynamic Host Configuration " -"Protocol\">DHCP</abbr> server and <abbr title=\"Domain Name System\">DNS</" -"abbr> forwarder." +"Dnsmasq is a lightweight <abbr title=\"Dynamic Host Configuration Protocol" +"\">DHCP</abbr> server and <abbr title=\"Domain Name System\">DNS</abbr> " +"forwarder." msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:414 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:419 msgid "Do not cache negative replies, e.g. for non-existent domains." msgstr "" @@ -2193,15 +2214,15 @@ msgstr "" msgid "Do not create host route to peer (optional)." msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:262 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:264 msgid "Do not forward DNS queries without dots or domain parts." msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:383 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:388 msgid "Do not forward reverse lookups for local networks." msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:339 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:344 msgid "Do not listen on the specified interfaces." msgstr "" @@ -2254,15 +2275,16 @@ msgstr "" msgid "Do you want to replace the current keys?" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:593 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:606 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:664 msgid "Domain" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:261 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:263 msgid "Domain required" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:311 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:316 msgid "Domain whitelist" msgstr "" @@ -2496,7 +2518,7 @@ msgstr "" msgid "Enable Single DES" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:480 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:485 msgid "Enable TFTP server" msgstr "" @@ -2514,9 +2536,9 @@ msgstr "" #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/uhttpd.js:14 msgid "" -"Enable automatic redirection of <abbr title=\"Hypertext Transfer " -"Protocol\">HTTP</abbr> requests to <abbr title=\"Hypertext Transfer Protocol " -"Secure\">HTTPS</abbr> port." +"Enable automatic redirection of <abbr title=\"Hypertext Transfer Protocol" +"\">HTTP</abbr> requests to <abbr title=\"Hypertext Transfer Protocol Secure" +"\">HTTPS</abbr> port." msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:977 @@ -2579,7 +2601,7 @@ msgstr "" msgid "Enable the DF (Don't Fragment) flag of the encapsulating packets." msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:481 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:486 msgid "Enable the built-in single-instance TFTP server." msgstr "" @@ -2696,7 +2718,7 @@ msgstr "" msgid "Error getting PublicKey" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:29 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:30 msgid "Errored seconds (ES)" msgstr "" @@ -2718,11 +2740,11 @@ msgstr "" msgid "Every second (fast, 1)" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:338 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:343 msgid "Exclude interfaces" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:307 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:312 msgid "" "Exempt <code>127.0.0.0/8</code> and <code>::1</code> from rebinding checks, " "e.g. for RBL services." @@ -2732,7 +2754,7 @@ msgstr "" msgid "Existing device" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:409 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:414 msgid "Expand hosts" msgstr "" @@ -2866,7 +2888,7 @@ msgstr "" msgid "File" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:418 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:423 msgid "" "File listing upstream resolvers, optionally domain-specific, e.g. " "<code>server=1.2.3.4</code>, <code>server=/domain/1.2.3.4</code>." @@ -2876,20 +2898,20 @@ msgstr "" msgid "File not accessible" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:349 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:354 msgid "File to store DHCP lease information." msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:357 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:362 msgid "File with upstream resolvers." msgstr "" #: modules/luci-base/htdocs/luci-static/resources/ui.js:2846 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:507 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:512 msgid "Filename" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:493 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:498 msgid "Filename of the boot image advertised to clients." msgstr "" @@ -2898,11 +2920,11 @@ msgstr "" msgid "Filesystem" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:382 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:387 msgid "Filter private" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:387 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:392 msgid "Filter useless" msgstr "" @@ -2966,7 +2988,7 @@ msgstr "" msgid "Firmware Version" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:446 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:451 msgid "Fixed source port for outbound DNS queries." msgstr "" @@ -2992,7 +3014,7 @@ msgstr "" msgid "Flashing…" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:537 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:542 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:686 msgid "Force" msgstr "" @@ -3037,16 +3059,16 @@ msgstr "" msgid "Force use of NAT-T" msgstr "" -#: modules/luci-base/luasrc/view/csrftoken.htm:8 +#: modules/luci-base/ucode/template/csrftoken.ut:8 msgid "Form token mismatch" msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:919 msgid "" -"Forward <abbr title=\"Neighbour Discovery Protocol\">NDP</abbr> <abbr " -"title=\"Neighbour Solicitation, Type 135\">NS</abbr> and <abbr " -"title=\"Neighbour Advertisement, Type 136\">NA</abbr> messages between the " -"designated master interface and downstream interfaces." +"Forward <abbr title=\"Neighbour Discovery Protocol\">NDP</abbr> <abbr title=" +"\"Neighbour Solicitation, Type 135\">NS</abbr> and <abbr title=\"Neighbour " +"Advertisement, Type 136\">NA</abbr> messages between the designated master " +"interface and downstream interfaces." msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:770 @@ -3066,7 +3088,7 @@ msgid "" "downstream interfaces." msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:28 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:29 msgid "Forward Error Correction Seconds (FECS)" msgstr "" @@ -3223,15 +3245,15 @@ msgstr "" msgid "Global network options" msgstr "" -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:82 -#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:89 -#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:74 +#: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/header.ut:70 +#: themes/luci-theme-material/ucode/template/themes/material/header.ut:84 +#: themes/luci-theme-openwrt-2020/ucode/template/themes/openwrt2020/header.ut:67 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:92 msgid "Go to firmware upgrade..." msgstr "" -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:72 -#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:64 +#: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/header.ut:60 +#: themes/luci-theme-openwrt-2020/ucode/template/themes/openwrt2020/header.ut:57 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:82 msgid "Go to password configuration..." msgstr "" @@ -3372,7 +3394,7 @@ msgstr "" msgid "Hang Up" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:33 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:34 msgid "Header Error Code Errors (HEC)" msgstr "" @@ -3423,7 +3445,7 @@ msgstr "" msgid "Host expiry timeout" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:508 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:513 msgid "Host requests this filename from the boot server." msgstr "" @@ -3432,8 +3454,8 @@ msgid "Host-Uniq tag content" msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:38 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:559 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:607 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:630 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:678 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/10_system.js:54 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:87 #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:135 @@ -3448,7 +3470,7 @@ msgstr "" msgid "Hostnames" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:551 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:622 msgid "" "Hostnames are used to bind a domain name to an IP address. This setting is " "redundant for hostnames already configured with static leases, but it can be " @@ -3512,7 +3534,7 @@ msgstr "" msgid "IP Protocol" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:258 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:260 msgid "IP Sets" msgstr "" @@ -3520,7 +3542,7 @@ msgstr "" msgid "IP Type" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:563 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:634 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:178 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:204 msgid "IP address" @@ -3546,15 +3568,15 @@ msgctxt "nft meta l4proto" msgid "IP protocol" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:589 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:660 msgid "IP set" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:295 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:300 msgid "IP sets" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:432 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:437 msgid "IPs to override with NXDOMAIN" msgstr "" @@ -3595,7 +3617,7 @@ msgstr "" #: modules/luci-base/htdocs/luci-static/resources/protocol/static.js:178 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:39 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:665 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:736 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:88 #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:164 msgid "IPv4 address" @@ -3766,7 +3788,7 @@ msgstr "" msgid "IPv6 suffix" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:706 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:777 msgid "IPv6 suffix (hex)" msgstr "" @@ -3858,13 +3880,13 @@ msgstr "" #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:340 msgid "" "If your physical memory is insufficient unused data can be temporarily " -"swapped to a swap-device resulting in a higher amount of usable <abbr " -"title=\"Random Access Memory\">RAM</abbr>. Be aware that swapping data is a " -"very slow process as the swap-device cannot be accessed with the high " -"datarates of the <abbr title=\"Random Access Memory\">RAM</abbr>." +"swapped to a swap-device resulting in a higher amount of usable <abbr title=" +"\"Random Access Memory\">RAM</abbr>. Be aware that swapping data is a very " +"slow process as the swap-device cannot be accessed with the high datarates " +"of the <abbr title=\"Random Access Memory\">RAM</abbr>." msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:363 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:368 msgid "Ignore <code>/etc/hosts</code>" msgstr "" @@ -3872,7 +3894,7 @@ msgstr "" msgid "Ignore interface" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:352 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:357 msgid "Ignore resolv file" msgstr "" @@ -3920,7 +3942,7 @@ msgid "" "order to avoid broadcast loops that can bring the entire LAN to a standstill." msgstr "" -#: modules/luci-base/luasrc/view/csrftoken.htm:13 +#: modules/luci-base/ucode/template/csrftoken.ut:13 msgid "" "In order to prevent unauthorized access to the system, your request has been " "blocked. Click \"Continue »\" below to return to the previous page." @@ -4029,7 +4051,7 @@ msgstr "" msgid "Install protocol extensions..." msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:542 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:547 msgid "Instance" msgstr "" @@ -4116,10 +4138,6 @@ msgstr "" msgid "Internal" msgstr "" -#: modules/luci-base/luasrc/view/error500.htm:8 -msgid "Internal Server Error" -msgstr "" - #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:285 msgid "Interval For Sending Learning Packets" msgstr "" @@ -4188,8 +4206,8 @@ msgstr "" msgid "Invalid hexadecimal value" msgstr "" -#: modules/luci-base/luasrc/view/sysauth.htm:12 -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/sysauth.htm:37 +#: modules/luci-base/ucode/template/sysauth.ut:12 +#: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/sysauth.ut:32 msgid "Invalid username and/or password! Please try again." msgstr "" @@ -4211,8 +4229,8 @@ msgid "" "flash memory, please verify the image file!" msgstr "" -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:89 -#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:96 +#: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/header.ut:77 +#: themes/luci-theme-material/ucode/template/themes/material/header.ut:91 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:72 msgid "JavaScript required!" msgstr "" @@ -4344,11 +4362,17 @@ msgstr "" msgid "Language and Style" msgstr "" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:560 +msgid "" +"Larger weights (of the same prio) are given a proportionately higher " +"probability of being selected." +msgstr "" + #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:575 msgid "Last member interval" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:23 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:24 msgid "Latency" msgstr "" @@ -4364,11 +4388,11 @@ msgstr "" msgid "Learn routes" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:348 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:353 msgid "Lease file" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:697 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:768 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:679 msgid "Lease time" msgstr "" @@ -4412,19 +4436,19 @@ msgstr "" msgid "Limit" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:24 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:25 msgid "Line Attenuation (LATN)" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:18 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:19 msgid "Line Mode" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:17 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:18 msgid "Line State" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:19 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:20 msgid "Line Uptime" msgstr "" @@ -4445,12 +4469,12 @@ msgctxt "nft @ll,off,len" msgid "Link layer header bits %d-%d" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:433 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:438 msgid "List of IP addresses to convert into NXDOMAIN responses." msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:296 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:581 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:301 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:652 msgid "List of IP sets to populate with the specified domain IPs." msgstr "" @@ -4476,15 +4500,11 @@ msgstr "" msgid "List of SSH key files for auth" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:312 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:317 msgid "List of domains to allow RFC1918 responses for." msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:290 -msgid "List of domains to force to an IP address." -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:283 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:285 msgid "List of upstream resolvers to forward queries to." msgstr "" @@ -4492,7 +4512,7 @@ msgstr "" msgid "Listen Port" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:332 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:337 msgid "Listen interfaces" msgstr "" @@ -4500,7 +4520,7 @@ msgstr "" msgid "Listen only on the given interface or, if unspecified, on all" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:333 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:338 msgid "" "Listen only on the specified interfaces, and loopback if not excluded " "explicitly." @@ -4510,7 +4530,7 @@ msgstr "" msgid "ListenPort setting is invalid" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:439 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:444 msgid "Listening port for inbound DNS queries." msgstr "" @@ -4537,9 +4557,9 @@ msgid "Loading directory contents…" msgstr "" #: modules/luci-base/htdocs/luci-static/resources/luci.js:1942 -#: modules/luci-base/luasrc/view/view.htm:4 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:12 -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/sysauth.htm:45 +#: modules/luci-base/ucode/template/view.ut:4 +#: modules/luci-mod-status/ucode/template/admin_status/index.ut:12 +#: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/sysauth.ut:40 msgid "Loading view…" msgstr "" @@ -4597,19 +4617,19 @@ msgstr "" msgid "Local ULA" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:273 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:275 msgid "Local domain" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:274 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:276 msgid "Local domain suffix appended to DHCP names and hosts file entries." msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:269 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:271 msgid "Local server" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:319 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:324 msgid "Local service only" msgstr "" @@ -4617,7 +4637,7 @@ msgstr "" msgid "Local wireguard key" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:392 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:397 msgid "Localise queries" msgstr "" @@ -4629,7 +4649,7 @@ msgstr "" msgid "Log output level" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:277 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:279 msgid "Log queries" msgstr "" @@ -4653,8 +4673,8 @@ msgstr "" msgid "Logical network to which the tunnel will be added (bridged) (optional)." msgstr "" -#: modules/luci-base/luasrc/view/sysauth.htm:38 -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/sysauth.htm:41 +#: modules/luci-base/ucode/template/sysauth.ut:38 +#: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/sysauth.ut:36 msgid "Login" msgstr "" @@ -4666,7 +4686,7 @@ msgstr "" msgid "Loose filtering" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:31 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:32 msgid "Loss of Signal Seconds (LOSS)" msgstr "" @@ -4674,6 +4694,10 @@ msgstr "" msgid "Lowest leased address as offset from the network address." msgstr "" +#: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/footer.ut:12 +msgid "Lua compatibility mode active" +msgstr "" + #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:48 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:83 msgid "MAC" @@ -4698,7 +4722,7 @@ msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:591 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:40 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:619 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:690 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1164 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2177 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:56 @@ -4757,6 +4781,10 @@ msgstr "" msgid "MTU" msgstr "" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:259 +msgid "MX" +msgstr "" + #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:303 msgid "" "Make sure to clone the root filesystem using something like the commands " @@ -4781,19 +4809,19 @@ msgstr "" msgid "Max <abbr title=\"Router Advertisement\">RA</abbr> interval" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:22 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:23 msgid "Max. Attainable Data Rate (ATTNDR)" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:452 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:457 msgid "Max. DHCP leases" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:459 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:464 msgid "Max. EDNS0 packet size" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:466 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:471 msgid "Max. concurrent queries" msgstr "" @@ -4805,15 +4833,15 @@ msgstr "" msgid "Maximum allowed Listen Interval" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:453 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:458 msgid "Maximum allowed number of active DHCP leases." msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:467 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:472 msgid "Maximum allowed number of concurrent DNS queries." msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:460 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:465 msgid "Maximum allowed size of EDNS0 UDP packets." msgstr "" @@ -4840,7 +4868,7 @@ msgstr "" msgid "Maximum transmit power" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:389 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:394 msgid "May prevent VoIP or other services from working." msgstr "" @@ -5154,11 +5182,15 @@ msgstr "" msgid "Name of the tunnel device" msgstr "" -#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:46 +#: themes/luci-theme-openwrt-2020/ucode/template/themes/openwrt2020/header.ut:39 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:50 msgid "Navigation" msgstr "" +#: protocols/luci-proto-nebula/htdocs/luci-static/resources/protocol/nebula.js:10 +msgid "Nebula Network" +msgstr "" + #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:653 msgid "Neighbour cache validity" msgstr "" @@ -5194,7 +5226,7 @@ msgstr "" msgid "Network address" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:492 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:497 msgid "Network boot image" msgstr "" @@ -5234,7 +5266,7 @@ msgstr "" msgid "Network interface" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:531 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:536 msgid "Network-ID" msgstr "" @@ -5242,7 +5274,7 @@ msgstr "" msgid "Never" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:270 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:272 msgid "" "Never forward matching domains and subdomains, resolve from DHCP or hosts " "files only." @@ -5290,9 +5322,9 @@ msgstr "" msgid "No RX signal" msgstr "" -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:80 -#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:87 -#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:72 +#: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/header.ut:68 +#: themes/luci-theme-material/ucode/template/themes/material/header.ut:82 +#: themes/luci-theme-openwrt-2020/ucode/template/themes/openwrt2020/header.ut:65 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:90 msgid "" "No changes to settings will be stored and are lost after rebooting. This " @@ -5334,10 +5366,6 @@ msgstr "" msgid "No entries in this directory" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:82 -msgid "No files found" -msgstr "" - #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:833 msgid "" "No fixed interface listening port defined, peers might not be able to " @@ -5373,7 +5401,7 @@ msgstr "" msgid "No more slaves available, can not save interface" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:413 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:418 msgid "No negative cache" msgstr "" @@ -5381,8 +5409,8 @@ msgstr "" msgid "No nftables ruleset loaded." msgstr "" -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:69 -#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:61 +#: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/header.ut:57 +#: themes/luci-theme-openwrt-2020/ucode/template/themes/openwrt2020/header.ut:54 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:79 msgid "No password set!" msgstr "" @@ -5422,7 +5450,7 @@ msgstr "" msgid "Noise" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:26 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:27 msgid "Noise Margin (SNR)" msgstr "" @@ -5430,11 +5458,11 @@ msgstr "" msgid "Noise:" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:34 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:35 msgid "Non Pre-emptive CRC errors (CRC_P)" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:325 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:330 msgid "Non-wildcard" msgstr "" @@ -5449,7 +5477,7 @@ msgstr "" msgid "Normal" msgstr "" -#: modules/luci-base/luasrc/view/error404.htm:8 +#: modules/luci-base/ucode/template/error404.ut:9 msgid "Not Found" msgstr "" @@ -5499,7 +5527,7 @@ msgstr "" msgid "Number of IGMP membership reports" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:474 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:479 msgid "Number of cached DNS entries, 10000 is maximum, 0 is no caching." msgstr "" @@ -5548,7 +5576,7 @@ msgstr "" msgid "On-link" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:672 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:743 msgid "One of hostname or MAC address must be specified!" msgstr "" @@ -5584,7 +5612,6 @@ msgid "Open iptables rules overview…" msgstr "" #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:472 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:19 msgid "Open list..." msgstr "" @@ -5728,18 +5755,23 @@ msgstr "" msgid "Options" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:526 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:531 msgid "" "Options for the Network-ID. (Note: needs also Network-ID.) E.g. " -"\"<code>42,192.168.1.4</code>\" for NTP server, \"<code>3,192.168.4.4</" -"code>\" for default route. <code>0.0.0.0</code> means \"the address of the " -"system running dnsmasq\"." +"\"<code>42,192.168.1.4</code>\" for NTP server, \"<code>3,192.168.4.4</code>" +"\" for default route. <code>0.0.0.0</code> means \"the address of the system " +"running dnsmasq\"." msgstr "" #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:125 msgid "Options:" msgstr "" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:584 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:616 +msgid "Ordinal: lower comes first." +msgstr "" + #: protocols/luci-proto-batman-adv/htdocs/luci-static/resources/protocol/batadv.js:55 msgid "Originator Interval" msgstr "" @@ -6011,13 +6043,13 @@ msgctxt "MACVLAN mode" msgid "Pass-through (Mirror physical device to single MAC VLAN)" msgstr "" -#: modules/luci-base/luasrc/view/sysauth.htm:29 +#: modules/luci-base/ucode/template/sysauth.ut:29 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1690 #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:51 #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:114 #: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:103 #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:58 -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/sysauth.htm:24 +#: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/sysauth.ut:19 msgid "Password" msgstr "" @@ -6188,7 +6220,7 @@ msgstr "" msgid "Pkts." msgstr "" -#: modules/luci-base/luasrc/view/sysauth.htm:19 +#: modules/luci-base/ucode/template/sysauth.ut:19 msgid "Please enter your username and password." msgstr "" @@ -6205,6 +6237,7 @@ msgctxt "Chain hook policy" msgid "Policy: <strong>%h</strong> (%h)" msgstr "" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:579 #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/dropbear.js:21 msgid "Port" msgstr "" @@ -6221,11 +6254,11 @@ msgstr "" msgid "Potential negation of: %s" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:37 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:38 msgid "Power Management Mode" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:35 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:36 msgid "Pre-emptive CRC errors (CRCP_P)" msgstr "" @@ -6298,6 +6331,8 @@ msgid "Primary becomes active slave whenever it comes back up (always, 0)" msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:508 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:584 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:616 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:129 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:197 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:223 @@ -6413,7 +6448,7 @@ msgstr "" msgid "Quality" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:428 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:433 msgid "Query all available upstream resolvers." msgstr "" @@ -6495,7 +6530,7 @@ msgstr "" msgid "Raw hex-encoded bytes. Leave empty unless your ISP require this" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:345 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:350 msgid "Read <code>/etc/ethers</code> to configure the DHCP server." msgstr "" @@ -6511,7 +6546,7 @@ msgstr "" msgid "Reassociation Deadline" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:301 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:306 msgid "Rebind protection" msgstr "" @@ -6596,6 +6631,7 @@ msgid "" msgstr "" #: modules/luci-compat/luasrc/model/network/proto_relay.lua:153 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:611 #: protocols/luci-proto-relay/htdocs/luci-static/resources/protocol/relay.js:39 msgid "Relay" msgstr "" @@ -6686,6 +6722,10 @@ msgstr "" msgid "Required. Base64-encoded private key for this interface." msgstr "" +#: protocols/luci-proto-nebula/htdocs/luci-static/resources/protocol/nebula.js:40 +msgid "Required. Path to the .yml config file for this interface." +msgstr "" + #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:587 msgid "Required. Public key of the WireGuard peer." msgstr "" @@ -6767,7 +6807,7 @@ msgid "Reselection policy for primary slave" msgstr "" #: modules/luci-base/htdocs/luci-static/resources/luci.js:2197 -#: modules/luci-base/luasrc/view/sysauth.htm:39 +#: modules/luci-base/ucode/template/sysauth.ut:39 #: modules/luci-compat/luasrc/view/cbi/delegator.htm:17 #: modules/luci-compat/luasrc/view/cbi/footer.htm:30 #: modules/luci-compat/luasrc/view/cbi/simpleform.htm:66 @@ -6786,10 +6826,14 @@ msgstr "" msgid "Resolv and Hosts Files" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:356 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:361 msgid "Resolv file" msgstr "" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:292 +msgid "Resolve specified FQDNs to an IP." +msgstr "" + #: modules/luci-base/htdocs/luci-static/resources/rpc.js:405 msgid "Resource not found" msgstr "" @@ -6816,7 +6860,7 @@ msgstr "" msgid "Restore backup" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:393 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:398 msgid "" "Return answers to DNS queries matching the subnet from which the query was " "received if multiple IPs are available." @@ -6902,7 +6946,7 @@ msgstr "" msgid "Robustness" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:486 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:491 msgid "" "Root directory for files served via TFTP. <em>Enable TFTP server</em> and " "<em>TFTP server root</em> turn on the TFTP server and serve files from " @@ -7005,6 +7049,11 @@ msgstr "" msgid "SNR" msgstr "" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:258 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:569 +msgid "SRV" +msgstr "" + #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/dropbear.js:10 #: modules/luci-mod-system/root/usr/share/luci/menu.d/luci-mod-system.json:38 msgid "SSH Access" @@ -7142,11 +7191,11 @@ msgstr "" msgid "Server" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:519 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:524 msgid "Server address" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:513 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:518 msgid "Server name" msgstr "" @@ -7234,7 +7283,7 @@ msgstr "" msgid "Setup routes for proxied IPv6 neighbours." msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:30 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:31 msgid "Severely Errored Seconds (SES)" msgstr "" @@ -7248,7 +7297,6 @@ msgid "Short Preamble" msgstr "" #: 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 msgid "Show current backup file list" msgstr "" @@ -7282,7 +7330,7 @@ msgstr "" msgid "Signal / Noise" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:25 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:26 msgid "Signal Attenuation (SATN)" msgstr "" @@ -7299,7 +7347,7 @@ msgstr "" msgid "Size" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:473 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:478 msgid "Size of DNS query cache" msgstr "" @@ -7316,12 +7364,12 @@ msgstr "" msgid "Skip from backup files that are equal to those in /rom" msgstr "" -#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:42 +#: themes/luci-theme-openwrt-2020/ucode/template/themes/openwrt2020/header.ut:35 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:46 msgid "Skip to content" msgstr "" -#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:41 +#: themes/luci-theme-openwrt-2020/ucode/template/themes/openwrt2020/header.ut:34 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:45 msgid "Skip to navigation" msgstr "" @@ -7339,14 +7387,10 @@ msgstr "" msgid "Some fields are invalid, cannot save values!" msgstr "" -#: modules/luci-base/luasrc/view/error404.htm:9 +#: modules/luci-base/ucode/template/error404.ut:10 msgid "Sorry, the object you requested was not found." msgstr "" -#: modules/luci-base/luasrc/view/error500.htm:9 -msgid "Sorry, the server encountered an unexpected error." -msgstr "" - #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:442 msgid "" "Sorry, there is no sysupgrade support present; a new firmware image must be " @@ -7382,7 +7426,7 @@ msgctxt "nft ip sport" msgid "Source port" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:500 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:505 msgid "" "Special <abbr title=\"Preboot eXecution Environment\">PXE</abbr> boot " "options for Dnsmasq." @@ -7750,7 +7794,7 @@ msgstr "" msgid "Static address" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:598 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:669 msgid "" "Static leases are used to assign fixed IP addresses and symbolic hostnames " "to DHCP clients. They are also required for non-dynamic interface " @@ -7764,7 +7808,7 @@ msgstr "" #: modules/luci-base/root/usr/share/luci/menu.d/luci-base.json:16 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:541 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:929 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:9 +#: modules/luci-mod-status/ucode/template/admin_status/index.ut:9 msgid "Status" msgstr "" @@ -7790,7 +7834,7 @@ msgstr "" msgid "Strict filtering" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:422 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:427 msgid "Strict order" msgstr "" @@ -7803,11 +7847,11 @@ msgstr "" msgid "Submit" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:372 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:377 msgid "Suppress logging" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:373 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:378 msgid "Suppress logging of the routine operation for the DHCP protocol." msgstr "" @@ -7860,6 +7904,14 @@ msgstr "" msgid "Sync with browser" msgstr "" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:293 +msgid "Syntax: <code>/fqdn[/fqdn…]/[ipaddr]</code>." +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:569 +msgid "Syntax: <code>_service._proto.example.com</code>." +msgstr "" + #: modules/luci-base/root/usr/share/luci/menu.d/luci-base.json:26 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/10_system.js:17 #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:113 @@ -7885,9 +7937,9 @@ msgstr "" msgid "System log buffer size" msgstr "" -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:79 -#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:86 -#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:71 +#: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/header.ut:67 +#: themes/luci-theme-material/ucode/template/themes/material/header.ut:81 +#: themes/luci-theme-openwrt-2020/ucode/template/themes/openwrt2020/header.ut:64 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:89 msgid "System running in recovery (initramfs) mode." msgstr "" @@ -7916,7 +7968,7 @@ msgstr "" msgid "TCP:" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:485 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:490 msgid "TFTP server root" msgstr "" @@ -7941,6 +7993,7 @@ msgstr "" msgid "Table" msgstr "" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:574 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:56 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:66 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:187 @@ -8011,15 +8064,15 @@ msgid "" "username instead of the user ID!" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:681 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:752 msgid "The IP address %h is already used by another static lease" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:690 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:761 msgid "The IP address is outside of any DHCP pool address range" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:520 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:525 msgid "The IP address of the boot server" msgstr "" @@ -8184,7 +8237,7 @@ msgid "" "to be received and retransmitted which costs airtime)" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:514 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:519 msgid "The hostname of the boot server" msgstr "" @@ -8269,8 +8322,8 @@ msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:139 msgid "" -"The network ports on this device can be combined to several <abbr " -"title=\"Virtual Local Area Network\">VLAN</abbr>s in which computers can " +"The network ports on this device can be combined to several <abbr title=" +"\"Virtual Local Area Network\">VLAN</abbr>s in which computers can " "communicate directly with each other. <abbr title=\"Virtual Local Area " "Network\">VLAN</abbr>s are often used to separate different network " "segments. Often there is by default one Uplink port for a connection to the " @@ -8321,7 +8374,7 @@ msgstr "" msgid "The selected %s mode is incompatible with %s encryption" msgstr "" -#: modules/luci-base/luasrc/view/csrftoken.htm:11 +#: modules/luci-base/ucode/template/csrftoken.ut:11 msgid "The submitted security token is invalid or already expired!" msgstr "" @@ -8391,8 +8444,8 @@ msgid "" "nftables rules is discouraged and may lead to incomplete traffic filtering." msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:746 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:778 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:817 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:849 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:130 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:179 msgid "There are no active leases" @@ -8402,8 +8455,8 @@ msgstr "" msgid "There are no changes to apply" msgstr "" -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:70 -#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:62 +#: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/header.ut:58 +#: themes/luci-theme-openwrt-2020/ucode/template/themes/openwrt2020/header.ut:55 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:80 msgid "" "There is no password set on this router. Please configure a root password to " @@ -8424,7 +8477,6 @@ msgid "This does not look like a valid PEM file" msgstr "" #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:454 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:16 msgid "" "This is a list of shell glob patterns for matching files and directories to " "include during sysupgrade. Modified files in /etc/config/ and certain other " @@ -8460,7 +8512,7 @@ msgid "" "ends with <code>...:2/64</code>" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:266 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:268 msgid "This is the only DHCP server in the local network." msgstr "" @@ -8539,8 +8591,8 @@ msgstr "" #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:440 msgid "" "To fully configure the local WireGuard interface from an existing (e.g. " -"provider supplied) configuration file, use the <strong><a class=\"full-" -"import\" href=\"#\">configuration import</a></strong> instead." +"provider supplied) configuration file, use the <strong><a class=\"full-import" +"\" href=\"#\">configuration import</a></strong> instead." msgstr "" #: modules/luci-base/htdocs/luci-static/resources/luci.js:2674 @@ -8702,7 +8754,7 @@ msgstr "" msgid "Unable to determine upstream interface" msgstr "" -#: modules/luci-base/luasrc/view/error404.htm:11 +#: modules/luci-base/ucode/template/error404.ut:12 msgid "Unable to dispatch" msgstr "" @@ -8757,7 +8809,7 @@ msgstr "" msgid "Unable to verify PIN" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:32 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:33 msgid "Unavailable Seconds (UAS)" msgstr "" @@ -8901,7 +8953,7 @@ msgid "" "will be restarted to apply the updated configuration." msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:423 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:428 msgid "Upstream resolvers will be queried in the order of the resolv file." msgstr "" @@ -8910,7 +8962,7 @@ msgstr "" msgid "Uptime" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:344 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:349 msgid "Use <code>/etc/ethers</code>" msgstr "" @@ -9021,7 +9073,7 @@ msgstr "" msgid "Use system certificates for inner-tunnel" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:599 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:670 msgid "" "Use the <em>Add</em> Button to add a new lease entry. The <em>MAC address</" "em> identifies the host, the <em>IPv4 address</em> specifies the fixed " @@ -9072,11 +9124,11 @@ msgstr "" msgid "User key (PEM encoded)" msgstr "" -#: modules/luci-base/luasrc/view/sysauth.htm:23 +#: modules/luci-base/ucode/template/sysauth.ut:23 #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:112 #: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:101 #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:56 -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/sysauth.htm:18 +#: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/sysauth.ut:13 msgid "Username" msgstr "" @@ -9174,7 +9226,7 @@ msgstr "" msgid "VXLANv6 (RFC7348)" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:398 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:403 msgid "" "Validate DNS replies and cache DNSSEC data, requires upstream to support " "DNSSEC." @@ -9207,7 +9259,7 @@ msgstr "" msgid "Vendor Class to send when requesting DHCP" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:403 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:408 msgid "Verify unsigned domain responses really come from unsigned domains." msgstr "" @@ -9282,6 +9334,10 @@ msgstr "" msgid "Weak" msgstr "" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:589 +msgid "Weight" +msgstr "" + #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1029 msgid "" "When delegating prefixes to multiple downstreams, interfaces with a higher " @@ -9402,7 +9458,7 @@ msgstr "" msgid "Wireless network is enabled" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:278 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:280 msgid "Write received DNS queries to syslog." msgstr "" @@ -9437,8 +9493,16 @@ msgid "" "scripts like \"network\", your device might become inaccessible!</strong>" msgstr "" -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:90 -#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:97 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:559 +msgid "You may add multiple records for the same Target." +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:596 +msgid "You may add multiple records for the same domain." +msgstr "" + +#: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/header.ut:78 +#: themes/luci-theme-material/ucode/template/themes/material/header.ut:92 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:73 msgid "" "You must enable JavaScript in your browser or LuCI will not work properly." @@ -9467,7 +9531,17 @@ msgstr "" msgid "ZRam Size" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:449 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:558 +msgid "_proto: _tcp, _udp, _sctp, _quic, … ." +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:557 +msgid "" +"_service: _sip, _ldap, _imap, _stun, _xmpp-client, … . (Note: while _http is " +"possible, no browsers support SRV records.)" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:454 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:152 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:163 msgid "any" @@ -9578,8 +9652,8 @@ msgstr "" msgid "e.g: dump" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:726 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:756 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:797 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:827 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:101 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:148 msgid "expired" @@ -9790,9 +9864,9 @@ msgstr "" msgid "unknown" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:456 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:724 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:754 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:461 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:795 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:825 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:99 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:146 msgid "unlimited" diff --git a/modules/luci-base/po/tr/base.po b/modules/luci-base/po/tr/base.po index 7e09f1145f..ad4ee4e6a1 100644 --- a/modules/luci-base/po/tr/base.po +++ b/modules/luci-base/po/tr/base.po @@ -4,8 +4,8 @@ msgstr "" "POT-Creation-Date: \n" "PO-Revision-Date: 2022-09-25 14:22+0000\n" "Last-Translator: semih <semiht@gmail.com>\n" -"Language-Team: Turkish <https://hosted.weblate.org/projects/openwrt/luci/tr/>" -"\n" +"Language-Team: Turkish <https://hosted.weblate.org/projects/openwrt/luci/tr/" +">\n" "Language: tr\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -228,6 +228,22 @@ msgstr "<abbr title=\"Router Advertisement\">RA</abbr> MTU" msgid "<abbr title=\"Router Advertisement\">RA</abbr>-Service" msgstr "<abbr title=\"Router Advertisement\">RA</abbr>-Servisi" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:294 +msgid "" +"<code>/#/</code> matches any domain. <code>/example.com/</code> returns " +"NXDOMAIN." +msgstr "" +"<code>/#/</code> herhangi bir alanla eşleşir. <code>/example.com/</code>, " +"NXDOMAIN değerini döndürür." + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:295 +msgid "" +"<code>/example.com/#</code> returns NULL addresses (<code>0.0.0.0</code> and " +"<code>::</code>) for example.com and its subdomains." +msgstr "" +"<code>/example.com/#</code>, example.com ve alt alanları için NULL adresleri " +"(<code>0.0.0.0</code> ve <code>::</code>) döndürür." + #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:87 msgctxt "nft relational \">\" operator expression" msgid "<var>%s</var> greater than <strong>%s</strong>" @@ -359,6 +375,10 @@ msgid "" "to the STA MAC address. Note: This is not Directed Multicast Service (DMS) " "in 802.11v. Note: might break receiver STA multicast expectations." msgstr "" +"Çok noktaya yayın hedef MAC'leri ile ARP, IPv4 ve IPv6 (hatta 802.1Q), STA " +"MAC adresine tek yayındır. Not: Bu, 802.11v'deki Yönlendirilmiş Çok Noktaya " +"Yayın Hizmeti (DMS) değildir. Not: alıcının STA çok noktaya yayın " +"beklentilerini bozabilir." #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1511 msgid "ATM (Asynchronous Transfer Mode)" @@ -393,7 +413,7 @@ msgstr "" msgid "ATM device number" msgstr "ATM cihaz numarası" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:36 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:37 msgid "ATU-C System Vendor ID" msgstr "ATU-C Sistem Satıcısı Kimliği" @@ -403,7 +423,7 @@ msgstr "ATU-C Sistem Satıcısı Kimliği" msgid "Absent Interface" msgstr "Eksik Arayüz" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:320 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:325 msgid "Accept DNS queries only from hosts whose address is on a local subnet." msgstr "" "DNS hizmetini, DNS hizmeti verdiğimiz alt ağ arabirimleriyle sınırlayın." @@ -543,7 +563,7 @@ msgstr "Örnek ekle" msgid "Add key" msgstr "Anahtar ekle" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:410 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:415 msgid "Add local domain suffix to names served from hosts files." msgstr "Host dosyalarından sunulan adlara yerel etki alanı son eki ekle." @@ -564,11 +584,11 @@ msgstr "Kara Listeye Ekle" msgid "Add to Whitelist" msgstr "Beyaz Listeye Ekle" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:367 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:372 msgid "Additional hosts files" msgstr "Ek Hosts dosyaları" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:417 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:422 msgid "Additional servers file" msgstr "Ek sunucular dosyası" @@ -598,7 +618,7 @@ msgstr "Adres ayarı geçersiz" msgid "Address to access local relay bridge" msgstr "Yerel aktarma köprüsüne erişim adresi" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:289 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:291 msgid "Addresses" msgstr "Adresler" @@ -631,7 +651,7 @@ msgstr "Yaşlanma süresi" msgid "Aggregate Originator Messages" msgstr "Gönderen Mesajlarını Birleştir" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:27 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:28 msgid "Aggregate Transmit Power (ACTATP)" msgstr "Toplam İletim Gücü (ACTATP)" @@ -671,18 +691,18 @@ msgstr "Takma Ad Arayüzü" msgid "Alias of \"%s\"" msgstr "\"%s\" lakabı" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:427 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:432 msgid "All servers" msgstr "Tüm Sunucular" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:378 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:383 msgid "" "Allocate IP addresses sequentially, starting from the lowest available " "address." msgstr "" "Kullanılabilir en düşük adresten başlayarak IP adreslerini sırayla tahsis et." -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:377 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:382 msgid "Allocate IPs sequentially" msgstr "Sırayla IP tahsis et" @@ -713,7 +733,7 @@ msgstr "Eski 802.11b hızlarına izin ver" msgid "Allow listed only" msgstr "Yanlızca listelenenlere izin ver" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:306 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:311 msgid "Allow localhost" msgstr "Yerel ağa izin ver" @@ -759,7 +779,7 @@ msgstr "Her zaman kapalı (çekirdek: yok)" msgid "Always on (kernel: default-on)" msgstr "Her zaman açık (çekirdek: varsayılan-açık)" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:538 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:543 msgid "Always send DHCP Options. Sometimes needed, with e.g. PXELinux." msgstr "" "Her zaman DHCP Seçeneklerini gönderin. Bazen gerekebilir, örn. PXELinux." @@ -789,7 +809,7 @@ msgid "An optional, short description for this device" msgstr "Bu cihaz için isteğe bağlı, kısa bir açıklama" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1484 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:20 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:21 msgid "Annex" msgstr "Annex" @@ -909,7 +929,7 @@ msgstr "Herhangi bir paket" msgid "Any zone" msgstr "Herhangi bir bölge" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:532 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:537 msgid "Apply DHCP Options to this net. (Empty = all clients)." msgstr "Bu ağa DHCP Seçeneklerini uygulayın. (Boş = tüm istemciler)." @@ -929,7 +949,7 @@ msgstr "Başvuru isteği <code>%h</code> durumuyla başarısız oldu" #: modules/luci-base/htdocs/luci-static/resources/ui.js:4395 #: modules/luci-base/htdocs/luci-static/resources/ui.js:4515 msgid "Apply unchecked" -msgstr "İşaretlenmemişi uygula" +msgstr "Kontrolsuz olarak uygula" #: modules/luci-base/htdocs/luci-static/resources/ui.js:4648 msgid "Apply with revert after connectivity loss" @@ -1008,11 +1028,11 @@ msgstr "Kimlik Doğrulama" msgid "Authentication Type" msgstr "Kimlik doğrulama türü" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:265 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:267 msgid "Authoritative" msgstr "Yetkili" -#: modules/luci-base/luasrc/view/sysauth.htm:17 +#: modules/luci-base/ucode/template/sysauth.ut:17 #: themes/luci-theme-bootstrap/htdocs/luci-static/resources/view/bootstrap/sysauth.js:11 msgid "Authorization Required" msgstr "İzin Gerekli" @@ -1085,11 +1105,13 @@ msgstr "Ortalama:" msgid "Avoid Bridge Loops" msgstr "Köprü Döngülerinden Kaçın" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:388 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:393 msgid "" "Avoid uselessly triggering dial-on-demand links (filters SRV/SOA records and " "names with underscores)." msgstr "" +"İsteğe bağlı arama bağlantılarını gereksiz yere tetiklemekten kaçın (SRV/SOA " +"kayıtlarını ve alt çizgili adları filtreler)." #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1505 msgid "B43 + B43C" @@ -1120,10 +1142,6 @@ msgstr "Geri" msgid "Back to Overview" msgstr "Genel Bakışa dön" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:48 -msgid "Back to configuration" -msgstr "Yapılandırmaya dön" - #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:826 msgid "Back to peer configuration" msgstr "Eş yapılandırmasına geri dön" @@ -1137,7 +1155,6 @@ msgid "Backup / Flash Firmware" msgstr "Yedekleme/Sistem Yazılımı Yükleme" #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:351 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:12 msgid "Backup file list" msgstr "Yedek dosya listesi" @@ -1187,7 +1204,6 @@ msgid "Beacon Interval" msgstr "İşaret Aralığı" #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:352 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:46 msgid "" "Below is the determined list of files to backup. It consists of changed " "configuration files marked by opkg, essential base files and the user " @@ -1201,7 +1217,7 @@ msgstr "" msgid "Bind NTP server" msgstr "NTP sunucusu bağla" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:326 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:331 msgid "Bind dynamically to interfaces rather than wildcard address." msgstr "Joker karakter adresi yerine arayüzlere dinamik olarak bağlan." @@ -1217,6 +1233,19 @@ msgstr "Joker karakter adresi yerine arayüzlere dinamik olarak bağlan." msgid "Bind interface" msgstr "Arabirimi bağla" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:595 +msgid "" +"Bind service records to a domain name: specify the location of services." +msgstr "Hizmet kayıtlarını bir alan adına bağla: hizmetlerin yerini belirtin." + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:556 +msgid "" +"Bind service records to a domain name: specify the location of services. See " +"<a href=\"%s\">RFC2782</a>." +msgstr "" +"Hizmet kayıtlarını bir alan adına bağla: hizmetlerin yerini belirtin. <a " +"href=\"%s\">RFC2782</a>'ye bakın." + #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:59 #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:64 #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:64 @@ -1321,6 +1350,10 @@ msgstr "CA sertifikası; boşsa, ilk bağlantıdan sonra kaydedilecektir." msgid "CLAT configuration failed" msgstr "CLAT yapılandırması başarısız oldu" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:574 +msgid "CNAME or fqdn" +msgstr "CNAME veya fqdn" + #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/processes.js:72 msgid "CPU usage (%)" msgstr "CPU kullanımı (%)" @@ -1578,17 +1611,13 @@ msgstr "" "Belirli bir saniye süresinden sonra etkin olmayan bağlantıyı kapatın, " "bağlantıyı sürdürmek için 0'ı kullanın" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:49 -msgid "Close list..." -msgstr "Listeyi kapat..." - #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:44 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:63 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2184 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:391 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:352 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:355 -#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:72 +#: themes/luci-theme-material/ucode/template/themes/material/header.ut:66 msgid "Collecting data..." msgstr "Veriler toplanıyor..." @@ -1628,6 +1657,10 @@ msgstr "" msgid "Compute outgoing checksum (optional)." msgstr "Giden sağlama toplamını hesaplayın (isteğe bağlı)." +#: protocols/luci-proto-nebula/htdocs/luci-static/resources/protocol/nebula.js:40 +msgid "Config File" +msgstr "Yapılandırma dosyası" + #: modules/luci-base/htdocs/luci-static/resources/ui.js:4375 #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:454 msgid "Configuration" @@ -1675,8 +1708,8 @@ msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:764 msgid "" -"Configures the operation mode of the <abbr title=\"Router " -"Advertisement\">RA</abbr> service on this interface." +"Configures the operation mode of the <abbr title=\"Router Advertisement" +"\">RA</abbr> service on this interface." msgstr "" "Bu arayüzde <abbr title=\"Router Advertisement\">RA</abbr> hizmetinin " "çalışma modunu yapılandırır." @@ -1859,8 +1892,8 @@ msgstr "Özel flaş aralığı (kernel: timer)" #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/leds.js:59 msgid "" -"Customizes the behaviour of the device <abbr title=\"Light Emitting " -"Diode\">LED</abbr>s if possible." +"Customizes the behaviour of the device <abbr title=\"Light Emitting Diode" +"\">LED</abbr>s if possible." msgstr "" "Mümkünse, cihazın <abbr title=\"Light Emitting Diode\">LED</abbr> lerinin " "davranışını özelleştirir." @@ -1881,7 +1914,7 @@ msgstr "DAE-Bağlantı Noktası" msgid "DAE-Secret" msgstr "DAE-Gizli kelime" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:525 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:530 msgid "DHCP Options" msgstr "DHCP Seçenekleri" @@ -1921,11 +1954,11 @@ msgstr "DHCPv6 Hizmeti" msgid "DNS" msgstr "DNS" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:282 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:284 msgid "DNS forwardings" msgstr "DNS iletimleri" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:445 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:450 msgid "DNS query port" msgstr "<abbr title=\"Domain Name System\">DNS</abbr> sorgusu bağlantı noktası" @@ -1933,7 +1966,7 @@ msgstr "<abbr title=\"Domain Name System\">DNS</abbr> sorgusu bağlantı noktas msgid "DNS search domains" msgstr "DNS arama alanları" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:438 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:443 msgid "DNS server port" msgstr "" "<abbr title=\"Domain Name System\">DNS</abbr> sunucusu bağlantı noktası" @@ -1950,11 +1983,11 @@ msgstr "DNS ağırlığı" msgid "DNS-Label / FQDN" msgstr "DNS Etiketi / FQDN" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:397 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:402 msgid "DNSSEC" msgstr "DNSSEC" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:402 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:407 msgid "DNSSEC check unsigned" msgstr "DNSSEC kontrolü imzalanmamış" @@ -1967,11 +2000,11 @@ msgid "DS-Lite AFTR address" msgstr "DS-Lite AFTR adresi" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1481 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:44 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:45 msgid "DSL" msgstr "DSL" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:14 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:15 msgid "DSL Status" msgstr "DSL Durumu" @@ -1984,12 +2017,12 @@ msgid "DTIM Interval" msgstr "DTIM Aralığı" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:59 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:700 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:771 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:136 msgid "DUID" msgstr "DUID" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:21 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:22 msgid "Data Rate" msgstr "Veri hızı" @@ -2240,7 +2273,7 @@ msgstr "Etkisizleştirilmiş" msgid "Disassociate On Low Acknowledgement" msgstr "Düşük Onayda İlişkilendirmeyi Kes" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:302 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:307 msgid "" "Discard upstream responses containing <a href=\"%s\">RFC1918</a> addresses." msgstr "" @@ -2287,7 +2320,7 @@ msgstr "Metre cinsinden en uzak ağ üyesine olan mesafe." msgid "Distributed ARP Table" msgstr "Dağıtılmış ARP Tablosu" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:543 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:548 msgid "" "Dnsmasq instance to which this boot section is bound. If unspecified, the " "section is valid for all dnsmasq instances." @@ -2297,15 +2330,15 @@ msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:246 msgid "" -"Dnsmasq is a lightweight <abbr title=\"Dynamic Host Configuration " -"Protocol\">DHCP</abbr> server and <abbr title=\"Domain Name System\">DNS</" -"abbr> forwarder." +"Dnsmasq is a lightweight <abbr title=\"Dynamic Host Configuration Protocol" +"\">DHCP</abbr> server and <abbr title=\"Domain Name System\">DNS</abbr> " +"forwarder." msgstr "" "Dnsmasq, hafif bir <abbr title=\"Dynamic Host Configuration Protocol\">DHCP</" "abbr> sunucusu ve <abbr title=\"Domain Name System\">DNS</abbr> " "yönlendiricisidir." -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:414 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:419 msgid "Do not cache negative replies, e.g. for non-existent domains." msgstr "" "Olumsuz yanıtları önbelleğe alma, ör. mevcut olmayan etki alanları için." @@ -2318,15 +2351,15 @@ msgstr "" msgid "Do not create host route to peer (optional)." msgstr "Eşe ana bilgisayar yolu oluşturmayın (isteğe bağlı)." -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:262 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:264 msgid "Do not forward DNS queries without dots or domain parts." msgstr "DNS sorgularını noktalar veya etki alanı bölümleri olmadan iletme." -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:383 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:388 msgid "Do not forward reverse lookups for local networks." msgstr "Yerel ağlar için geriye doğru aramaları iletme." -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:339 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:344 msgid "Do not listen on the specified interfaces." msgstr "Bu arayüzlerde dinlemeyi önle." @@ -2383,15 +2416,16 @@ msgstr "Mevcut şifreyi (PSK) değiştirmek istiyor musunuz?" msgid "Do you want to replace the current keys?" msgstr "Mevcut anahtarları değiştirmek istiyor musunuz?" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:593 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:606 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:664 msgid "Domain" msgstr "Alan" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:261 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:263 msgid "Domain required" msgstr "Alan gerekli" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:311 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:316 msgid "Domain whitelist" msgstr "Alan beyaz listesi" @@ -2639,7 +2673,7 @@ msgstr "NTP istemcisini etkinleştir" msgid "Enable Single DES" msgstr "Tek DES'i Etkinleştir" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:480 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:485 msgid "Enable TFTP server" msgstr "TFTP sunucusunu etkinleştir" @@ -2657,9 +2691,9 @@ msgstr "WPS düğmesini etkinleştirin, WPA(2)-PSK/WPA3-SAE gerektirir" #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/uhttpd.js:14 msgid "" -"Enable automatic redirection of <abbr title=\"Hypertext Transfer " -"Protocol\">HTTP</abbr> requests to <abbr title=\"Hypertext Transfer Protocol " -"Secure\">HTTPS</abbr> port." +"Enable automatic redirection of <abbr title=\"Hypertext Transfer Protocol" +"\">HTTP</abbr> requests to <abbr title=\"Hypertext Transfer Protocol Secure" +"\">HTTPS</abbr> port." msgstr "" "<abbr title=\"Hypertext Transfer Protocol\">HTTP</abbr> isteklerinin <abbr " "title=\"Hypertext Transfer Protocol Secure\">HTTPS</abbr> bağlantı noktasına " @@ -2728,7 +2762,7 @@ msgstr "Çok noktaya yayın trafiği desteğini etkinleştirin (isteğe bağlı) msgid "Enable the DF (Don't Fragment) flag of the encapsulating packets." msgstr "Kapsüllenen paketlerin DF (Parçalama) bayrağını etkinleştirin." -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:481 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:486 msgid "Enable the built-in single-instance TFTP server." msgstr "Yerleşik tek örnekli TFTP sunucusunu etkinleştirin." @@ -2849,7 +2883,7 @@ msgstr "Hata" msgid "Error getting PublicKey" msgstr "PublicKey alınırken hata oluştu" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:29 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:30 msgid "Errored seconds (ES)" msgstr "Hatalı saniye (ES)" @@ -2871,11 +2905,11 @@ msgstr "30 saniyede bir (yavaş, 0)" msgid "Every second (fast, 1)" msgstr "Her saniye (hızlı, 1)" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:338 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:343 msgid "Exclude interfaces" msgstr "Arayüzleri hariç tut" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:307 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:312 msgid "" "Exempt <code>127.0.0.0/8</code> and <code>::1</code> from rebinding checks, " "e.g. for RBL services." @@ -2887,7 +2921,7 @@ msgstr "" msgid "Existing device" msgstr "Mevcut cihaz" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:409 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:414 msgid "Expand hosts" msgstr "Ana bilgisayarları genişlet" @@ -3023,7 +3057,7 @@ msgstr "Çalışma modu ayarlanamadı" msgid "File" msgstr "Dosya" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:418 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:423 msgid "" "File listing upstream resolvers, optionally domain-specific, e.g. " "<code>server=1.2.3.4</code>, <code>server=/domain/1.2.3.4</code>." @@ -3036,20 +3070,20 @@ msgstr "" msgid "File not accessible" msgstr "Dosyaya erişilemiyor" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:349 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:354 msgid "File to store DHCP lease information." msgstr "DHCP kiralama bilgilerinin saklanacağı dosya." -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:357 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:362 msgid "File with upstream resolvers." msgstr "Yukarı akış çözümleyicilerinin olduğu dosya." #: modules/luci-base/htdocs/luci-static/resources/ui.js:2846 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:507 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:512 msgid "Filename" msgstr "Dosya adı" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:493 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:498 msgid "Filename of the boot image advertised to clients." msgstr "İstemcilere tanıtılan önyükleme kalıbının dosya adı." @@ -3058,11 +3092,11 @@ msgstr "İstemcilere tanıtılan önyükleme kalıbının dosya adı." msgid "Filesystem" msgstr "Dosya sistemi" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:382 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:387 msgid "Filter private" msgstr "Özelleri filtrele" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:387 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:392 msgid "Filter useless" msgstr "Faydasızları filtrele" @@ -3128,7 +3162,7 @@ msgstr "Sistem Yazılımı Dosyası" msgid "Firmware Version" msgstr "Sistem Yazılımı Sürümü" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:446 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:451 msgid "Fixed source port for outbound DNS queries." msgstr "Giden DNS sorguları için sabit kaynak bağlantı noktası." @@ -3154,7 +3188,7 @@ msgstr "Cihaza sistem yazılımı yükleme/yedekleme işlemleri" msgid "Flashing…" msgstr "Yazılıyor…" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:537 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:542 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:686 msgid "Force" msgstr "Zorla" @@ -3199,21 +3233,21 @@ msgstr "Zorla yükseltme" msgid "Force use of NAT-T" msgstr "NAT-T'yi kullanmaya zorla" -#: modules/luci-base/luasrc/view/csrftoken.htm:8 +#: modules/luci-base/ucode/template/csrftoken.ut:8 msgid "Form token mismatch" msgstr "Form belirteci uyuşmazlığı" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:919 msgid "" -"Forward <abbr title=\"Neighbour Discovery Protocol\">NDP</abbr> <abbr " -"title=\"Neighbour Solicitation, Type 135\">NS</abbr> and <abbr " -"title=\"Neighbour Advertisement, Type 136\">NA</abbr> messages between the " -"designated master interface and downstream interfaces." +"Forward <abbr title=\"Neighbour Discovery Protocol\">NDP</abbr> <abbr title=" +"\"Neighbour Solicitation, Type 135\">NS</abbr> and <abbr title=\"Neighbour " +"Advertisement, Type 136\">NA</abbr> messages between the designated master " +"interface and downstream interfaces." msgstr "" -"<abbr title=\"Neighbour Discovery Protocol\">NDP</abbr><abbr " -"title=\"Neighbour Solicitation, Type 135\">NS</abbr> ve <abbr " -"title=\"Neighbour Advertisement, Type 136\">NA</abbr> belirlenmiş ana arayüz " -"ve aşağı akış arayüzleri arasındaki mesajları ilet." +"<abbr title=\"Neighbour Discovery Protocol\">NDP</abbr><abbr title=" +"\"Neighbour Solicitation, Type 135\">NS</abbr> ve <abbr title=\"Neighbour " +"Advertisement, Type 136\">NA</abbr> belirlenmiş ana arayüz ve aşağı akış " +"arayüzleri arasındaki mesajları ilet." #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:770 msgid "" @@ -3236,7 +3270,7 @@ msgstr "" "DHCPv6 mesajlarını belirlenen ana arabirim ve aşağı akış arabirimleri " "arasında ilet." -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:28 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:29 msgid "Forward Error Correction Seconds (FECS)" msgstr "İleri Hata Düzeltme Saniyelesi (FECS)" @@ -3397,15 +3431,15 @@ msgstr "Genel Ayarlar" msgid "Global network options" msgstr "Genel ağ seçenekleri" -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:82 -#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:89 -#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:74 +#: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/header.ut:70 +#: themes/luci-theme-material/ucode/template/themes/material/header.ut:84 +#: themes/luci-theme-openwrt-2020/ucode/template/themes/openwrt2020/header.ut:67 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:92 msgid "Go to firmware upgrade..." msgstr "Ürün yazılımı yükseltmesine git..." -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:72 -#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:64 +#: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/header.ut:60 +#: themes/luci-theme-openwrt-2020/ucode/template/themes/openwrt2020/header.ut:57 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:82 msgid "Go to password configuration..." msgstr "Parola yapılandırmasına git..." @@ -3546,7 +3580,7 @@ msgstr "HTTP(lere) Erişim" msgid "Hang Up" msgstr "Kapat" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:33 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:34 msgid "Header Error Code Errors (HEC)" msgstr "Üstbilgi Hata Kodu Hataları (HEC)" @@ -3599,7 +3633,7 @@ msgstr "Ana bilgisayar" msgid "Host expiry timeout" msgstr "Ana bilgisayar süre sonu zaman aşımı" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:508 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:513 msgid "Host requests this filename from the boot server." msgstr "Ana makine, bu dosya adını önyükleme sunucusundan ister." @@ -3608,8 +3642,8 @@ msgid "Host-Uniq tag content" msgstr "Host-Uniq etiket içeriği" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:38 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:559 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:607 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:630 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:678 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/10_system.js:54 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:87 #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:135 @@ -3624,7 +3658,7 @@ msgstr "DHCP istendiğinde gönderilecek ana bilgisayar adı" msgid "Hostnames" msgstr "Ana bilgisayar adları" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:551 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:622 msgid "" "Hostnames are used to bind a domain name to an IP address. This setting is " "redundant for hostnames already configured with static leases, but it can be " @@ -3654,12 +3688,12 @@ msgstr "Hibrit" #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:49 msgctxt "nft icmp code" msgid "ICMP code" -msgstr "" +msgstr "ICMP kodu" #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:50 msgctxt "nft icmp type" msgid "ICMP type" -msgstr "" +msgstr "ICMP türü" #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:51 msgctxt "nft icmpv6 code" @@ -3692,7 +3726,7 @@ msgstr "IP Adresleri" msgid "IP Protocol" msgstr "IP Protokolü" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:258 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:260 msgid "IP Sets" msgstr "IP Kümeleri" @@ -3700,7 +3734,7 @@ msgstr "IP Kümeleri" msgid "IP Type" msgstr "IP Türü" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:563 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:634 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:178 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:204 msgid "IP address" @@ -3726,15 +3760,15 @@ msgctxt "nft meta l4proto" msgid "IP protocol" msgstr "IP protokolü" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:589 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:660 msgid "IP set" msgstr "IP kümesi" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:295 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:300 msgid "IP sets" msgstr "IP kümeleri" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:432 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:437 msgid "IPs to override with NXDOMAIN" msgstr "Sahte NX Etki Alanını Geçersiz Kılma" @@ -3775,7 +3809,7 @@ msgstr "IPv4 Yukarı Akış" #: modules/luci-base/htdocs/luci-static/resources/protocol/static.js:178 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:39 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:665 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:736 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:88 #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:164 msgid "IPv4 address" @@ -3946,7 +3980,7 @@ msgstr "IPv6 kaynak yönlendirmesi" msgid "IPv6 suffix" msgstr "IPv6 son eki" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:706 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:777 msgid "IPv6 suffix (hex)" msgstr "" "<abbr title=\"Internet Protocol Version 6\">IPv6</abbr>-Son ek (onaltılık)" @@ -4048,10 +4082,10 @@ msgstr "" #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:340 msgid "" "If your physical memory is insufficient unused data can be temporarily " -"swapped to a swap-device resulting in a higher amount of usable <abbr " -"title=\"Random Access Memory\">RAM</abbr>. Be aware that swapping data is a " -"very slow process as the swap-device cannot be accessed with the high " -"datarates of the <abbr title=\"Random Access Memory\">RAM</abbr>." +"swapped to a swap-device resulting in a higher amount of usable <abbr title=" +"\"Random Access Memory\">RAM</abbr>. Be aware that swapping data is a very " +"slow process as the swap-device cannot be accessed with the high datarates " +"of the <abbr title=\"Random Access Memory\">RAM</abbr>." msgstr "" "Fiziksel belleğiniz yetersizse, kullanılmayan veriler geçici olarak bir " "takas cihazına aktarılabilir ve bu da daha yüksek miktarda kullanılabilir " @@ -4060,7 +4094,7 @@ msgstr "" "değerleri ile erişilemediğinden, verilerin değiş tokuşunun çok yavaş bir " "süreç olduğunu unutmayın." -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:363 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:368 msgid "Ignore <code>/etc/hosts</code>" msgstr "<code>/etc/hosts</code>'u göz ardı et" @@ -4068,7 +4102,7 @@ msgstr "<code>/etc/hosts</code>'u göz ardı et" msgid "Ignore interface" msgstr "Arayüzü yoksay" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:352 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:357 msgid "Ignore resolv file" msgstr "Dosyayı çözümlemeyi göz ardı et" @@ -4119,7 +4153,7 @@ msgstr "" "döngülerinden kaçınmak için köprü döngüsünden kaçınmanın etkinleştirilmesi " "tavsiye edilir." -#: modules/luci-base/luasrc/view/csrftoken.htm:13 +#: modules/luci-base/ucode/template/csrftoken.ut:13 msgid "" "In order to prevent unauthorized access to the system, your request has been " "blocked. Click \"Continue »\" below to return to the previous page." @@ -4232,7 +4266,7 @@ msgstr "İç sertifika kısıtlaması (Joker karakter)" msgid "Install protocol extensions..." msgstr "Protokol uzantılarını yükle..." -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:542 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:547 msgid "Instance" msgstr "Örnek" @@ -4321,10 +4355,6 @@ msgstr "Arayüzler" msgid "Internal" msgstr "İç" -#: modules/luci-base/luasrc/view/error500.htm:8 -msgid "Internal Server Error" -msgstr "İç Sunucu Hatası" - #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:285 msgid "Interval For Sending Learning Packets" msgstr "Öğrenme Paketlerini Gönderme Aralığı" @@ -4402,8 +4432,8 @@ msgstr "Geçersiz komut" msgid "Invalid hexadecimal value" msgstr "Geçersiz onaltılık değer" -#: modules/luci-base/luasrc/view/sysauth.htm:12 -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/sysauth.htm:37 +#: modules/luci-base/ucode/template/sysauth.ut:12 +#: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/sysauth.ut:32 msgid "Invalid username and/or password! Please try again." msgstr "Geçersiz kullanıcı adı ve/veya şifre! Lütfen tekrar deneyin." @@ -4427,8 +4457,8 @@ msgstr "" "Flash belleğe sığmayan bir görüntüyü flaş etmeye çalıştığınız anlaşılıyor, " "lütfen görüntü dosyasını doğrulayın!" -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:89 -#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:96 +#: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/header.ut:77 +#: themes/luci-theme-material/ucode/template/themes/material/header.ut:91 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:72 msgid "JavaScript required!" msgstr "JavaScript gerekli!" @@ -4497,7 +4527,7 @@ msgstr "Anahtar eksik" #: protocols/luci-proto-unet/htdocs/luci-static/resources/protocol/unet.js:44 msgid "Key used to sign network config" -msgstr "" +msgstr "Ağ yapılandırmasını imzalamak için kullanılan anahtar" #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:71 msgctxt "nft unit" @@ -4560,11 +4590,19 @@ msgstr "Dil" msgid "Language and Style" msgstr "Dil ve Stil" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:560 +msgid "" +"Larger weights (of the same prio) are given a proportionately higher " +"probability of being selected." +msgstr "" +"Daha büyük ağırlıklara (aynı prio'nun) orantılı olarak daha yüksek seçilme " +"olasılığı verilir." + #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:575 msgid "Last member interval" msgstr "Son üye aralığı" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:23 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:24 msgid "Latency" msgstr "Gecikme" @@ -4580,11 +4618,11 @@ msgstr "Öğren" msgid "Learn routes" msgstr "Rotaları öğren" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:348 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:353 msgid "Lease file" msgstr "Leasefile" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:697 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:768 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:679 msgid "Lease time" msgstr "Kira süresi" @@ -4632,19 +4670,19 @@ msgstr "Lejant:" msgid "Limit" msgstr "Sınır" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:24 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:25 msgid "Line Attenuation (LATN)" msgstr "Hat Zayıflaması (LATN)" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:18 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:19 msgid "Line Mode" msgstr "Hat Modu" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:17 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:18 msgid "Line State" msgstr "Hat Durumu" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:19 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:20 msgid "Line Uptime" msgstr "Hat Çalışma Süresi" @@ -4665,12 +4703,12 @@ msgctxt "nft @ll,off,len" msgid "Link layer header bits %d-%d" msgstr "Bağlantı katmanı başlık bitleri %d-%d" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:433 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:438 msgid "List of IP addresses to convert into NXDOMAIN responses." msgstr "NXDOMAIN yanıtlarına dönüştürülecek IP adresleri listesi." -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:296 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:581 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:301 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:652 msgid "List of IP sets to populate with the specified domain IPs." msgstr "Belirtilen etki alanı IP'leriyle doldurulacak IP kümelerinin listesi." @@ -4706,15 +4744,11 @@ msgstr "" msgid "List of SSH key files for auth" msgstr "Kimlik doğrulama için SSH anahtar dosyalarının listesi" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:312 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:317 msgid "List of domains to allow RFC1918 responses for." msgstr "RFC1918 yanıtlarına izin verilecek etki alanlarının listesi." -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:290 -msgid "List of domains to force to an IP address." -msgstr "Bir IP adresine zorlanacak etki alanlarının listesi." - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:283 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:285 msgid "List of upstream resolvers to forward queries to." msgstr "Sorguların iletileceği yukarı akış çözümleyicilerinin listesi." @@ -4722,7 +4756,7 @@ msgstr "Sorguların iletileceği yukarı akış çözümleyicilerinin listesi." msgid "Listen Port" msgstr "Bağlantı Noktasını Dinle" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:332 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:337 msgid "Listen interfaces" msgstr "Arayüzleri Dinle" @@ -4730,7 +4764,7 @@ msgstr "Arayüzleri Dinle" msgid "Listen only on the given interface or, if unspecified, on all" msgstr "Yalnızca verilen arayüzde dinle veya belirtilmemişse tümünde dinle" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:333 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:338 msgid "" "Listen only on the specified interfaces, and loopback if not excluded " "explicitly." @@ -4740,7 +4774,7 @@ msgstr "Bu arayüzleri dinlemeyi ve geri dönüşü sınırlayın." msgid "ListenPort setting is invalid" msgstr "ListenPort ayarı geçersiz" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:439 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:444 msgid "Listening port for inbound DNS queries." msgstr "Gelen DNS sorguları için dinleme bağlantı noktası." @@ -4767,9 +4801,9 @@ msgid "Loading directory contents…" msgstr "Dizin içeriği yükleniyor…" #: modules/luci-base/htdocs/luci-static/resources/luci.js:1942 -#: modules/luci-base/luasrc/view/view.htm:4 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:12 -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/sysauth.htm:45 +#: modules/luci-base/ucode/template/view.ut:4 +#: modules/luci-mod-status/ucode/template/admin_status/index.ut:12 +#: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/sysauth.ut:40 msgid "Loading view…" msgstr "Görünüm yükleniyor…" @@ -4827,28 +4861,28 @@ msgstr "Yerel Zaman" msgid "Local ULA" msgstr "Yerel ULA" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:273 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:275 msgid "Local domain" msgstr "Yerel alan" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:274 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:276 msgid "Local domain suffix appended to DHCP names and hosts file entries." msgstr "" "DHCP adlarına ve ana dosya girişlerine eklenen yerel etki alanı son eki." -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:269 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:271 msgid "Local server" msgstr "Yerel sunucu" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:319 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:324 msgid "Local service only" msgstr "Yalnızca Yerel Hizmet" #: protocols/luci-proto-unet/htdocs/luci-static/resources/protocol/unet.js:41 msgid "Local wireguard key" -msgstr "" +msgstr "Yerel wireguard anahtarı" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:392 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:397 msgid "Localise queries" msgstr "Sorguları yerelleştir" @@ -4860,7 +4894,7 @@ msgstr "BSSID'ye Kilitlen" msgid "Log output level" msgstr "Günlük çıktı seviyesi" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:277 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:279 msgid "Log queries" msgstr "Sorguları günlüğe ekle" @@ -4886,8 +4920,8 @@ msgstr "" msgid "Logical network to which the tunnel will be added (bridged) (optional)." msgstr "Tünelin ekleneceği mantıksal ağ (köprülü) (isteğe bağlı)." -#: modules/luci-base/luasrc/view/sysauth.htm:38 -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/sysauth.htm:41 +#: modules/luci-base/ucode/template/sysauth.ut:38 +#: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/sysauth.ut:36 msgid "Login" msgstr "Oturum Aç" @@ -4899,7 +4933,7 @@ msgstr "Oturumu Kapat" msgid "Loose filtering" msgstr "Gevşek filtreleme" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:31 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:32 msgid "Loss of Signal Seconds (LOSS)" msgstr "Sinyal Saniye Kaybı (LOSS)" @@ -4907,6 +4941,10 @@ msgstr "Sinyal Saniye Kaybı (LOSS)" msgid "Lowest leased address as offset from the network address." msgstr "Ağ adresinden ofset olarak en düşük kiralanan adres." +#: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/footer.ut:12 +msgid "Lua compatibility mode active" +msgstr "" + #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:48 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:83 msgid "MAC" @@ -4931,7 +4969,7 @@ msgstr "MAC VLAN" #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:591 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:40 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:619 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:690 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1164 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2177 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:56 @@ -4990,6 +5028,10 @@ msgstr "MII Aralığı" msgid "MTU" msgstr "MTU" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:259 +msgid "MX" +msgstr "MX" + #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:303 msgid "" "Make sure to clone the root filesystem using something like the commands " @@ -5016,23 +5058,23 @@ msgstr "Ana" msgid "Max <abbr title=\"Router Advertisement\">RA</abbr> interval" msgstr "Maks <abbr title=\"Router Advertisement\">RA</abbr> aralığı" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:22 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:23 msgid "Max. Attainable Data Rate (ATTNDR)" msgstr "Maks. Ulaşılabilir Veri Hızı (ATTNDR)" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:452 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:457 msgid "Max. DHCP leases" msgstr "" "<abbr title=\"maximal\">Maks.</abbr> <abbr title=\"Dynamic Host " "Configuration Protocol\">DHCP</abbr> kiraları" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:459 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:464 msgid "Max. EDNS0 packet size" msgstr "" "<abbr title=\"maximal\">Maks.</abbr> <abbr title=\"Extension Mechanisms for " "Domain Name System\">EDNS0</abbr> paket boyutu" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:466 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:471 msgid "Max. concurrent queries" msgstr "<abbr title=\"maximal\">Maks.</abbr> eşzamanlı sorgu" @@ -5044,15 +5086,15 @@ msgstr "Maksimum yaş" msgid "Maximum allowed Listen Interval" msgstr "İzin verilen maksimum Dinleme Aralığı" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:453 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:458 msgid "Maximum allowed number of active DHCP leases." msgstr "İzin verilen en fazla etkin DHCP kira sayısı." -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:467 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:472 msgid "Maximum allowed number of concurrent DNS queries." msgstr "İzin verilen en fazla eşzamanlı DNS sorgu sayısı." -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:460 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:465 msgid "Maximum allowed size of EDNS0 UDP packets." msgstr "EDNS.0 UDP paketlerinin izin verilen azami boyutu." @@ -5081,9 +5123,9 @@ msgstr "" msgid "Maximum transmit power" msgstr "Maksimum iletim gücü" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:389 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:394 msgid "May prevent VoIP or other services from working." -msgstr "" +msgstr "VoIP veya diğer hizmetlerin çalışmasını engelleyebilir." #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:129 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:188 @@ -5333,7 +5375,7 @@ msgstr "Yukarı taşı" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1151 msgid "Multi To Unicast" -msgstr "" +msgstr "Çok Noktadan Tek Noktaya" #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:89 #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:94 @@ -5401,13 +5443,17 @@ msgstr "Yeni ağın adı" #: protocols/luci-proto-unet/htdocs/luci-static/resources/protocol/unet.js:38 msgid "Name of the tunnel device" -msgstr "" +msgstr "Tünel cihazının adı" -#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:46 +#: themes/luci-theme-openwrt-2020/ucode/template/themes/openwrt2020/header.ut:39 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:50 msgid "Navigation" msgstr "Navigasyon" +#: protocols/luci-proto-nebula/htdocs/luci-static/resources/protocol/nebula.js:10 +msgid "Nebula Network" +msgstr "Nebula Ağı" + #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:653 msgid "Neighbour cache validity" msgstr "Komşu önbellek geçerliliği" @@ -5443,7 +5489,7 @@ msgstr "Ağ Yardımcı Programları" msgid "Network address" msgstr "Ağ adresi" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:492 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:497 msgid "Network boot image" msgstr "Ağ önyükleme görüntüsü" @@ -5483,7 +5529,7 @@ msgstr "Ağ ifname yapılandırması birleştirme" msgid "Network interface" msgstr "Ağ arayüzü" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:531 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:536 msgid "Network-ID" msgstr "Ağ kimliği" @@ -5491,7 +5537,7 @@ msgstr "Ağ kimliği" msgid "Never" msgstr "Asla" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:270 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:272 msgid "" "Never forward matching domains and subdomains, resolve from DHCP or hosts " "files only." @@ -5541,9 +5587,9 @@ msgstr "NAT-T yok" msgid "No RX signal" msgstr "RX sinyali yok" -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:80 -#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:87 -#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:72 +#: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/header.ut:68 +#: themes/luci-theme-material/ucode/template/themes/material/header.ut:82 +#: themes/luci-theme-openwrt-2020/ucode/template/themes/openwrt2020/header.ut:65 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:90 msgid "" "No changes to settings will be stored and are lost after rebooting. This " @@ -5588,10 +5634,6 @@ msgstr "Kullanılabilir girdi yok" msgid "No entries in this directory" msgstr "Bu dizinde giriş yok" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:82 -msgid "No files found" -msgstr "Dosya bulunamadı" - #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:833 msgid "" "No fixed interface listening port defined, peers might not be able to " @@ -5629,7 +5671,7 @@ msgstr "Başka bağımlı yok" msgid "No more slaves available, can not save interface" msgstr "Daha fazla bağımlı yok, arayüz kaydedilemiyor" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:413 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:418 msgid "No negative cache" msgstr "Negatif önbellek yok" @@ -5637,8 +5679,8 @@ msgstr "Negatif önbellek yok" msgid "No nftables ruleset loaded." msgstr "Yüklü nftables kural kümesi yok." -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:69 -#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:61 +#: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/header.ut:57 +#: themes/luci-theme-openwrt-2020/ucode/template/themes/openwrt2020/header.ut:54 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:79 msgid "No password set!" msgstr "Şifre belirlenmedi!" @@ -5678,7 +5720,7 @@ msgstr "Bölge atanmadı" msgid "Noise" msgstr "Gürültü" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:26 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:27 msgid "Noise Margin (SNR)" msgstr "Gürültü Marjı (SNR)" @@ -5686,11 +5728,11 @@ msgstr "Gürültü Marjı (SNR)" msgid "Noise:" msgstr "Gürültü:" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:34 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:35 msgid "Non Pre-emptive CRC errors (CRC_P)" msgstr "Önleyici Olmayan CRC hataları (CRC_P)" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:325 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:330 msgid "Non-wildcard" msgstr "Joker karakter içermeyen" @@ -5705,7 +5747,7 @@ msgstr "Yok" msgid "Normal" msgstr "Normal" -#: modules/luci-base/luasrc/view/error404.htm:8 +#: modules/luci-base/ucode/template/error404.ut:9 msgid "Not Found" msgstr "Bulunamadı" @@ -5757,7 +5799,7 @@ msgstr "Nslookup" msgid "Number of IGMP membership reports" msgstr "IGMP üyelik raporlarının sayısı" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:474 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:479 msgid "Number of cached DNS entries, 10000 is maximum, 0 is no caching." msgstr "" "Önbelleğe alınan DNS girdilerinin sayısı (en fazla 10000, 0 ise önbelleğe " @@ -5808,7 +5850,7 @@ msgstr "Durum Gecikmesi" msgid "On-link" msgstr "Bağlantı rotası" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:672 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:743 msgid "One of hostname or MAC address must be specified!" msgstr "Ana bilgisayar adı veya mac adreslerinden biri belirtilmelidir!" @@ -5848,7 +5890,6 @@ msgid "Open iptables rules overview…" msgstr "iptables kurallarına genel bakışı aç…" #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:472 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:19 msgid "Open list..." msgstr "Listeyi aç..." @@ -6018,12 +6059,12 @@ msgstr "" msgid "Options" msgstr "Seçenekler" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:526 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:531 msgid "" "Options for the Network-ID. (Note: needs also Network-ID.) E.g. " -"\"<code>42,192.168.1.4</code>\" for NTP server, \"<code>3,192.168.4.4</" -"code>\" for default route. <code>0.0.0.0</code> means \"the address of the " -"system running dnsmasq\"." +"\"<code>42,192.168.1.4</code>\" for NTP server, \"<code>3,192.168.4.4</code>" +"\" for default route. <code>0.0.0.0</code> means \"the address of the system " +"running dnsmasq\"." msgstr "" "Ağ kimliği için seçenekler. (Not: ayrıca Ağ kimliğine ihtiyaç duyar.) Ör. " "NTP sunucusu için \"<code>42,192.168.1.4</code>\", öntanımlı yönlendirme " @@ -6034,6 +6075,11 @@ msgstr "" msgid "Options:" msgstr "Seçenekler:" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:584 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:616 +msgid "Ordinal: lower comes first." +msgstr "Sıra: düşük önce gelir." + #: protocols/luci-proto-batman-adv/htdocs/luci-static/resources/protocol/batadv.js:55 msgid "Originator Interval" msgstr "Oluşturucu Aralığı" @@ -6309,13 +6355,13 @@ msgctxt "MACVLAN mode" msgid "Pass-through (Mirror physical device to single MAC VLAN)" msgstr "Geçiş (Fiziksel cihazı tek bir MAC VLAN'a yansıtın)" -#: modules/luci-base/luasrc/view/sysauth.htm:29 +#: modules/luci-base/ucode/template/sysauth.ut:29 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1690 #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:51 #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:114 #: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:103 #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:58 -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/sysauth.htm:24 +#: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/sysauth.ut:19 msgid "Password" msgstr "Parola" @@ -6490,7 +6536,7 @@ msgstr "Ping" msgid "Pkts." msgstr "Pktler." -#: modules/luci-base/luasrc/view/sysauth.htm:19 +#: modules/luci-base/ucode/template/sysauth.ut:19 msgid "Please enter your username and password." msgstr "Lütfen kullanıcı adınızı ve şifrenizi giriniz." @@ -6507,6 +6553,7 @@ msgctxt "Chain hook policy" msgid "Policy: <strong>%h</strong> (%h)" msgstr "Politika: <strong>%h</strong> (%h)" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:579 #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/dropbear.js:21 msgid "Port" msgstr "Bağlantı noktası" @@ -6523,11 +6570,11 @@ msgstr "Bağlantı noktası durumu:" msgid "Potential negation of: %s" msgstr "Olası olumsuzluk: %s" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:37 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:38 msgid "Power Management Mode" msgstr "Güç Yönetimi Modu" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:35 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:36 msgid "Pre-emptive CRC errors (CRCP_P)" msgstr "Önleyici CRC hataları (CRCP_P)" @@ -6605,6 +6652,8 @@ msgid "Primary becomes active slave whenever it comes back up (always, 0)" msgstr "Birincil, her geri geldiğinde aktif ikincil hale gelir (her zaman, 0)" #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:508 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:584 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:616 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:129 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:197 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:223 @@ -6678,7 +6727,7 @@ msgstr "" #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:120 msgid "Proxy Server" -msgstr "" +msgstr "Proxy sunucusu" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1077 msgid "Pseudo Ad-Hoc (ahdemo)" @@ -6727,7 +6776,7 @@ msgstr "QMI Hücresel" msgid "Quality" msgstr "Kalite" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:428 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:433 msgid "Query all available upstream resolvers." msgstr "Kullanılabilir tüm yukarı akış çözümleyicilerini sorgula." @@ -6777,7 +6826,7 @@ msgstr "RFC3947 NAT-T modu" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1456 msgid "RSN Preauth" -msgstr "" +msgstr "RSN Ön Yetkilendirme" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1003 msgid "RSSI threshold for joining" @@ -6809,7 +6858,7 @@ msgstr "Kaynak bağlantı noktası eşlemesini rastgeleleştir" msgid "Raw hex-encoded bytes. Leave empty unless your ISP require this" msgstr "Ham onaltılı kodlanmış baytlar. ISS'niz gerektirmedikçe boş bırakın" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:345 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:350 msgid "Read <code>/etc/ethers</code> to configure the DHCP server." msgstr "" "DHCP sunucusunu yapılandırmak için <code>/etc/ethers</code> bölümünü okuyun." @@ -6826,7 +6875,7 @@ msgstr "Gerçek Zamanlı Grafikler" msgid "Reassociation Deadline" msgstr "Yeniden İlişkilendirme Son Tarihi" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:301 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:306 msgid "Rebind protection" msgstr "Yeniden bağlama koruması" @@ -6856,7 +6905,7 @@ msgstr "Önerilen. WireGuard arayüzünün IP adresleri." #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:164 msgid "Reconnect Timeout" -msgstr "" +msgstr "Yeniden Bağlanma Zaman Aşımı" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:504 msgid "Reconnect this interface" @@ -6913,6 +6962,7 @@ msgstr "" "yönlendirme kararlarını reddet" #: modules/luci-compat/luasrc/model/network/proto_relay.lua:153 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:611 #: protocols/luci-proto-relay/htdocs/luci-static/resources/protocol/relay.js:39 msgid "Relay" msgstr "Röle" @@ -7003,6 +7053,10 @@ msgstr "Belirli ISS'ler için gereklidir, ör. DOCSIS 3 ile Charter" msgid "Required. Base64-encoded private key for this interface." msgstr "Gereklidir. Bu arabirim için Base64 ile kodlanmış özel anahtar." +#: protocols/luci-proto-nebula/htdocs/luci-static/resources/protocol/nebula.js:40 +msgid "Required. Path to the .yml config file for this interface." +msgstr "Gerekli. Bu arabirim için .yml yapılandırma dosyasının yolu." + #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:587 msgid "Required. Public key of the WireGuard peer." msgstr "Gerekli. WireGuard eşinin ortak anahtarı." @@ -7084,7 +7138,7 @@ msgid "Reselection policy for primary slave" msgstr "Birincil bağımlı için yeniden seçim politikası" #: modules/luci-base/htdocs/luci-static/resources/luci.js:2197 -#: modules/luci-base/luasrc/view/sysauth.htm:39 +#: modules/luci-base/ucode/template/sysauth.ut:39 #: modules/luci-compat/luasrc/view/cbi/delegator.htm:17 #: modules/luci-compat/luasrc/view/cbi/footer.htm:30 #: modules/luci-compat/luasrc/view/cbi/simpleform.htm:66 @@ -7103,10 +7157,14 @@ msgstr "Varsayılanlara dön" msgid "Resolv and Hosts Files" msgstr "Resolv ve Hosts Dosyaları" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:356 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:361 msgid "Resolv file" msgstr "Çözme dosyası" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:292 +msgid "Resolve specified FQDNs to an IP." +msgstr "Bir IP adresine zorlanacak etki alanlarının listesi." + #: modules/luci-base/htdocs/luci-static/resources/rpc.js:405 msgid "Resource not found" msgstr "Kaynak bulunamadı" @@ -7133,7 +7191,7 @@ msgstr "Geri yükle" msgid "Restore backup" msgstr "Yedeklemeyi geri yükle" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:393 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:398 msgid "" "Return answers to DNS queries matching the subnet from which the query was " "received if multiple IPs are available." @@ -7204,8 +7262,8 @@ msgstr "Kaynağı <strong>%h</strong> olarak yeniden yaz" msgctxt "nft snat ip to addr:port" msgid "Rewrite source to <strong>%h</strong>, port <strong>%h</strong>" msgstr "" -"Kaynağı <strong>%h</strong> olarak yeniden yazın, bağlantı noktası " -"<strong>%h</strong>" +"Kaynağı <strong>%h</strong> olarak yeniden yazın, bağlantı noktası <strong>" +"%h</strong>" #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:108 msgctxt "nft snat ip6 to addr:port" @@ -7224,12 +7282,16 @@ msgid "" "(and advertise it in WLAN beacons). Only works if the specified network " "interface is a bridge. Shortens the time-critical reassociation process." msgstr "" +"Sağlam Güvenlik Ağı (RSN): WPA2-EAP ağları için dolaşım ön yetkilendirmesine " +"izin verin (ve bunu WLAN işaretlerinde tanıtın). Yalnızca belirtilen ağ " +"arabirimi bir köprü ise çalışır. Zaman açısından kritik yeniden " +"ilişkilendirme sürecini kısaltır." #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:551 msgid "Robustness" msgstr "Sağlamlık" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:486 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:491 msgid "" "Root directory for files served via TFTP. <em>Enable TFTP server</em> and " "<em>TFTP server root</em> turn on the TFTP server and serve files from " @@ -7339,6 +7401,11 @@ msgstr "SHA256" msgid "SNR" msgstr "SNR" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:258 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:569 +msgid "SRV" +msgstr "SRV" + #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/dropbear.js:10 #: modules/luci-mod-system/root/usr/share/luci/menu.d/luci-mod-system.json:38 msgid "SSH Access" @@ -7483,11 +7550,11 @@ msgstr "Bu cihazın ana bilgisayar adını gönder" msgid "Server" msgstr "Sunucu" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:519 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:524 msgid "Server address" msgstr "Sunucu adresi" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:513 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:518 msgid "Server name" msgstr "Sunucu adı" @@ -7585,7 +7652,7 @@ msgstr "Ayarlar" msgid "Setup routes for proxied IPv6 neighbours." msgstr "Proxy'li IPv6 komşuları için kurulum yolları." -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:30 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:31 msgid "Severely Errored Seconds (SES)" msgstr "Ciddi Şekilde Hatalı Saniyeler (SES)" @@ -7599,7 +7666,6 @@ msgid "Short Preamble" msgstr "Kısa Başlangıç" #: 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 msgid "Show current backup file list" msgstr "Mevcut yedekleme dosyası listesini göster" @@ -7633,7 +7699,7 @@ msgstr "Sinyal" msgid "Signal / Noise" msgstr "Sinyal / Gürültü" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:25 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:26 msgid "Signal Attenuation (SATN)" msgstr "Sinyal Zayıflaması (SATN)" @@ -7650,7 +7716,7 @@ msgstr "Sinyal:" msgid "Size" msgstr "Boyut" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:473 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:478 msgid "Size of DNS query cache" msgstr "DNS sorgu önbelleğinin boyutu" @@ -7667,12 +7733,12 @@ msgstr "Atla" msgid "Skip from backup files that are equal to those in /rom" msgstr "Yedekleme dosyalarından /rom'dakilerle aynı olanlarını atla" -#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:42 +#: themes/luci-theme-openwrt-2020/ucode/template/themes/openwrt2020/header.ut:35 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:46 msgid "Skip to content" msgstr "İçeriğe geç" -#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:41 +#: themes/luci-theme-openwrt-2020/ucode/template/themes/openwrt2020/header.ut:34 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:45 msgid "Skip to navigation" msgstr "Gezintiye atla" @@ -7690,14 +7756,10 @@ msgstr "Yazılımsal VLAN" msgid "Some fields are invalid, cannot save values!" msgstr "Bazı alanlar geçersizdir, değerler kaydedilemez!" -#: modules/luci-base/luasrc/view/error404.htm:9 +#: modules/luci-base/ucode/template/error404.ut:10 msgid "Sorry, the object you requested was not found." msgstr "Üzgünüz, istediğiniz nesne bulunamadı." -#: modules/luci-base/luasrc/view/error500.htm:9 -msgid "Sorry, the server encountered an unexpected error." -msgstr "Üzgünüz, sunucu beklenmedik bir hatayla karşılaştı." - #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:442 msgid "" "Sorry, there is no sysupgrade support present; a new firmware image must be " @@ -7736,7 +7798,7 @@ msgctxt "nft ip sport" msgid "Source port" msgstr "Kaynak bağlantı noktası" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:500 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:505 msgid "" "Special <abbr title=\"Preboot eXecution Environment\">PXE</abbr> boot " "options for Dnsmasq." @@ -8185,7 +8247,7 @@ msgstr "Statik Kiralar" msgid "Static address" msgstr "Statik adres" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:598 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:669 msgid "" "Static leases are used to assign fixed IP addresses and symbolic hostnames " "to DHCP clients. They are also required for non-dynamic interface " @@ -8203,7 +8265,7 @@ msgstr "İstasyon dugunluk limiti" #: modules/luci-base/root/usr/share/luci/menu.d/luci-base.json:16 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:541 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:929 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:9 +#: modules/luci-mod-status/ucode/template/admin_status/index.ut:9 msgid "Status" msgstr "Durum" @@ -8229,7 +8291,7 @@ msgstr "Depolama" msgid "Strict filtering" msgstr "Sıkı Filtreleme" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:422 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:427 msgid "Strict order" msgstr "Katı düzen" @@ -8242,11 +8304,11 @@ msgstr "Kuvvetli" msgid "Submit" msgstr "Gönder" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:372 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:377 msgid "Suppress logging" msgstr "Günlük kaydını bastır" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:373 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:378 msgid "Suppress logging of the routine operation for the DHCP protocol." msgstr "DHCP protokolü için rutin işlemin günlüğe kaydedilmesini engelle." @@ -8301,6 +8363,14 @@ msgstr "NTP Sunucusu ile Senkronize Et" msgid "Sync with browser" msgstr "Tarayıcı ile senkronize et" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:293 +msgid "Syntax: <code>/fqdn[/fqdn…]/[ipaddr]</code>." +msgstr "Sözdizimi: <code>/fqdn[/fqdn…]/[ipaddr]</code>." + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:569 +msgid "Syntax: <code>_service._proto.example.com</code>." +msgstr "Sözdizimi: <code>_service._proto.example.com</code>." + #: modules/luci-base/root/usr/share/luci/menu.d/luci-base.json:26 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/10_system.js:17 #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:113 @@ -8326,9 +8396,9 @@ msgstr "Sistem özellikleri" msgid "System log buffer size" msgstr "Sistem günlüğü arabellek boyutu" -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:79 -#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:86 -#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:71 +#: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/header.ut:67 +#: themes/luci-theme-material/ucode/template/themes/material/header.ut:81 +#: themes/luci-theme-openwrt-2020/ucode/template/themes/openwrt2020/header.ut:64 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:89 msgid "System running in recovery (initramfs) mode." msgstr "Kurtarma (initramfs) modunda çalışan sistem." @@ -8357,7 +8427,7 @@ msgstr "TCP kaynak bağlantı noktası" msgid "TCP:" msgstr "TCP:" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:485 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:490 msgid "TFTP server root" msgstr "TFTP sunucusu kökü" @@ -8382,6 +8452,7 @@ msgstr "TX sıra uzunluğu" msgid "Table" msgstr "Tablo" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:574 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:56 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:66 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:187 @@ -8467,15 +8538,15 @@ msgstr "" "HE.net uç nokta güncelleme yapılandırması değişti, şimdi kullanıcı kimliği " "yerine düz kullanıcı adını kullanmalısınız!" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:681 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:752 msgid "The IP address %h is already used by another static lease" msgstr "%h IP adresi zaten başka bir statik kiralama tarafından kullanılıyor" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:690 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:761 msgid "The IP address is outside of any DHCP pool address range" msgstr "IP adresi, herhangi bir DHCP havuzu adres aralığının dışında" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:520 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:525 msgid "The IP address of the boot server" msgstr "Önyükleme sunucusunun IP adresi" @@ -8672,7 +8743,7 @@ msgstr "" "TQ'suna uygulanır, böylece ekstra bir atlamanın maliyetini yayar (paketin " "alınması ve yeniden iletilmesi gerekir, bu da yayın süresine mal olur)" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:514 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:519 msgid "The hostname of the boot server" msgstr "Önyükleme sunucusunun ana makine adı" @@ -8771,8 +8842,8 @@ msgstr "Ağ adı zaten kullanılıyor" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:139 msgid "" -"The network ports on this device can be combined to several <abbr " -"title=\"Virtual Local Area Network\">VLAN</abbr>s in which computers can " +"The network ports on this device can be combined to several <abbr title=" +"\"Virtual Local Area Network\">VLAN</abbr>s in which computers can " "communicate directly with each other. <abbr title=\"Virtual Local Area " "Network\">VLAN</abbr>s are often used to separate different network " "segments. Often there is by default one Uplink port for a connection to the " @@ -8839,7 +8910,7 @@ msgstr "" msgid "The selected %s mode is incompatible with %s encryption" msgstr "Seçilen %s modu, %s şifrelemesiyle uyumlu değil" -#: modules/luci-base/luasrc/view/csrftoken.htm:11 +#: modules/luci-base/ucode/template/csrftoken.ut:11 msgid "The submitted security token is invalid or already expired!" msgstr "Gönderilen güvenlik jetonu geçersiz veya süresi zaten dolmuş!" @@ -8929,8 +9000,8 @@ msgstr "" "kurallarının karıştırılması önerilmez ve eksik trafik filtrelemesine neden " "olabilir." -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:746 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:778 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:817 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:849 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:130 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:179 msgid "There are no active leases" @@ -8940,8 +9011,8 @@ msgstr "Aktif kira yok" msgid "There are no changes to apply" msgstr "Uygulanabilecek değişiklik yok" -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:70 -#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:62 +#: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/header.ut:58 +#: themes/luci-theme-openwrt-2020/ucode/template/themes/openwrt2020/header.ut:55 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:80 msgid "" "There is no password set on this router. Please configure a root password to " @@ -8964,7 +9035,6 @@ msgid "This does not look like a valid PEM file" msgstr "Bu geçerli bir PEM dosyası gibi görünmüyor" #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:454 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:16 msgid "" "This is a list of shell glob patterns for matching files and directories to " "include during sysupgrade. Modified files in /etc/config/ and certain other " @@ -9015,7 +9085,7 @@ msgstr "" "Bu, tünel aracısı tarafından atanan yerel uç nokta adresidir ve genellikle " "<code>...:2/64</code> ile biter" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:266 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:268 msgid "This is the only DHCP server in the local network." msgstr "Bu, yerel ağdaki tek DHCP sunucusudur." @@ -9104,8 +9174,8 @@ msgstr "Saat dilimi" #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:440 msgid "" "To fully configure the local WireGuard interface from an existing (e.g. " -"provider supplied) configuration file, use the <strong><a class=\"full-" -"import\" href=\"#\">configuration import</a></strong> instead." +"provider supplied) configuration file, use the <strong><a class=\"full-import" +"\" href=\"#\">configuration import</a></strong> instead." msgstr "" "Yerel WireGuard arayüzünü mevcut (ör. sağlayıcı tarafından sağlanan) " "yapılandırma dosyasından tam olarak yapılandırmak için, bunun yerine " @@ -9275,7 +9345,7 @@ msgstr "Harici IP adresi belirlenemiyor" msgid "Unable to determine upstream interface" msgstr "Yukarı akış arayüzü belirlenemiyor" -#: modules/luci-base/luasrc/view/error404.htm:11 +#: modules/luci-base/ucode/template/error404.ut:12 msgid "Unable to dispatch" msgstr "Gönderilemiyor" @@ -9330,7 +9400,7 @@ msgstr "İçerik kaydedilemiyor: %s" msgid "Unable to verify PIN" msgstr "PIN doğrulanamadı" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:32 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:33 msgid "Unavailable Seconds (UAS)" msgstr "Kullanılamayan Saniyeler (UAS)" @@ -9340,7 +9410,7 @@ msgstr "Yapılandırmayı kaldır" #: protocols/luci-proto-unet/htdocs/luci-static/resources/protocol/unet.js:8 msgid "Unet" -msgstr "" +msgstr "Unet" #: modules/luci-base/htdocs/luci-static/resources/fs.js:102 msgid "Unexpected reply data format" @@ -9487,7 +9557,7 @@ msgstr "" "\"Devam\" düğmesine basıldığında, ifname seçenekleri yeniden adlandırılacak " "ve güncellenmiş yapılandırmayı uygulamak için ağ yeniden başlatılacaktır." -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:423 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:428 msgid "Upstream resolvers will be queried in the order of the resolv file." msgstr "" "Yukarı akış çözümleyicileri, resolv dosyasındaki sıraya göre sorgulanacaktır." @@ -9497,7 +9567,7 @@ msgstr "" msgid "Uptime" msgstr "Çalışma süresi" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:344 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:349 msgid "Use <code>/etc/ethers</code>" msgstr "<code>/etc/ethers</code> kullanın" @@ -9612,7 +9682,7 @@ msgstr "Sistem sertifikalarını kullan" msgid "Use system certificates for inner-tunnel" msgstr "İç tünel için sistem sertifikalarını kullan" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:599 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:670 msgid "" "Use the <em>Add</em> Button to add a new lease entry. The <em>MAC address</" "em> identifies the host, the <em>IPv4 address</em> specifies the fixed " @@ -9673,11 +9743,11 @@ msgstr "Kullanıcı tanımlayıcısı" msgid "User key (PEM encoded)" msgstr "Kullanıcı anahtarı (PEM kodlu)" -#: modules/luci-base/luasrc/view/sysauth.htm:23 +#: modules/luci-base/ucode/template/sysauth.ut:23 #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:112 #: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:101 #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:56 -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/sysauth.htm:18 +#: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/sysauth.ut:13 msgid "Username" msgstr "Kullanıcı adı" @@ -9760,7 +9830,7 @@ msgstr "VPNC (CISCO 3000 (ve diğerleri) VPN)" #: protocols/luci-proto-vti/htdocs/luci-static/resources/protocol/vti.js:10 msgid "VTI" -msgstr "" +msgstr "VTI" #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:10 msgid "VXLAN (RFC7348)" @@ -9775,7 +9845,7 @@ msgstr "VXLAN ağ tanımlayıcısı" msgid "VXLANv6 (RFC7348)" msgstr "VXLANv6 (RFC7348)" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:398 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:403 msgid "" "Validate DNS replies and cache DNSSEC data, requires upstream to support " "DNSSEC." @@ -9812,7 +9882,7 @@ msgstr "Satıcı" msgid "Vendor Class to send when requesting DHCP" msgstr "DHCP istendiğinde gönderilecek Satıcı Sınıfı" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:403 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:408 msgid "Verify unsigned domain responses really come from unsigned domains." msgstr "" "İşaretsiz alan adlarının yanıtlarının gerçekten işaretsiz alan adlarından " @@ -9892,6 +9962,10 @@ msgstr "" msgid "Weak" msgstr "Güçsüz" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:589 +msgid "Weight" +msgstr "Ağırlık" + #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1029 msgid "" "When delegating prefixes to multiple downstreams, interfaces with a higher " @@ -10033,7 +10107,7 @@ msgstr "Kablosuz ağ devre dışı bırakıldı" msgid "Wireless network is enabled" msgstr "Kablosuz ağ etkinleştirildi" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:278 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:280 msgid "Write received DNS queries to syslog." msgstr "Alınan DNS sorgularını sistem günlüğüne yaz." @@ -10075,8 +10149,16 @@ msgstr "" "dosyalarını devre dışı bırakırsanız, cihazınız erişilemez hale gelebilir!</" "strong>" -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:90 -#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:97 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:559 +msgid "You may add multiple records for the same Target." +msgstr "Aynı Hedef için birden fazla kayıt ekleyebilirsiniz." + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:596 +msgid "You may add multiple records for the same domain." +msgstr "Aynı alan adı için birden fazla kayıt ekleyebilirsiniz." + +#: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/header.ut:78 +#: themes/luci-theme-material/ucode/template/themes/material/header.ut:92 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:73 msgid "" "You must enable JavaScript in your browser or LuCI will not work properly." @@ -10107,7 +10189,19 @@ msgstr "ZRam Ayarları" msgid "ZRam Size" msgstr "ZRam Boyutu" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:449 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:558 +msgid "_proto: _tcp, _udp, _sctp, _quic, … ." +msgstr "_proto: _tcp, _udp, _sctp, _quic, … ." + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:557 +msgid "" +"_service: _sip, _ldap, _imap, _stun, _xmpp-client, … . (Note: while _http is " +"possible, no browsers support SRV records.)" +msgstr "" +"_service: _sip, _ldap, _imap, _stun, _xmpp-client, … .(Not: http mümkün olsa " +"da, hiçbir tarayıcı SRV kayıtlarını desteklemez.)" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:454 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:152 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:163 msgid "any" @@ -10218,8 +10312,8 @@ msgstr "örn: --proxy 10.10.10.10" msgid "e.g: dump" msgstr "örn: dump" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:726 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:756 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:797 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:827 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:101 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:148 msgid "expired" @@ -10434,9 +10528,9 @@ msgstr "eşsiz değer" msgid "unknown" msgstr "bilinmeyen" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:456 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:724 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:754 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:461 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:795 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:825 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:99 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:146 msgid "unlimited" @@ -10652,6 +10746,21 @@ msgstr "evet" msgid "« Back" msgstr "« Geri" +#~ msgid "Back to configuration" +#~ msgstr "Yapılandırmaya dön" + +#~ msgid "Close list..." +#~ msgstr "Listeyi kapat..." + +#~ msgid "Internal Server Error" +#~ msgstr "İç Sunucu Hatası" + +#~ msgid "No files found" +#~ msgstr "Dosya bulunamadı" + +#~ msgid "Sorry, the server encountered an unexpected error." +#~ msgstr "Üzgünüz, sunucu beklenmedik bir hatayla karşılaştı." + #~ msgid "Do not forward queries that cannot be answered by public resolvers." #~ msgstr "Genel ad sunucuları tarafından yanıtlanamayan istekleri iletme." @@ -10802,8 +10911,8 @@ msgstr "« Geri" #~ msgid "" #~ "<ul style=\"list-style-type:none;\"> <li><strong>server mode</strong>: " -#~ "Router advertises itself as the default IPv6 gateway via <abbr " -#~ "title=\"Router Advertisement, ICMPv6 Type 134\">RA</abbr> messages (to " +#~ "Router advertises itself as the default IPv6 gateway via <abbr title=" +#~ "\"Router Advertisement, ICMPv6 Type 134\">RA</abbr> messages (to " #~ "<code>ff02::1</code>) and provides <abbr title=\"Prefix Delegation\">PD</" #~ "abbr> to downstream devices.</li> <li><strong>relay mode</strong>: Router " #~ "relays <abbr title=\"Router Advertisement, ICMPv6 Type 134\">RA</abbr> " @@ -10828,12 +10937,12 @@ msgstr "« Geri" #~ msgid "" #~ "<ul style=\"list-style-type:none;\"> <li><strong>server mode</strong>: " -#~ "Router assigns IPs and delegates prefixes (<abbr title=\"Prefix " -#~ "Delegation\">PD</abbr>) to downstream interfaces.</li> <li><strong>relay " -#~ "mode</strong>: Router relays WAN interface config downstream. Helps " -#~ "support upstream links that lack <abbr title=\"Prefix Delegation\">PD</" -#~ "abbr>.</li> <li><strong>hybrid mode</strong>: Router does combination of " -#~ "server+relay.</li></ul>" +#~ "Router assigns IPs and delegates prefixes (<abbr title=\"Prefix Delegation" +#~ "\">PD</abbr>) to downstream interfaces.</li> <li><strong>relay mode</" +#~ "strong>: Router relays WAN interface config downstream. Helps support " +#~ "upstream links that lack <abbr title=\"Prefix Delegation\">PD</abbr>.</" +#~ "li> <li><strong>hybrid mode</strong>: Router does combination of server" +#~ "+relay.</li></ul>" #~ msgstr "" #~ "<ul style=\"list-style-type:none;\"> <li> <strong> sunucu modu </strong>: " #~ "Yönlendirici, IP'leri atar ve önekleri delege eder (<abbr title=\"Prefix " @@ -10933,24 +11042,24 @@ msgstr "« Geri" #~ "Protocol\">NDP </abbr> Proxy'yi IPv6 için Proxy ARP olarak düşünün: aynı " #~ "IP alt ağına farklı fiziksel donanım segmentleri. <abbr title=\"Neighbour " #~ "Solicitation, Type 135\">NS </abbr> ve <abbr title=\"Neighbour " -#~ "Advertisement, Type 136\">NA </abbr> mesajlarından oluşur. <abbr " -#~ "title=\"Neighbour Discovery Protocol\"> NDP </abbr>-Proxy, " -#~ "boole<code>master</code> ile işaretlenmiş bir arayüzde <abbr " -#~ "title=\"Neighbour Solicitation, Type 135\"> NS </abbr> için dinler 1 " -#~ "olarak (yani yukarı akış), daha sonra sonunda bir <abbr title=\"Neighbour " -#~ "Advertisement, Type 136\"> NA </abbr> mesajı göndermeden önce bu hedef IP " -#~ "için ikincil / dahili arayüzleri sorgular. <abbr title=\"Neighbour " -#~ "Discovery Protocol\"> NDP </abbr>, IPv6 için etkili bir ARP'dir. <abbr " -#~ "title=\"Neighbour Solicitation, Type 135\"> NS </abbr> ve <abbr " -#~ "title=\"Neighbour Advertisement, Type 136\"> NA </abbr> ulaşılabilirliği " -#~ "ve bir bağlantıdaki yinelenen adresleri algılar, kendileri de SLAAC için " -#~ "bir önkoşuldur autoconfig. <br /> <ul style=\"list-style-type:none;\"> " -#~ "<li> <strong>devre dışı</strong>: <abbr title=\"Neighbour Discovery " -#~ "Protocol\"> NDP </abbr> mesajı yok <code>ndproxy_slave</code> gerçek " -#~ "arayüzler aracılığıyla proxy yapılır. </li> <li> <strong> aktarma modu </" -#~ "strong>: Proxy'ler <abbr title=\"Neighbour Discovery Protocol\"> NDP </" -#~ "abbr> mesajları <code> master</code> ile <code> ndproxy_slave </code> " -#~ "gerçek arayüzleri. <abbr title=\"Prefix Delegation\"> PD </abbr> olmadan " +#~ "Advertisement, Type 136\">NA </abbr> mesajlarından oluşur. <abbr title=" +#~ "\"Neighbour Discovery Protocol\"> NDP </abbr>-Proxy, boole<code>master</" +#~ "code> ile işaretlenmiş bir arayüzde <abbr title=\"Neighbour Solicitation, " +#~ "Type 135\"> NS </abbr> için dinler 1 olarak (yani yukarı akış), daha " +#~ "sonra sonunda bir <abbr title=\"Neighbour Advertisement, Type 136\"> NA </" +#~ "abbr> mesajı göndermeden önce bu hedef IP için ikincil / dahili " +#~ "arayüzleri sorgular. <abbr title=\"Neighbour Discovery Protocol\"> NDP </" +#~ "abbr>, IPv6 için etkili bir ARP'dir. <abbr title=\"Neighbour " +#~ "Solicitation, Type 135\"> NS </abbr> ve <abbr title=\"Neighbour " +#~ "Advertisement, Type 136\"> NA </abbr> ulaşılabilirliği ve bir " +#~ "bağlantıdaki yinelenen adresleri algılar, kendileri de SLAAC için bir " +#~ "önkoşuldur autoconfig. <br /> <ul style=\"list-style-type:none;\"> <li> " +#~ "<strong>devre dışı</strong>: <abbr title=\"Neighbour Discovery Protocol" +#~ "\"> NDP </abbr> mesajı yok <code>ndproxy_slave</code> gerçek arayüzler " +#~ "aracılığıyla proxy yapılır. </li> <li> <strong> aktarma modu </strong>: " +#~ "Proxy'ler <abbr title=\"Neighbour Discovery Protocol\"> NDP </abbr> " +#~ "mesajları <code> master</code> ile <code> ndproxy_slave </code> gerçek " +#~ "arayüzleri. <abbr title=\"Prefix Delegation\"> PD </abbr> olmadan " #~ "sağlayıcı bağlantılarını ve güvenlik duvarı proxy'si olan ana " #~ "bilgisayarları desteklemeye yardımcı olur. </li> <li> <strong> karma mod " #~ "</strong>: arayüz boole <code>master</code> 1'dir. </li></ul>" @@ -10975,14 +11084,14 @@ msgstr "« Geri" #~ "in <abbr title=\"Router Advertisement, ICMPv6 Type 134\">RA</abbr> " #~ "messages. Default is 0 (<code>0</code>). Min 1280." #~ msgstr "" -#~ "<abbr title=\"Maximum Transmission Unit\"> MTU </abbr> <abbr " -#~ "title=\"Router Advertisement, ICMPv6 Type 134\"> RA </abbr> mesajlarında " +#~ "<abbr title=\"Maximum Transmission Unit\"> MTU </abbr> <abbr title=" +#~ "\"Router Advertisement, ICMPv6 Type 134\"> RA </abbr> mesajlarında " #~ "yayınlanacaktır. Varsayılan 0'dır (<code> 0 </code>). En az 1280." #~ msgid "" -#~ "The maximum hops to be published in <abbr title=\"Router " -#~ "Advertisement\">RA</abbr> messages.<br />Default is 0 (<code>0</code>), " -#~ "meaning unspecified. Max 255." +#~ "The maximum hops to be published in <abbr title=\"Router Advertisement" +#~ "\">RA</abbr> messages.<br />Default is 0 (<code>0</code>), meaning " +#~ "unspecified. Max 255." #~ msgstr "" #~ "<abbr title=\"Router Advertisement\"> RA </abbr> mesajlarında " #~ "yayınlanacak maksimum atlama sayısı.<br /> Varsayılan 0'dır (<code> 0 </" diff --git a/modules/luci-base/po/uk/base.po b/modules/luci-base/po/uk/base.po index 2cca2b81cc..33d107b9aa 100644 --- a/modules/luci-base/po/uk/base.po +++ b/modules/luci-base/po/uk/base.po @@ -239,6 +239,18 @@ msgstr "<abbr title=\"Router Advertisement\">RA</abbr> MTU" msgid "<abbr title=\"Router Advertisement\">RA</abbr>-Service" msgstr "<abbr title=\"Router Advertisement\">RA</abbr>-Служба" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:294 +msgid "" +"<code>/#/</code> matches any domain. <code>/example.com/</code> returns " +"NXDOMAIN." +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:295 +msgid "" +"<code>/example.com/#</code> returns NULL addresses (<code>0.0.0.0</code> and " +"<code>::</code>) for example.com and its subdomains." +msgstr "" + #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:87 msgctxt "nft relational \">\" operator expression" msgid "<var>%s</var> greater than <strong>%s</strong>" @@ -375,8 +387,8 @@ msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1511 msgid "ATM (Asynchronous Transfer Mode)" msgstr "" -"<abbr title=\"Asynchronous Transfer Mode — асинхронний режим " -"передавання\">ATM</abbr>" +"<abbr title=\"Asynchronous Transfer Mode — асинхронний режим передавання" +"\">ATM</abbr>" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1532 msgid "ATM Bridges" @@ -393,8 +405,8 @@ msgstr "" #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/pppoa.js:70 msgid "ATM Virtual Path Identifier (VPI)" msgstr "" -"Ідентифікатор віртуального шляху ATM (<abbr title=\"Virtual Path " -"Identifier\">VPI</abbr>)" +"Ідентифікатор віртуального шляху ATM (<abbr title=\"Virtual Path Identifier" +"\">VPI</abbr>)" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1532 msgid "" @@ -411,7 +423,7 @@ msgstr "" msgid "ATM device number" msgstr "Номер ATM-пристрою" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:36 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:37 msgid "ATU-C System Vendor ID" msgstr "Ідентифікатор постачальника системи ATU-C" @@ -421,7 +433,7 @@ msgstr "Ідентифікатор постачальника системи ATU msgid "Absent Interface" msgstr "Відсутній інтерфейс" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:320 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:325 msgid "Accept DNS queries only from hosts whose address is on a local subnet." msgstr "" "Обмежувати службу DNS інтерфейсами підмереж, на яких ми обслуговуємо DNS." @@ -561,7 +573,7 @@ msgstr "Додати реалізацію" msgid "Add key" msgstr "Додати ключ" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:410 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:415 msgid "Add local domain suffix to names served from hosts files." msgstr "Додавати суфікс локального домену до імен, отриманих із файлів hosts" @@ -582,11 +594,11 @@ msgstr "Додати до чорного списку" msgid "Add to Whitelist" msgstr "Додати до білого списку" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:367 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:372 msgid "Additional hosts files" msgstr "Додаткові файли hosts" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:417 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:422 msgid "Additional servers file" msgstr "Додаткові файли servers" @@ -616,7 +628,7 @@ msgstr "" msgid "Address to access local relay bridge" msgstr "Адреса для доступу до мосту локального ретранслятора" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:289 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:291 msgid "Addresses" msgstr "Адреси" @@ -649,7 +661,7 @@ msgstr "Час старіння" msgid "Aggregate Originator Messages" msgstr "Складати повідомлення відправників" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:27 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:28 msgid "Aggregate Transmit Power (ACTATP)" msgstr "Сукупна потужність передавача (ACTATP)" @@ -687,17 +699,17 @@ msgstr "Інтерфейс псевдоніма" msgid "Alias of \"%s\"" msgstr "Псевдонім \"%s\"" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:427 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:432 msgid "All servers" msgstr "Усі сервери" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:378 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:383 msgid "" "Allocate IP addresses sequentially, starting from the lowest available " "address." msgstr "Виділяти IP-адреси послідовно, починаючи з найнижчої доступної адреси" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:377 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:382 msgid "Allocate IPs sequentially" msgstr "Виділяти IP послідовно" @@ -730,7 +742,7 @@ msgstr "Дозволяти застарілі швидк. 802.11b" msgid "Allow listed only" msgstr "Дозволити тільки зазначені" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:306 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:311 msgid "Allow localhost" msgstr "Дозволити локальний вузол" @@ -776,7 +788,7 @@ msgstr "Завжди вимкнено (ядро: none)" msgid "Always on (kernel: default-on)" msgstr "Завжди ввімкнено (ядро: default-on)" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:538 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:543 msgid "Always send DHCP Options. Sometimes needed, with e.g. PXELinux." msgstr "" "Завжди надсилайте параметри DHCP. Іноді це необхідно, напр. для PXELinux." @@ -807,7 +819,7 @@ msgid "An optional, short description for this device" msgstr "Необов'язковий, короткий опис для цього пристрою" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1484 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:20 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:21 msgid "Annex" msgstr "Annex" @@ -928,7 +940,7 @@ msgstr "Будь-який пакет" msgid "Any zone" msgstr "Будь-яка зона" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:532 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:537 msgid "Apply DHCP Options to this net. (Empty = all clients)." msgstr "" "Застосувати параметри DHCP до цієї мережі. (якщо порожньо = усі клієнти)." @@ -1028,11 +1040,11 @@ msgstr "Автентифікація" msgid "Authentication Type" msgstr "Тип автентифікації" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:265 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:267 msgid "Authoritative" msgstr "Надійний" -#: modules/luci-base/luasrc/view/sysauth.htm:17 +#: modules/luci-base/ucode/template/sysauth.ut:17 #: themes/luci-theme-bootstrap/htdocs/luci-static/resources/view/bootstrap/sysauth.js:11 msgid "Authorization Required" msgstr "Потрібна авторизація" @@ -1105,7 +1117,7 @@ msgstr "Середнє значення:" msgid "Avoid Bridge Loops" msgstr "Уникати мостових петель" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:388 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:393 msgid "" "Avoid uselessly triggering dial-on-demand links (filters SRV/SOA records and " "names with underscores)." @@ -1140,10 +1152,6 @@ msgstr "Назад" msgid "Back to Overview" msgstr "Повернутися до переліку" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:48 -msgid "Back to configuration" -msgstr "Повернутися до конфігурування" - #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:826 msgid "Back to peer configuration" msgstr "" @@ -1157,7 +1165,6 @@ msgid "Backup / Flash Firmware" msgstr "Рез. копіювання / Перепрош." #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:351 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:12 msgid "Backup file list" msgstr "Список файлів резервних копій" @@ -1201,7 +1208,6 @@ msgid "Beacon Interval" msgstr "Інтервал маяка" #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:352 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:46 msgid "" "Below is the determined list of files to backup. It consists of changed " "configuration files marked by opkg, essential base files and the user " @@ -1215,7 +1221,7 @@ msgstr "" msgid "Bind NTP server" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:326 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:331 msgid "Bind dynamically to interfaces rather than wildcard address." msgstr "" "Прив'язувати динамічно до інтерфейсів, а не за шаблоном адреси (типово для " @@ -1233,6 +1239,17 @@ msgstr "" msgid "Bind interface" msgstr "Прив'язка інтерфейсу" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:595 +msgid "" +"Bind service records to a domain name: specify the location of services." +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:556 +msgid "" +"Bind service records to a domain name: specify the location of services. See " +"<a href=\"%s\">RFC2782</a>." +msgstr "" + #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:59 #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:64 #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:64 @@ -1336,6 +1353,10 @@ msgstr "" msgid "CLAT configuration failed" msgstr "Помилка конфігурації <abbr title=\"464XLAT\">CLAT</abbr>" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:574 +msgid "CNAME or fqdn" +msgstr "" + #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/processes.js:72 msgid "CPU usage (%)" msgstr "Завантаження ЦП, %" @@ -1595,17 +1616,13 @@ msgstr "" "Закривати неактивні з'єднання після вказаного інтервалу часу (секунди). Для " "утримання неактивних з'єднань використовуйте 0" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:49 -msgid "Close list..." -msgstr "Згорнути список..." - #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:44 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:63 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2184 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:391 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:352 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:355 -#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:72 +#: themes/luci-theme-material/ucode/template/themes/material/header.ut:66 msgid "Collecting data..." msgstr "Збирання даних..." @@ -1644,6 +1661,10 @@ msgstr "" msgid "Compute outgoing checksum (optional)." msgstr "Обчислити вихідну контрольну суму (необов’язково)." +#: protocols/luci-proto-nebula/htdocs/luci-static/resources/protocol/nebula.js:40 +msgid "Config File" +msgstr "" + #: modules/luci-base/htdocs/luci-static/resources/ui.js:4375 #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:454 msgid "Configuration" @@ -1693,8 +1714,8 @@ msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:764 msgid "" -"Configures the operation mode of the <abbr title=\"Router " -"Advertisement\">RA</abbr> service on this interface." +"Configures the operation mode of the <abbr title=\"Router Advertisement" +"\">RA</abbr> service on this interface." msgstr "" "Налаштовує режим роботи служби <abbr title=\"Router Advertisement\">RA</" "abbr> на цьому інтерфейсі." @@ -1877,11 +1898,11 @@ msgstr "Настроюваний інтервал спалаху (ядро: time #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/leds.js:59 msgid "" -"Customizes the behaviour of the device <abbr title=\"Light Emitting " -"Diode\">LED</abbr>s if possible." +"Customizes the behaviour of the device <abbr title=\"Light Emitting Diode" +"\">LED</abbr>s if possible." msgstr "" -"Налаштування поведінки <abbr title=\"Light Emitting Diode — " -"світлодіод\">LED</abbr>, якщо це можливо." +"Налаштування поведінки <abbr title=\"Light Emitting Diode — світлодіод" +"\">LED</abbr>, якщо це можливо." #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:673 msgid "DAD transmits" @@ -1899,7 +1920,7 @@ msgstr "Порт DAE" msgid "DAE-Secret" msgstr "Секрет DAE" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:525 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:530 msgid "DHCP Options" msgstr "Параметри DHCP" @@ -1939,11 +1960,11 @@ msgstr "Служба DHCPv6" msgid "DNS" msgstr "DNS" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:282 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:284 msgid "DNS forwardings" msgstr "Переспрямовування запитів DNS" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:445 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:450 msgid "DNS query port" msgstr "" "Порт <abbr title=\"Domain Name System — система доменних імен\">DNS</abbr>-" @@ -1953,7 +1974,7 @@ msgstr "" msgid "DNS search domains" msgstr "Домени пошуку DNS" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:438 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:443 msgid "DNS server port" msgstr "" "Порт <abbr title=\"Domain Name System — система доменних імен\">DNS</abbr>-" @@ -1971,11 +1992,11 @@ msgstr "Вага DNS" msgid "DNS-Label / FQDN" msgstr "DNS-мітка / FQDN" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:397 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:402 msgid "DNSSEC" msgstr "DNSSEC" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:402 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:407 msgid "DNSSEC check unsigned" msgstr "Перевірка непідписаного DNSSEC" @@ -1988,11 +2009,11 @@ msgid "DS-Lite AFTR address" msgstr "AFTR-адреса DS-Lite" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1481 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:44 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:45 msgid "DSL" msgstr "DSL" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:14 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:15 msgid "DSL Status" msgstr "Стан DSL" @@ -2007,12 +2028,12 @@ msgstr "" "індикації доправлення трафіку\">DTIM</abbr>" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:59 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:700 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:771 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:136 msgid "DUID" msgstr "DUID" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:21 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:22 msgid "Data Rate" msgstr "Швидк. передавання" @@ -2264,12 +2285,12 @@ msgstr "" msgid "Disassociate On Low Acknowledgement" msgstr "Роз'єднувати за низького підтвердження" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:302 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:307 msgid "" "Discard upstream responses containing <a href=\"%s\">RFC1918</a> addresses." msgstr "" -"Відкиньте відповіді вгору за течією, що містять адреси <a " -"href=\"%s\">RFC1918</a>." +"Відкиньте відповіді вгору за течією, що містять адреси <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 @@ -2312,7 +2333,7 @@ msgstr "Відстань до найвіддаленішого вузла мер msgid "Distributed ARP Table" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:543 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:548 msgid "" "Dnsmasq instance to which this boot section is bound. If unspecified, the " "section is valid for all dnsmasq instances." @@ -2322,9 +2343,9 @@ msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:246 msgid "" -"Dnsmasq is a lightweight <abbr title=\"Dynamic Host Configuration " -"Protocol\">DHCP</abbr> server and <abbr title=\"Domain Name System\">DNS</" -"abbr> forwarder." +"Dnsmasq is a lightweight <abbr title=\"Dynamic Host Configuration Protocol" +"\">DHCP</abbr> server and <abbr title=\"Domain Name System\">DNS</abbr> " +"forwarder." msgstr "" "Dnsmasq являє собою комбінований <abbr title=\"Dynamic Host Configuration " "Protocol — протокол динамічної конфігурації вузла\">DHCP</abbr>-сервер і " @@ -2332,7 +2353,7 @@ msgstr "" "для брандмауерів <abbr title=\"Network Address Translation — перетворення " "(трансляція) мережевих адрес\">NAT</abbr>" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:414 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:419 msgid "Do not cache negative replies, e.g. for non-existent domains." msgstr "Не кешувати негативні відповіді, наприклад, за неіснуючих доменів" @@ -2344,20 +2365,20 @@ msgstr "Не кешувати негативні відповіді, напри msgid "Do not create host route to peer (optional)." msgstr "Не створювати маршрут до вузла (необов'язково)." -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:262 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:264 msgid "Do not forward DNS queries without dots or domain parts." msgstr "" -"Не переспрямовувати <abbr title=\"Domain Name System — система доменних " -"імен\">DNS</abbr>-запити без <abbr title=\"Domain Name System — система " -"доменних імен\">DNS</abbr>-імені" +"Не переспрямовувати <abbr title=\"Domain Name System — система доменних імен" +"\">DNS</abbr>-запити без <abbr title=\"Domain Name System — система доменних " +"імен\">DNS</abbr>-імені" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:383 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:388 msgid "Do not forward reverse lookups for local networks." msgstr "" "Не переспрямовувати зворотні <abbr title=\"Domain Name System — система " "доменних імен\">DNS</abbr>-запити для локальних мереж" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:339 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:344 msgid "Do not listen on the specified interfaces." msgstr "Перешкоджати прослуховуванню цих інтерфейсів." @@ -2414,15 +2435,16 @@ msgstr "" msgid "Do you want to replace the current keys?" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:593 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:606 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:664 msgid "Domain" msgstr "Домен" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:261 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:263 msgid "Domain required" msgstr "Потрібен домен" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:311 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:316 msgid "Domain whitelist" msgstr "\"Білий список\" доменів" @@ -2611,8 +2633,8 @@ msgid "" "Enable <abbr title=\"Internet Group Management Protocol\">IGMP</abbr> " "snooping" msgstr "" -"Увімкнути відстеження <abbr title=\"Internet Group Management " -"Protocol\">IGMP</abbr>" +"Увімкнути відстеження <abbr title=\"Internet Group Management Protocol" +"\">IGMP</abbr>" #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:518 msgid "Enable <abbr title=\"Spanning Tree Protocol\">STP</abbr>" @@ -2669,7 +2691,7 @@ msgstr "Увімкнути клієнта NTP" msgid "Enable Single DES" msgstr "Увімкнути Single DES" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:480 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:485 msgid "Enable TFTP server" msgstr "Увімкнути TFTP-сервер" @@ -2687,9 +2709,9 @@ msgstr "Увімкнути кнопку WPS, потребує WPA(2)-PSK/WPA3-SA #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/uhttpd.js:14 msgid "" -"Enable automatic redirection of <abbr title=\"Hypertext Transfer " -"Protocol\">HTTP</abbr> requests to <abbr title=\"Hypertext Transfer Protocol " -"Secure\">HTTPS</abbr> port." +"Enable automatic redirection of <abbr title=\"Hypertext Transfer Protocol" +"\">HTTP</abbr> requests to <abbr title=\"Hypertext Transfer Protocol Secure" +"\">HTTPS</abbr> port." msgstr "" "Увімкнути автоматичне перенаправлення <abbr title=\"Hypertext Transfer " "Protocol\">HTTP</abbr> запитів до <abbr title=\"Hypertext Transfer Protocol " @@ -2757,7 +2779,7 @@ msgstr "Увімкнути підтримку багатоадресного т msgid "Enable the DF (Don't Fragment) flag of the encapsulating packets." msgstr "Увімкнути прапорець DF (Don't Fragment) для інкапсульованих пакетів." -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:481 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:486 msgid "Enable the built-in single-instance TFTP server." msgstr "Увімкнути вбудований одноекземплярний TFTP-сервер." @@ -2877,7 +2899,7 @@ msgstr "Помилка" msgid "Error getting PublicKey" msgstr "Помилка отримання публічного ключа" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:29 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:30 msgid "Errored seconds (ES)" msgstr "Секунд з помилками (<abbr title=\"Errored seconds\">ES</abbr>)" @@ -2899,11 +2921,11 @@ msgstr "Кожні 30 секунд (slow, 0)" msgid "Every second (fast, 1)" msgstr "Щосекунди (fast, 1)" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:338 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:343 msgid "Exclude interfaces" msgstr "Виключити інтерфейси" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:307 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:312 msgid "" "Exempt <code>127.0.0.0/8</code> and <code>::1</code> from rebinding checks, " "e.g. for RBL services." @@ -2915,7 +2937,7 @@ msgstr "" msgid "Existing device" msgstr "Існуючий пристрій" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:409 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:414 msgid "Expand hosts" msgstr "Розширення вузлів" @@ -3049,7 +3071,7 @@ msgstr "" msgid "File" msgstr "Файл" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:418 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:423 msgid "" "File listing upstream resolvers, optionally domain-specific, e.g. " "<code>server=1.2.3.4</code>, <code>server=/domain/1.2.3.4</code>." @@ -3062,24 +3084,24 @@ msgstr "" msgid "File not accessible" msgstr "Файл недоступний" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:349 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:354 msgid "File to store DHCP lease information." msgstr "" "Файл, де зберігаються видані <abbr title=\"Dynamic Host Configuration " "Protocol — протокол динамічного конфігурування вузла\">DHCP</abbr>-оренди" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:357 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:362 msgid "File with upstream resolvers." msgstr "" "Локальний <abbr title=\"Domain Name System — система доменних імен\">DNS</" "abbr>-файл" #: modules/luci-base/htdocs/luci-static/resources/ui.js:2846 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:507 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:512 msgid "Filename" msgstr "Ім'я файлу" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:493 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:498 msgid "Filename of the boot image advertised to clients." msgstr "І'мя завантажувального образу, що оголошується клієнтам" @@ -3088,11 +3110,11 @@ msgstr "І'мя завантажувального образу, що оголо msgid "Filesystem" msgstr "Файлова система" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:382 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:387 msgid "Filter private" msgstr "Фільтрувати приватні" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:387 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:392 msgid "Filter useless" msgstr "Фільтрувати непридатні" @@ -3158,7 +3180,7 @@ msgstr "Файл мікропрограми" msgid "Firmware Version" msgstr "Версія прошивки" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:446 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:451 msgid "Fixed source port for outbound DNS queries." msgstr "Фіксований порт для вихідних DNS-запитів" @@ -3184,7 +3206,7 @@ msgstr "Операції прошивання" msgid "Flashing…" msgstr "Прошиваємо…" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:537 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:542 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:686 msgid "Force" msgstr "Примусово" @@ -3229,21 +3251,21 @@ msgstr "Примусове оновлення" msgid "Force use of NAT-T" msgstr "Примусово використовувати NAT-T" -#: modules/luci-base/luasrc/view/csrftoken.htm:8 +#: modules/luci-base/ucode/template/csrftoken.ut:8 msgid "Form token mismatch" msgstr "Неузгодженість маркера форми" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:919 msgid "" -"Forward <abbr title=\"Neighbour Discovery Protocol\">NDP</abbr> <abbr " -"title=\"Neighbour Solicitation, Type 135\">NS</abbr> and <abbr " -"title=\"Neighbour Advertisement, Type 136\">NA</abbr> messages between the " -"designated master interface and downstream interfaces." +"Forward <abbr title=\"Neighbour Discovery Protocol\">NDP</abbr> <abbr title=" +"\"Neighbour Solicitation, Type 135\">NS</abbr> and <abbr title=\"Neighbour " +"Advertisement, Type 136\">NA</abbr> messages between the designated master " +"interface and downstream interfaces." msgstr "" "Пересилати <abbr title=\"Neighbour Discovery Protocol\">NDP</abbr> <abbr " -"title=\"Neighbour Solicitation, Type 135\">NS</abbr> та <abbr " -"title=\"Neighbour Advertisement, Type 136\">NA</abbr> повідомлення між " -"призначеним майстер-інтерфейсом та downstream інтерфейсами." +"title=\"Neighbour Solicitation, Type 135\">NS</abbr> та <abbr title=" +"\"Neighbour Advertisement, Type 136\">NA</abbr> повідомлення між призначеним " +"майстер-інтерфейсом та downstream інтерфейсами." #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:770 msgid "" @@ -3267,7 +3289,7 @@ msgstr "" "Пересилати повідомлення DHCPv6 між призначеним майстер-інтерфейсом та " "downstream інтерфейсами." -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:28 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:29 msgid "Forward Error Correction Seconds (FECS)" msgstr "Секунди прямого коригування помилок (FECS)" @@ -3427,15 +3449,15 @@ msgstr "Загальні параметри" msgid "Global network options" msgstr "Глобальні параметри мережі" -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:82 -#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:89 -#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:74 +#: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/header.ut:70 +#: themes/luci-theme-material/ucode/template/themes/material/header.ut:84 +#: themes/luci-theme-openwrt-2020/ucode/template/themes/openwrt2020/header.ut:67 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:92 msgid "Go to firmware upgrade..." msgstr "Перейти до оновлення прошивки..." -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:72 -#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:64 +#: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/header.ut:60 +#: themes/luci-theme-openwrt-2020/ucode/template/themes/openwrt2020/header.ut:57 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:82 msgid "Go to password configuration..." msgstr "Перейти до конфігурування пароля..." @@ -3576,7 +3598,7 @@ msgstr "Доступ по HTTP(S)" msgid "Hang Up" msgstr "Призупинити" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:33 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:34 msgid "Header Error Code Errors (HEC)" msgstr "" "Помилки коду помилок заголовка (<abbr title=\"Header Error Control\">HEC</" @@ -3633,7 +3655,7 @@ msgstr "Вузол" msgid "Host expiry timeout" msgstr "Тайм-аут вузла" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:508 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:513 msgid "Host requests this filename from the boot server." msgstr "Хост запитує цей файл з сервера завантаження." @@ -3642,8 +3664,8 @@ msgid "Host-Uniq tag content" msgstr "Зміст тегу Host-Uniq" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:38 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:559 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:607 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:630 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:678 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/10_system.js:54 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:87 #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:135 @@ -3658,7 +3680,7 @@ msgstr "Ім'я вузла для надсилання при запиті DHCP" msgid "Hostnames" msgstr "Імена вузлів" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:551 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:622 msgid "" "Hostnames are used to bind a domain name to an IP address. This setting is " "redundant for hostnames already configured with static leases, but it can be " @@ -3726,7 +3748,7 @@ msgstr "IP-адреси" msgid "IP Protocol" msgstr "IP-протокол" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:258 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:260 msgid "IP Sets" msgstr "Списки IP" @@ -3734,7 +3756,7 @@ msgstr "Списки IP" msgid "IP Type" msgstr "Тип IP" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:563 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:634 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:178 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:204 msgid "IP address" @@ -3760,15 +3782,15 @@ msgctxt "nft meta l4proto" msgid "IP protocol" msgstr "IP-протокол" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:589 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:660 msgid "IP set" msgstr "Список IP" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:295 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:300 msgid "IP sets" msgstr "Списки IP" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:432 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:437 msgid "IPs to override with NXDOMAIN" msgstr "Відкидати підробки NX-домену" @@ -3809,7 +3831,7 @@ msgstr "З'єднання IPv4 (upstream)" #: modules/luci-base/htdocs/luci-static/resources/protocol/static.js:178 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:39 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:665 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:736 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:88 #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:164 msgid "IPv4 address" @@ -3984,7 +4006,7 @@ msgstr "Явна маршрутизація IPv6" msgid "IPv6 suffix" msgstr "Суфікс IPv6" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:706 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:777 msgid "IPv6 suffix (hex)" msgstr "<abbr title=\"Інтернет-протокол версії 6\">IPv6</abbr>-суфікс (hex)" @@ -4082,10 +4104,10 @@ msgstr "Якщо не позначено, оголошувані адреси DN #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:340 msgid "" "If your physical memory is insufficient unused data can be temporarily " -"swapped to a swap-device resulting in a higher amount of usable <abbr " -"title=\"Random Access Memory\">RAM</abbr>. Be aware that swapping data is a " -"very slow process as the swap-device cannot be accessed with the high " -"datarates of the <abbr title=\"Random Access Memory\">RAM</abbr>." +"swapped to a swap-device resulting in a higher amount of usable <abbr title=" +"\"Random Access Memory\">RAM</abbr>. Be aware that swapping data is a very " +"slow process as the swap-device cannot be accessed with the high datarates " +"of the <abbr title=\"Random Access Memory\">RAM</abbr>." msgstr "" "Якщо фізичної пам'яті недостатньо, невикористовувані дані можуть тимчасово " "витіснятися на своп-пристрій, у результаті чого збільшується кількість " @@ -4094,7 +4116,7 @@ msgstr "" "своп-пристрої не можуть бути доступні з такою високою швидкістю, як <abbr " "title=\"Random Access Memory\">RAM</abbr>." -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:363 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:368 msgid "Ignore <code>/etc/hosts</code>" msgstr "Ігнорувати <code>/etc/hosts</code>" @@ -4102,7 +4124,7 @@ msgstr "Ігнорувати <code>/etc/hosts</code>" msgid "Ignore interface" msgstr "Ігнорувати интерфейс" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:352 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:357 msgid "Ignore resolv file" msgstr "Ігнорувати файли resolv" @@ -4150,7 +4172,7 @@ msgid "" "order to avoid broadcast loops that can bring the entire LAN to a standstill." msgstr "" -#: modules/luci-base/luasrc/view/csrftoken.htm:13 +#: modules/luci-base/ucode/template/csrftoken.ut:13 msgid "" "In order to prevent unauthorized access to the system, your request has been " "blocked. Click \"Continue »\" below to return to the previous page." @@ -4265,7 +4287,7 @@ msgstr "Внутрішнє обмеження сертифіката (Шабло msgid "Install protocol extensions..." msgstr "Інсталяція розширень протоколу..." -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:542 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:547 msgid "Instance" msgstr "Екземпляр" @@ -4354,10 +4376,6 @@ msgstr "Інтерфейси" msgid "Internal" msgstr "Внутрішній" -#: modules/luci-base/luasrc/view/error500.htm:8 -msgid "Internal Server Error" -msgstr "Внутрішня помилка сервера" - #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:285 msgid "Interval For Sending Learning Packets" msgstr "Інтервал відсилання навчальних (learning) пакетів" @@ -4439,8 +4457,8 @@ msgstr "Неприпустима команда" msgid "Invalid hexadecimal value" msgstr "Неприпустиме шістнадцяткове значення" -#: modules/luci-base/luasrc/view/sysauth.htm:12 -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/sysauth.htm:37 +#: modules/luci-base/ucode/template/sysauth.ut:12 +#: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/sysauth.ut:32 msgid "Invalid username and/or password! Please try again." msgstr "Неприпустиме ім'я користувача та/або пароль! Спробуйте ще раз." @@ -4464,8 +4482,8 @@ msgstr "" "Схоже, що ви намагаєтеся прошити образ, який не вміщається до флеш-пам'яті! " "Перевірте файл образу!" -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:89 -#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:96 +#: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/header.ut:77 +#: themes/luci-theme-material/ucode/template/themes/material/header.ut:91 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:72 msgid "JavaScript required!" msgstr "Потрібен JavaScript!" @@ -4597,11 +4615,17 @@ msgstr "Мова" msgid "Language and Style" msgstr "Мова та стиль" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:560 +msgid "" +"Larger weights (of the same prio) are given a proportionately higher " +"probability of being selected." +msgstr "" + #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:575 msgid "Last member interval" msgstr "Інтервал останнього членства" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:23 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:24 msgid "Latency" msgstr "Затримка" @@ -4617,11 +4641,11 @@ msgstr "Вивчення" msgid "Learn routes" msgstr "Вивчати маршрути" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:348 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:353 msgid "Lease file" msgstr "Файл оренд" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:697 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:768 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:679 msgid "Lease time" msgstr "Час оренди" @@ -4669,19 +4693,19 @@ msgstr "Легенда:" msgid "Limit" msgstr "Межа" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:24 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:25 msgid "Line Attenuation (LATN)" msgstr "Затухання лінії" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:18 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:19 msgid "Line Mode" msgstr "Режим лінії" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:17 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:18 msgid "Line State" msgstr "Стан лінії" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:19 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:20 msgid "Line Uptime" msgstr "Час безперервної роботи лінії" @@ -4702,12 +4726,12 @@ msgctxt "nft @ll,off,len" msgid "Link layer header bits %d-%d" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:433 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:438 msgid "List of IP addresses to convert into NXDOMAIN responses." msgstr "Список доменів, які підтримують результати підробки NX-доменів" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:296 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:581 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:301 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:652 msgid "List of IP sets to populate with the specified domain IPs." msgstr "Список IP-наборів для заповнення вказаними IP-адресами доменів." @@ -4721,9 +4745,9 @@ msgid "" msgstr "" "Список власників ключів R0 у тому ж домені мобільності. <br />Формат: MAC-" "адреса,NAS-ідентифікатор,128-бітний ключ у вигляді шістнадцяткового рядка. " -"<br />Цей список використовується для відображення <abbr " -"title=\"ідентифікатор власника ключа R0\">R0KH-ID</abbr> (NAS-ідентифікатор) " -"на MAC-адреси призначення при запиті ключа PMK-R1 від <abbr title=\"власник " +"<br />Цей список використовується для відображення <abbr title=" +"\"ідентифікатор власника ключа R0\">R0KH-ID</abbr> (NAS-ідентифікатор) на " +"MAC-адреси призначення при запиті ключа PMK-R1 від <abbr title=\"власник " "ключа R0\">R0KH</abbr>, як станції, що була використана під час початкової " "асоціації домену мобільності." @@ -4738,26 +4762,22 @@ msgstr "" "Список власників ключів R1 у тому ж домені мобільності. <br />Формат: MAC-" "адреса,<abbr title=\"ідентифікатор власника ключа R1\">R1KH-ID</abbr> у " "формі 6 октетів з двокрапками,128-бітний ключ у вигляді шістнадцяткового " -"рядка. <br />Цей список використовується для відображення <abbr " -"title=\"ідентифікатор власника ключа R1\">R1KH-ID</abbr> на MAC-адреси " -"призначення при передаванні ключа PMK-R1 від <abbr title=\"власник ключа " -"R0\">R0KH</abbr>. Це також список авторизованих <abbr title=\"власник ключа " -"R1\">R1KH</abbr> у формі <abbr title=\"Message Digest — дайджест " -"повідомлення\">MD</abbr>, які можуть запитувати ключі PMK-R1." +"рядка. <br />Цей список використовується для відображення <abbr title=" +"\"ідентифікатор власника ключа R1\">R1KH-ID</abbr> на MAC-адреси призначення " +"при передаванні ключа PMK-R1 від <abbr title=\"власник ключа R0\">R0KH</" +"abbr>. Це також список авторизованих <abbr title=\"власник ключа R1\">R1KH</" +"abbr> у формі <abbr title=\"Message Digest — дайджест повідомлення\">MD</" +"abbr>, які можуть запитувати ключі PMK-R1." #: protocols/luci-proto-pppossh/htdocs/luci-static/resources/protocol/pppossh.js:82 msgid "List of SSH key files for auth" msgstr "Список файлів SSH-ключів для авторизації" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:312 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:317 msgid "List of domains to allow RFC1918 responses for." msgstr "Список доменів, для яких дозволено RFC1918-відповіді" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:290 -msgid "List of domains to force to an IP address." -msgstr "Список доменів для примусового перетворення у IP-адреси." - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:283 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:285 msgid "List of upstream resolvers to forward queries to." msgstr "" "Список <abbr title=\"Domain Name System\">DNS</abbr>-серверів для " @@ -4767,7 +4787,7 @@ msgstr "" msgid "Listen Port" msgstr "Порти прослуховування" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:332 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:337 msgid "Listen interfaces" msgstr "Інтерфейси прослуховування" @@ -4777,7 +4797,7 @@ msgstr "" "Прослуховувати тільки на цьому інтерфейсі, якщо <em>невизначено</em> – на " "всіх" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:333 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:338 msgid "" "Listen only on the specified interfaces, and loopback if not excluded " "explicitly." @@ -4788,7 +4808,7 @@ msgstr "" msgid "ListenPort setting is invalid" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:439 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:444 msgid "Listening port for inbound DNS queries." msgstr "Порт прослуховування для вхідних DNS-запитів." @@ -4815,9 +4835,9 @@ msgid "Loading directory contents…" msgstr "Завантаження вмісту каталогу…" #: modules/luci-base/htdocs/luci-static/resources/luci.js:1942 -#: modules/luci-base/luasrc/view/view.htm:4 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:12 -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/sysauth.htm:45 +#: modules/luci-base/ucode/template/view.ut:4 +#: modules/luci-mod-status/ucode/template/admin_status/index.ut:12 +#: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/sysauth.ut:40 msgid "Loading view…" msgstr "Завантаження подання…" @@ -4875,21 +4895,21 @@ msgstr "Місцевий час" msgid "Local ULA" msgstr "Локальний ULA" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:273 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:275 msgid "Local domain" msgstr "Локальний домен" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:274 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:276 msgid "Local domain suffix appended to DHCP names and hosts file entries." msgstr "" "Суфікс локального домену додається до DHCP-імен вузлів та записів з файлу " "hosts" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:269 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:271 msgid "Local server" msgstr "Локальний сервер" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:319 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:324 msgid "Local service only" msgstr "Тільки локальна служба" @@ -4897,7 +4917,7 @@ msgstr "Тільки локальна служба" msgid "Local wireguard key" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:392 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:397 msgid "Localise queries" msgstr "Локалізувати запити" @@ -4909,7 +4929,7 @@ msgstr "Зблокувати з BSSID" msgid "Log output level" msgstr "Рівень виведення інформаціі до журналу" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:277 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:279 msgid "Log queries" msgstr "Журнал запитів" @@ -4935,8 +4955,8 @@ msgstr "" msgid "Logical network to which the tunnel will be added (bridged) (optional)." msgstr "Логічна мережа, до якої буде додано тунель (міст) (необов'язково)." -#: modules/luci-base/luasrc/view/sysauth.htm:38 -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/sysauth.htm:41 +#: modules/luci-base/ucode/template/sysauth.ut:38 +#: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/sysauth.ut:36 msgid "Login" msgstr "Увійти" @@ -4948,7 +4968,7 @@ msgstr "Вийти" msgid "Loose filtering" msgstr "Слабка фільтрація" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:31 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:32 msgid "Loss of Signal Seconds (LOSS)" msgstr "" "Втрата сигналу в секундах (<abbr title=\"Loss of Signal Seconds\">LOSS</" @@ -4958,6 +4978,10 @@ msgstr "" msgid "Lowest leased address as offset from the network address." msgstr "Найнижча орендована адреса." +#: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/footer.ut:12 +msgid "Lua compatibility mode active" +msgstr "" + #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:48 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:83 msgid "MAC" @@ -4982,7 +5006,7 @@ msgstr "MAC VLAN" #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:591 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:40 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:619 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:690 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1164 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2177 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:56 @@ -5041,6 +5065,10 @@ msgstr "Інтервал MII" msgid "MTU" msgstr "MTU" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:259 +msgid "MX" +msgstr "" + #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:303 msgid "" "Make sure to clone the root filesystem using something like the commands " @@ -5070,24 +5098,24 @@ msgstr "" "Максимальний інтервал <abbr title=\"Router Advertisement\">RA</abbr> " "повідомлень" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:22 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:23 msgid "Max. Attainable Data Rate (ATTNDR)" msgstr "Макс. досяжна швидкість передачі даних (ATTNDR)" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:452 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:457 msgid "Max. DHCP leases" msgstr "" "<abbr title=\"Максимум\">Макс.</abbr> оренд <abbr title=\"Dynamic Host " "Configuration Protocol — протокол динамічної конфігурації вузла\">DHCP</abbr>" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:459 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:464 msgid "Max. EDNS0 packet size" msgstr "" -"<abbr title=\"Максимальний\">Макс.</abbr> розмір пакета <abbr " -"title=\"Extension Mechanisms for Domain Name System — Механізми розширень " -"для доменної системи імен\">EDNS0</abbr>" +"<abbr title=\"Максимальний\">Макс.</abbr> розмір пакета <abbr title=" +"\"Extension Mechanisms for Domain Name System — Механізми розширень для " +"доменної системи імен\">EDNS0</abbr>" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:466 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:471 msgid "Max. concurrent queries" msgstr "<abbr title=\"Максимум\">Макс.</abbr> одночасних запитів" @@ -5099,15 +5127,15 @@ msgstr "Максимальний вік" msgid "Maximum allowed Listen Interval" msgstr "Максимальний дозволений інтервал прослуховування" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:453 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:458 msgid "Maximum allowed number of active DHCP leases." msgstr "Максимально допустима кількість активних оренд DHCP" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:467 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:472 msgid "Maximum allowed number of concurrent DNS queries." msgstr "Максимально допустима кількість одночасних DNS-запитів" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:460 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:465 msgid "Maximum allowed size of EDNS0 UDP packets." msgstr "Максимально допустимий розмір UDP-пакетів EDNS.0" @@ -5129,15 +5157,15 @@ msgid "" "Maximum time allowed between sending unsolicited <abbr title=\"Router " "Advertisement, ICMPv6 Type 134\">RA</abbr>. Default is 600 seconds." msgstr "" -"Максимальний час, дозволений між відправкою незатребуваних <abbr " -"title=\"Router Advertisement, ICMPv6 Type 134\">RA</abbr>. За промовчанням - " -"600 секунд." +"Максимальний час, дозволений між відправкою незатребуваних <abbr title=" +"\"Router Advertisement, ICMPv6 Type 134\">RA</abbr>. За промовчанням - 600 " +"секунд." #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:947 msgid "Maximum transmit power" msgstr "Максимальна потужність" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:389 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:394 msgid "May prevent VoIP or other services from working." msgstr "" @@ -5237,9 +5265,9 @@ msgid "" "Minimum time allowed between sending unsolicited <abbr title=\"Router " "Advertisement, ICMPv6 Type 134\">RA</abbr>. Default is 200 seconds." msgstr "" -"Мінімальний час, дозволений між відправкою незатребуваних <abbr " -"title=\"Router Advertisement, ICMPv6 Type 134\">RA</abbr>. За промовчанням - " -"200 секунд." +"Мінімальний час, дозволений між відправкою незатребуваних <abbr title=" +"\"Router Advertisement, ICMPv6 Type 134\">RA</abbr>. За промовчанням - 200 " +"секунд." #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:204 msgid "Mirror monitor port" @@ -5462,11 +5490,15 @@ msgstr "Назва нової мережі" msgid "Name of the tunnel device" msgstr "" -#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:46 +#: themes/luci-theme-openwrt-2020/ucode/template/themes/openwrt2020/header.ut:39 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:50 msgid "Navigation" msgstr "Навігація" +#: protocols/luci-proto-nebula/htdocs/luci-static/resources/protocol/nebula.js:10 +msgid "Nebula Network" +msgstr "" + #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:653 msgid "Neighbour cache validity" msgstr "Дійсність кешу сусідів" @@ -5502,7 +5534,7 @@ msgstr "Мережеві утиліти" msgid "Network address" msgstr "Мережева адреса" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:492 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:497 msgid "Network boot image" msgstr "Образ для мережевого завантаження" @@ -5542,7 +5574,7 @@ msgstr "Міграція конфігурації мережевих інтер msgid "Network interface" msgstr "Мережевий інтерфейс" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:531 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:536 msgid "Network-ID" msgstr "Network-ID" @@ -5550,7 +5582,7 @@ msgstr "Network-ID" msgid "Never" msgstr "Ніколи" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:270 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:272 msgid "" "Never forward matching domains and subdomains, resolve from DHCP or hosts " "files only." @@ -5601,9 +5633,9 @@ msgstr "Немає NAT-T" msgid "No RX signal" msgstr "Сигналу RX немає" -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:80 -#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:87 -#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:72 +#: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/header.ut:68 +#: themes/luci-theme-material/ucode/template/themes/material/header.ut:82 +#: themes/luci-theme-openwrt-2020/ucode/template/themes/openwrt2020/header.ut:65 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:90 msgid "" "No changes to settings will be stored and are lost after rebooting. This " @@ -5648,10 +5680,6 @@ msgstr "Немає доступних записів" msgid "No entries in this directory" msgstr "У цьому каталозі немає записів" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:82 -msgid "No files found" -msgstr "Файли не знайдено" - #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:833 msgid "" "No fixed interface listening port defined, peers might not be able to " @@ -5687,7 +5715,7 @@ msgstr "Більше немає доступних ведених" msgid "No more slaves available, can not save interface" msgstr "Більше немає доступних ведених, не вдається зберегти інтерфейс" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:413 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:418 msgid "No negative cache" msgstr "Ніяких негативних кешувань" @@ -5695,8 +5723,8 @@ msgstr "Ніяких негативних кешувань" msgid "No nftables ruleset loaded." msgstr "" -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:69 -#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:61 +#: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/header.ut:57 +#: themes/luci-theme-openwrt-2020/ucode/template/themes/openwrt2020/header.ut:54 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:79 msgid "No password set!" msgstr "Пароль не встановлено!" @@ -5736,7 +5764,7 @@ msgstr "Зону не призначено" msgid "Noise" msgstr "Шум" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:26 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:27 msgid "Noise Margin (SNR)" msgstr "Співвідношення сигнал/шум" @@ -5744,11 +5772,11 @@ msgstr "Співвідношення сигнал/шум" msgid "Noise:" msgstr "Шум:" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:34 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:35 msgid "Non Pre-emptive CRC errors (CRC_P)" msgstr "Не запобіжні помилки CRC (CRC_P)" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:325 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:330 msgid "Non-wildcard" msgstr "Без шаблону заміни" @@ -5763,7 +5791,7 @@ msgstr "Жоден" msgid "Normal" msgstr "Нормальна" -#: modules/luci-base/luasrc/view/error404.htm:8 +#: modules/luci-base/ucode/template/error404.ut:9 msgid "Not Found" msgstr "Не знайдено" @@ -5815,7 +5843,7 @@ msgstr "DNS-запит" msgid "Number of IGMP membership reports" msgstr "Кількість звітів про членство в IGMP" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:474 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:479 msgid "Number of cached DNS entries, 10000 is maximum, 0 is no caching." msgstr "Кількість кешованих записів DNS (макс. – 10000, 0 – без кешування)" @@ -5864,7 +5892,7 @@ msgstr "Затримка On-State" msgid "On-link" msgstr "Маршрут On-Link" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:672 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:743 msgid "One of hostname or MAC address must be specified!" msgstr "Має бути зазначено одне з двох – ім'я вузла або МАС-адреса!" @@ -5903,7 +5931,6 @@ msgid "Open iptables rules overview…" msgstr "" #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:472 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:19 msgid "Open list..." msgstr "Відкрити список..." @@ -6073,22 +6100,27 @@ msgstr "" msgid "Options" msgstr "Опції" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:526 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:531 msgid "" "Options for the Network-ID. (Note: needs also Network-ID.) E.g. " -"\"<code>42,192.168.1.4</code>\" for NTP server, \"<code>3,192.168.4.4</" -"code>\" for default route. <code>0.0.0.0</code> means \"the address of the " -"system running dnsmasq\"." +"\"<code>42,192.168.1.4</code>\" for NTP server, \"<code>3,192.168.4.4</code>" +"\" for default route. <code>0.0.0.0</code> means \"the address of the system " +"running dnsmasq\"." msgstr "" "Параметри Network-ID. (Примітка: потрібен також Network-ID.) До прикладу: " -"\"<code>42,192.168.1.4</code>\" для NTP-сервера, \"<code>3,192.168.4.4</" -"code>\" для маршруту за промовчанням. <code>0.0.0.0</code> означає «адресу " +"\"<code>42,192.168.1.4</code>\" для NTP-сервера, \"<code>3,192.168.4.4</code>" +"\" для маршруту за промовчанням. <code>0.0.0.0</code> означає «адресу " "системи, на якій працює dnsmasq»." #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:125 msgid "Options:" msgstr "Параметри:" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:584 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:616 +msgid "Ordinal: lower comes first." +msgstr "" + #: protocols/luci-proto-batman-adv/htdocs/luci-static/resources/protocol/batadv.js:55 msgid "Originator Interval" msgstr "" @@ -6367,13 +6399,13 @@ msgid "Pass-through (Mirror physical device to single MAC VLAN)" msgstr "" "Pass-through (дзеркальне відображення фізичного пристрою у один MAC VLAN)" -#: modules/luci-base/luasrc/view/sysauth.htm:29 +#: modules/luci-base/ucode/template/sysauth.ut:29 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1690 #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:51 #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:114 #: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:103 #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:58 -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/sysauth.htm:24 +#: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/sysauth.ut:19 msgid "Password" msgstr "Пароль" @@ -6544,7 +6576,7 @@ msgstr "Ехо-запит" msgid "Pkts." msgstr "пакетів" -#: modules/luci-base/luasrc/view/sysauth.htm:19 +#: modules/luci-base/ucode/template/sysauth.ut:19 msgid "Please enter your username and password." msgstr "Введіть ім'я користувача і пароль." @@ -6561,6 +6593,7 @@ msgctxt "Chain hook policy" msgid "Policy: <strong>%h</strong> (%h)" msgstr "Політика: <strong>%h</strong> (%h)" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:579 #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/dropbear.js:21 msgid "Port" msgstr "Порт" @@ -6577,11 +6610,11 @@ msgstr "Стан порту:" msgid "Potential negation of: %s" msgstr "Потенційне заперечення: %s" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:37 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:38 msgid "Power Management Mode" msgstr "Режим керування живленням" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:35 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:36 msgid "Pre-emptive CRC errors (CRCP_P)" msgstr "Попереджувати помилки CRC (CRCP_P)" @@ -6660,6 +6693,8 @@ msgstr "" "0)" #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:508 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:584 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:616 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:129 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:197 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:223 @@ -6781,7 +6816,7 @@ msgstr "Стільниковий QMI" msgid "Quality" msgstr "Якість" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:428 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:433 msgid "Query all available upstream resolvers." msgstr "" "Запит усіх наявних висхідних <abbr title=\"Domain Name System — система " @@ -6868,7 +6903,7 @@ msgstr "" "Необроблені байти в шістнадцятковому кодуванні. Залиште порожнім, якщо ваш " "інтернет-провайдер не вимагає цього." -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:345 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:350 msgid "Read <code>/etc/ethers</code> to configure the DHCP server." msgstr "" "Читати <code>/etc/ethers</code> для налаштування <abbr title=\"Dynamic Host " @@ -6887,7 +6922,7 @@ msgstr "Графіки у реальному часі" msgid "Reassociation Deadline" msgstr "Кінцевий термін реассоціації" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:301 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:306 msgid "Rebind protection" msgstr "Захист від переприв'язки" @@ -6974,6 +7009,7 @@ msgstr "" "дорівнює вказаному значенню" #: modules/luci-compat/luasrc/model/network/proto_relay.lua:153 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:611 #: protocols/luci-proto-relay/htdocs/luci-static/resources/protocol/relay.js:39 msgid "Relay" msgstr "Ретранслятор" @@ -7064,6 +7100,10 @@ msgstr "Вимагається для деяких провайдерів, на msgid "Required. Base64-encoded private key for this interface." msgstr "Вимагається. Base64-кодований закритий ключ для цього інтерфейсу." +#: protocols/luci-proto-nebula/htdocs/luci-static/resources/protocol/nebula.js:40 +msgid "Required. Path to the .yml config file for this interface." +msgstr "" + #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:587 msgid "Required. Public key of the WireGuard peer." msgstr "" @@ -7146,7 +7186,7 @@ msgid "Reselection policy for primary slave" msgstr "Політика повторного вибору первинного веденого" #: modules/luci-base/htdocs/luci-static/resources/luci.js:2197 -#: modules/luci-base/luasrc/view/sysauth.htm:39 +#: modules/luci-base/ucode/template/sysauth.ut:39 #: modules/luci-compat/luasrc/view/cbi/delegator.htm:17 #: modules/luci-compat/luasrc/view/cbi/footer.htm:30 #: modules/luci-compat/luasrc/view/cbi/simpleform.htm:66 @@ -7165,10 +7205,14 @@ msgstr "Відновити початковий стан" msgid "Resolv and Hosts Files" msgstr "Файли resolv і hosts" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:356 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:361 msgid "Resolv file" msgstr "Файл resolv" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:292 +msgid "Resolve specified FQDNs to an IP." +msgstr "Список доменів для примусового перетворення у IP-адреси." + #: modules/luci-base/htdocs/luci-static/resources/rpc.js:405 msgid "Resource not found" msgstr "Ресурс не знайдено" @@ -7195,7 +7239,7 @@ msgstr "Відновлення" msgid "Restore backup" msgstr "Відновити з резервної копії" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:393 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:398 msgid "" "Return answers to DNS queries matching the subnet from which the query was " "received if multiple IPs are available." @@ -7289,7 +7333,7 @@ msgstr "" msgid "Robustness" msgstr "Надійність" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:486 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:491 msgid "" "Root directory for files served via TFTP. <em>Enable TFTP server</em> and " "<em>TFTP server root</em> turn on the TFTP server and serve files from " @@ -7324,9 +7368,9 @@ msgid "" "Router Lifetime published in <abbr title=\"Router Advertisement, ICMPv6 Type " "134\">RA</abbr> messages. Maximum is 9000 seconds." msgstr "" -"Термін служби маршрутизатора опублікованих у повідомленнях <abbr " -"title=\"Router Advertisement, ICMPv6 Type 134\">RA</abbr>. Максимальне " -"значення 9000 секунд." +"Термін служби маршрутизатора опублікованих у повідомленнях <abbr title=" +"\"Router Advertisement, ICMPv6 Type 134\">RA</abbr>. Максимальне значення " +"9000 секунд." #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:46 #: modules/luci-mod-system/root/usr/share/luci/menu.d/luci-mod-system.json:26 @@ -7400,6 +7444,11 @@ msgstr "SHA256" msgid "SNR" msgstr "SNR" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:258 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:569 +msgid "SRV" +msgstr "" + #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/dropbear.js:10 #: modules/luci-mod-system/root/usr/share/luci/menu.d/luci-mod-system.json:38 msgid "SSH Access" @@ -7544,11 +7593,11 @@ msgstr "Надіслати ім’я хосту цього пристрою" msgid "Server" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:519 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:524 msgid "Server address" msgstr "Адреса сервера" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:513 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:518 msgid "Server name" msgstr "Ім'я сервера" @@ -7647,11 +7696,11 @@ msgstr "Параметри" msgid "Setup routes for proxied IPv6 neighbours." msgstr "Налаштування маршрутів для проксі-сусідів IPv6." -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:30 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:31 msgid "Severely Errored Seconds (SES)" msgstr "" -"Секунди з великою кількістю помилок (<abbr title=\"Severely Errored " -"Seconds\">SES</abbr>)" +"Секунди з великою кількістю помилок (<abbr title=\"Severely Errored Seconds" +"\">SES</abbr>)" #: 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 @@ -7663,7 +7712,6 @@ msgid "Short Preamble" msgstr "Коротка преамбула" #: 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 msgid "Show current backup file list" msgstr "Показати поточний список файлів резервного копіювання" @@ -7697,7 +7745,7 @@ msgstr "Сигнал" msgid "Signal / Noise" msgstr "Сигнал / шум" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:25 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:26 msgid "Signal Attenuation (SATN)" msgstr "Затухання сигналу (SATN)" @@ -7714,7 +7762,7 @@ msgstr "Сигнал:" msgid "Size" msgstr "Розмір" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:473 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:478 msgid "Size of DNS query cache" msgstr "Розмір кешу запитів DNS" @@ -7731,12 +7779,12 @@ msgstr "Пропустити" msgid "Skip from backup files that are equal to those in /rom" msgstr "Пропускати з резервної копії файли, які співпадають з файлами в /rom" -#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:42 +#: themes/luci-theme-openwrt-2020/ucode/template/themes/openwrt2020/header.ut:35 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:46 msgid "Skip to content" msgstr "Перейти до вмісту" -#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:41 +#: themes/luci-theme-openwrt-2020/ucode/template/themes/openwrt2020/header.ut:34 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:45 msgid "Skip to navigation" msgstr "Перейти до навігації" @@ -7754,14 +7802,10 @@ msgstr "Програмово реалізований VLAN" msgid "Some fields are invalid, cannot save values!" msgstr "Деякі поля є неприпустимими, неможливо зберегти значення!" -#: modules/luci-base/luasrc/view/error404.htm:9 +#: modules/luci-base/ucode/template/error404.ut:10 msgid "Sorry, the object you requested was not found." msgstr "На жаль, об'єкт, який ви просили, не знайдено." -#: modules/luci-base/luasrc/view/error500.htm:9 -msgid "Sorry, the server encountered an unexpected error." -msgstr "На жаль, на сервері сталася неочікувана помилка." - #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:442 msgid "" "Sorry, there is no sysupgrade support present; a new firmware image must be " @@ -7800,13 +7844,13 @@ msgctxt "nft ip sport" msgid "Source port" msgstr "Порт джерела" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:500 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:505 msgid "" "Special <abbr title=\"Preboot eXecution Environment\">PXE</abbr> boot " "options for Dnsmasq." msgstr "" -"Спеціальні параметри завантаження <abbr title=\"Preboot eXecution " -"Environment\">PXE</abbr> для Dnsmasq." +"Спеціальні параметри завантаження <abbr title=\"Preboot eXecution Environment" +"\">PXE</abbr> для Dnsmasq." #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:906 msgid "" @@ -8261,7 +8305,7 @@ msgstr "Статичні оренди" msgid "Static address" msgstr "Статична адреса" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:598 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:669 msgid "" "Static leases are used to assign fixed IP addresses and symbolic hostnames " "to DHCP clients. They are also required for non-dynamic interface " @@ -8279,7 +8323,7 @@ msgstr "Обмеження бездіяльності станції" #: modules/luci-base/root/usr/share/luci/menu.d/luci-base.json:16 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:541 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:929 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:9 +#: modules/luci-mod-status/ucode/template/admin_status/index.ut:9 msgid "Status" msgstr "Стан" @@ -8305,7 +8349,7 @@ msgstr "Сховище" msgid "Strict filtering" msgstr "Сувора фільтрація" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:422 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:427 msgid "Strict order" msgstr "Строгий порядок" @@ -8318,11 +8362,11 @@ msgstr "Висока" msgid "Submit" msgstr "Надіслати" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:372 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:377 msgid "Suppress logging" msgstr "Блокувати журналювання" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:373 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:378 msgid "Suppress logging of the routine operation for the DHCP protocol." msgstr "Блокувати ведення журналу звичайної роботи цих протоколів" @@ -8377,6 +8421,14 @@ msgstr "Синхронізувати з NTP-сервером" msgid "Sync with browser" msgstr "Синхронізувати з браузером" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:293 +msgid "Syntax: <code>/fqdn[/fqdn…]/[ipaddr]</code>." +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:569 +msgid "Syntax: <code>_service._proto.example.com</code>." +msgstr "" + #: modules/luci-base/root/usr/share/luci/menu.d/luci-base.json:26 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/10_system.js:17 #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:113 @@ -8402,9 +8454,9 @@ msgstr "Властивості системи" msgid "System log buffer size" msgstr "Розмір буфера системного журналу" -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:79 -#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:86 -#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:71 +#: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/header.ut:67 +#: themes/luci-theme-material/ucode/template/themes/material/header.ut:81 +#: themes/luci-theme-openwrt-2020/ucode/template/themes/openwrt2020/header.ut:64 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:89 msgid "System running in recovery (initramfs) mode." msgstr "Система працює в режимі відновлення (initramfs)." @@ -8433,7 +8485,7 @@ msgstr "TCP-порт джерела" msgid "TCP:" msgstr "TCP:" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:485 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:490 msgid "TFTP server root" msgstr "Корінь TFTP-сервера" @@ -8458,6 +8510,7 @@ msgstr "Довжина черги TX" msgid "Table" msgstr "Таблиця" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:574 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:56 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:66 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:187 @@ -8542,15 +8595,15 @@ msgstr "" "Конфігурацію оновлення кінцевого вузла HE.net змінено, тепер потрібно " "використовувати звичайне ім'я користувача замість ідентифікатора користувача!" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:681 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:752 msgid "The IP address %h is already used by another static lease" msgstr "IP-адреса %h уже використовується іншою статичною орендою" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:690 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:761 msgid "The IP address is outside of any DHCP pool address range" msgstr "IP-адреса знаходиться поза межами пулу адрес DHCP" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:520 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:525 msgid "The IP address of the boot server" msgstr "IP-адреса сервера завантаження" @@ -8741,7 +8794,7 @@ msgid "" "to be received and retransmitted which costs airtime)" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:514 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:519 msgid "The hostname of the boot server" msgstr "Ім'я хоста сервера завантаження" @@ -8822,9 +8875,8 @@ msgid "" "The maximum hops to be published in <abbr title=\"Router Advertisement\">RA</" "abbr> messages. Maximum is 255 hops." msgstr "" -"Максимальна кількість стрибків для публікації в повідомленнях <abbr " -"title=\"Router Advertisement\">RA</abbr>. Максимальне значення – 255 " -"стрибків." +"Максимальна кількість стрибків для публікації в повідомленнях <abbr title=" +"\"Router Advertisement\">RA</abbr>. Максимальне значення – 255 стрибків." #: modules/luci-base/htdocs/luci-static/resources/ui.js:4638 msgid "" @@ -8838,21 +8890,21 @@ msgstr "Назва мережі вже використовується" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:139 msgid "" -"The network ports on this device can be combined to several <abbr " -"title=\"Virtual Local Area Network\">VLAN</abbr>s in which computers can " +"The network ports on this device can be combined to several <abbr title=" +"\"Virtual Local Area Network\">VLAN</abbr>s in which computers can " "communicate directly with each other. <abbr title=\"Virtual Local Area " "Network\">VLAN</abbr>s are often used to separate different network " "segments. Often there is by default one Uplink port for a connection to the " "next greater network like the internet and other ports for a local network." msgstr "" -"Мережеві порти вашого пристрою може бути об'єднано у декілька <abbr " -"title=\"Virtual Local Area Network — віртуальна локальна комп'ютерна " -"мережа\">VLAN</abbr>, у яких комп'ютери можуть напряму спілкуватися один з " -"одним. <abbr title=\"Virtual Local Area Network — віртуальна локальна " -"комп'ютерна мережа\">VLAN</abbr> часто використовуються для розділення " -"мережі на окремі сегменти. Зазвичай один виcхідний порт використовується для " -"з'єднання з більшою мережею, такою наприклад, як Інтернет, а інші порти — " -"для локальної мережі." +"Мережеві порти вашого пристрою може бути об'єднано у декілька <abbr title=" +"\"Virtual Local Area Network — віртуальна локальна комп'ютерна мережа" +"\">VLAN</abbr>, у яких комп'ютери можуть напряму спілкуватися один з одним. " +"<abbr title=\"Virtual Local Area Network — віртуальна локальна комп'ютерна " +"мережа\">VLAN</abbr> часто використовуються для розділення мережі на окремі " +"сегменти. Зазвичай один виcхідний порт використовується для з'єднання з " +"більшою мережею, такою наприклад, як Інтернет, а інші порти — для локальної " +"мережі." #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:759 msgid "" @@ -8907,7 +8959,7 @@ msgstr "" msgid "The selected %s mode is incompatible with %s encryption" msgstr "Обраний режим %s несумісний із шифруванням %s" -#: modules/luci-base/luasrc/view/csrftoken.htm:11 +#: modules/luci-base/ucode/template/csrftoken.ut:11 msgid "The submitted security token is invalid or already expired!" msgstr "Поданий маркер безпеки недійсний або вже збіг!" @@ -8990,8 +9042,8 @@ msgid "" "nftables rules is discouraged and may lead to incomplete traffic filtering." msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:746 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:778 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:817 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:849 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:130 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:179 msgid "There are no active leases" @@ -9001,8 +9053,8 @@ msgstr "Немає жодних активних оренд" msgid "There are no changes to apply" msgstr "Немає жодних змін до застосування" -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:70 -#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:62 +#: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/header.ut:58 +#: themes/luci-theme-openwrt-2020/ucode/template/themes/openwrt2020/header.ut:55 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:80 msgid "" "There is no password set on this router. Please configure a root password to " @@ -9025,7 +9077,6 @@ msgid "This does not look like a valid PEM file" msgstr "Це не схоже на дійсний файл PEM" #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:454 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:16 msgid "" "This is a list of shell glob patterns for matching files and directories to " "include during sysupgrade. Modified files in /etc/config/ and certain other " @@ -9070,7 +9121,7 @@ msgstr "" "Це локальна адреса кінцевого вузла, яку присвоєно тунельним брокером, вона " "зазвичай закінчується на <code>…:2/64</code>" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:266 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:268 msgid "This is the only DHCP server in the local network." msgstr "" "Тільки для <abbr title=\"Dynamic Host Configuration Protocol — протокол " @@ -9161,8 +9212,8 @@ msgstr "Часовий пояс" #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:440 msgid "" "To fully configure the local WireGuard interface from an existing (e.g. " -"provider supplied) configuration file, use the <strong><a class=\"full-" -"import\" href=\"#\">configuration import</a></strong> instead." +"provider supplied) configuration file, use the <strong><a class=\"full-import" +"\" href=\"#\">configuration import</a></strong> instead." msgstr "" #: modules/luci-base/htdocs/luci-static/resources/luci.js:2674 @@ -9329,7 +9380,7 @@ msgstr "Не вдалося визначити зовнішню ІР-адрес msgid "Unable to determine upstream interface" msgstr "Не вдалося визначити висхідний інтерфейс" -#: modules/luci-base/luasrc/view/error404.htm:11 +#: modules/luci-base/ucode/template/error404.ut:12 msgid "Unable to dispatch" msgstr "Не вдалося опрацювати запит" @@ -9384,7 +9435,7 @@ msgstr "Не вдалося зберегти вміст: %s" msgid "Unable to verify PIN" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:32 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:33 msgid "Unavailable Seconds (UAS)" msgstr "Недоступні секунди (<abbr title=\"Unavailable Seconds\">UAS</abbr>)" @@ -9542,7 +9593,7 @@ msgstr "" "Після натискання «Продовжити», параметри ifname будуть перейменовані, а " "мережа перезапуститься, щоб застосувати оновлену конфігурацію." -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:423 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:428 msgid "Upstream resolvers will be queried in the order of the resolv file." msgstr "" "<abbr title=\"Domain Name System\">DNS</abbr> сервери буде опитано в " @@ -9553,7 +9604,7 @@ msgstr "" msgid "Uptime" msgstr "Час безвідмовної роботи" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:344 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:349 msgid "Use <code>/etc/ethers</code>" msgstr "Використовувати <code>/etc/ethers</code>" @@ -9668,7 +9719,7 @@ msgstr "Використовувати системні сертифікати" msgid "Use system certificates for inner-tunnel" msgstr "Використовувати системні сертифікати для внутрішнього тунелю" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:599 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:670 msgid "" "Use the <em>Add</em> Button to add a new lease entry. The <em>MAC address</" "em> identifies the host, the <em>IPv4 address</em> specifies the fixed " @@ -9709,9 +9760,9 @@ msgid "" "Used for two different purposes: RADIUS NAS ID and 802.11r R0KH-ID. Not " "needed with normal WPA(2)-PSK." msgstr "" -"Використовується для двох різних цілей: RADIUS NAS ID і 802.11r <abbr " -"title=\"ідентифікатор власника ключа R0\">R0KH-ID</abbr>. Не потрібно зі " -"звичайним WPA(2)-PSK." +"Використовується для двох різних цілей: RADIUS NAS ID і 802.11r <abbr title=" +"\"ідентифікатор власника ключа R0\">R0KH-ID</abbr>. Не потрібно зі звичайним " +"WPA(2)-PSK." #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:111 msgid "User Group" @@ -9731,11 +9782,11 @@ msgstr "Ідентифікатор користувача" msgid "User key (PEM encoded)" msgstr "Ключ користувача (PEM-кодований)" -#: modules/luci-base/luasrc/view/sysauth.htm:23 +#: modules/luci-base/ucode/template/sysauth.ut:23 #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:112 #: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:101 #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:56 -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/sysauth.htm:18 +#: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/sysauth.ut:13 msgid "Username" msgstr "Ім'я користувача" @@ -9833,7 +9884,7 @@ msgstr "Мережевий ідентифікатор VXLAN" msgid "VXLANv6 (RFC7348)" msgstr "VXLANv6 (RFC7348)" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:398 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:403 msgid "" "Validate DNS replies and cache DNSSEC data, requires upstream to support " "DNSSEC." @@ -9870,7 +9921,7 @@ msgstr "Постачальник" msgid "Vendor Class to send when requesting DHCP" msgstr "Клас постачальника для відправки при запиті DHCP" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:403 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:408 msgid "Verify unsigned domain responses really come from unsigned domains." msgstr "" "Перевіряти, чи справді відповіді непідписаного домену надходять від " @@ -9950,6 +10001,10 @@ msgstr "" msgid "Weak" msgstr "Слабка" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:589 +msgid "Weight" +msgstr "" + #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1029 #, fuzzy msgid "" @@ -10082,7 +10137,7 @@ msgstr "Бездротову мережу вимкнено" msgid "Wireless network is enabled" msgstr "Бездротову мережу ввімкнено" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:278 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:280 msgid "Write received DNS queries to syslog." msgstr "Записувати отримані DNS-запити до системного журналу" @@ -10123,8 +10178,16 @@ msgstr "" "Якщо ви вимкнете основний скрипт ініціалізації (наприклад \"network\"), " "пристрій може стати недоступним!</strong>" -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:90 -#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:97 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:559 +msgid "You may add multiple records for the same Target." +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:596 +msgid "You may add multiple records for the same domain." +msgstr "" + +#: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/header.ut:78 +#: themes/luci-theme-material/ucode/template/themes/material/header.ut:92 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:73 msgid "" "You must enable JavaScript in your browser or LuCI will not work properly." @@ -10160,7 +10223,17 @@ msgstr "Налаштування ZRam" msgid "ZRam Size" msgstr "Розмір ZRam" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:449 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:558 +msgid "_proto: _tcp, _udp, _sctp, _quic, … ." +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:557 +msgid "" +"_service: _sip, _ldap, _imap, _stun, _xmpp-client, … . (Note: while _http is " +"possible, no browsers support SRV records.)" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:454 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:152 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:163 msgid "any" @@ -10271,8 +10344,8 @@ msgstr "напр.: --proxy 10.10.10.10" msgid "e.g: dump" msgstr "напр.: падіння" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:726 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:756 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:797 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:827 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:101 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:148 msgid "expired" @@ -10474,9 +10547,9 @@ msgid "" "<abbr title=\"Hypertext Transfer Protocol Secure\">HTTPS</abbr> network " "access." msgstr "" -"uHTTPd надає доступ до мережі по <abbr title=\"Hypertext Transfer " -"Protocol\">HTTP</abbr> або <abbr title=\"Hypertext Transfer Protocol " -"Secure\">HTTPS</abbr>." +"uHTTPd надає доступ до мережі по <abbr title=\"Hypertext Transfer Protocol" +"\">HTTP</abbr> або <abbr title=\"Hypertext Transfer Protocol Secure\">HTTPS</" +"abbr>." #: modules/luci-base/htdocs/luci-static/resources/validation.js:574 msgid "unique value" @@ -10486,9 +10559,9 @@ msgstr "унікальне значення" msgid "unknown" msgstr "невідомо" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:456 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:724 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:754 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:461 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:795 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:825 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:99 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:146 msgid "unlimited" @@ -10704,6 +10777,21 @@ msgstr "так" msgid "« Back" msgstr "« Назад" +#~ msgid "Back to configuration" +#~ msgstr "Повернутися до конфігурування" + +#~ msgid "Close list..." +#~ msgstr "Згорнути список..." + +#~ msgid "Internal Server Error" +#~ msgstr "Внутрішня помилка сервера" + +#~ msgid "No files found" +#~ msgstr "Файли не знайдено" + +#~ msgid "Sorry, the server encountered an unexpected error." +#~ msgstr "На жаль, на сервері сталася неочікувана помилка." + #~ msgid "Do not forward queries that cannot be answered by public resolvers." #~ msgstr "" #~ "Не переспрямовувати запити, які не може бути оброблено відкритими " diff --git a/modules/luci-base/po/ur/base.po b/modules/luci-base/po/ur/base.po index a77a6e3ff5..7b00811637 100644 --- a/modules/luci-base/po/ur/base.po +++ b/modules/luci-base/po/ur/base.po @@ -225,6 +225,18 @@ msgstr "" msgid "<abbr title=\"Router Advertisement\">RA</abbr>-Service" msgstr "" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:294 +msgid "" +"<code>/#/</code> matches any domain. <code>/example.com/</code> returns " +"NXDOMAIN." +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:295 +msgid "" +"<code>/example.com/#</code> returns NULL addresses (<code>0.0.0.0</code> and " +"<code>::</code>) for example.com and its subdomains." +msgstr "" + #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:87 msgctxt "nft relational \">\" operator expression" msgid "<var>%s</var> greater than <strong>%s</strong>" @@ -382,7 +394,7 @@ msgstr "" msgid "ATM device number" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:36 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:37 msgid "ATU-C System Vendor ID" msgstr "" @@ -392,7 +404,7 @@ msgstr "" msgid "Absent Interface" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:320 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:325 msgid "Accept DNS queries only from hosts whose address is on a local subnet." msgstr "" @@ -531,7 +543,7 @@ msgstr "" msgid "Add key" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:410 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:415 msgid "Add local domain suffix to names served from hosts files." msgstr "" @@ -552,11 +564,11 @@ msgstr "" msgid "Add to Whitelist" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:367 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:372 msgid "Additional hosts files" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:417 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:422 msgid "Additional servers file" msgstr "" @@ -586,7 +598,7 @@ msgstr "" msgid "Address to access local relay bridge" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:289 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:291 msgid "Addresses" msgstr "" @@ -619,7 +631,7 @@ msgstr "" msgid "Aggregate Originator Messages" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:27 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:28 msgid "Aggregate Transmit Power (ACTATP)" msgstr "" @@ -655,17 +667,17 @@ msgstr "" msgid "Alias of \"%s\"" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:427 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:432 msgid "All servers" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:378 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:383 msgid "" "Allocate IP addresses sequentially, starting from the lowest available " "address." msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:377 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:382 msgid "Allocate IPs sequentially" msgstr "" @@ -693,7 +705,7 @@ msgstr "" msgid "Allow listed only" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:306 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:311 msgid "Allow localhost" msgstr "" @@ -737,7 +749,7 @@ msgstr "" msgid "Always on (kernel: default-on)" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:538 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:543 msgid "Always send DHCP Options. Sometimes needed, with e.g. PXELinux." msgstr "" @@ -764,7 +776,7 @@ msgid "An optional, short description for this device" msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1484 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:20 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:21 msgid "Annex" msgstr "" @@ -878,7 +890,7 @@ msgstr "" msgid "Any zone" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:532 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:537 msgid "Apply DHCP Options to this net. (Empty = all clients)." msgstr "" @@ -968,11 +980,11 @@ msgstr "" msgid "Authentication Type" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:265 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:267 msgid "Authoritative" msgstr "" -#: modules/luci-base/luasrc/view/sysauth.htm:17 +#: modules/luci-base/ucode/template/sysauth.ut:17 #: themes/luci-theme-bootstrap/htdocs/luci-static/resources/view/bootstrap/sysauth.js:11 msgid "Authorization Required" msgstr "" @@ -1042,7 +1054,7 @@ msgstr "" msgid "Avoid Bridge Loops" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:388 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:393 msgid "" "Avoid uselessly triggering dial-on-demand links (filters SRV/SOA records and " "names with underscores)." @@ -1077,10 +1089,6 @@ msgstr "" msgid "Back to Overview" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:48 -msgid "Back to configuration" -msgstr "" - #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:826 msgid "Back to peer configuration" msgstr "" @@ -1094,7 +1102,6 @@ msgid "Backup / Flash Firmware" msgstr "" #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:351 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:12 msgid "Backup file list" msgstr "" @@ -1136,7 +1143,6 @@ msgid "Beacon Interval" msgstr "" #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:352 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:46 msgid "" "Below is the determined list of files to backup. It consists of changed " "configuration files marked by opkg, essential base files and the user " @@ -1147,7 +1153,7 @@ msgstr "" msgid "Bind NTP server" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:326 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:331 msgid "Bind dynamically to interfaces rather than wildcard address." msgstr "" @@ -1163,6 +1169,17 @@ msgstr "" msgid "Bind interface" msgstr "" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:595 +msgid "" +"Bind service records to a domain name: specify the location of services." +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:556 +msgid "" +"Bind service records to a domain name: specify the location of services. See " +"<a href=\"%s\">RFC2782</a>." +msgstr "" + #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:59 #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:64 #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:64 @@ -1265,6 +1282,10 @@ msgstr "" msgid "CLAT configuration failed" msgstr "" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:574 +msgid "CNAME or fqdn" +msgstr "" + #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/processes.js:72 msgid "CPU usage (%)" msgstr "" @@ -1502,17 +1523,13 @@ msgid "" "persist connection" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:49 -msgid "Close list..." -msgstr "" - #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:44 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:63 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2184 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:391 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:352 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:355 -#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:72 +#: themes/luci-theme-material/ucode/template/themes/material/header.ut:66 msgid "Collecting data..." msgstr "" @@ -1547,6 +1564,10 @@ msgstr "" msgid "Compute outgoing checksum (optional)." msgstr "" +#: protocols/luci-proto-nebula/htdocs/luci-static/resources/protocol/nebula.js:40 +msgid "Config File" +msgstr "" + #: modules/luci-base/htdocs/luci-static/resources/ui.js:4375 #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:454 msgid "Configuration" @@ -1586,8 +1607,8 @@ msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:764 msgid "" -"Configures the operation mode of the <abbr title=\"Router " -"Advertisement\">RA</abbr> service on this interface." +"Configures the operation mode of the <abbr title=\"Router Advertisement" +"\">RA</abbr> service on this interface." msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:879 @@ -1760,8 +1781,8 @@ msgstr "" #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/leds.js:59 msgid "" -"Customizes the behaviour of the device <abbr title=\"Light Emitting " -"Diode\">LED</abbr>s if possible." +"Customizes the behaviour of the device <abbr title=\"Light Emitting Diode" +"\">LED</abbr>s if possible." msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:673 @@ -1780,7 +1801,7 @@ msgstr "" msgid "DAE-Secret" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:525 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:530 msgid "DHCP Options" msgstr "" @@ -1820,11 +1841,11 @@ msgstr "" msgid "DNS" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:282 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:284 msgid "DNS forwardings" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:445 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:450 msgid "DNS query port" msgstr "" @@ -1832,7 +1853,7 @@ msgstr "" msgid "DNS search domains" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:438 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:443 msgid "DNS server port" msgstr "" @@ -1848,11 +1869,11 @@ msgstr "" msgid "DNS-Label / FQDN" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:397 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:402 msgid "DNSSEC" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:402 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:407 msgid "DNSSEC check unsigned" msgstr "" @@ -1865,11 +1886,11 @@ msgid "DS-Lite AFTR address" msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1481 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:44 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:45 msgid "DSL" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:14 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:15 msgid "DSL Status" msgstr "" @@ -1882,12 +1903,12 @@ msgid "DTIM Interval" msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:59 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:700 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:771 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:136 msgid "DUID" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:21 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:22 msgid "Data Rate" msgstr "" @@ -2130,7 +2151,7 @@ msgstr "" msgid "Disassociate On Low Acknowledgement" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:302 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:307 msgid "" "Discard upstream responses containing <a href=\"%s\">RFC1918</a> addresses." msgstr "" @@ -2176,7 +2197,7 @@ msgstr "" msgid "Distributed ARP Table" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:543 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:548 msgid "" "Dnsmasq instance to which this boot section is bound. If unspecified, the " "section is valid for all dnsmasq instances." @@ -2184,12 +2205,12 @@ msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:246 msgid "" -"Dnsmasq is a lightweight <abbr title=\"Dynamic Host Configuration " -"Protocol\">DHCP</abbr> server and <abbr title=\"Domain Name System\">DNS</" -"abbr> forwarder." +"Dnsmasq is a lightweight <abbr title=\"Dynamic Host Configuration Protocol" +"\">DHCP</abbr> server and <abbr title=\"Domain Name System\">DNS</abbr> " +"forwarder." msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:414 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:419 msgid "Do not cache negative replies, e.g. for non-existent domains." msgstr "" @@ -2201,15 +2222,15 @@ msgstr "" msgid "Do not create host route to peer (optional)." msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:262 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:264 msgid "Do not forward DNS queries without dots or domain parts." msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:383 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:388 msgid "Do not forward reverse lookups for local networks." msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:339 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:344 msgid "Do not listen on the specified interfaces." msgstr "" @@ -2262,15 +2283,16 @@ msgstr "" msgid "Do you want to replace the current keys?" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:593 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:606 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:664 msgid "Domain" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:261 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:263 msgid "Domain required" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:311 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:316 msgid "Domain whitelist" msgstr "" @@ -2504,7 +2526,7 @@ msgstr "" msgid "Enable Single DES" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:480 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:485 msgid "Enable TFTP server" msgstr "" @@ -2522,9 +2544,9 @@ msgstr "" #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/uhttpd.js:14 msgid "" -"Enable automatic redirection of <abbr title=\"Hypertext Transfer " -"Protocol\">HTTP</abbr> requests to <abbr title=\"Hypertext Transfer Protocol " -"Secure\">HTTPS</abbr> port." +"Enable automatic redirection of <abbr title=\"Hypertext Transfer Protocol" +"\">HTTP</abbr> requests to <abbr title=\"Hypertext Transfer Protocol Secure" +"\">HTTPS</abbr> port." msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:977 @@ -2587,7 +2609,7 @@ msgstr "" msgid "Enable the DF (Don't Fragment) flag of the encapsulating packets." msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:481 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:486 msgid "Enable the built-in single-instance TFTP server." msgstr "" @@ -2704,7 +2726,7 @@ msgstr "" msgid "Error getting PublicKey" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:29 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:30 msgid "Errored seconds (ES)" msgstr "" @@ -2726,11 +2748,11 @@ msgstr "" msgid "Every second (fast, 1)" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:338 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:343 msgid "Exclude interfaces" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:307 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:312 msgid "" "Exempt <code>127.0.0.0/8</code> and <code>::1</code> from rebinding checks, " "e.g. for RBL services." @@ -2740,7 +2762,7 @@ msgstr "" msgid "Existing device" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:409 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:414 msgid "Expand hosts" msgstr "" @@ -2874,7 +2896,7 @@ msgstr "" msgid "File" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:418 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:423 msgid "" "File listing upstream resolvers, optionally domain-specific, e.g. " "<code>server=1.2.3.4</code>, <code>server=/domain/1.2.3.4</code>." @@ -2884,20 +2906,20 @@ msgstr "" msgid "File not accessible" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:349 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:354 msgid "File to store DHCP lease information." msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:357 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:362 msgid "File with upstream resolvers." msgstr "" #: modules/luci-base/htdocs/luci-static/resources/ui.js:2846 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:507 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:512 msgid "Filename" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:493 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:498 msgid "Filename of the boot image advertised to clients." msgstr "" @@ -2906,11 +2928,11 @@ msgstr "" msgid "Filesystem" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:382 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:387 msgid "Filter private" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:387 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:392 msgid "Filter useless" msgstr "" @@ -2974,7 +2996,7 @@ msgstr "" msgid "Firmware Version" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:446 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:451 msgid "Fixed source port for outbound DNS queries." msgstr "" @@ -3000,7 +3022,7 @@ msgstr "" msgid "Flashing…" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:537 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:542 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:686 msgid "Force" msgstr "" @@ -3045,16 +3067,16 @@ msgstr "" msgid "Force use of NAT-T" msgstr "" -#: modules/luci-base/luasrc/view/csrftoken.htm:8 +#: modules/luci-base/ucode/template/csrftoken.ut:8 msgid "Form token mismatch" msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:919 msgid "" -"Forward <abbr title=\"Neighbour Discovery Protocol\">NDP</abbr> <abbr " -"title=\"Neighbour Solicitation, Type 135\">NS</abbr> and <abbr " -"title=\"Neighbour Advertisement, Type 136\">NA</abbr> messages between the " -"designated master interface and downstream interfaces." +"Forward <abbr title=\"Neighbour Discovery Protocol\">NDP</abbr> <abbr title=" +"\"Neighbour Solicitation, Type 135\">NS</abbr> and <abbr title=\"Neighbour " +"Advertisement, Type 136\">NA</abbr> messages between the designated master " +"interface and downstream interfaces." msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:770 @@ -3074,7 +3096,7 @@ msgid "" "downstream interfaces." msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:28 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:29 msgid "Forward Error Correction Seconds (FECS)" msgstr "" @@ -3231,15 +3253,15 @@ msgstr "" msgid "Global network options" msgstr "" -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:82 -#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:89 -#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:74 +#: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/header.ut:70 +#: themes/luci-theme-material/ucode/template/themes/material/header.ut:84 +#: themes/luci-theme-openwrt-2020/ucode/template/themes/openwrt2020/header.ut:67 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:92 msgid "Go to firmware upgrade..." msgstr "" -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:72 -#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:64 +#: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/header.ut:60 +#: themes/luci-theme-openwrt-2020/ucode/template/themes/openwrt2020/header.ut:57 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:82 msgid "Go to password configuration..." msgstr "" @@ -3380,7 +3402,7 @@ msgstr "" msgid "Hang Up" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:33 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:34 msgid "Header Error Code Errors (HEC)" msgstr "" @@ -3431,7 +3453,7 @@ msgstr "" msgid "Host expiry timeout" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:508 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:513 msgid "Host requests this filename from the boot server." msgstr "" @@ -3440,8 +3462,8 @@ msgid "Host-Uniq tag content" msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:38 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:559 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:607 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:630 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:678 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/10_system.js:54 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:87 #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:135 @@ -3456,7 +3478,7 @@ msgstr "" msgid "Hostnames" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:551 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:622 msgid "" "Hostnames are used to bind a domain name to an IP address. This setting is " "redundant for hostnames already configured with static leases, but it can be " @@ -3520,7 +3542,7 @@ msgstr "" msgid "IP Protocol" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:258 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:260 msgid "IP Sets" msgstr "" @@ -3528,7 +3550,7 @@ msgstr "" msgid "IP Type" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:563 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:634 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:178 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:204 msgid "IP address" @@ -3554,15 +3576,15 @@ msgctxt "nft meta l4proto" msgid "IP protocol" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:589 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:660 msgid "IP set" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:295 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:300 msgid "IP sets" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:432 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:437 msgid "IPs to override with NXDOMAIN" msgstr "" @@ -3603,7 +3625,7 @@ msgstr "" #: modules/luci-base/htdocs/luci-static/resources/protocol/static.js:178 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:39 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:665 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:736 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:88 #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:164 msgid "IPv4 address" @@ -3774,7 +3796,7 @@ msgstr "" msgid "IPv6 suffix" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:706 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:777 msgid "IPv6 suffix (hex)" msgstr "" @@ -3866,13 +3888,13 @@ msgstr "" #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:340 msgid "" "If your physical memory is insufficient unused data can be temporarily " -"swapped to a swap-device resulting in a higher amount of usable <abbr " -"title=\"Random Access Memory\">RAM</abbr>. Be aware that swapping data is a " -"very slow process as the swap-device cannot be accessed with the high " -"datarates of the <abbr title=\"Random Access Memory\">RAM</abbr>." +"swapped to a swap-device resulting in a higher amount of usable <abbr title=" +"\"Random Access Memory\">RAM</abbr>. Be aware that swapping data is a very " +"slow process as the swap-device cannot be accessed with the high datarates " +"of the <abbr title=\"Random Access Memory\">RAM</abbr>." msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:363 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:368 msgid "Ignore <code>/etc/hosts</code>" msgstr "" @@ -3880,7 +3902,7 @@ msgstr "" msgid "Ignore interface" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:352 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:357 msgid "Ignore resolv file" msgstr "" @@ -3928,7 +3950,7 @@ msgid "" "order to avoid broadcast loops that can bring the entire LAN to a standstill." msgstr "" -#: modules/luci-base/luasrc/view/csrftoken.htm:13 +#: modules/luci-base/ucode/template/csrftoken.ut:13 msgid "" "In order to prevent unauthorized access to the system, your request has been " "blocked. Click \"Continue »\" below to return to the previous page." @@ -4037,7 +4059,7 @@ msgstr "" msgid "Install protocol extensions..." msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:542 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:547 msgid "Instance" msgstr "" @@ -4124,10 +4146,6 @@ msgstr "" msgid "Internal" msgstr "" -#: modules/luci-base/luasrc/view/error500.htm:8 -msgid "Internal Server Error" -msgstr "" - #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:285 msgid "Interval For Sending Learning Packets" msgstr "" @@ -4196,8 +4214,8 @@ msgstr "" msgid "Invalid hexadecimal value" msgstr "" -#: modules/luci-base/luasrc/view/sysauth.htm:12 -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/sysauth.htm:37 +#: modules/luci-base/ucode/template/sysauth.ut:12 +#: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/sysauth.ut:32 msgid "Invalid username and/or password! Please try again." msgstr "" @@ -4219,8 +4237,8 @@ msgid "" "flash memory, please verify the image file!" msgstr "" -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:89 -#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:96 +#: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/header.ut:77 +#: themes/luci-theme-material/ucode/template/themes/material/header.ut:91 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:72 msgid "JavaScript required!" msgstr "" @@ -4352,11 +4370,17 @@ msgstr "" msgid "Language and Style" msgstr "" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:560 +msgid "" +"Larger weights (of the same prio) are given a proportionately higher " +"probability of being selected." +msgstr "" + #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:575 msgid "Last member interval" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:23 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:24 msgid "Latency" msgstr "" @@ -4372,11 +4396,11 @@ msgstr "" msgid "Learn routes" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:348 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:353 msgid "Lease file" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:697 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:768 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:679 msgid "Lease time" msgstr "" @@ -4420,19 +4444,19 @@ msgstr "" msgid "Limit" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:24 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:25 msgid "Line Attenuation (LATN)" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:18 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:19 msgid "Line Mode" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:17 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:18 msgid "Line State" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:19 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:20 msgid "Line Uptime" msgstr "" @@ -4453,12 +4477,12 @@ msgctxt "nft @ll,off,len" msgid "Link layer header bits %d-%d" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:433 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:438 msgid "List of IP addresses to convert into NXDOMAIN responses." msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:296 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:581 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:301 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:652 msgid "List of IP sets to populate with the specified domain IPs." msgstr "" @@ -4484,15 +4508,11 @@ msgstr "" msgid "List of SSH key files for auth" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:312 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:317 msgid "List of domains to allow RFC1918 responses for." msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:290 -msgid "List of domains to force to an IP address." -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:283 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:285 msgid "List of upstream resolvers to forward queries to." msgstr "" @@ -4500,7 +4520,7 @@ msgstr "" msgid "Listen Port" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:332 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:337 msgid "Listen interfaces" msgstr "" @@ -4508,7 +4528,7 @@ msgstr "" msgid "Listen only on the given interface or, if unspecified, on all" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:333 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:338 msgid "" "Listen only on the specified interfaces, and loopback if not excluded " "explicitly." @@ -4518,7 +4538,7 @@ msgstr "" msgid "ListenPort setting is invalid" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:439 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:444 msgid "Listening port for inbound DNS queries." msgstr "" @@ -4545,9 +4565,9 @@ msgid "Loading directory contents…" msgstr "" #: modules/luci-base/htdocs/luci-static/resources/luci.js:1942 -#: modules/luci-base/luasrc/view/view.htm:4 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:12 -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/sysauth.htm:45 +#: modules/luci-base/ucode/template/view.ut:4 +#: modules/luci-mod-status/ucode/template/admin_status/index.ut:12 +#: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/sysauth.ut:40 msgid "Loading view…" msgstr "" @@ -4605,19 +4625,19 @@ msgstr "" msgid "Local ULA" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:273 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:275 msgid "Local domain" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:274 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:276 msgid "Local domain suffix appended to DHCP names and hosts file entries." msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:269 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:271 msgid "Local server" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:319 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:324 msgid "Local service only" msgstr "" @@ -4625,7 +4645,7 @@ msgstr "" msgid "Local wireguard key" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:392 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:397 msgid "Localise queries" msgstr "" @@ -4637,7 +4657,7 @@ msgstr "" msgid "Log output level" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:277 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:279 msgid "Log queries" msgstr "" @@ -4661,8 +4681,8 @@ msgstr "" msgid "Logical network to which the tunnel will be added (bridged) (optional)." msgstr "" -#: modules/luci-base/luasrc/view/sysauth.htm:38 -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/sysauth.htm:41 +#: modules/luci-base/ucode/template/sysauth.ut:38 +#: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/sysauth.ut:36 msgid "Login" msgstr "" @@ -4674,7 +4694,7 @@ msgstr "" msgid "Loose filtering" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:31 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:32 msgid "Loss of Signal Seconds (LOSS)" msgstr "" @@ -4682,6 +4702,10 @@ msgstr "" msgid "Lowest leased address as offset from the network address." msgstr "" +#: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/footer.ut:12 +msgid "Lua compatibility mode active" +msgstr "" + #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:48 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:83 msgid "MAC" @@ -4706,7 +4730,7 @@ msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:591 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:40 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:619 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:690 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1164 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2177 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:56 @@ -4766,6 +4790,10 @@ msgstr "" msgid "MTU" msgstr "" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:259 +msgid "MX" +msgstr "" + #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:303 msgid "" "Make sure to clone the root filesystem using something like the commands " @@ -4790,19 +4818,19 @@ msgstr "" msgid "Max <abbr title=\"Router Advertisement\">RA</abbr> interval" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:22 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:23 msgid "Max. Attainable Data Rate (ATTNDR)" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:452 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:457 msgid "Max. DHCP leases" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:459 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:464 msgid "Max. EDNS0 packet size" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:466 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:471 msgid "Max. concurrent queries" msgstr "" @@ -4814,15 +4842,15 @@ msgstr "" msgid "Maximum allowed Listen Interval" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:453 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:458 msgid "Maximum allowed number of active DHCP leases." msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:467 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:472 msgid "Maximum allowed number of concurrent DNS queries." msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:460 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:465 msgid "Maximum allowed size of EDNS0 UDP packets." msgstr "" @@ -4849,7 +4877,7 @@ msgstr "" msgid "Maximum transmit power" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:389 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:394 msgid "May prevent VoIP or other services from working." msgstr "" @@ -5163,11 +5191,15 @@ msgstr "" msgid "Name of the tunnel device" msgstr "" -#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:46 +#: themes/luci-theme-openwrt-2020/ucode/template/themes/openwrt2020/header.ut:39 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:50 msgid "Navigation" msgstr "" +#: protocols/luci-proto-nebula/htdocs/luci-static/resources/protocol/nebula.js:10 +msgid "Nebula Network" +msgstr "" + #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:653 msgid "Neighbour cache validity" msgstr "" @@ -5203,7 +5235,7 @@ msgstr "" msgid "Network address" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:492 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:497 msgid "Network boot image" msgstr "" @@ -5243,7 +5275,7 @@ msgstr "" msgid "Network interface" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:531 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:536 msgid "Network-ID" msgstr "" @@ -5251,7 +5283,7 @@ msgstr "" msgid "Never" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:270 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:272 msgid "" "Never forward matching domains and subdomains, resolve from DHCP or hosts " "files only." @@ -5299,9 +5331,9 @@ msgstr "" msgid "No RX signal" msgstr "" -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:80 -#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:87 -#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:72 +#: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/header.ut:68 +#: themes/luci-theme-material/ucode/template/themes/material/header.ut:82 +#: themes/luci-theme-openwrt-2020/ucode/template/themes/openwrt2020/header.ut:65 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:90 msgid "" "No changes to settings will be stored and are lost after rebooting. This " @@ -5343,10 +5375,6 @@ msgstr "" msgid "No entries in this directory" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:82 -msgid "No files found" -msgstr "" - #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:833 msgid "" "No fixed interface listening port defined, peers might not be able to " @@ -5382,7 +5410,7 @@ msgstr "" msgid "No more slaves available, can not save interface" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:413 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:418 msgid "No negative cache" msgstr "" @@ -5390,8 +5418,8 @@ msgstr "" msgid "No nftables ruleset loaded." msgstr "" -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:69 -#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:61 +#: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/header.ut:57 +#: themes/luci-theme-openwrt-2020/ucode/template/themes/openwrt2020/header.ut:54 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:79 msgid "No password set!" msgstr "" @@ -5431,7 +5459,7 @@ msgstr "" msgid "Noise" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:26 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:27 msgid "Noise Margin (SNR)" msgstr "" @@ -5439,11 +5467,11 @@ msgstr "" msgid "Noise:" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:34 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:35 msgid "Non Pre-emptive CRC errors (CRC_P)" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:325 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:330 msgid "Non-wildcard" msgstr "" @@ -5458,7 +5486,7 @@ msgstr "" msgid "Normal" msgstr "" -#: modules/luci-base/luasrc/view/error404.htm:8 +#: modules/luci-base/ucode/template/error404.ut:9 msgid "Not Found" msgstr "" @@ -5508,7 +5536,7 @@ msgstr "" msgid "Number of IGMP membership reports" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:474 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:479 msgid "Number of cached DNS entries, 10000 is maximum, 0 is no caching." msgstr "" @@ -5557,7 +5585,7 @@ msgstr "" msgid "On-link" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:672 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:743 msgid "One of hostname or MAC address must be specified!" msgstr "" @@ -5593,7 +5621,6 @@ msgid "Open iptables rules overview…" msgstr "" #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:472 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:19 msgid "Open list..." msgstr "" @@ -5737,18 +5764,23 @@ msgstr "" msgid "Options" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:526 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:531 msgid "" "Options for the Network-ID. (Note: needs also Network-ID.) E.g. " -"\"<code>42,192.168.1.4</code>\" for NTP server, \"<code>3,192.168.4.4</" -"code>\" for default route. <code>0.0.0.0</code> means \"the address of the " -"system running dnsmasq\"." +"\"<code>42,192.168.1.4</code>\" for NTP server, \"<code>3,192.168.4.4</code>" +"\" for default route. <code>0.0.0.0</code> means \"the address of the system " +"running dnsmasq\"." msgstr "" #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:125 msgid "Options:" msgstr "" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:584 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:616 +msgid "Ordinal: lower comes first." +msgstr "" + #: protocols/luci-proto-batman-adv/htdocs/luci-static/resources/protocol/batadv.js:55 msgid "Originator Interval" msgstr "" @@ -6020,13 +6052,13 @@ msgctxt "MACVLAN mode" msgid "Pass-through (Mirror physical device to single MAC VLAN)" msgstr "" -#: modules/luci-base/luasrc/view/sysauth.htm:29 +#: modules/luci-base/ucode/template/sysauth.ut:29 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1690 #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:51 #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:114 #: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:103 #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:58 -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/sysauth.htm:24 +#: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/sysauth.ut:19 msgid "Password" msgstr "" @@ -6197,7 +6229,7 @@ msgstr "" msgid "Pkts." msgstr "" -#: modules/luci-base/luasrc/view/sysauth.htm:19 +#: modules/luci-base/ucode/template/sysauth.ut:19 msgid "Please enter your username and password." msgstr "" @@ -6214,6 +6246,7 @@ msgctxt "Chain hook policy" msgid "Policy: <strong>%h</strong> (%h)" msgstr "" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:579 #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/dropbear.js:21 msgid "Port" msgstr "پورٹ" @@ -6230,11 +6263,11 @@ msgstr "" msgid "Potential negation of: %s" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:37 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:38 msgid "Power Management Mode" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:35 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:36 msgid "Pre-emptive CRC errors (CRCP_P)" msgstr "" @@ -6307,6 +6340,8 @@ msgid "Primary becomes active slave whenever it comes back up (always, 0)" msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:508 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:584 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:616 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:129 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:197 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:223 @@ -6422,7 +6457,7 @@ msgstr "" msgid "Quality" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:428 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:433 msgid "Query all available upstream resolvers." msgstr "" @@ -6504,7 +6539,7 @@ msgstr "" msgid "Raw hex-encoded bytes. Leave empty unless your ISP require this" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:345 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:350 msgid "Read <code>/etc/ethers</code> to configure the DHCP server." msgstr "" @@ -6520,7 +6555,7 @@ msgstr "" msgid "Reassociation Deadline" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:301 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:306 msgid "Rebind protection" msgstr "" @@ -6605,6 +6640,7 @@ msgid "" msgstr "" #: modules/luci-compat/luasrc/model/network/proto_relay.lua:153 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:611 #: protocols/luci-proto-relay/htdocs/luci-static/resources/protocol/relay.js:39 msgid "Relay" msgstr "" @@ -6695,6 +6731,10 @@ msgstr "" msgid "Required. Base64-encoded private key for this interface." msgstr "" +#: protocols/luci-proto-nebula/htdocs/luci-static/resources/protocol/nebula.js:40 +msgid "Required. Path to the .yml config file for this interface." +msgstr "" + #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:587 msgid "Required. Public key of the WireGuard peer." msgstr "" @@ -6776,7 +6816,7 @@ msgid "Reselection policy for primary slave" msgstr "" #: modules/luci-base/htdocs/luci-static/resources/luci.js:2197 -#: modules/luci-base/luasrc/view/sysauth.htm:39 +#: modules/luci-base/ucode/template/sysauth.ut:39 #: modules/luci-compat/luasrc/view/cbi/delegator.htm:17 #: modules/luci-compat/luasrc/view/cbi/footer.htm:30 #: modules/luci-compat/luasrc/view/cbi/simpleform.htm:66 @@ -6795,10 +6835,14 @@ msgstr "" msgid "Resolv and Hosts Files" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:356 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:361 msgid "Resolv file" msgstr "" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:292 +msgid "Resolve specified FQDNs to an IP." +msgstr "" + #: modules/luci-base/htdocs/luci-static/resources/rpc.js:405 msgid "Resource not found" msgstr "" @@ -6825,7 +6869,7 @@ msgstr "" msgid "Restore backup" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:393 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:398 msgid "" "Return answers to DNS queries matching the subnet from which the query was " "received if multiple IPs are available." @@ -6911,7 +6955,7 @@ msgstr "" msgid "Robustness" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:486 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:491 msgid "" "Root directory for files served via TFTP. <em>Enable TFTP server</em> and " "<em>TFTP server root</em> turn on the TFTP server and serve files from " @@ -7015,6 +7059,11 @@ msgstr "SHA256" msgid "SNR" msgstr "" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:258 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:569 +msgid "SRV" +msgstr "" + #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/dropbear.js:10 #: modules/luci-mod-system/root/usr/share/luci/menu.d/luci-mod-system.json:38 msgid "SSH Access" @@ -7152,11 +7201,11 @@ msgstr "" msgid "Server" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:519 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:524 msgid "Server address" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:513 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:518 msgid "Server name" msgstr "" @@ -7244,7 +7293,7 @@ msgstr "" msgid "Setup routes for proxied IPv6 neighbours." msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:30 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:31 msgid "Severely Errored Seconds (SES)" msgstr "" @@ -7258,7 +7307,6 @@ msgid "Short Preamble" msgstr "شورٹ Preamble" #: 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 msgid "Show current backup file list" msgstr "" @@ -7292,7 +7340,7 @@ msgstr "" msgid "Signal / Noise" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:25 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:26 msgid "Signal Attenuation (SATN)" msgstr "" @@ -7309,7 +7357,7 @@ msgstr "" msgid "Size" msgstr "سائز" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:473 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:478 msgid "Size of DNS query cache" msgstr "" @@ -7326,12 +7374,12 @@ msgstr "" msgid "Skip from backup files that are equal to those in /rom" msgstr "" -#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:42 +#: themes/luci-theme-openwrt-2020/ucode/template/themes/openwrt2020/header.ut:35 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:46 msgid "Skip to content" msgstr "" -#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:41 +#: themes/luci-theme-openwrt-2020/ucode/template/themes/openwrt2020/header.ut:34 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:45 msgid "Skip to navigation" msgstr "" @@ -7349,14 +7397,10 @@ msgstr "" msgid "Some fields are invalid, cannot save values!" msgstr "" -#: modules/luci-base/luasrc/view/error404.htm:9 +#: modules/luci-base/ucode/template/error404.ut:10 msgid "Sorry, the object you requested was not found." msgstr "" -#: modules/luci-base/luasrc/view/error500.htm:9 -msgid "Sorry, the server encountered an unexpected error." -msgstr "" - #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:442 msgid "" "Sorry, there is no sysupgrade support present; a new firmware image must be " @@ -7392,7 +7436,7 @@ msgctxt "nft ip sport" msgid "Source port" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:500 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:505 msgid "" "Special <abbr title=\"Preboot eXecution Environment\">PXE</abbr> boot " "options for Dnsmasq." @@ -7760,7 +7804,7 @@ msgstr "" msgid "Static address" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:598 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:669 msgid "" "Static leases are used to assign fixed IP addresses and symbolic hostnames " "to DHCP clients. They are also required for non-dynamic interface " @@ -7774,7 +7818,7 @@ msgstr "" #: modules/luci-base/root/usr/share/luci/menu.d/luci-base.json:16 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:541 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:929 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:9 +#: modules/luci-mod-status/ucode/template/admin_status/index.ut:9 msgid "Status" msgstr "" @@ -7800,7 +7844,7 @@ msgstr "" msgid "Strict filtering" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:422 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:427 msgid "Strict order" msgstr "" @@ -7813,11 +7857,11 @@ msgstr "" msgid "Submit" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:372 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:377 msgid "Suppress logging" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:373 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:378 msgid "Suppress logging of the routine operation for the DHCP protocol." msgstr "" @@ -7870,6 +7914,14 @@ msgstr "" msgid "Sync with browser" msgstr "" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:293 +msgid "Syntax: <code>/fqdn[/fqdn…]/[ipaddr]</code>." +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:569 +msgid "Syntax: <code>_service._proto.example.com</code>." +msgstr "" + #: modules/luci-base/root/usr/share/luci/menu.d/luci-base.json:26 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/10_system.js:17 #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:113 @@ -7895,9 +7947,9 @@ msgstr "" msgid "System log buffer size" msgstr "" -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:79 -#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:86 -#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:71 +#: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/header.ut:67 +#: themes/luci-theme-material/ucode/template/themes/material/header.ut:81 +#: themes/luci-theme-openwrt-2020/ucode/template/themes/openwrt2020/header.ut:64 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:89 msgid "System running in recovery (initramfs) mode." msgstr "" @@ -7926,7 +7978,7 @@ msgstr "" msgid "TCP:" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:485 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:490 msgid "TFTP server root" msgstr "" @@ -7951,6 +8003,7 @@ msgstr "" msgid "Table" msgstr "" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:574 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:56 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:66 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:187 @@ -8021,15 +8074,15 @@ msgid "" "username instead of the user ID!" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:681 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:752 msgid "The IP address %h is already used by another static lease" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:690 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:761 msgid "The IP address is outside of any DHCP pool address range" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:520 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:525 msgid "The IP address of the boot server" msgstr "" @@ -8194,7 +8247,7 @@ msgid "" "to be received and retransmitted which costs airtime)" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:514 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:519 msgid "The hostname of the boot server" msgstr "" @@ -8279,8 +8332,8 @@ msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:139 msgid "" -"The network ports on this device can be combined to several <abbr " -"title=\"Virtual Local Area Network\">VLAN</abbr>s in which computers can " +"The network ports on this device can be combined to several <abbr title=" +"\"Virtual Local Area Network\">VLAN</abbr>s in which computers can " "communicate directly with each other. <abbr title=\"Virtual Local Area " "Network\">VLAN</abbr>s are often used to separate different network " "segments. Often there is by default one Uplink port for a connection to the " @@ -8331,7 +8384,7 @@ msgstr "" msgid "The selected %s mode is incompatible with %s encryption" msgstr "" -#: modules/luci-base/luasrc/view/csrftoken.htm:11 +#: modules/luci-base/ucode/template/csrftoken.ut:11 msgid "The submitted security token is invalid or already expired!" msgstr "" @@ -8401,8 +8454,8 @@ msgid "" "nftables rules is discouraged and may lead to incomplete traffic filtering." msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:746 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:778 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:817 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:849 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:130 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:179 msgid "There are no active leases" @@ -8412,8 +8465,8 @@ msgstr "" msgid "There are no changes to apply" msgstr "" -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:70 -#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:62 +#: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/header.ut:58 +#: themes/luci-theme-openwrt-2020/ucode/template/themes/openwrt2020/header.ut:55 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:80 msgid "" "There is no password set on this router. Please configure a root password to " @@ -8434,7 +8487,6 @@ msgid "This does not look like a valid PEM file" msgstr "" #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:454 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:16 msgid "" "This is a list of shell glob patterns for matching files and directories to " "include during sysupgrade. Modified files in /etc/config/ and certain other " @@ -8470,7 +8522,7 @@ msgid "" "ends with <code>...:2/64</code>" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:266 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:268 msgid "This is the only DHCP server in the local network." msgstr "" @@ -8549,8 +8601,8 @@ msgstr "" #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:440 msgid "" "To fully configure the local WireGuard interface from an existing (e.g. " -"provider supplied) configuration file, use the <strong><a class=\"full-" -"import\" href=\"#\">configuration import</a></strong> instead." +"provider supplied) configuration file, use the <strong><a class=\"full-import" +"\" href=\"#\">configuration import</a></strong> instead." msgstr "" #: modules/luci-base/htdocs/luci-static/resources/luci.js:2674 @@ -8712,7 +8764,7 @@ msgstr "" msgid "Unable to determine upstream interface" msgstr "" -#: modules/luci-base/luasrc/view/error404.htm:11 +#: modules/luci-base/ucode/template/error404.ut:12 msgid "Unable to dispatch" msgstr "" @@ -8767,7 +8819,7 @@ msgstr "" msgid "Unable to verify PIN" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:32 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:33 msgid "Unavailable Seconds (UAS)" msgstr "" @@ -8911,7 +8963,7 @@ msgid "" "will be restarted to apply the updated configuration." msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:423 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:428 msgid "Upstream resolvers will be queried in the order of the resolv file." msgstr "" @@ -8920,7 +8972,7 @@ msgstr "" msgid "Uptime" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:344 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:349 msgid "Use <code>/etc/ethers</code>" msgstr "" @@ -9031,7 +9083,7 @@ msgstr "" msgid "Use system certificates for inner-tunnel" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:599 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:670 msgid "" "Use the <em>Add</em> Button to add a new lease entry. The <em>MAC address</" "em> identifies the host, the <em>IPv4 address</em> specifies the fixed " @@ -9082,11 +9134,11 @@ msgstr "" msgid "User key (PEM encoded)" msgstr "" -#: modules/luci-base/luasrc/view/sysauth.htm:23 +#: modules/luci-base/ucode/template/sysauth.ut:23 #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:112 #: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:101 #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:56 -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/sysauth.htm:18 +#: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/sysauth.ut:13 msgid "Username" msgstr "" @@ -9184,7 +9236,7 @@ msgstr "" msgid "VXLANv6 (RFC7348)" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:398 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:403 msgid "" "Validate DNS replies and cache DNSSEC data, requires upstream to support " "DNSSEC." @@ -9217,7 +9269,7 @@ msgstr "" msgid "Vendor Class to send when requesting DHCP" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:403 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:408 msgid "Verify unsigned domain responses really come from unsigned domains." msgstr "" @@ -9292,6 +9344,10 @@ msgstr "" msgid "Weak" msgstr "" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:589 +msgid "Weight" +msgstr "" + #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1029 msgid "" "When delegating prefixes to multiple downstreams, interfaces with a higher " @@ -9412,7 +9468,7 @@ msgstr "" msgid "Wireless network is enabled" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:278 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:280 msgid "Write received DNS queries to syslog." msgstr "" @@ -9447,8 +9503,16 @@ msgid "" "scripts like \"network\", your device might become inaccessible!</strong>" msgstr "" -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:90 -#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:97 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:559 +msgid "You may add multiple records for the same Target." +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:596 +msgid "You may add multiple records for the same domain." +msgstr "" + +#: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/header.ut:78 +#: themes/luci-theme-material/ucode/template/themes/material/header.ut:92 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:73 msgid "" "You must enable JavaScript in your browser or LuCI will not work properly." @@ -9477,7 +9541,17 @@ msgstr "" msgid "ZRam Size" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:449 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:558 +msgid "_proto: _tcp, _udp, _sctp, _quic, … ." +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:557 +msgid "" +"_service: _sip, _ldap, _imap, _stun, _xmpp-client, … . (Note: while _http is " +"possible, no browsers support SRV records.)" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:454 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:152 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:163 msgid "any" @@ -9588,8 +9662,8 @@ msgstr "" msgid "e.g: dump" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:726 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:756 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:797 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:827 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:101 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:148 msgid "expired" @@ -9800,9 +9874,9 @@ msgstr "" msgid "unknown" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:456 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:724 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:754 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:461 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:795 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:825 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:99 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:146 msgid "unlimited" diff --git a/modules/luci-base/po/vi/base.po b/modules/luci-base/po/vi/base.po index 77f8782c6e..b3ac95992d 100644 --- a/modules/luci-base/po/vi/base.po +++ b/modules/luci-base/po/vi/base.po @@ -231,6 +231,18 @@ msgstr "" msgid "<abbr title=\"Router Advertisement\">RA</abbr>-Service" msgstr "" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:294 +msgid "" +"<code>/#/</code> matches any domain. <code>/example.com/</code> returns " +"NXDOMAIN." +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:295 +msgid "" +"<code>/example.com/#</code> returns NULL addresses (<code>0.0.0.0</code> and " +"<code>::</code>) for example.com and its subdomains." +msgstr "" + #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:87 msgctxt "nft relational \">\" operator expression" msgid "<var>%s</var> greater than <strong>%s</strong>" @@ -391,7 +403,7 @@ msgstr "" msgid "ATM device number" msgstr "Số hiệu thiết bị ATM" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:36 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:37 msgid "ATU-C System Vendor ID" msgstr "Hệ thống cung cấp ID ATU-C" @@ -401,7 +413,7 @@ msgstr "Hệ thống cung cấp ID ATU-C" msgid "Absent Interface" msgstr "Giao diện vắng mặt" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:320 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:325 msgid "Accept DNS queries only from hosts whose address is on a local subnet." msgstr "" "Giới hạn dịch vụ DNS đối với các giao diện mạng con mà chúng tôi đang phục " @@ -544,7 +556,7 @@ msgstr "Thêm ví dụ" msgid "Add key" msgstr "Thêm khóa" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:410 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:415 msgid "Add local domain suffix to names served from hosts files." msgstr "Thêm hậu tố tên miền cục bộ vào tên được phân phát từ tệp máy chủ" @@ -565,11 +577,11 @@ msgstr "" msgid "Add to Whitelist" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:367 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:372 msgid "Additional hosts files" msgstr "Tập tin máy chủ(host) bổ sung" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:417 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:422 msgid "Additional servers file" msgstr "Tập tin máy chủ(server) bổ sung" @@ -599,7 +611,7 @@ msgstr "" msgid "Address to access local relay bridge" msgstr "Địa chỉ truy cập cầu chuyển tiếp địa phương" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:289 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:291 msgid "Addresses" msgstr "" @@ -632,7 +644,7 @@ msgstr "" msgid "Aggregate Originator Messages" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:27 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:28 msgid "Aggregate Transmit Power (ACTATP)" msgstr "Năng lượng truyền tổng hợp(ACTATP)" @@ -668,17 +680,17 @@ msgstr "Giao diện bí danh" msgid "Alias of \"%s\"" msgstr "bí danh của \"%s\"" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:427 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:432 msgid "All servers" msgstr "Tất cả máy chủ" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:378 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:383 msgid "" "Allocate IP addresses sequentially, starting from the lowest available " "address." msgstr "Phân bổ địa chỉ IP theo tuần tự, bắt đầu từ địa chỉ có sẵn thấp nhất" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:377 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:382 msgid "Allocate IPs sequentially" msgstr "Phân bổ tuần tự địa chủ IP" @@ -706,7 +718,7 @@ msgstr "Cho phép kế thừ tốc độ 802.11b" msgid "Allow listed only" msgstr "Chỉ cho phép danh sách liệt kê" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:306 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:311 msgid "Allow localhost" msgstr "Cho phép máy chủ cục bộ" @@ -750,7 +762,7 @@ msgstr "" msgid "Always on (kernel: default-on)" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:538 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:543 msgid "Always send DHCP Options. Sometimes needed, with e.g. PXELinux." msgstr "" @@ -779,7 +791,7 @@ msgid "An optional, short description for this device" msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1484 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:20 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:21 msgid "Annex" msgstr "" @@ -893,7 +905,7 @@ msgstr "" msgid "Any zone" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:532 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:537 msgid "Apply DHCP Options to this net. (Empty = all clients)." msgstr "" @@ -988,11 +1000,11 @@ msgstr "Xác thực" msgid "Authentication Type" msgstr "Kiểu xác thực" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:265 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:267 msgid "Authoritative" msgstr "Xác thực" -#: modules/luci-base/luasrc/view/sysauth.htm:17 +#: modules/luci-base/ucode/template/sysauth.ut:17 #: themes/luci-theme-bootstrap/htdocs/luci-static/resources/view/bootstrap/sysauth.js:11 msgid "Authorization Required" msgstr "Yêu cầu ủy quyền" @@ -1062,7 +1074,7 @@ msgstr "" msgid "Avoid Bridge Loops" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:388 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:393 msgid "" "Avoid uselessly triggering dial-on-demand links (filters SRV/SOA records and " "names with underscores)." @@ -1097,10 +1109,6 @@ msgstr "" msgid "Back to Overview" msgstr "Quay lại phần tổng quan" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:48 -msgid "Back to configuration" -msgstr "Quay lại phần cài đặt" - #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:826 msgid "Back to peer configuration" msgstr "" @@ -1114,7 +1122,6 @@ msgid "Backup / Flash Firmware" msgstr "Sao lưu / cập nhật phần mềm" #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:351 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:12 msgid "Backup file list" msgstr "Danh sách tập tin sau lưu" @@ -1156,7 +1163,6 @@ msgid "Beacon Interval" msgstr "Chu kỳ Beacon" #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:352 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:46 msgid "" "Below is the determined list of files to backup. It consists of changed " "configuration files marked by opkg, essential base files and the user " @@ -1170,7 +1176,7 @@ msgstr "" msgid "Bind NTP server" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:326 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:331 msgid "Bind dynamically to interfaces rather than wildcard address." msgstr "" "Liên kết linh hoạt với các giao diện thay vì địa chỉ ký tự đại diện(được " @@ -1188,6 +1194,17 @@ msgstr "" msgid "Bind interface" msgstr "Liên kết với giao diện" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:595 +msgid "" +"Bind service records to a domain name: specify the location of services." +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:556 +msgid "" +"Bind service records to a domain name: specify the location of services. See " +"<a href=\"%s\">RFC2782</a>." +msgstr "" + #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:59 #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:64 #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:64 @@ -1290,6 +1307,10 @@ msgstr "Chứng chỉ CA; nếu trống sẽ được lưu sau kết nối đầ msgid "CLAT configuration failed" msgstr "Cài đặt CLAT thất bại" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:574 +msgid "CNAME or fqdn" +msgstr "" + #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/processes.js:72 msgid "CPU usage (%)" msgstr "Sử dụng CPU (%)" @@ -1533,17 +1554,13 @@ msgstr "" "Đóng kết nối không hoạt động sau lượng thời gian đã cho, sử dụng 0 để luôn " "duy trì kết nối" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:49 -msgid "Close list..." -msgstr "Danh sách đã đóng ..." - #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:44 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:63 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2184 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:391 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:352 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:355 -#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:72 +#: themes/luci-theme-material/ucode/template/themes/material/header.ut:66 msgid "Collecting data..." msgstr "Đang lấy dữ liệu..." @@ -1582,6 +1599,10 @@ msgstr "" msgid "Compute outgoing checksum (optional)." msgstr "" +#: protocols/luci-proto-nebula/htdocs/luci-static/resources/protocol/nebula.js:40 +msgid "Config File" +msgstr "" + #: modules/luci-base/htdocs/luci-static/resources/ui.js:4375 #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:454 msgid "Configuration" @@ -1621,8 +1642,8 @@ msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:764 msgid "" -"Configures the operation mode of the <abbr title=\"Router " -"Advertisement\">RA</abbr> service on this interface." +"Configures the operation mode of the <abbr title=\"Router Advertisement" +"\">RA</abbr> service on this interface." msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:879 @@ -1800,8 +1821,8 @@ msgstr "" #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/leds.js:59 msgid "" -"Customizes the behaviour of the device <abbr title=\"Light Emitting " -"Diode\">LED</abbr>s if possible." +"Customizes the behaviour of the device <abbr title=\"Light Emitting Diode" +"\">LED</abbr>s if possible." msgstr "" "Tùy chỉnh chế độ của thiết bị <abbr title=\"Light Emitting Diode\">LED</" "abbr>s nếu có thể." @@ -1822,7 +1843,7 @@ msgstr "Cổng DAE" msgid "DAE-Secret" msgstr "DAE-bí mật" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:525 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:530 msgid "DHCP Options" msgstr "" @@ -1862,11 +1883,11 @@ msgstr "Dịch vụ DHCPv6" msgid "DNS" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:282 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:284 msgid "DNS forwardings" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:445 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:450 msgid "DNS query port" msgstr "<abbr title=\"Hệ thống phân giải tên miền\">DNS</abbr> query port" @@ -1874,7 +1895,7 @@ msgstr "<abbr title=\"Hệ thống phân giải tên miền\">DNS</abbr> query p msgid "DNS search domains" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:438 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:443 msgid "DNS server port" msgstr "" "<abbr title=\"Hệ thống phân giải tên miền (Domain Name System)\">DNS</abbr> " @@ -1892,11 +1913,11 @@ msgstr "" msgid "DNS-Label / FQDN" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:397 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:402 msgid "DNSSEC" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:402 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:407 msgid "DNSSEC check unsigned" msgstr "kiểm tra không dấu DNSSEC" @@ -1909,11 +1930,11 @@ msgid "DS-Lite AFTR address" msgstr "Địa chỉ DS_-Lite AFTR" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1481 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:44 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:45 msgid "DSL" msgstr "DSL" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:14 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:15 msgid "DSL Status" msgstr "Trạng thái DSL" @@ -1926,12 +1947,12 @@ msgid "DTIM Interval" msgstr "Chu kỳ DTIM" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:59 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:700 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:771 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:136 msgid "DUID" msgstr "DUID" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:21 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:22 msgid "Data Rate" msgstr "Tốc độ dữ liệu" @@ -2176,7 +2197,7 @@ msgstr "" msgid "Disassociate On Low Acknowledgement" msgstr "Hủy liên kết với xác nhận mức thấp" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:302 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:307 msgid "" "Discard upstream responses containing <a href=\"%s\">RFC1918</a> addresses." msgstr "Hủy phản hồi ngược RFC1918." @@ -2222,7 +2243,7 @@ msgstr "Khoảng cách tới thành viên xa nhất trong mạng lưới tính b msgid "Distributed ARP Table" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:543 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:548 msgid "" "Dnsmasq instance to which this boot section is bound. If unspecified, the " "section is valid for all dnsmasq instances." @@ -2230,16 +2251,16 @@ msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:246 msgid "" -"Dnsmasq is a lightweight <abbr title=\"Dynamic Host Configuration " -"Protocol\">DHCP</abbr> server and <abbr title=\"Domain Name System\">DNS</" -"abbr> forwarder." +"Dnsmasq is a lightweight <abbr title=\"Dynamic Host Configuration Protocol" +"\">DHCP</abbr> server and <abbr title=\"Domain Name System\">DNS</abbr> " +"forwarder." msgstr "" -"Dnsmasq là một phối hợp <abbr title=\"Dynamic Host Configuration " -"Protocol\">DHCP</abbr>-Server and <abbr title=\"Domain Name System\">DNS</" -"abbr>-Forwarder for <abbr title=\"Network Address Translation\">NAT</abbr> " +"Dnsmasq là một phối hợp <abbr title=\"Dynamic Host Configuration Protocol" +"\">DHCP</abbr>-Server and <abbr title=\"Domain Name System\">DNS</abbr>-" +"Forwarder for <abbr title=\"Network Address Translation\">NAT</abbr> " "firewalls" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:414 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:419 msgid "Do not cache negative replies, e.g. for non-existent domains." msgstr "" "Không lưu trữ các phản hồi tiêu cực (ví dụ: các tên miền không tồn tại)" @@ -2252,17 +2273,17 @@ msgstr "" msgid "Do not create host route to peer (optional)." msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:262 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:264 msgid "Do not forward DNS queries without dots or domain parts." msgstr "" "Don&#39;t chuyển tiếp <abbr title=\"Hệ thống tên miền\">DNS</abbr>-Yêu " "cầu không cần <abbr title=\"Hệ thống tên miền\">DNS</abbr>-Tên" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:383 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:388 msgid "Do not forward reverse lookups for local networks." msgstr "Không chuyển tiếp tra cứu ngược cho các mạng cục bộ" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:339 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:344 msgid "Do not listen on the specified interfaces." msgstr "Ngăn thực hiện nghe tại giao diện mạng này" @@ -2315,15 +2336,16 @@ msgstr "" msgid "Do you want to replace the current keys?" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:593 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:606 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:664 msgid "Domain" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:261 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:263 msgid "Domain required" msgstr "Tên miền yêu cầu" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:311 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:316 msgid "Domain whitelist" msgstr "Danh sách tên miền được chấp nhận" @@ -2566,7 +2588,7 @@ msgstr "Kích hoạt máy chủ NTP" msgid "Enable Single DES" msgstr "Kích hoạt DES đơn" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:480 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:485 msgid "Enable TFTP server" msgstr "Kích hoạt máy chủ TFTP" @@ -2584,9 +2606,9 @@ msgstr "Kích hoạt nút nhấn WPS, yêu cầu WPA(2)-PSK/WPA3-SAE" #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/uhttpd.js:14 msgid "" -"Enable automatic redirection of <abbr title=\"Hypertext Transfer " -"Protocol\">HTTP</abbr> requests to <abbr title=\"Hypertext Transfer Protocol " -"Secure\">HTTPS</abbr> port." +"Enable automatic redirection of <abbr title=\"Hypertext Transfer Protocol" +"\">HTTP</abbr> requests to <abbr title=\"Hypertext Transfer Protocol Secure" +"\">HTTPS</abbr> port." msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:977 @@ -2649,7 +2671,7 @@ msgstr "" msgid "Enable the DF (Don't Fragment) flag of the encapsulating packets." msgstr "Kích hoạt cờ không phân mảnh cho các gói tin đã được đóng gói" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:481 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:486 msgid "Enable the built-in single-instance TFTP server." msgstr "" @@ -2767,7 +2789,7 @@ msgstr "Lỗi" msgid "Error getting PublicKey" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:29 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:30 msgid "Errored seconds (ES)" msgstr "" @@ -2789,11 +2811,11 @@ msgstr "" msgid "Every second (fast, 1)" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:338 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:343 msgid "Exclude interfaces" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:307 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:312 msgid "" "Exempt <code>127.0.0.0/8</code> and <code>::1</code> from rebinding checks, " "e.g. for RBL services." @@ -2803,7 +2825,7 @@ msgstr "Cho phép phản hồi ngược trong dải IP 127.0.0.0/8 cho dịch v msgid "Existing device" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:409 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:414 msgid "Expand hosts" msgstr "Mở rộng máy chủ" @@ -2937,7 +2959,7 @@ msgstr "" msgid "File" msgstr "Tệp tin" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:418 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:423 msgid "" "File listing upstream resolvers, optionally domain-specific, e.g. " "<code>server=1.2.3.4</code>, <code>server=/domain/1.2.3.4</code>." @@ -2950,22 +2972,22 @@ msgstr "" msgid "File not accessible" msgstr "Tệp tin không thể truy cập" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:349 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:354 msgid "File to store DHCP lease information." msgstr "" "Tập tin được cho <abbr title=\"Dynamic Host Configuration Protocol\">DHCP</" "abbr>-leases sẽ được lưu trữ" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:357 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:362 msgid "File with upstream resolvers." msgstr "Tập tin <abbr title=\"Hệ thống tên miền\">DNS</abbr> địa phương" #: modules/luci-base/htdocs/luci-static/resources/ui.js:2846 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:507 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:512 msgid "Filename" msgstr "Tên tệp" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:493 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:498 msgid "Filename of the boot image advertised to clients." msgstr "Tên tệp của tập tin ảnh khởi động được thông báo cho máy khách" @@ -2974,11 +2996,11 @@ msgstr "Tên tệp của tập tin ảnh khởi động được thông báo cho msgid "Filesystem" msgstr "Tập tin hệ thống" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:382 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:387 msgid "Filter private" msgstr "Filter private" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:387 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:392 msgid "Filter useless" msgstr "Lọc không hữu dụng" @@ -3044,7 +3066,7 @@ msgstr "Tập tin phần mềm" msgid "Firmware Version" msgstr "Phiên bản phần mềm" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:446 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:451 msgid "Fixed source port for outbound DNS queries." msgstr "Đã sửa cổng nguồn cho các truy vấn DNS" @@ -3070,7 +3092,7 @@ msgstr "Hoạt động nạp phần mềm" msgid "Flashing…" msgstr "Đang nạp..." -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:537 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:542 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:686 msgid "Force" msgstr "Bắt buộc" @@ -3116,16 +3138,16 @@ msgstr "Buộc cập nhật" msgid "Force use of NAT-T" msgstr "Buộc dùng NAT-T" -#: modules/luci-base/luasrc/view/csrftoken.htm:8 +#: modules/luci-base/ucode/template/csrftoken.ut:8 msgid "Form token mismatch" msgstr "Mẫu mã thông báo không khớp" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:919 msgid "" -"Forward <abbr title=\"Neighbour Discovery Protocol\">NDP</abbr> <abbr " -"title=\"Neighbour Solicitation, Type 135\">NS</abbr> and <abbr " -"title=\"Neighbour Advertisement, Type 136\">NA</abbr> messages between the " -"designated master interface and downstream interfaces." +"Forward <abbr title=\"Neighbour Discovery Protocol\">NDP</abbr> <abbr title=" +"\"Neighbour Solicitation, Type 135\">NS</abbr> and <abbr title=\"Neighbour " +"Advertisement, Type 136\">NA</abbr> messages between the designated master " +"interface and downstream interfaces." msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:770 @@ -3145,7 +3167,7 @@ msgid "" "downstream interfaces." msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:28 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:29 msgid "Forward Error Correction Seconds (FECS)" msgstr "" @@ -3304,15 +3326,15 @@ msgstr "Cài đặt toàn cục" msgid "Global network options" msgstr "Tùy chọn mạng toàn cầu" -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:82 -#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:89 -#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:74 +#: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/header.ut:70 +#: themes/luci-theme-material/ucode/template/themes/material/header.ut:84 +#: themes/luci-theme-openwrt-2020/ucode/template/themes/openwrt2020/header.ut:67 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:92 msgid "Go to firmware upgrade..." msgstr "" -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:72 -#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:64 +#: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/header.ut:60 +#: themes/luci-theme-openwrt-2020/ucode/template/themes/openwrt2020/header.ut:57 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:82 msgid "Go to password configuration..." msgstr "Tới trang cài đặt mật khẩu..." @@ -3453,7 +3475,7 @@ msgstr "" msgid "Hang Up" msgstr "Hang Up" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:33 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:34 msgid "Header Error Code Errors (HEC)" msgstr "Lỗi mã tiêu đề (HEC)" @@ -3506,7 +3528,7 @@ msgstr "Máy chủ" msgid "Host expiry timeout" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:508 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:513 msgid "Host requests this filename from the boot server." msgstr "" @@ -3515,8 +3537,8 @@ msgid "Host-Uniq tag content" msgstr "Nội dung thẻ Host-Uniq" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:38 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:559 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:607 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:630 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:678 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/10_system.js:54 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:87 #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:135 @@ -3531,7 +3553,7 @@ msgstr "Tên máy chủ khi yêu cầu DHCP" msgid "Hostnames" msgstr "Tên máy chủ" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:551 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:622 msgid "" "Hostnames are used to bind a domain name to an IP address. This setting is " "redundant for hostnames already configured with static leases, but it can be " @@ -3595,7 +3617,7 @@ msgstr "Địa chỉ IP" msgid "IP Protocol" msgstr "Giao thức IP" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:258 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:260 msgid "IP Sets" msgstr "" @@ -3603,7 +3625,7 @@ msgstr "" msgid "IP Type" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:563 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:634 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:178 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:204 msgid "IP address" @@ -3629,15 +3651,15 @@ msgctxt "nft meta l4proto" msgid "IP protocol" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:589 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:660 msgid "IP set" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:295 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:300 msgid "IP sets" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:432 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:437 msgid "IPs to override with NXDOMAIN" msgstr "Ghi đè tên miền Bogus NX" @@ -3678,7 +3700,7 @@ msgstr "" #: modules/luci-base/htdocs/luci-static/resources/protocol/static.js:178 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:39 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:665 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:736 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:88 #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:164 msgid "IPv4 address" @@ -3849,7 +3871,7 @@ msgstr "" msgid "IPv6 suffix" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:706 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:777 msgid "IPv6 suffix (hex)" msgstr "" "<abbr title=\"giao thức internet phiên bản 6\">IPv6</abbr>-Suffix (hex)" @@ -3946,18 +3968,18 @@ msgstr "" #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:340 msgid "" "If your physical memory is insufficient unused data can be temporarily " -"swapped to a swap-device resulting in a higher amount of usable <abbr " -"title=\"Random Access Memory\">RAM</abbr>. Be aware that swapping data is a " -"very slow process as the swap-device cannot be accessed with the high " -"datarates of the <abbr title=\"Random Access Memory\">RAM</abbr>." +"swapped to a swap-device resulting in a higher amount of usable <abbr title=" +"\"Random Access Memory\">RAM</abbr>. Be aware that swapping data is a very " +"slow process as the swap-device cannot be accessed with the high datarates " +"of the <abbr title=\"Random Access Memory\">RAM</abbr>." msgstr "" "Nếu bộ nhớ vật lý không đủ dữ liệu không dùng có thể được swap tạm thời đến " -"một thiết bị swap để tạo ra nhiều khoảng trống hơn trong <abbr " -"title=\"Random Access Memory\">RAM</abbr>. Hãy nhận biết rằng swapping dữ " -"liệu là một quá trình rất chậm vì một thiết bị swap không thể được truy cập " -"với datarates cao hơn của <abbr title=\"Random Access Memory\">RAM</abbr>." +"một thiết bị swap để tạo ra nhiều khoảng trống hơn trong <abbr title=" +"\"Random Access Memory\">RAM</abbr>. Hãy nhận biết rằng swapping dữ liệu là " +"một quá trình rất chậm vì một thiết bị swap không thể được truy cập với " +"datarates cao hơn của <abbr title=\"Random Access Memory\">RAM</abbr>." -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:363 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:368 msgid "Ignore <code>/etc/hosts</code>" msgstr "Lờ đi <code>/etc/hosts</code>" @@ -3965,7 +3987,7 @@ msgstr "Lờ đi <code>/etc/hosts</code>" msgid "Ignore interface" msgstr "Lờ đi giao diện" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:352 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:357 msgid "Ignore resolv file" msgstr "Lờ đi tập tin resolve" @@ -4013,7 +4035,7 @@ msgid "" "order to avoid broadcast loops that can bring the entire LAN to a standstill." msgstr "" -#: modules/luci-base/luasrc/view/csrftoken.htm:13 +#: modules/luci-base/ucode/template/csrftoken.ut:13 msgid "" "In order to prevent unauthorized access to the system, your request has been " "blocked. Click \"Continue »\" below to return to the previous page." @@ -4124,7 +4146,7 @@ msgstr "" msgid "Install protocol extensions..." msgstr "Đang cài đặt bản mở rộng cho giao thức..." -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:542 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:547 msgid "Instance" msgstr "" @@ -4211,10 +4233,6 @@ msgstr "Giao diện" msgid "Internal" msgstr "Nội" -#: modules/luci-base/luasrc/view/error500.htm:8 -msgid "Internal Server Error" -msgstr "Lỗi máy chủ nội" - #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:285 msgid "Interval For Sending Learning Packets" msgstr "" @@ -4285,8 +4303,8 @@ msgstr "Lệnh ko hợp lệ" msgid "Invalid hexadecimal value" msgstr "Giá trị không hợp lệ" -#: modules/luci-base/luasrc/view/sysauth.htm:12 -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/sysauth.htm:37 +#: modules/luci-base/ucode/template/sysauth.ut:12 +#: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/sysauth.ut:32 msgid "Invalid username and/or password! Please try again." msgstr "Tên và mật mã không đúng. Xin thử lại " @@ -4311,8 +4329,8 @@ msgstr "" "Dường như bạn cố gắng flash một hình ảnh không phù hợp với bộ nhớ flash, xin " "vui lòng xác minh các tập tin hình ảnh!" -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:89 -#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:96 +#: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/header.ut:77 +#: themes/luci-theme-material/ucode/template/themes/material/header.ut:91 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:72 msgid "JavaScript required!" msgstr "Yêu cầu JavaScript" @@ -4444,11 +4462,17 @@ msgstr "Ngôn ngữ" msgid "Language and Style" msgstr "Ngôn ngữ và phong cách" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:560 +msgid "" +"Larger weights (of the same prio) are given a proportionately higher " +"probability of being selected." +msgstr "" + #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:575 msgid "Last member interval" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:23 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:24 msgid "Latency" msgstr "Độ trễ" @@ -4464,11 +4488,11 @@ msgstr "" msgid "Learn routes" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:348 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:353 msgid "Lease file" msgstr "Leasefile" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:697 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:768 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:679 msgid "Lease time" msgstr "Thời gian được cấp một địa chỉ IP" @@ -4512,19 +4536,19 @@ msgstr "" msgid "Limit" msgstr "Giới hạn " -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:24 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:25 msgid "Line Attenuation (LATN)" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:18 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:19 msgid "Line Mode" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:17 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:18 msgid "Line State" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:19 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:20 msgid "Line Uptime" msgstr "" @@ -4545,12 +4569,12 @@ msgctxt "nft @ll,off,len" msgid "Link layer header bits %d-%d" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:433 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:438 msgid "List of IP addresses to convert into NXDOMAIN responses." msgstr "Danh sách các máy chủ cung cấp kết quả tên miền NX không có thật" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:296 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:581 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:301 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:652 msgid "List of IP sets to populate with the specified domain IPs." msgstr "" @@ -4586,15 +4610,11 @@ msgstr "" msgid "List of SSH key files for auth" msgstr "Danh sách tập tin khóa SSH để xác thực" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:312 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:317 msgid "List of domains to allow RFC1918 responses for." msgstr "Danh sách tên miền chấp nhận phản hồi RFC1918" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:290 -msgid "List of domains to force to an IP address." -msgstr "" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:283 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:285 msgid "List of upstream resolvers to forward queries to." msgstr "" @@ -4602,7 +4622,7 @@ msgstr "" msgid "Listen Port" msgstr "Lắng nghe cổng" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:332 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:337 msgid "Listen interfaces" msgstr "Lắng nghe giao diện mạng" @@ -4610,7 +4630,7 @@ msgstr "Lắng nghe giao diện mạng" msgid "Listen only on the given interface or, if unspecified, on all" msgstr "Chỉ nghe giao diện mạng đã cho (nếu không xác định sẽ nghe tất cả)" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:333 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:338 msgid "" "Listen only on the specified interfaces, and loopback if not excluded " "explicitly." @@ -4620,7 +4640,7 @@ msgstr "" msgid "ListenPort setting is invalid" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:439 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:444 msgid "Listening port for inbound DNS queries." msgstr "Cổng để nghe cho các truy vấn DNS gửi đến" @@ -4647,9 +4667,9 @@ msgid "Loading directory contents…" msgstr "Đang tải nội dung thư mục..." #: modules/luci-base/htdocs/luci-static/resources/luci.js:1942 -#: modules/luci-base/luasrc/view/view.htm:4 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:12 -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/sysauth.htm:45 +#: modules/luci-base/ucode/template/view.ut:4 +#: modules/luci-mod-status/ucode/template/admin_status/index.ut:12 +#: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/sysauth.ut:40 msgid "Loading view…" msgstr "Tải cảnh..." @@ -4707,19 +4727,19 @@ msgstr "Giờ địa phương" msgid "Local ULA" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:273 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:275 msgid "Local domain" msgstr "Tên miền cục bộ" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:274 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:276 msgid "Local domain suffix appended to DHCP names and hosts file entries." msgstr "Hậu tố tên miền cục bộ gắn vào tên DHCP và các mục tập tin từ máy chủ" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:269 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:271 msgid "Local server" msgstr "máy chủ cục bộ" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:319 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:324 msgid "Local service only" msgstr "Chỉ dùng dịch vụ cục bộ" @@ -4727,7 +4747,7 @@ msgstr "Chỉ dùng dịch vụ cục bộ" msgid "Local wireguard key" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:392 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:397 msgid "Localise queries" msgstr "Tra vấn địa phương" @@ -4739,7 +4759,7 @@ msgstr "" msgid "Log output level" msgstr "Cấp độ lưu nhật ký cho đầu ra" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:277 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:279 msgid "Log queries" msgstr "Bản ghi tra vấn" @@ -4763,8 +4783,8 @@ msgstr "" msgid "Logical network to which the tunnel will be added (bridged) (optional)." msgstr "" -#: modules/luci-base/luasrc/view/sysauth.htm:38 -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/sysauth.htm:41 +#: modules/luci-base/ucode/template/sysauth.ut:38 +#: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/sysauth.ut:36 msgid "Login" msgstr "Đăng nhập " @@ -4776,7 +4796,7 @@ msgstr "Thoát ra" msgid "Loose filtering" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:31 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:32 msgid "Loss of Signal Seconds (LOSS)" msgstr "Mất tín hiệu (LOSS)" @@ -4784,6 +4804,10 @@ msgstr "Mất tín hiệu (LOSS)" msgid "Lowest leased address as offset from the network address." msgstr "Địa chỉ thuê thấp nhất dưới dạng bù từ địa chỉ mạng" +#: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/footer.ut:12 +msgid "Lua compatibility mode active" +msgstr "" + #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:48 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:83 msgid "MAC" @@ -4808,7 +4832,7 @@ msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:591 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:40 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:619 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:690 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1164 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2177 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:56 @@ -4867,6 +4891,10 @@ msgstr "" msgid "MTU" msgstr "MTU" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:259 +msgid "MX" +msgstr "" + #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:303 msgid "" "Make sure to clone the root filesystem using something like the commands " @@ -4893,23 +4921,23 @@ msgstr "" msgid "Max <abbr title=\"Router Advertisement\">RA</abbr> interval" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:22 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:23 msgid "Max. Attainable Data Rate (ATTNDR)" msgstr "Tối đa tốc độ dữ liệu đạt được (ATTNDR)" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:452 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:457 msgid "Max. DHCP leases" msgstr "" "<abbr title=\"Tối đa\">Max.</abbr> <abbr title=\"Giao thức cấu hình máy chủ " "động\">DHCP</abbr> leases" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:459 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:464 msgid "Max. EDNS0 packet size" msgstr "" "<abbr title=\"maximal\">Max.</abbr> <abbr title=\"Cơ chế mở rộng hệ thống " "phân giải tên miền\">EDNS0</abbr> packet size" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:466 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:471 msgid "Max. concurrent queries" msgstr "<abbr title=\"Tối đa\">Max.</abbr> concurrent queries" @@ -4921,15 +4949,15 @@ msgstr "" msgid "Maximum allowed Listen Interval" msgstr "Chu kỳ nghe tối đa cho phép" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:453 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:458 msgid "Maximum allowed number of active DHCP leases." msgstr "Số lượng tối đa máy mượn địa chỉ từ DHCP đang hoạt động" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:467 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:472 msgid "Maximum allowed number of concurrent DNS queries." msgstr "Số lượng truy vấn DNS đồng thời tối đa được phép" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:460 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:465 msgid "Maximum allowed size of EDNS0 UDP packets." msgstr "Kích thước tối đa được phép của gói UDP EDNS.0" @@ -4956,7 +4984,7 @@ msgstr "" msgid "Maximum transmit power" msgstr "Năng lượng truyền tối đa" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:389 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:394 msgid "May prevent VoIP or other services from working." msgstr "" @@ -5272,11 +5300,15 @@ msgstr "" msgid "Name of the tunnel device" msgstr "" -#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:46 +#: themes/luci-theme-openwrt-2020/ucode/template/themes/openwrt2020/header.ut:39 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:50 msgid "Navigation" msgstr "Điều hướng" +#: protocols/luci-proto-nebula/htdocs/luci-static/resources/protocol/nebula.js:10 +msgid "Nebula Network" +msgstr "" + #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:653 msgid "Neighbour cache validity" msgstr "" @@ -5312,7 +5344,7 @@ msgstr "Tiện ích mạng" msgid "Network address" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:492 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:497 msgid "Network boot image" msgstr "Tập tin ảnh khởi động mạng" @@ -5352,7 +5384,7 @@ msgstr "" msgid "Network interface" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:531 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:536 msgid "Network-ID" msgstr "" @@ -5360,7 +5392,7 @@ msgstr "" msgid "Never" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:270 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:272 msgid "" "Never forward matching domains and subdomains, resolve from DHCP or hosts " "files only." @@ -5410,9 +5442,9 @@ msgstr "Không NAT-T" msgid "No RX signal" msgstr "" -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:80 -#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:87 -#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:72 +#: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/header.ut:68 +#: themes/luci-theme-material/ucode/template/themes/material/header.ut:82 +#: themes/luci-theme-openwrt-2020/ucode/template/themes/openwrt2020/header.ut:65 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:90 msgid "" "No changes to settings will be stored and are lost after rebooting. This " @@ -5454,10 +5486,6 @@ msgstr "" msgid "No entries in this directory" msgstr "Không có gì trong đường dẫn này" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:82 -msgid "No files found" -msgstr "Không tìm thấy tập tin" - #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:833 msgid "" "No fixed interface listening port defined, peers might not be able to " @@ -5493,7 +5521,7 @@ msgstr "" msgid "No more slaves available, can not save interface" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:413 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:418 msgid "No negative cache" msgstr "Không có bộ đệm âm" @@ -5501,8 +5529,8 @@ msgstr "Không có bộ đệm âm" msgid "No nftables ruleset loaded." msgstr "" -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:69 -#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:61 +#: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/header.ut:57 +#: themes/luci-theme-openwrt-2020/ucode/template/themes/openwrt2020/header.ut:54 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:79 msgid "No password set!" msgstr "Chưa được cài đặt mật khẩu!" @@ -5542,7 +5570,7 @@ msgstr "Không có vùng nào được gán" msgid "Noise" msgstr "Nhiễu" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:26 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:27 msgid "Noise Margin (SNR)" msgstr "Tỉ lệ cường độ nhiễu (SRN)" @@ -5550,11 +5578,11 @@ msgstr "Tỉ lệ cường độ nhiễu (SRN)" msgid "Noise:" msgstr "Nhiễu:" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:34 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:35 msgid "Non Pre-emptive CRC errors (CRC_P)" msgstr "Lỗi CRC không tiền phát sinh (CRC_P)" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:325 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:330 msgid "Non-wildcard" msgstr "" @@ -5569,7 +5597,7 @@ msgstr "Không" msgid "Normal" msgstr "Thường" -#: modules/luci-base/luasrc/view/error404.htm:8 +#: modules/luci-base/ucode/template/error404.ut:9 msgid "Not Found" msgstr "Không tìm thấy" @@ -5619,7 +5647,7 @@ msgstr "" msgid "Number of IGMP membership reports" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:474 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:479 msgid "Number of cached DNS entries, 10000 is maximum, 0 is no caching." msgstr "" "Số lượng mục DNS được lưu trong bộ nhớ cache (tối đa là 10000, 0 là không " @@ -5670,7 +5698,7 @@ msgstr "" msgid "On-link" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:672 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:743 msgid "One of hostname or MAC address must be specified!" msgstr "Một trong những tên máy chủ hoặc địa chỉ mac phải được chỉ định" @@ -5706,7 +5734,6 @@ msgid "Open iptables rules overview…" msgstr "" #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:472 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:19 msgid "Open list..." msgstr "Đang mở danh sách ..." @@ -5863,18 +5890,23 @@ msgstr "Không bắt buộc. Cổng UDP được sử dụng cho các gói đi v msgid "Options" msgstr "Lựa chọn " -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:526 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:531 msgid "" "Options for the Network-ID. (Note: needs also Network-ID.) E.g. " -"\"<code>42,192.168.1.4</code>\" for NTP server, \"<code>3,192.168.4.4</" -"code>\" for default route. <code>0.0.0.0</code> means \"the address of the " -"system running dnsmasq\"." +"\"<code>42,192.168.1.4</code>\" for NTP server, \"<code>3,192.168.4.4</code>" +"\" for default route. <code>0.0.0.0</code> means \"the address of the system " +"running dnsmasq\"." msgstr "" #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:125 msgid "Options:" msgstr "" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:584 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:616 +msgid "Ordinal: lower comes first." +msgstr "" + #: protocols/luci-proto-batman-adv/htdocs/luci-static/resources/protocol/batadv.js:55 msgid "Originator Interval" msgstr "" @@ -6148,13 +6180,13 @@ msgctxt "MACVLAN mode" msgid "Pass-through (Mirror physical device to single MAC VLAN)" msgstr "" -#: modules/luci-base/luasrc/view/sysauth.htm:29 +#: modules/luci-base/ucode/template/sysauth.ut:29 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1690 #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:51 #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:114 #: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:103 #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:58 -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/sysauth.htm:24 +#: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/sysauth.ut:19 msgid "Password" msgstr "Mật mã" @@ -6325,7 +6357,7 @@ msgstr "" msgid "Pkts." msgstr "" -#: modules/luci-base/luasrc/view/sysauth.htm:19 +#: modules/luci-base/ucode/template/sysauth.ut:19 msgid "Please enter your username and password." msgstr "Nhập tên và mật mã" @@ -6342,6 +6374,7 @@ msgctxt "Chain hook policy" msgid "Policy: <strong>%h</strong> (%h)" msgstr "" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:579 #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/dropbear.js:21 msgid "Port" msgstr "Cửa " @@ -6358,11 +6391,11 @@ msgstr "Trạng thái cổng:" msgid "Potential negation of: %s" msgstr "Phủ định tiềm năng của: %s" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:37 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:38 msgid "Power Management Mode" msgstr "Chế độ kiểm soát năng lượng" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:35 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:36 msgid "Pre-emptive CRC errors (CRCP_P)" msgstr "Lỗi CRC ưu tiên (CRCP_P)" @@ -6437,6 +6470,8 @@ msgid "Primary becomes active slave whenever it comes back up (always, 0)" msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:508 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:584 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:616 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:129 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:197 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:223 @@ -6557,7 +6592,7 @@ msgstr "" msgid "Quality" msgstr "Chất lượng" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:428 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:433 msgid "Query all available upstream resolvers." msgstr "" "Truy vấn tất cả dòng dữ liệu có thể có qua máy chủ <abbr title=\"hệ thống " @@ -6643,7 +6678,7 @@ msgstr "" "Dữ liệu thô được mã hóa thập lục phân (byte). Để trống trừ khi ISP của bạn " "yêu cầu điều này" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:345 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:350 msgid "Read <code>/etc/ethers</code> to configure the DHCP server." msgstr "" "Đọc <code>/etc/ethers</code> để định cấu hình <abbr title=\"Dynamic Host " @@ -6661,7 +6696,7 @@ msgstr "Biểu đồ thời gian thực" msgid "Reassociation Deadline" msgstr "Hạn chót tái tổ chức" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:301 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:306 msgid "Rebind protection" msgstr "Bảo vệ tái kết nối" @@ -6746,6 +6781,7 @@ msgid "" msgstr "" #: modules/luci-compat/luasrc/model/network/proto_relay.lua:153 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:611 #: protocols/luci-proto-relay/htdocs/luci-static/resources/protocol/relay.js:39 msgid "Relay" msgstr "Phục thuộc" @@ -6836,6 +6872,10 @@ msgstr "Cần thiết cho một số ISP nhất định, ví dụ: Điều lệ msgid "Required. Base64-encoded private key for this interface." msgstr "Bắt buộc. Khóa riêng tư được mã hóa Base64 cho giao diện này" +#: protocols/luci-proto-nebula/htdocs/luci-static/resources/protocol/nebula.js:40 +msgid "Required. Path to the .yml config file for this interface." +msgstr "" + #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:587 msgid "Required. Public key of the WireGuard peer." msgstr "" @@ -6917,7 +6957,7 @@ msgid "Reselection policy for primary slave" msgstr "" #: modules/luci-base/htdocs/luci-static/resources/luci.js:2197 -#: modules/luci-base/luasrc/view/sysauth.htm:39 +#: modules/luci-base/ucode/template/sysauth.ut:39 #: modules/luci-compat/luasrc/view/cbi/delegator.htm:17 #: modules/luci-compat/luasrc/view/cbi/footer.htm:30 #: modules/luci-compat/luasrc/view/cbi/simpleform.htm:66 @@ -6936,10 +6976,14 @@ msgstr "Phục hồi về mặc định" msgid "Resolv and Hosts Files" msgstr "Tập tin Resolv và Hosts" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:356 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:361 msgid "Resolv file" msgstr "Tập tin Resolv" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:292 +msgid "Resolve specified FQDNs to an IP." +msgstr "" + #: modules/luci-base/htdocs/luci-static/resources/rpc.js:405 msgid "Resource not found" msgstr "Không tìm được nguồn" @@ -6966,7 +7010,7 @@ msgstr "Phục hồi" msgid "Restore backup" msgstr "Phục hồi backup" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:393 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:398 msgid "" "Return answers to DNS queries matching the subnet from which the query was " "received if multiple IPs are available." @@ -7053,7 +7097,7 @@ msgstr "" msgid "Robustness" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:486 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:491 msgid "" "Root directory for files served via TFTP. <em>Enable TFTP server</em> and " "<em>TFTP server root</em> turn on the TFTP server and serve files from " @@ -7158,6 +7202,11 @@ msgstr "" msgid "SNR" msgstr "" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:258 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:569 +msgid "SRV" +msgstr "" + #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/dropbear.js:10 #: modules/luci-mod-system/root/usr/share/luci/menu.d/luci-mod-system.json:38 msgid "SSH Access" @@ -7298,11 +7347,11 @@ msgstr "" msgid "Server" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:519 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:524 msgid "Server address" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:513 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:518 msgid "Server name" msgstr "" @@ -7393,7 +7442,7 @@ msgstr "" msgid "Setup routes for proxied IPv6 neighbours." msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:30 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:31 msgid "Severely Errored Seconds (SES)" msgstr "" @@ -7407,7 +7456,6 @@ msgid "Short Preamble" msgstr "" #: 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 msgid "Show current backup file list" msgstr "Hiển thị danh sách tập tin lưu trữ" @@ -7441,7 +7489,7 @@ msgstr "Tín hiệu" msgid "Signal / Noise" msgstr "Tín hiệu / Nhiễu" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:25 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:26 msgid "Signal Attenuation (SATN)" msgstr "Độ suy hao tín hiệu (SATN)" @@ -7458,7 +7506,7 @@ msgstr "Tín hiệu:" msgid "Size" msgstr "Dung lượng " -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:473 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:478 msgid "Size of DNS query cache" msgstr "Dung lượng của bộ nhớ tạm truy vấn DNS" @@ -7475,12 +7523,12 @@ msgstr "Chuyển" msgid "Skip from backup files that are equal to those in /rom" msgstr "" -#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:42 +#: themes/luci-theme-openwrt-2020/ucode/template/themes/openwrt2020/header.ut:35 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:46 msgid "Skip to content" msgstr "Nhảy tới nội dung" -#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:41 +#: themes/luci-theme-openwrt-2020/ucode/template/themes/openwrt2020/header.ut:34 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:45 msgid "Skip to navigation" msgstr "Chuyển đến mục định hướng" @@ -7498,14 +7546,10 @@ msgstr "VLAN phần mềm" msgid "Some fields are invalid, cannot save values!" msgstr "Có trường không hợp lệ, không thể lưu giá trị!" -#: modules/luci-base/luasrc/view/error404.htm:9 +#: modules/luci-base/ucode/template/error404.ut:10 msgid "Sorry, the object you requested was not found." msgstr "Xin lỗi, không thể tìm được đối tượng bạn yêu cầu" -#: modules/luci-base/luasrc/view/error500.htm:9 -msgid "Sorry, the server encountered an unexpected error." -msgstr "Xin lỗi, máy chủ đã gặp lỗi không mong muốn" - #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:442 msgid "" "Sorry, there is no sysupgrade support present; a new firmware image must be " @@ -7544,7 +7588,7 @@ msgctxt "nft ip sport" msgid "Source port" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:500 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:505 msgid "" "Special <abbr title=\"Preboot eXecution Environment\">PXE</abbr> boot " "options for Dnsmasq." @@ -7919,7 +7963,7 @@ msgstr "Thống kê địa chỉ đã cấp phát" msgid "Static address" msgstr "Địa chỉ tĩnh" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:598 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:669 msgid "" "Static leases are used to assign fixed IP addresses and symbolic hostnames " "to DHCP clients. They are also required for non-dynamic interface " @@ -7937,7 +7981,7 @@ msgstr "Giới hạn không hoạt động của máy trạm" #: modules/luci-base/root/usr/share/luci/menu.d/luci-base.json:16 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:541 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:929 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:9 +#: modules/luci-mod-status/ucode/template/admin_status/index.ut:9 msgid "Status" msgstr "Trạng thái" @@ -7963,7 +8007,7 @@ msgstr "" msgid "Strict filtering" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:422 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:427 msgid "Strict order" msgstr "Yêu cầu nghiêm ngặt" @@ -7976,11 +8020,11 @@ msgstr "Mạnh" msgid "Submit" msgstr "Trình " -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:372 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:377 msgid "Suppress logging" msgstr "Dừng lưu nhật ký" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:373 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:378 msgid "Suppress logging of the routine operation for the DHCP protocol." msgstr "Bỏ lưu nhật ký hoạt động định tuyến của các giao thức này" @@ -8035,6 +8079,14 @@ msgstr "Đồng bộ với máy chủ NTP" msgid "Sync with browser" msgstr "Đồng bộ với trình duyệt web" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:293 +msgid "Syntax: <code>/fqdn[/fqdn…]/[ipaddr]</code>." +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:569 +msgid "Syntax: <code>_service._proto.example.com</code>." +msgstr "" + #: modules/luci-base/root/usr/share/luci/menu.d/luci-base.json:26 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/10_system.js:17 #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:113 @@ -8060,9 +8112,9 @@ msgstr "Thuộc tính hệ thống" msgid "System log buffer size" msgstr "Kích cỡ bộ đệm nhật ký hệ thống" -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:79 -#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:86 -#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:71 +#: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/header.ut:67 +#: themes/luci-theme-material/ucode/template/themes/material/header.ut:81 +#: themes/luci-theme-openwrt-2020/ucode/template/themes/openwrt2020/header.ut:64 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:89 msgid "System running in recovery (initramfs) mode." msgstr "" @@ -8091,7 +8143,7 @@ msgstr "" msgid "TCP:" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:485 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:490 msgid "TFTP server root" msgstr "Máy chủ gốc TFTP" @@ -8116,6 +8168,7 @@ msgstr "" msgid "Table" msgstr "Bảng" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:574 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:56 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:66 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:187 @@ -8188,15 +8241,15 @@ msgstr "" "Cấu hình cập nhật điểm cuối HE.net đã thay đổi, bây giờ bạn có thể sử dụng " "tên người dùng đơn giản thay vì ID người dùng" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:681 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:752 msgid "The IP address %h is already used by another static lease" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:690 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:761 msgid "The IP address is outside of any DHCP pool address range" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:520 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:525 msgid "The IP address of the boot server" msgstr "" @@ -8369,7 +8422,7 @@ msgid "" "to be received and retransmitted which costs airtime)" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:514 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:519 msgid "The hostname of the boot server" msgstr "" @@ -8457,19 +8510,19 @@ msgstr "Tên mạng đã được sử dụng" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:139 #, fuzzy msgid "" -"The network ports on this device can be combined to several <abbr " -"title=\"Virtual Local Area Network\">VLAN</abbr>s in which computers can " +"The network ports on this device can be combined to several <abbr title=" +"\"Virtual Local Area Network\">VLAN</abbr>s in which computers can " "communicate directly with each other. <abbr title=\"Virtual Local Area " "Network\">VLAN</abbr>s are often used to separate different network " "segments. Often there is by default one Uplink port for a connection to the " "next greater network like the internet and other ports for a local network." msgstr "" -"Các cổng mạng trên thiết bị này có thể được kết hợp với một số <abbr " -"title=\" Mạng cục bộ ảo\"> Vlan</abbr>s trong đó các máy tính có thể giao " -"tiếp trực tiếp với nhau. <Abbr title=\"Mạng cục bộ ảo\"> Vlan </abbr>s " -"thường được sử dụng để phân tách các phân đoạn mạng khác nhau. Thường sẽ có " -"một cổng Uplink mặc định để kết nối với mạng lớn hơn tiếp theo như internet " -"và các cổng khác cho mạng cục bộ." +"Các cổng mạng trên thiết bị này có thể được kết hợp với một số <abbr title=" +"\" Mạng cục bộ ảo\"> Vlan</abbr>s trong đó các máy tính có thể giao tiếp " +"trực tiếp với nhau. <Abbr title=\"Mạng cục bộ ảo\"> Vlan </abbr>s thường " +"được sử dụng để phân tách các phân đoạn mạng khác nhau. Thường sẽ có một " +"cổng Uplink mặc định để kết nối với mạng lớn hơn tiếp theo như internet và " +"các cổng khác cho mạng cục bộ." #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:759 msgid "" @@ -8515,7 +8568,7 @@ msgstr "" 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" -#: modules/luci-base/luasrc/view/csrftoken.htm:11 +#: modules/luci-base/ucode/template/csrftoken.ut:11 msgid "The submitted security token is invalid or already expired!" msgstr "Mã thông báo bảo mật đã gửi không hợp lệ hoặc đã hết hạn!" @@ -8598,8 +8651,8 @@ msgid "" "nftables rules is discouraged and may lead to incomplete traffic filtering." msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:746 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:778 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:817 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:849 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:130 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:179 msgid "There are no active leases" @@ -8609,8 +8662,8 @@ msgstr "Không có máy được cấp IP nào hoạt động" msgid "There are no changes to apply" msgstr "Không có thay đổi nào để áp dụng" -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:70 -#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:62 +#: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/header.ut:58 +#: themes/luci-theme-openwrt-2020/ucode/template/themes/openwrt2020/header.ut:55 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:80 msgid "" "There is no password set on this router. Please configure a root password to " @@ -8633,7 +8686,6 @@ msgid "This does not look like a valid PEM file" msgstr "Tập tin không giống như một tệp PEM hợp lệ" #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:454 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:16 msgid "" "This is a list of shell glob patterns for matching files and directories to " "include during sysupgrade. Modified files in /etc/config/ and certain other " @@ -8678,7 +8730,7 @@ msgstr "" "Đây là địa chỉ điểm cuối cục bộ được chỉ định bởi tunnel broker, nó thường " "kết thúc bằng <code>...:2/64</code>" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:266 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:268 msgid "This is the only DHCP server in the local network." msgstr "" "Đây là <abbr title=\"Dynamic Host Configuration Protocol\">DHCP</abbr> duy " @@ -8761,8 +8813,8 @@ msgstr "Múi giờ " #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:440 msgid "" "To fully configure the local WireGuard interface from an existing (e.g. " -"provider supplied) configuration file, use the <strong><a class=\"full-" -"import\" href=\"#\">configuration import</a></strong> instead." +"provider supplied) configuration file, use the <strong><a class=\"full-import" +"\" href=\"#\">configuration import</a></strong> instead." msgstr "" #: modules/luci-base/htdocs/luci-static/resources/luci.js:2674 @@ -8928,7 +8980,7 @@ msgstr "Không thể xác định địa chỉ IP ngoại" msgid "Unable to determine upstream interface" msgstr "Không thể xác định dòng dữ liệu giao diện mạng" -#: modules/luci-base/luasrc/view/error404.htm:11 +#: modules/luci-base/ucode/template/error404.ut:12 msgid "Unable to dispatch" msgstr "Không thể gửi" @@ -8983,7 +9035,7 @@ msgstr "Không thể lưu nội dung: %s" msgid "Unable to verify PIN" msgstr "" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:32 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:33 msgid "Unavailable Seconds (UAS)" msgstr "" @@ -9131,7 +9183,7 @@ msgid "" "will be restarted to apply the updated configuration." msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:423 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:428 msgid "Upstream resolvers will be queried in the order of the resolv file." msgstr "" "<abbr title=\"Hệ thống phân giải tên miền\">DNS</abbr> máy chủ sẽ được truy " @@ -9142,7 +9194,7 @@ msgstr "" msgid "Uptime" msgstr "Uptime" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:344 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:349 msgid "Use <code>/etc/ethers</code>" msgstr "Dùng <code>/etc/ethers</code>" @@ -9253,7 +9305,7 @@ msgstr "" msgid "Use system certificates for inner-tunnel" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:599 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:670 msgid "" "Use the <em>Add</em> Button to add a new lease entry. The <em>MAC address</" "em> identifies the host, the <em>IPv4 address</em> specifies the fixed " @@ -9311,11 +9363,11 @@ msgstr "" msgid "User key (PEM encoded)" msgstr "Khóa người dùng (mã hóa PEM)" -#: modules/luci-base/luasrc/view/sysauth.htm:23 +#: modules/luci-base/ucode/template/sysauth.ut:23 #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:112 #: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:101 #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:56 -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/sysauth.htm:18 +#: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/sysauth.ut:13 msgid "Username" msgstr "Tên người dùng " @@ -9413,7 +9465,7 @@ msgstr "" msgid "VXLANv6 (RFC7348)" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:398 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:403 msgid "" "Validate DNS replies and cache DNSSEC data, requires upstream to support " "DNSSEC." @@ -9448,7 +9500,7 @@ msgstr "Máy cung cấp" msgid "Vendor Class to send when requesting DHCP" msgstr "Lớp máy cung cấp để gửi khi yêu cầu DHCP" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:403 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:408 msgid "Verify unsigned domain responses really come from unsigned domains." msgstr "" @@ -9525,6 +9577,10 @@ msgstr "Cảnh báo: Những thay đổi chưa được lưu sẽ bị xóa khi msgid "Weak" msgstr "Yếu" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:589 +msgid "Weight" +msgstr "" + #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1029 msgid "" "When delegating prefixes to multiple downstreams, interfaces with a higher " @@ -9648,7 +9704,7 @@ msgstr "Mạng không dây bị vô hiệu hóa" msgid "Wireless network is enabled" msgstr "Mạng không dây được kích hoạt" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:278 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:280 msgid "Write received DNS queries to syslog." msgstr "Viết yêu cầu DNS nhận được vào nhật ký hệ thống" @@ -9675,8 +9731,8 @@ msgid "" "You appear to be currently connected to the device via the \"%h\" interface. " "Do you really want to shut down the interface?" msgstr "" -"Bạn dường như hiện đang được kết nối với thiết bị thông qua giao diện " -"\"%h\". Bạn có thực sự muốn tắt giao diện này không?" +"Bạn dường như hiện đang được kết nối với thiết bị thông qua giao diện \"%h" +"\". Bạn có thực sự muốn tắt giao diện này không?" #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/startup.js:112 msgid "" @@ -9689,8 +9745,16 @@ msgstr "" "bạn vô hiệu hoá kịch bản khởi động thiết yếu như &quot;network&" "quot;, công cụ của bạn chó thể trở nên không truy cập được</strong>" -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:90 -#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:97 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:559 +msgid "You may add multiple records for the same Target." +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:596 +msgid "You may add multiple records for the same domain." +msgstr "" + +#: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/header.ut:78 +#: themes/luci-theme-material/ucode/template/themes/material/header.ut:92 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:73 msgid "" "You must enable JavaScript in your browser or LuCI will not work properly." @@ -9721,7 +9785,17 @@ msgstr "Thiết đặt ZRam" msgid "ZRam Size" msgstr "Kích cỡ ZRam" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:449 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:558 +msgid "_proto: _tcp, _udp, _sctp, _quic, … ." +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:557 +msgid "" +"_service: _sip, _ldap, _imap, _stun, _xmpp-client, … . (Note: while _http is " +"possible, no browsers support SRV records.)" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:454 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:152 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:163 msgid "any" @@ -9833,8 +9907,8 @@ msgstr "" msgid "e.g: dump" msgstr "" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:726 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:756 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:797 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:827 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:101 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:148 msgid "expired" @@ -10045,9 +10119,9 @@ msgstr "Giá trị độc nhất" msgid "unknown" msgstr "Không xác định" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:456 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:724 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:754 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:461 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:795 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:825 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:99 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:146 msgid "unlimited" @@ -10263,6 +10337,21 @@ msgstr "Có" msgid "« Back" msgstr "« Quay lại" +#~ msgid "Back to configuration" +#~ msgstr "Quay lại phần cài đặt" + +#~ msgid "Close list..." +#~ msgstr "Danh sách đã đóng ..." + +#~ msgid "Internal Server Error" +#~ msgstr "Lỗi máy chủ nội" + +#~ msgid "No files found" +#~ msgstr "Không tìm thấy tập tin" + +#~ msgid "Sorry, the server encountered an unexpected error." +#~ msgstr "Xin lỗi, máy chủ đã gặp lỗi không mong muốn" + #~ msgid "Do not forward queries that cannot be answered by public resolvers." #~ msgstr "" #~ "Không chuyển tiếp yêu cầu mà máy chủ tên công cộng không thể trả lời" @@ -10454,8 +10543,8 @@ msgstr "« Quay lại" #~ msgid "" #~ "The filesystem that was used to format the memory (<abbr title=\"for " -#~ "example\">e.g.</abbr> <samp><abbr title=\"Third Extended " -#~ "Filesystem\">ext3</abbr></samp>)" +#~ "example\">e.g.</abbr> <samp><abbr title=\"Third Extended Filesystem" +#~ "\">ext3</abbr></samp>)" #~ msgstr "" #~ "Filesystem mà được dùng để format memory (<abbr title=\"for example\">e.g." #~ "</abbr> <samp><abbr title=\"Third Extended Filesystem\">ext3</abbr></" @@ -10482,8 +10571,8 @@ msgstr "« Quay lại" #~ "cầu nhiều giao diện bằng cách đánh dấu &quot;bridge interfaces&" #~ "quot; field và nhập tên vào của nhiều giao diện network phân tách bởi " #~ "những khoảng trống. Bạn có thể cũng dùng <abbr title=\"Virtual Local Area " -#~ "Network\">VLAN</abbr> notation <samp>INTERFACE.VLANNR</samp> (<abbr " -#~ "title=\"for example\">e.g.</abbr>: <samp>eth0.1</samp>)." +#~ "Network\">VLAN</abbr> notation <samp>INTERFACE.VLANNR</samp> (<abbr title=" +#~ "\"for example\">e.g.</abbr>: <samp>eth0.1</samp>)." #~ msgid "Receiver Antenna" #~ msgstr "Máy thu Antenna" diff --git a/modules/luci-base/po/zh_Hans/base.po b/modules/luci-base/po/zh_Hans/base.po index afbd1c1dfa..5fc84ed354 100644 --- a/modules/luci-base/po/zh_Hans/base.po +++ b/modules/luci-base/po/zh_Hans/base.po @@ -4,15 +4,15 @@ # msgid "" msgstr "" -"PO-Revision-Date: 2022-10-04 18:07+0000\n" -"Last-Translator: Eric <hamburger1024@mailbox.org>\n" +"PO-Revision-Date: 2022-10-26 13:13+0000\n" +"Last-Translator: Byacrya <byacrya@proton.me>\n" "Language-Team: Chinese (Simplified) <https://hosted.weblate.org/projects/" "openwrt/luci/zh_Hans/>\n" "Language: zh_Hans\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" -"X-Generator: Weblate 4.14.1\n" +"X-Generator: Weblate 4.14.2-dev\n" #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:643 msgctxt "Yet unknown nftables table family (\"family\" table \"name\")" @@ -229,6 +229,21 @@ msgstr "<abbr title=\"路由器通告\">RA</abbr> MTU" msgid "<abbr title=\"Router Advertisement\">RA</abbr>-Service" msgstr "<abbr title=\"路由器通告\">RA</abbr> 服务" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:294 +msgid "" +"<code>/#/</code> matches any domain. <code>/example.com/</code> returns " +"NXDOMAIN." +msgstr "" +"<code>/#/</code> 匹配任何域名。<code>/example.com/</code> 返回 NXDOMAIN。" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:295 +msgid "" +"<code>/example.com/#</code> returns NULL addresses (<code>0.0.0.0</code> and " +"<code>::</code>) for example.com and its subdomains." +msgstr "" +"<code>/example.com/#</code> 对 example.com 及其子域名返回无效地址 " +"(<code>0.0.0.0</code> 和 <code>::</code>) 。" + #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:87 msgctxt "nft relational \">\" operator expression" msgid "<var>%s</var> greater than <strong>%s</strong>" @@ -394,7 +409,7 @@ msgstr "" msgid "ATM device number" msgstr "ATM 设备号码" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:36 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:37 msgid "ATU-C System Vendor ID" msgstr "ATU-C 系统供应商 ID" @@ -404,7 +419,7 @@ msgstr "ATU-C 系统供应商 ID" msgid "Absent Interface" msgstr "接口缺失" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:320 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:325 msgid "Accept DNS queries only from hosts whose address is on a local subnet." msgstr "仅在网卡所属的子网中提供 DNS 服务。" @@ -543,7 +558,7 @@ msgstr "添加实例" msgid "Add key" msgstr "添加密钥" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:410 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:415 msgid "Add local domain suffix to names served from hosts files." msgstr "添加本地域名后缀到 HOSTS 文件中的域名。" @@ -564,11 +579,11 @@ msgstr "添加到黑名单" msgid "Add to Whitelist" msgstr "添加到白名单" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:367 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:372 msgid "Additional hosts files" msgstr "额外的 HOSTS 文件" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:417 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:422 msgid "Additional servers file" msgstr "额外的 SERVERS 文件" @@ -598,7 +613,7 @@ msgstr "地址设置无效" msgid "Address to access local relay bridge" msgstr "接入本地中继桥的地址" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:289 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:291 msgid "Addresses" msgstr "地址" @@ -631,7 +646,7 @@ msgstr "老化时间" msgid "Aggregate Originator Messages" msgstr "聚合发起者消息" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:27 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:28 msgid "Aggregate Transmit Power (ACTATP)" msgstr "总发射功率(ACTATP)" @@ -673,17 +688,17 @@ msgstr "接口别名" msgid "Alias of \"%s\"" msgstr "“%s”的别名" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:427 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:432 msgid "All servers" msgstr "所有服务器" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:378 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:383 msgid "" "Allocate IP addresses sequentially, starting from the lowest available " "address." msgstr "从最低可用地址开始顺序分配 IP 地址。" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:377 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:382 msgid "Allocate IPs sequentially" msgstr "顺序分配 IP" @@ -711,7 +726,7 @@ msgstr "允许使用旧的 802.11b 速率" msgid "Allow listed only" msgstr "仅允许列表内" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:306 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:311 msgid "Allow localhost" msgstr "允许本机" @@ -755,7 +770,7 @@ msgstr "始终关闭(kernel:none)" msgid "Always on (kernel: default-on)" msgstr "始终开启(kernel:default-on)" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:538 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:543 msgid "Always send DHCP Options. Sometimes needed, with e.g. PXELinux." msgstr "始终发送 DHCP 选项。 有时需要,例如 PXELinux。" @@ -783,7 +798,7 @@ msgid "An optional, short description for this device" msgstr "此设备的可选简短描述" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1484 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:20 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:21 msgid "Annex" msgstr "Annex" @@ -899,7 +914,7 @@ msgstr "任意数据包" msgid "Any zone" msgstr "任意区域" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:532 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:537 msgid "Apply DHCP Options to this net. (Empty = all clients)." msgstr "将 DHCP 选项应用到此网络。(Empty = 所有客户端)。" @@ -991,11 +1006,11 @@ msgstr "身份验证" msgid "Authentication Type" msgstr "身份验证类型" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:265 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:267 msgid "Authoritative" msgstr "唯一授权" -#: modules/luci-base/luasrc/view/sysauth.htm:17 +#: modules/luci-base/ucode/template/sysauth.ut:17 #: themes/luci-theme-bootstrap/htdocs/luci-static/resources/view/bootstrap/sysauth.js:11 msgid "Authorization Required" msgstr "需要授权" @@ -1065,7 +1080,7 @@ msgstr "平均:" msgid "Avoid Bridge Loops" msgstr "避免网桥回环" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:388 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:393 msgid "" "Avoid uselessly triggering dial-on-demand links (filters SRV/SOA records and " "names with underscores)." @@ -1100,10 +1115,6 @@ msgstr "返回" msgid "Back to Overview" msgstr "返回至概览" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:48 -msgid "Back to configuration" -msgstr "返回至配置" - #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:826 msgid "Back to peer configuration" msgstr "返回 peer 配置" @@ -1117,7 +1128,6 @@ msgid "Backup / Flash Firmware" msgstr "备份与升级" #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:351 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:12 msgid "Backup file list" msgstr "文件备份列表" @@ -1163,7 +1173,6 @@ msgid "Beacon Interval" msgstr "信标间隔" #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:352 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:46 msgid "" "Below is the determined list of files to backup. It consists of changed " "configuration files marked by opkg, essential base files and the user " @@ -1176,7 +1185,7 @@ msgstr "" msgid "Bind NTP server" msgstr "绑定 NTP 服务器" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:326 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:331 msgid "Bind dynamically to interfaces rather than wildcard address." msgstr "动态绑定到接口而不是通配符地址。" @@ -1192,6 +1201,17 @@ msgstr "动态绑定到接口而不是通配符地址。" msgid "Bind interface" msgstr "绑定接口" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:595 +msgid "" +"Bind service records to a domain name: specify the location of services." +msgstr "绑定服务记录到域名:指定服务的位置。" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:556 +msgid "" +"Bind service records to a domain name: specify the location of services. See " +"<a href=\"%s\">RFC2782</a>." +msgstr "绑定服务记录到域名:指定服务的位置。见 <a href=\"%s\">RFC2782</a>。" + #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:59 #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:64 #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:64 @@ -1294,6 +1314,10 @@ msgstr "CA 证书,如果留空,则证书将在第一次连接后被保存。 msgid "CLAT configuration failed" msgstr "CLAT 配置失败" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:574 +msgid "CNAME or fqdn" +msgstr "CNAME 或 fqdn" + #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/processes.js:72 msgid "CPU usage (%)" msgstr "CPU 使用率(%)" @@ -1539,17 +1563,13 @@ msgid "" "persist connection" msgstr "在给定时间(秒)后关闭非活动链接,0 为保持连接" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:49 -msgid "Close list..." -msgstr "关闭列表…" - #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:44 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:63 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2184 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:391 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:352 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:355 -#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:72 +#: themes/luci-theme-material/ucode/template/themes/material/header.ut:66 msgid "Collecting data..." msgstr "正在收集数据…" @@ -1587,6 +1607,10 @@ msgstr "" msgid "Compute outgoing checksum (optional)." msgstr "计算传出校验和(可选)。" +#: protocols/luci-proto-nebula/htdocs/luci-static/resources/protocol/nebula.js:40 +msgid "Config File" +msgstr "配置文件" + #: modules/luci-base/htdocs/luci-static/resources/ui.js:4375 #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:454 msgid "Configuration" @@ -1631,8 +1655,8 @@ msgstr "配置 <abbr title=\"路由器通告\">RA</abbr> 消息中的默认路 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:764 msgid "" -"Configures the operation mode of the <abbr title=\"Router " -"Advertisement\">RA</abbr> service on this interface." +"Configures the operation mode of the <abbr title=\"Router Advertisement" +"\">RA</abbr> service on this interface." msgstr "配置此接口上 <abbr title=\"路由器通告\">RA</abbr> 服务的操作模式。" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:879 @@ -1808,8 +1832,8 @@ msgstr "自定义闪烁间隔(kernel:timer)" #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/leds.js:59 msgid "" -"Customizes the behaviour of the device <abbr title=\"Light Emitting " -"Diode\">LED</abbr>s if possible." +"Customizes the behaviour of the device <abbr title=\"Light Emitting Diode" +"\">LED</abbr>s if possible." msgstr "自定义此设备的 <abbr title=\"发光二极管\">LED</abbr> 行为。" #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:673 @@ -1828,7 +1852,7 @@ msgstr "DAE 端口" msgid "DAE-Secret" msgstr "DAE 密文" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:525 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:530 msgid "DHCP Options" msgstr "DHCP 选项" @@ -1868,11 +1892,11 @@ msgstr "DHCPv6 服务" msgid "DNS" msgstr "DNS" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:282 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:284 msgid "DNS forwardings" msgstr "DNS 转发" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:445 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:450 msgid "DNS query port" msgstr "<abbr title=\"域名系统\">DNS</abbr> 查询端口" @@ -1880,7 +1904,7 @@ msgstr "<abbr title=\"域名系统\">DNS</abbr> 查询端口" msgid "DNS search domains" msgstr "DNS 搜索域名" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:438 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:443 msgid "DNS server port" msgstr "<abbr title=\"域名系统\">DNS</abbr> 服务器端口" @@ -1896,11 +1920,11 @@ msgstr "DNS 权重" msgid "DNS-Label / FQDN" msgstr "DNS-标签/FQDN" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:397 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:402 msgid "DNSSEC" msgstr "DNSSEC" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:402 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:407 msgid "DNSSEC check unsigned" msgstr "DNSSEC 检查未签名" @@ -1913,11 +1937,11 @@ msgid "DS-Lite AFTR address" msgstr "DS-Lite AFTR 地址" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1481 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:44 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:45 msgid "DSL" msgstr "DSL" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:14 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:15 msgid "DSL Status" msgstr "DSL 状态" @@ -1930,12 +1954,12 @@ msgid "DTIM Interval" msgstr "DTIM 间隔" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:59 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:700 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:771 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:136 msgid "DUID" msgstr "DUID" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:21 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:22 msgid "Data Rate" msgstr "数据速率" @@ -2180,7 +2204,7 @@ msgstr "已禁用" msgid "Disassociate On Low Acknowledgement" msgstr "在低 Ack 应答时断开连接" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:302 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:307 msgid "" "Discard upstream responses containing <a href=\"%s\">RFC1918</a> addresses." msgstr "丢弃包含 <a href=\"%s\">RFC1918 </a>地址的上游响应。" @@ -2226,7 +2250,7 @@ msgstr "最远网络用户的距离(米)。" msgid "Distributed ARP Table" msgstr "分布式 ARP 表" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:543 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:548 msgid "" "Dnsmasq instance to which this boot section is bound. If unspecified, the " "section is valid for all dnsmasq instances." @@ -2236,14 +2260,14 @@ msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:246 msgid "" -"Dnsmasq is a lightweight <abbr title=\"Dynamic Host Configuration " -"Protocol\">DHCP</abbr> server and <abbr title=\"Domain Name System\">DNS</" -"abbr> forwarder." +"Dnsmasq is a lightweight <abbr title=\"Dynamic Host Configuration Protocol" +"\">DHCP</abbr> server and <abbr title=\"Domain Name System\">DNS</abbr> " +"forwarder." msgstr "" "Dnsmasq 是轻量级的 <abbr title=\"Dynamic Host Configuration Protocol\">DHCP</" "abbr>服务器和<abbr title=\"Domain Name System\">DNS</abbr> 转发器。" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:414 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:419 msgid "Do not cache negative replies, e.g. for non-existent domains." msgstr "不缓存无用的回应,例如:不存在的域名。" @@ -2255,15 +2279,15 @@ msgstr "不缓存无用的回应,例如:不存在的域名。" msgid "Do not create host route to peer (optional)." msgstr "不创建到对端的主机路由(可选)。" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:262 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:264 msgid "Do not forward DNS queries without dots or domain parts." msgstr "不转发没有点或域名部分的 DNS 查询。" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:383 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:388 msgid "Do not forward reverse lookups for local networks." msgstr "不转发本地网络的反向查询。" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:339 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:344 msgid "Do not listen on the specified interfaces." msgstr "不监听这些接口。" @@ -2318,15 +2342,16 @@ msgstr "是否要替换当前的 PSK?" msgid "Do you want to replace the current keys?" msgstr "是否要替换当前密钥?" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:593 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:606 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:664 msgid "Domain" msgstr "域名" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:261 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:263 msgid "Domain required" msgstr "忽略空域名解析" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:311 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:316 msgid "Domain whitelist" msgstr "域名白名单" @@ -2389,8 +2414,8 @@ msgid "" "Dropbear offers <abbr title=\"Secure Shell\">SSH</abbr> network shell access " "and an integrated <abbr title=\"Secure Copy\">SCP</abbr> server" msgstr "" -"Dropbear 提供 <abbr title=\"Secure Shell\">SSH</abbr> 访问和 <abbr " -"title=\"Secure Copy\">SCP</abbr> 服务" +"Dropbear 提供 <abbr title=\"Secure Shell\">SSH</abbr> 访问和 <abbr title=" +"\"Secure Copy\">SCP</abbr> 服务" #: modules/luci-compat/luasrc/model/network/proto_4x6.lua:14 #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dslite.js:11 @@ -2563,7 +2588,7 @@ msgstr "启用 NTP 客户端" msgid "Enable Single DES" msgstr "启用单个 DES" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:480 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:485 msgid "Enable TFTP server" msgstr "启用 TFTP 服务器" @@ -2581,9 +2606,9 @@ msgstr "启用 WPS 一键加密按钮,需要 WPA(2)-PSK/WPA3-SAE" #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/uhttpd.js:14 msgid "" -"Enable automatic redirection of <abbr title=\"Hypertext Transfer " -"Protocol\">HTTP</abbr> requests to <abbr title=\"Hypertext Transfer Protocol " -"Secure\">HTTPS</abbr> port." +"Enable automatic redirection of <abbr title=\"Hypertext Transfer Protocol" +"\">HTTP</abbr> requests to <abbr title=\"Hypertext Transfer Protocol Secure" +"\">HTTPS</abbr> port." msgstr "" "允许自动将<abbr title=\"Hypertext Transfer Protocol\">HTTP</abbr>请求重定向至" "<abbr title=\"Hypertext Transfer Protocol Secure\">HTTPS</abbr>端口。" @@ -2648,7 +2673,7 @@ msgstr "启用多播传输支持(可选)。" msgid "Enable the DF (Don't Fragment) flag of the encapsulating packets." msgstr "启用后报文的 DF(禁止分片)标志。" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:481 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:486 msgid "Enable the built-in single-instance TFTP server." msgstr "启用内置的单实例 TFTP 服务器。" @@ -2765,7 +2790,7 @@ msgstr "错误" msgid "Error getting PublicKey" msgstr "获取公钥时出错" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:29 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:30 msgid "Errored seconds (ES)" msgstr "错误秒数(ES)" @@ -2787,11 +2812,11 @@ msgstr "每 30 秒(slow,0)" msgid "Every second (fast, 1)" msgstr "每秒(fast,1)" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:338 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:343 msgid "Exclude interfaces" msgstr "排除接口" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:307 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:312 msgid "" "Exempt <code>127.0.0.0/8</code> and <code>::1</code> from rebinding checks, " "e.g. for RBL services." @@ -2803,7 +2828,7 @@ msgstr "" msgid "Existing device" msgstr "现有设备" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:409 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:414 msgid "Expand hosts" msgstr "扩展 HOSTS 文件中的主机后缀" @@ -2937,7 +2962,7 @@ msgstr "设置操作模式失败" msgid "File" msgstr "文件" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:418 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:423 msgid "" "File listing upstream resolvers, optionally domain-specific, e.g. " "<code>server=1.2.3.4</code>, <code>server=/domain/1.2.3.4</code>." @@ -2949,20 +2974,20 @@ msgstr "" msgid "File not accessible" msgstr "文件无法访问" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:349 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:354 msgid "File to store DHCP lease information." msgstr "存储 DHCP 租约信息的文件。" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:357 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:362 msgid "File with upstream resolvers." msgstr "上游解析器文件。" #: modules/luci-base/htdocs/luci-static/resources/ui.js:2846 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:507 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:512 msgid "Filename" msgstr "文件名" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:493 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:498 msgid "Filename of the boot image advertised to clients." msgstr "向客户端发布的引导映像文件名。" @@ -2971,11 +2996,11 @@ msgstr "向客户端发布的引导映像文件名。" msgid "Filesystem" msgstr "文件系统" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:382 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:387 msgid "Filter private" msgstr "过滤本地包" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:387 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:392 msgid "Filter useless" msgstr "过滤无用包" @@ -3040,7 +3065,7 @@ msgstr "固件文件" msgid "Firmware Version" msgstr "固件版本" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:446 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:451 msgid "Fixed source port for outbound DNS queries." msgstr "出站 DNS 查询的固定源端口。" @@ -3066,7 +3091,7 @@ msgstr "刷写操作" msgid "Flashing…" msgstr "正在刷写…" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:537 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:542 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:686 msgid "Force" msgstr "强制" @@ -3111,16 +3136,16 @@ msgstr "强制升级" msgid "Force use of NAT-T" msgstr "强制使用 NAT-T" -#: modules/luci-base/luasrc/view/csrftoken.htm:8 +#: modules/luci-base/ucode/template/csrftoken.ut:8 msgid "Form token mismatch" msgstr "表单令牌不匹配" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:919 msgid "" -"Forward <abbr title=\"Neighbour Discovery Protocol\">NDP</abbr> <abbr " -"title=\"Neighbour Solicitation, Type 135\">NS</abbr> and <abbr " -"title=\"Neighbour Advertisement, Type 136\">NA</abbr> messages between the " -"designated master interface and downstream interfaces." +"Forward <abbr title=\"Neighbour Discovery Protocol\">NDP</abbr> <abbr title=" +"\"Neighbour Solicitation, Type 135\">NS</abbr> and <abbr title=\"Neighbour " +"Advertisement, Type 136\">NA</abbr> messages between the designated master " +"interface and downstream interfaces." msgstr "" "在指定的主接口和下游接口之间转发 <abbr title=\"邻居发现协议\">NDP</abbr> " "<abbr title=\"邻居请求报文,类型 135\">NS</abbr> 和 <abbr title=\"邻居通告报" @@ -3145,7 +3170,7 @@ msgid "" "downstream interfaces." msgstr "在指定的主接口和下游接口之间转发 DHCPv6 消息。" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:28 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:29 msgid "Forward Error Correction Seconds (FECS)" msgstr "前向纠错秒数(FECS)" @@ -3304,15 +3329,15 @@ msgstr "全局设置" msgid "Global network options" msgstr "全局网络选项" -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:82 -#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:89 -#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:74 +#: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/header.ut:70 +#: themes/luci-theme-material/ucode/template/themes/material/header.ut:84 +#: themes/luci-theme-openwrt-2020/ucode/template/themes/openwrt2020/header.ut:67 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:92 msgid "Go to firmware upgrade..." msgstr "转到固件升级…" -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:72 -#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:64 +#: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/header.ut:60 +#: themes/luci-theme-openwrt-2020/ucode/template/themes/openwrt2020/header.ut:57 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:82 msgid "Go to password configuration..." msgstr "跳转到密码配置页…" @@ -3453,7 +3478,7 @@ msgstr "HTTP(S) 访问" msgid "Hang Up" msgstr "挂起" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:33 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:34 msgid "Header Error Code Errors (HEC)" msgstr "请求头错误代码错误(HEC)" @@ -3504,7 +3529,7 @@ msgstr "主机" msgid "Host expiry timeout" msgstr "主机到期超时" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:508 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:513 msgid "Host requests this filename from the boot server." msgstr "主机从引导服务器请求此文件名。" @@ -3513,8 +3538,8 @@ msgid "Host-Uniq tag content" msgstr "Host-Uniq 标签内容" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:38 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:559 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:607 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:630 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:678 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/10_system.js:54 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:87 #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:135 @@ -3529,7 +3554,7 @@ msgstr "请求 DHCP 时发送的主机名" msgid "Hostnames" msgstr "主机名映射" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:551 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:622 msgid "" "Hostnames are used to bind a domain name to an IP address. This setting is " "redundant for hostnames already configured with static leases, but it can be " @@ -3595,7 +3620,7 @@ msgstr "IP 地址" msgid "IP Protocol" msgstr "IP 协议" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:258 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:260 msgid "IP Sets" msgstr "IP 集" @@ -3603,7 +3628,7 @@ msgstr "IP 集" msgid "IP Type" msgstr "IP 类型" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:563 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:634 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:178 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:204 msgid "IP address" @@ -3629,15 +3654,15 @@ msgctxt "nft meta l4proto" msgid "IP protocol" msgstr "IP 协议" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:589 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:660 msgid "IP set" msgstr "IP 集" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:295 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:300 msgid "IP sets" msgstr "IP 集" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:432 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:437 msgid "IPs to override with NXDOMAIN" msgstr "忽略虚假空域名解析" @@ -3678,7 +3703,7 @@ msgstr "IPv4 上游" #: modules/luci-base/htdocs/luci-static/resources/protocol/static.js:178 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:39 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:665 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:736 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:88 #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:164 msgid "IPv4 address" @@ -3849,7 +3874,7 @@ msgstr "IPv6 源路由" msgid "IPv6 suffix" msgstr "IPv6 后缀" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:706 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:777 msgid "IPv6 suffix (hex)" msgstr "<abbr title=\"互联网协议第 6 版\">IPv6</abbr> 后缀(十六进制)" @@ -3943,16 +3968,16 @@ msgstr "留空则忽略所通告的 DNS 服务器地址" #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:340 msgid "" "If your physical memory is insufficient unused data can be temporarily " -"swapped to a swap-device resulting in a higher amount of usable <abbr " -"title=\"Random Access Memory\">RAM</abbr>. Be aware that swapping data is a " -"very slow process as the swap-device cannot be accessed with the high " -"datarates of the <abbr title=\"Random Access Memory\">RAM</abbr>." +"swapped to a swap-device resulting in a higher amount of usable <abbr title=" +"\"Random Access Memory\">RAM</abbr>. Be aware that swapping data is a very " +"slow process as the swap-device cannot be accessed with the high datarates " +"of the <abbr title=\"Random Access Memory\">RAM</abbr>." msgstr "" -"如果物理内存不足,闲置数据可自动移到交换设备暂存,以增加可用的 <abbr " -"title=\"随机存取存储器\">RAM</abbr>。请注意:数据交换的过程会非常慢,因为交换" -"设备无法像 <abbr title=\"随机存取存储器\">RAM</abbr> 那样的高速地访问。" +"如果物理内存不足,闲置数据可自动移到交换设备暂存,以增加可用的 <abbr title=" +"\"随机存取存储器\">RAM</abbr>。请注意:数据交换的过程会非常慢,因为交换设备无" +"法像 <abbr title=\"随机存取存储器\">RAM</abbr> 那样的高速地访问。" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:363 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:368 msgid "Ignore <code>/etc/hosts</code>" msgstr "忽略 <code>/etc/hosts</code>" @@ -3960,7 +3985,7 @@ msgstr "忽略 <code>/etc/hosts</code>" msgid "Ignore interface" msgstr "忽略此接口" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:352 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:357 msgid "Ignore resolv file" msgstr "忽略解析文件" @@ -4010,7 +4035,7 @@ msgstr "" "在桥接 LAN 设置中,建议启用桥接环路避免功能,以避免可导致整个 LAN 停止的广播" "环路。" -#: modules/luci-base/luasrc/view/csrftoken.htm:13 +#: modules/luci-base/ucode/template/csrftoken.ut:13 msgid "" "In order to prevent unauthorized access to the system, your request has been " "blocked. Click \"Continue »\" below to return to the previous page." @@ -4121,7 +4146,7 @@ msgstr "内部证书约束(通配符)" msgid "Install protocol extensions..." msgstr "安装扩展协议…" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:542 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:547 msgid "Instance" msgstr "实例" @@ -4208,10 +4233,6 @@ msgstr "接口" msgid "Internal" msgstr "内部" -#: modules/luci-base/luasrc/view/error500.htm:8 -msgid "Internal Server Error" -msgstr "内部服务器错误" - #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:285 msgid "Interval For Sending Learning Packets" msgstr "学习包发送间隔" @@ -4282,8 +4303,8 @@ msgstr "无效命令" msgid "Invalid hexadecimal value" msgstr "无效 16 进制值" -#: modules/luci-base/luasrc/view/sysauth.htm:12 -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/sysauth.htm:37 +#: modules/luci-base/ucode/template/sysauth.ut:12 +#: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/sysauth.ut:32 msgid "Invalid username and/or password! Please try again." msgstr "无效的用户名和/或密码!请重试。" @@ -4305,8 +4326,8 @@ msgid "" "flash memory, please verify the image file!" msgstr "您尝试刷写的固件与此设备不兼容,请检查固件文件!" -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:89 -#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:96 +#: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/header.ut:77 +#: themes/luci-theme-material/ucode/template/themes/material/header.ut:91 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:72 msgid "JavaScript required!" msgstr "需要 JavaScript!" @@ -4329,7 +4350,7 @@ msgstr "跳至规则" #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:228 msgid "Keep settings and retain the current configuration" -msgstr "保持设置并保留当前配置" +msgstr "保留当前配置" #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/dmesg.js:20 #: modules/luci-mod-status/root/usr/share/luci/menu.d/luci-mod-status.json:84 @@ -4438,11 +4459,17 @@ msgstr "语言" msgid "Language and Style" msgstr "语言和界面" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:560 +msgid "" +"Larger weights (of the same prio) are given a proportionately higher " +"probability of being selected." +msgstr "较大的权重(相同的优先级下)被赋予相应较高的被选中概率。" + #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:575 msgid "Last member interval" msgstr "最后成员间隔" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:23 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:24 msgid "Latency" msgstr "延迟" @@ -4458,11 +4485,11 @@ msgstr "学习" msgid "Learn routes" msgstr "学习路由" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:348 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:353 msgid "Lease file" msgstr "租约文件" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:697 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:768 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:679 msgid "Lease time" msgstr "租期" @@ -4508,19 +4535,19 @@ msgstr "图例:" msgid "Limit" msgstr "客户数" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:24 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:25 msgid "Line Attenuation (LATN)" msgstr "线路衰减(LATN)" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:18 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:19 msgid "Line Mode" msgstr "线路模式" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:17 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:18 msgid "Line State" msgstr "线路状态" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:19 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:20 msgid "Line Uptime" msgstr "线路运行时间" @@ -4541,12 +4568,12 @@ msgctxt "nft @ll,off,len" msgid "Link layer header bits %d-%d" msgstr "链路层报头位 %d-%d" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:433 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:438 msgid "List of IP addresses to convert into NXDOMAIN responses." msgstr "要转换成 NXDOMAIN 响应的 IP 地址列表。" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:296 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:581 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:301 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:652 msgid "List of IP sets to populate with the specified domain IPs." msgstr "要用指定域 IP 填充的 IP 集列表。" @@ -4579,15 +4606,11 @@ msgstr "" msgid "List of SSH key files for auth" msgstr "用于认证的 SSH 密钥文件列表" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:312 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:317 msgid "List of domains to allow RFC1918 responses for." msgstr "允许 RFC1918 响应的域名列表。" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:290 -msgid "List of domains to force to an IP address." -msgstr "此列表将域名强制指向某个 IP 地址。" - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:283 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:285 msgid "List of upstream resolvers to forward queries to." msgstr "查询将被转发到的上游解析器的列表。" @@ -4595,7 +4618,7 @@ msgstr "查询将被转发到的上游解析器的列表。" msgid "Listen Port" msgstr "监听端口" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:332 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:337 msgid "Listen interfaces" msgstr "监听接口" @@ -4603,7 +4626,7 @@ msgstr "监听接口" msgid "Listen only on the given interface or, if unspecified, on all" msgstr "仅监听指定的接口,未指定则监听全部" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:333 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:338 msgid "" "Listen only on the specified interfaces, and loopback if not excluded " "explicitly." @@ -4613,7 +4636,7 @@ msgstr "仅监听这些接口和环回接口。" msgid "ListenPort setting is invalid" msgstr "ListenPort 设置无效" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:439 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:444 msgid "Listening port for inbound DNS queries." msgstr "入站 DNS 查询的侦听端口。" @@ -4640,9 +4663,9 @@ msgid "Loading directory contents…" msgstr "正在载入目录内容…" #: modules/luci-base/htdocs/luci-static/resources/luci.js:1942 -#: modules/luci-base/luasrc/view/view.htm:4 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:12 -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/sysauth.htm:45 +#: modules/luci-base/ucode/template/view.ut:4 +#: modules/luci-mod-status/ucode/template/admin_status/index.ut:12 +#: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/sysauth.ut:40 msgid "Loading view…" msgstr "正在载入视图…" @@ -4700,19 +4723,19 @@ msgstr "本地时间" msgid "Local ULA" msgstr "本地 ULA" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:273 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:275 msgid "Local domain" msgstr "本地域名" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:274 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:276 msgid "Local domain suffix appended to DHCP names and hosts file entries." msgstr "附加到 DHCP 名称和主机文件条目的本地域后缀。" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:269 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:271 msgid "Local server" msgstr "本地服务器" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:319 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:324 msgid "Local service only" msgstr "仅本地服务" @@ -4720,7 +4743,7 @@ msgstr "仅本地服务" msgid "Local wireguard key" msgstr "本地 wireguard 密钥" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:392 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:397 msgid "Localise queries" msgstr "本地化查询" @@ -4732,7 +4755,7 @@ msgstr "锁定到 BSSID" msgid "Log output level" msgstr "日志记录等级" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:277 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:279 msgid "Log queries" msgstr "记录查询日志" @@ -4758,8 +4781,8 @@ msgstr "" msgid "Logical network to which the tunnel will be added (bridged) (optional)." msgstr "隧道将要被添加(桥接)到的逻辑网络(可选)。" -#: modules/luci-base/luasrc/view/sysauth.htm:38 -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/sysauth.htm:41 +#: modules/luci-base/ucode/template/sysauth.ut:38 +#: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/sysauth.ut:36 msgid "Login" msgstr "登录" @@ -4771,7 +4794,7 @@ msgstr "退出" msgid "Loose filtering" msgstr "宽松过滤" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:31 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:32 msgid "Loss of Signal Seconds (LOSS)" msgstr "信号丢失秒数(LOSS)" @@ -4779,6 +4802,10 @@ msgstr "信号丢失秒数(LOSS)" msgid "Lowest leased address as offset from the network address." msgstr "网络地址的起始分配基址。" +#: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/footer.ut:12 +msgid "Lua compatibility mode active" +msgstr "Lua 兼容模式活跃" + #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:48 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:83 msgid "MAC" @@ -4803,7 +4830,7 @@ msgstr "MAC VLAN" #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:591 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:40 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:619 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:690 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1164 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2177 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:56 @@ -4862,6 +4889,10 @@ msgstr "MII 间隔" msgid "MTU" msgstr "MTU" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:259 +msgid "MX" +msgstr "MX" + #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:303 msgid "" "Make sure to clone the root filesystem using something like the commands " @@ -4886,23 +4917,23 @@ msgstr "主设备" msgid "Max <abbr title=\"Router Advertisement\">RA</abbr> interval" msgstr "最长 <abbr title=\"路由器通告\">RA</abbr> 间隔" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:22 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:23 msgid "Max. Attainable Data Rate (ATTNDR)" msgstr "最大可达数据速率(ATTNDR)" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:452 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:457 msgid "Max. DHCP leases" msgstr "" "<abbr title=\"maximal\">最大</abbr> <abbr title=\"动态主机配置协议\">DHCP</" "abbr> 租约数量" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:459 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:464 msgid "Max. EDNS0 packet size" msgstr "" "<abbr title=\"maximal\">最大</abbr> <abbr title=\"域名系统的扩展机制" "\">EDNS0</abbr> 数据包大小" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:466 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:471 msgid "Max. concurrent queries" msgstr "<abbr title=\"maximal\">最大</abbr>并发查询数" @@ -4914,15 +4945,15 @@ msgstr "最大年龄" msgid "Maximum allowed Listen Interval" msgstr "允许的最大监听间隔" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:453 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:458 msgid "Maximum allowed number of active DHCP leases." msgstr "允许的最大 DHCP 租约数。" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:467 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:472 msgid "Maximum allowed number of concurrent DNS queries." msgstr "允许的最大并发 DNS 查询数。" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:460 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:465 msgid "Maximum allowed size of EDNS0 UDP packets." msgstr "EDNS0 UDP 数据包的最大允许大小。" @@ -4951,7 +4982,7 @@ msgstr "" msgid "Maximum transmit power" msgstr "最大传输功率" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:389 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:394 msgid "May prevent VoIP or other services from working." msgstr "可能造成 VoIP 或其他服务无法运作。" @@ -5267,11 +5298,15 @@ msgstr "新网络的名称" msgid "Name of the tunnel device" msgstr "隧道设备名" -#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:46 +#: themes/luci-theme-openwrt-2020/ucode/template/themes/openwrt2020/header.ut:39 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:50 msgid "Navigation" msgstr "导航" +#: protocols/luci-proto-nebula/htdocs/luci-static/resources/protocol/nebula.js:10 +msgid "Nebula Network" +msgstr "Nebula 网络" + #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:653 msgid "Neighbour cache validity" msgstr "邻近缓存有效性" @@ -5307,7 +5342,7 @@ msgstr "网络工具" msgid "Network address" msgstr "网络地址" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:492 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:497 msgid "Network boot image" msgstr "网络启动镜像" @@ -5347,7 +5382,7 @@ msgstr "网络 ifname 配置迁移" msgid "Network interface" msgstr "网络接口" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:531 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:536 msgid "Network-ID" msgstr "网络 ID" @@ -5355,7 +5390,7 @@ msgstr "网络 ID" msgid "Never" msgstr "永不" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:270 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:272 msgid "" "Never forward matching domains and subdomains, resolve from DHCP or hosts " "files only." @@ -5403,9 +5438,9 @@ msgstr "无 NAT-T" msgid "No RX signal" msgstr "无接收信号" -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:80 -#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:87 -#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:72 +#: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/header.ut:68 +#: themes/luci-theme-material/ucode/template/themes/material/header.ut:82 +#: themes/luci-theme-openwrt-2020/ucode/template/themes/openwrt2020/header.ut:65 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:90 msgid "" "No changes to settings will be stored and are lost after rebooting. This " @@ -5448,10 +5483,6 @@ msgstr "没有可用的条目" msgid "No entries in this directory" msgstr "此目录中没有内容" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:82 -msgid "No files found" -msgstr "未找到文件" - #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:833 msgid "" "No fixed interface listening port defined, peers might not be able to " @@ -5488,7 +5519,7 @@ msgstr "没有更多的从属设备可用" msgid "No more slaves available, can not save interface" msgstr "没有更多的从属设备可用,无法保存接口" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:413 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:418 msgid "No negative cache" msgstr "禁用无效信息缓存" @@ -5496,8 +5527,8 @@ msgstr "禁用无效信息缓存" msgid "No nftables ruleset loaded." msgstr "未加载 nftables 规则集。" -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:69 -#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:61 +#: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/header.ut:57 +#: themes/luci-theme-openwrt-2020/ucode/template/themes/openwrt2020/header.ut:54 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:79 msgid "No password set!" msgstr "未设置密码!" @@ -5537,7 +5568,7 @@ msgstr "未指定区域" msgid "Noise" msgstr "噪声" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:26 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:27 msgid "Noise Margin (SNR)" msgstr "噪声容限(SNR)" @@ -5545,11 +5576,11 @@ msgstr "噪声容限(SNR)" msgid "Noise:" msgstr "噪声:" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:34 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:35 msgid "Non Pre-emptive CRC errors (CRC_P)" msgstr "非抢占 CRC 错误(CRC_P)" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:325 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:330 msgid "Non-wildcard" msgstr "非全部地址" @@ -5564,7 +5595,7 @@ msgstr "无" msgid "Normal" msgstr "正常" -#: modules/luci-base/luasrc/view/error404.htm:8 +#: modules/luci-base/ucode/template/error404.ut:9 msgid "Not Found" msgstr "未找到" @@ -5615,7 +5646,7 @@ msgstr "Nslookup" msgid "Number of IGMP membership reports" msgstr "IGMP 成员数量报告" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:474 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:479 msgid "Number of cached DNS entries, 10000 is maximum, 0 is no caching." msgstr "缓存的 DNS 条目数量,最大 10000,0 表示不缓存。" @@ -5664,7 +5695,7 @@ msgstr "通电时间" msgid "On-link" msgstr "On-Link 路由" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:672 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:743 msgid "One of hostname or MAC address must be specified!" msgstr "请指定主机名或 MAC 地址!" @@ -5700,7 +5731,6 @@ msgid "Open iptables rules overview…" msgstr "打开 iptables 规则概况…" #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:472 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:19 msgid "Open list..." msgstr "打开列表…" @@ -5860,12 +5890,12 @@ msgstr "可选,用于传出和传入数据包的 UDP 端口。" msgid "Options" msgstr "选项" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:526 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:531 msgid "" "Options for the Network-ID. (Note: needs also Network-ID.) E.g. " -"\"<code>42,192.168.1.4</code>\" for NTP server, \"<code>3,192.168.4.4</" -"code>\" for default route. <code>0.0.0.0</code> means \"the address of the " -"system running dnsmasq\"." +"\"<code>42,192.168.1.4</code>\" for NTP server, \"<code>3,192.168.4.4</code>" +"\" for default route. <code>0.0.0.0</code> means \"the address of the system " +"running dnsmasq\"." msgstr "" "Network-ID 选项。(注意:还需要指定 Network-ID。)如,“<code>42,192.168.1.4</" "code>”为 NTP 服务器,“<code>3,192.168.4.4</code>”为默认路由。<code>0.0.0.0</" @@ -5875,6 +5905,11 @@ msgstr "" msgid "Options:" msgstr "选项:" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:584 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:616 +msgid "Ordinal: lower comes first." +msgstr "序数:较低的优先。" + #: protocols/luci-proto-batman-adv/htdocs/luci-static/resources/protocol/batadv.js:55 msgid "Originator Interval" msgstr "发起人间隔" @@ -6146,13 +6181,13 @@ msgctxt "MACVLAN mode" msgid "Pass-through (Mirror physical device to single MAC VLAN)" msgstr "直通(将物理设备镜像到单个 MAC VLAN)" -#: modules/luci-base/luasrc/view/sysauth.htm:29 +#: modules/luci-base/ucode/template/sysauth.ut:29 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1690 #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:51 #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:114 #: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:103 #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:58 -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/sysauth.htm:24 +#: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/sysauth.ut:19 msgid "Password" msgstr "密码" @@ -6325,7 +6360,7 @@ msgstr "Ping" msgid "Pkts." msgstr "Pkts." -#: modules/luci-base/luasrc/view/sysauth.htm:19 +#: modules/luci-base/ucode/template/sysauth.ut:19 msgid "Please enter your username and password." msgstr "请输入用户名和密码。" @@ -6342,6 +6377,7 @@ msgctxt "Chain hook policy" msgid "Policy: <strong>%h</strong> (%h)" msgstr "策略:<strong>%h</strong> (%h)" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:579 #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/dropbear.js:21 msgid "Port" msgstr "端口" @@ -6358,11 +6394,11 @@ msgstr "端口状态:" msgid "Potential negation of: %s" msgstr "可能存在的冲突:%s" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:37 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:38 msgid "Power Management Mode" msgstr "电源管理模式" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:35 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:36 msgid "Pre-emptive CRC errors (CRCP_P)" msgstr "抢占式 CRC 错误(CRCP_P)" @@ -6439,6 +6475,8 @@ msgid "Primary becomes active slave whenever it comes back up (always, 0)" msgstr "只要主从属设备重新上线,它就会成为活跃从属设备(always,0)" #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:508 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:584 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:616 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:129 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:197 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:223 @@ -6557,7 +6595,7 @@ msgstr "QMI 蜂窝" msgid "Quality" msgstr "质量" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:428 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:433 msgid "Query all available upstream resolvers." msgstr "查询所有可用的上游解析器。" @@ -6639,7 +6677,7 @@ msgstr "随机化源端口映射" msgid "Raw hex-encoded bytes. Leave empty unless your ISP require this" msgstr "原始 16 进制编码的字节。除非您的运营商要求,否则请留空" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:345 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:350 msgid "Read <code>/etc/ethers</code> to configure the DHCP server." msgstr "读取 <code>/etc/ethers</code>来配置 DHCP 服务器。" @@ -6655,7 +6693,7 @@ msgstr "实时信息" msgid "Reassociation Deadline" msgstr "重关联截止时间" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:301 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:306 msgid "Rebind protection" msgstr "重绑定保护" @@ -6740,6 +6778,7 @@ msgid "" msgstr "拒绝前缀长度小于或等于指定值的路由决策" #: modules/luci-compat/luasrc/model/network/proto_relay.lua:153 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:611 #: protocols/luci-proto-relay/htdocs/luci-static/resources/protocol/relay.js:39 msgid "Relay" msgstr "中继" @@ -6830,6 +6869,10 @@ msgstr "某些运营商需要,例如:同轴线网络 DOCSIS 3" msgid "Required. Base64-encoded private key for this interface." msgstr "必须,此接口的 Base64 编码私钥。" +#: protocols/luci-proto-nebula/htdocs/luci-static/resources/protocol/nebula.js:40 +msgid "Required. Path to the .yml config file for this interface." +msgstr "必填。 此接口 .yml 配置文件的路径。" + #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:587 msgid "Required. Public key of the WireGuard peer." msgstr "必需。WireGuard 对端的公钥。" @@ -6911,7 +6954,7 @@ msgid "Reselection policy for primary slave" msgstr "主从属设备的重选策略" #: modules/luci-base/htdocs/luci-static/resources/luci.js:2197 -#: modules/luci-base/luasrc/view/sysauth.htm:39 +#: modules/luci-base/ucode/template/sysauth.ut:39 #: modules/luci-compat/luasrc/view/cbi/delegator.htm:17 #: modules/luci-compat/luasrc/view/cbi/footer.htm:30 #: modules/luci-compat/luasrc/view/cbi/simpleform.htm:66 @@ -6930,10 +6973,14 @@ msgstr "恢复到出厂设置" msgid "Resolv and Hosts Files" msgstr "HOSTS 和解析文件" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:356 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:361 msgid "Resolv file" msgstr "解析文件" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:292 +msgid "Resolve specified FQDNs to an IP." +msgstr "此列表将域名强制指向某个 IP 地址。" + #: modules/luci-base/htdocs/luci-static/resources/rpc.js:405 msgid "Resource not found" msgstr "未找到资源" @@ -6960,7 +7007,7 @@ msgstr "恢复" msgid "Restore backup" msgstr "恢复配置" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:393 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:398 msgid "" "Return answers to DNS queries matching the subnet from which the query was " "received if multiple IPs are available." @@ -7049,7 +7096,7 @@ msgstr "" msgid "Robustness" msgstr "健壮性" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:486 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:491 msgid "" "Root directory for files served via TFTP. <em>Enable TFTP server</em> and " "<em>TFTP server root</em> turn on the TFTP server and serve files from " @@ -7156,6 +7203,11 @@ msgstr "SHA256" msgid "SNR" msgstr "信噪比" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:258 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:569 +msgid "SRV" +msgstr "SRV" + #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/dropbear.js:10 #: modules/luci-mod-system/root/usr/share/luci/menu.d/luci-mod-system.json:38 msgid "SSH Access" @@ -7297,11 +7349,11 @@ msgstr "传输这台设备的主机名称" msgid "Server" msgstr "服务器" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:519 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:524 msgid "Server address" msgstr "服务器地址" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:513 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:518 msgid "Server name" msgstr "服务器名称" @@ -7393,7 +7445,7 @@ msgstr "设置" msgid "Setup routes for proxied IPv6 neighbours." msgstr "设置已代理 IPv6 邻居的路由。" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:30 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:31 msgid "Severely Errored Seconds (SES)" msgstr "严重误码秒(SES)" @@ -7407,7 +7459,6 @@ msgid "Short Preamble" msgstr "Short Preamble" #: 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 msgid "Show current backup file list" msgstr "显示当前备份文件列表" @@ -7441,7 +7492,7 @@ msgstr "信号" msgid "Signal / Noise" msgstr "信号/噪声" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:25 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:26 msgid "Signal Attenuation (SATN)" msgstr "信号衰减(SATN)" @@ -7458,7 +7509,7 @@ msgstr "信号:" msgid "Size" msgstr "大小" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:473 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:478 msgid "Size of DNS query cache" msgstr "DNS 查询缓存的大小" @@ -7475,12 +7526,12 @@ msgstr "跳过" msgid "Skip from backup files that are equal to those in /rom" msgstr "不备份与 /rom 目录下文件相同的文件" -#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:42 +#: themes/luci-theme-openwrt-2020/ucode/template/themes/openwrt2020/header.ut:35 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:46 msgid "Skip to content" msgstr "跳到内容" -#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:41 +#: themes/luci-theme-openwrt-2020/ucode/template/themes/openwrt2020/header.ut:34 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:45 msgid "Skip to navigation" msgstr "跳转到导航" @@ -7498,14 +7549,10 @@ msgstr "软件 VLAN" msgid "Some fields are invalid, cannot save values!" msgstr "一些字段的值无效,无法保存!" -#: modules/luci-base/luasrc/view/error404.htm:9 +#: modules/luci-base/ucode/template/error404.ut:10 msgid "Sorry, the object you requested was not found." msgstr "对不起,请求的目标未找到。" -#: modules/luci-base/luasrc/view/error500.htm:9 -msgid "Sorry, the server encountered an unexpected error." -msgstr "对不起,服务器遇到未知错误。" - #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:442 msgid "" "Sorry, there is no sysupgrade support present; a new firmware image must be " @@ -7543,7 +7590,7 @@ msgctxt "nft ip sport" msgid "Source port" msgstr "源端口" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:500 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:505 msgid "" "Special <abbr title=\"Preboot eXecution Environment\">PXE</abbr> boot " "options for Dnsmasq." @@ -7937,7 +7984,7 @@ msgstr "静态地址分配" msgid "Static address" msgstr "静态地址" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:598 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:669 msgid "" "Static leases are used to assign fixed IP addresses and symbolic hostnames " "to DHCP clients. They are also required for non-dynamic interface " @@ -7953,7 +8000,7 @@ msgstr "非活动站点限制" #: modules/luci-base/root/usr/share/luci/menu.d/luci-base.json:16 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:541 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:929 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:9 +#: modules/luci-mod-status/ucode/template/admin_status/index.ut:9 msgid "Status" msgstr "状态" @@ -7979,7 +8026,7 @@ msgstr "存储空间使用" msgid "Strict filtering" msgstr "严格过滤" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:422 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:427 msgid "Strict order" msgstr "严谨查序" @@ -7992,11 +8039,11 @@ msgstr "强" msgid "Submit" msgstr "提交" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:372 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:377 msgid "Suppress logging" msgstr "不记录日志" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:373 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:378 msgid "Suppress logging of the routine operation for the DHCP protocol." msgstr "禁止记录 DHCP 协议的日常操作。" @@ -8049,6 +8096,14 @@ msgstr "与 NTP 服务器同步" msgid "Sync with browser" msgstr "同步浏览器时间" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:293 +msgid "Syntax: <code>/fqdn[/fqdn…]/[ipaddr]</code>." +msgstr "语法: <code>/fqdn[/fqdn…]/[ipaddr]</code>." + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:569 +msgid "Syntax: <code>_service._proto.example.com</code>." +msgstr "语法:<code>_service._proto.example.com</code>." + #: modules/luci-base/root/usr/share/luci/menu.d/luci-base.json:26 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/10_system.js:17 #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:113 @@ -8074,9 +8129,9 @@ msgstr "系统属性" msgid "System log buffer size" msgstr "系统日志缓冲区大小" -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:79 -#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:86 -#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:71 +#: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/header.ut:67 +#: themes/luci-theme-material/ucode/template/themes/material/header.ut:81 +#: themes/luci-theme-openwrt-2020/ucode/template/themes/openwrt2020/header.ut:64 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:89 msgid "System running in recovery (initramfs) mode." msgstr "系统在恢复 (initramfs) 模式下运行。" @@ -8105,7 +8160,7 @@ msgstr "TCP 源端口" msgid "TCP:" msgstr "TCP:" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:485 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:490 msgid "TFTP server root" msgstr "TFTP 服务器根目录" @@ -8130,6 +8185,7 @@ msgstr "TX 队列长度" msgid "Table" msgstr "表" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:574 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:56 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:66 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:187 @@ -8205,15 +8261,15 @@ msgid "" "username instead of the user ID!" msgstr "HE.net 客户端更新设置已经被改变,您现在必须使用用户名代替用户 ID!" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:681 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:752 msgid "The IP address %h is already used by another static lease" msgstr "IP 地址 %h 已被另一个静态租约使用" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:690 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:761 msgid "The IP address is outside of any DHCP pool address range" msgstr "IP 地址不在任何 DHCP 池地址范围之内" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:520 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:525 msgid "The IP address of the boot server" msgstr "引导服务器的 IP 地址" @@ -8389,7 +8445,7 @@ msgstr "" "跳跃惩罚设置允许修改 batman-adv 对多跳路由与短路由的偏好。该值应用于每个转发 " "OGM 的 TQ,从而传播额外跳的成本(必须接收和重新传输数据包,这会浪费传播时长)" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:514 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:519 msgid "The hostname of the boot server" msgstr "引导服务器的主机名" @@ -8482,8 +8538,8 @@ msgstr "网络名称已被使用" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:139 msgid "" -"The network ports on this device can be combined to several <abbr " -"title=\"Virtual Local Area Network\">VLAN</abbr>s in which computers can " +"The network ports on this device can be combined to several <abbr title=" +"\"Virtual Local Area Network\">VLAN</abbr>s in which computers can " "communicate directly with each other. <abbr title=\"Virtual Local Area " "Network\">VLAN</abbr>s are often used to separate different network " "segments. Often there is by default one Uplink port for a connection to the " @@ -8544,7 +8600,7 @@ msgstr "" msgid "The selected %s mode is incompatible with %s encryption" msgstr "模式 %s 与 %s 加密方法不兼容" -#: modules/luci-base/luasrc/view/csrftoken.htm:11 +#: modules/luci-base/ucode/template/csrftoken.ut:11 msgid "The submitted security token is invalid or already expired!" msgstr "提交的安全令牌无效或已过期!" @@ -8622,8 +8678,8 @@ msgstr "" "系统上存在旧版 iptables 规则。 不鼓励混合使用 iptables 和 nftables 规则,这可" "能会导致流量过滤不完整。" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:746 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:778 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:817 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:849 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:130 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:179 msgid "There are no active leases" @@ -8633,8 +8689,8 @@ msgstr "没有已分配的租约" msgid "There are no changes to apply" msgstr "没有待应用的更改" -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:70 -#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:62 +#: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/header.ut:58 +#: themes/luci-theme-openwrt-2020/ucode/template/themes/openwrt2020/header.ut:55 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:80 msgid "" "There is no password set on this router. Please configure a root password to " @@ -8655,7 +8711,6 @@ msgid "This does not look like a valid PEM file" msgstr "这不是有效的 PEM 文件" #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:454 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:16 msgid "" "This is a list of shell glob patterns for matching files and directories to " "include during sysupgrade. Modified files in /etc/config/ and certain other " @@ -8698,7 +8753,7 @@ msgid "" "ends with <code>...:2/64</code>" msgstr "隧道代理分配的本地终端地址,通常以 <code>...:2/64</code> 结尾" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:266 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:268 msgid "This is the only DHCP server in the local network." msgstr "这是本地网络中唯一的 DHCP 服务器。" @@ -8777,8 +8832,8 @@ msgstr "时区" #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:440 msgid "" "To fully configure the local WireGuard interface from an existing (e.g. " -"provider supplied) configuration file, use the <strong><a class=\"full-" -"import\" href=\"#\">configuration import</a></strong> instead." +"provider supplied) configuration file, use the <strong><a class=\"full-import" +"\" href=\"#\">configuration import</a></strong> instead." msgstr "" "要从现有(例如供应商提供的)配置文件完全配置本地 WireGuard 接口,请使用" "<strong><a class=\"full-import\" href=\"#\">配置导入</a></strong>。" @@ -8944,7 +8999,7 @@ msgstr "无法确认外部 IP 地址" msgid "Unable to determine upstream interface" msgstr "无法确认上游接口" -#: modules/luci-base/luasrc/view/error404.htm:11 +#: modules/luci-base/ucode/template/error404.ut:12 msgid "Unable to dispatch" msgstr "无法调度" @@ -8999,7 +9054,7 @@ msgstr "无法保存内容:%s" msgid "Unable to verify PIN" msgstr "无法验证 PIN" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:32 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:33 msgid "Unavailable Seconds (UAS)" msgstr "不可用秒数(UAS)" @@ -9149,7 +9204,7 @@ msgid "" msgstr "" "按下 \"继续\",ifname 选项将被重命名,网络将重新启动以应用更新后的配置。" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:423 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:428 msgid "Upstream resolvers will be queried in the order of the resolv file." msgstr "将按照解析文件的顺序查询上游解析器。" @@ -9158,7 +9213,7 @@ msgstr "将按照解析文件的顺序查询上游解析器。" msgid "Uptime" msgstr "运行时间" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:344 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:349 msgid "Use <code>/etc/ethers</code>" msgstr "使用 <code>/etc/ethers</code> 配置" @@ -9270,7 +9325,7 @@ msgstr "使用系统证书" msgid "Use system certificates for inner-tunnel" msgstr "为内置隧道使用系统证书" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:599 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:670 msgid "" "Use the <em>Add</em> Button to add a new lease entry. The <em>MAC address</" "em> identifies the host, the <em>IPv4 address</em> specifies the fixed " @@ -9327,11 +9382,11 @@ msgstr "用户标识符" msgid "User key (PEM encoded)" msgstr "用户密钥(PEM)" -#: modules/luci-base/luasrc/view/sysauth.htm:23 +#: modules/luci-base/ucode/template/sysauth.ut:23 #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:112 #: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:101 #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:56 -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/sysauth.htm:18 +#: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/sysauth.ut:13 msgid "Username" msgstr "用户名" @@ -9414,7 +9469,7 @@ msgstr "VPNC(CISCO 3000 和其他 VPN)" #: protocols/luci-proto-vti/htdocs/luci-static/resources/protocol/vti.js:10 msgid "VTI" -msgstr "" +msgstr "VTI" #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:10 msgid "VXLAN (RFC7348)" @@ -9429,7 +9484,7 @@ msgstr "VXLAN 网络标识符" msgid "VXLANv6 (RFC7348)" msgstr "VXLANv6 (RFC7348)" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:398 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:403 msgid "" "Validate DNS replies and cache DNSSEC data, requires upstream to support " "DNSSEC." @@ -9462,7 +9517,7 @@ msgstr "Vendor" msgid "Vendor Class to send when requesting DHCP" msgstr "请求 DHCP 时发送的 Vendor Class 选项" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:403 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:408 msgid "Verify unsigned domain responses really come from unsigned domains." msgstr "验证未签名的域响应真的来自未签名域。" @@ -9539,6 +9594,10 @@ msgstr "警告:未保存的更改会在重启时丢失!" msgid "Weak" msgstr "弱" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:589 +msgid "Weight" +msgstr "权重" + #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1029 msgid "" "When delegating prefixes to multiple downstreams, interfaces with a higher " @@ -9671,7 +9730,7 @@ msgstr "无线网络已禁用" msgid "Wireless network is enabled" msgstr "无线网络已启用" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:278 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:280 msgid "Write received DNS queries to syslog." msgstr "将收到的 DNS 查询写入系统日志。" @@ -9708,8 +9767,16 @@ msgstr "" "在此启用或禁用已安装的启动脚本,更改在设备重启后生效。<br /><strong>警告:如" "果禁用了必要的启动脚本,比如“network”,可能会导致无法访问设备!</strong>" -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:90 -#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:97 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:559 +msgid "You may add multiple records for the same Target." +msgstr "你可以为同一目标添加多条记录。" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:596 +msgid "You may add multiple records for the same domain." +msgstr "你可以为同一个域添加多条记录。" + +#: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/header.ut:78 +#: themes/luci-theme-material/ucode/template/themes/material/header.ut:92 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:73 msgid "" "You must enable JavaScript in your browser or LuCI will not work properly." @@ -9738,7 +9805,19 @@ msgstr "ZRam 设置" msgid "ZRam Size" msgstr "ZRam 大小" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:449 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:558 +msgid "_proto: _tcp, _udp, _sctp, _quic, … ." +msgstr "_proto: _tcp, _udp, _sctp, _quic, … ." + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:557 +msgid "" +"_service: _sip, _ldap, _imap, _stun, _xmpp-client, … . (Note: while _http is " +"possible, no browsers support SRV records.)" +msgstr "" +"_service: _sip, _ldap, _imap, _stun, _xmpp-client, … . (注:虽然 _http 有可" +"能,但没有浏览器支持 SRV 记录。)" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:454 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:152 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:163 msgid "any" @@ -9849,8 +9928,8 @@ msgstr "比如: --proxy 10.10.10.10" msgid "e.g: dump" msgstr "比如: dump" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:726 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:756 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:797 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:827 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:101 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:148 msgid "expired" @@ -10063,9 +10142,9 @@ msgstr "唯一值" msgid "unknown" msgstr "未知" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:456 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:724 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:754 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:461 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:795 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:825 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:99 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:146 msgid "unlimited" @@ -10281,6 +10360,21 @@ msgstr "是" msgid "« Back" msgstr "« 后退" +#~ msgid "Back to configuration" +#~ msgstr "返回至配置" + +#~ msgid "Close list..." +#~ msgstr "关闭列表…" + +#~ msgid "Internal Server Error" +#~ msgstr "内部服务器错误" + +#~ msgid "No files found" +#~ msgstr "未找到文件" + +#~ msgid "Sorry, the server encountered an unexpected error." +#~ msgstr "对不起,服务器遇到未知错误。" + #~ msgid "Do not forward queries that cannot be answered by public resolvers." #~ msgstr "不转发公共域名服务器无法回应的请求。" @@ -10443,8 +10537,8 @@ msgstr "« 后退" #~ msgid "" #~ "<ul style=\"list-style-type:none;\"> <li><strong>server mode</strong>: " -#~ "Router advertises itself as the default IPv6 gateway via <abbr " -#~ "title=\"Router Advertisement, ICMPv6 Type 134\">RA</abbr> messages (to " +#~ "Router advertises itself as the default IPv6 gateway via <abbr title=" +#~ "\"Router Advertisement, ICMPv6 Type 134\">RA</abbr> messages (to " #~ "<code>ff02::1</code>) and provides <abbr title=\"Prefix Delegation\">PD</" #~ "abbr> to downstream devices.</li> <li><strong>relay mode</strong>: Router " #~ "relays <abbr title=\"Router Advertisement, ICMPv6 Type 134\">RA</abbr> " @@ -10465,12 +10559,12 @@ msgstr "« 后退" #~ msgid "" #~ "<ul style=\"list-style-type:none;\"> <li><strong>server mode</strong>: " -#~ "Router assigns IPs and delegates prefixes (<abbr title=\"Prefix " -#~ "Delegation\">PD</abbr>) to downstream interfaces.</li> <li><strong>relay " -#~ "mode</strong>: Router relays WAN interface config downstream. Helps " -#~ "support upstream links that lack <abbr title=\"Prefix Delegation\">PD</" -#~ "abbr>.</li> <li><strong>hybrid mode</strong>: Router does combination of " -#~ "server+relay.</li></ul>" +#~ "Router assigns IPs and delegates prefixes (<abbr title=\"Prefix Delegation" +#~ "\">PD</abbr>) to downstream interfaces.</li> <li><strong>relay mode</" +#~ "strong>: Router relays WAN interface config downstream. Helps support " +#~ "upstream links that lack <abbr title=\"Prefix Delegation\">PD</abbr>.</" +#~ "li> <li><strong>hybrid mode</strong>: Router does combination of server" +#~ "+relay.</li></ul>" #~ msgstr "" #~ "<ul style=\"list-style-type:none;\"> <li><strong>服务器模式</strong>:路由" #~ "器向下游接口分配IP和委托前缀(<abbr title=\"前缀授权\">PD</abbr>)。</li> " @@ -10561,18 +10655,18 @@ msgstr "« 后退" #~ "如果没有将布尔值 <code>ndproxy_slave</code> 设置为 1 的接口,则在内部恢复" #~ "为禁用状态。将 <abbr title=\"Neighbour Discovery Protocol\">NDP</abbr> 代" #~ "理视为 IPv6 的代理 ARP:将不同物理硬件段上的主机统一到同一 IP 子网中。由 " -#~ "<abbr title=\"Neighbour Solicitation, Type 135\">NS</abbr> 和 <abbr " -#~ "title=\"Neighbour Advertisement, Type 136\">NA</abbr> 消息组成。<abbr " -#~ "title=\"Neighbour Discovery Protocol\">NDP</abbr> 代理在布尔值 " -#~ "<code>master</code> 为 1(即上游)的接口上侦听 <abbr title=\"Neighbour " -#~ "Solicitation, Type 135\">NS</abbr>,然后查询该目标 IP 的从属/内部接口,最" -#~ "后发送 <abbr title=\"Neighbour Advertisement, Type 136\">NA</abbr> 消息。 " -#~ "<abbr title=\"Neighbour Discovery Protocol\">NDP</abbr> 实际上是用于 IPv6 " -#~ "的 ARP。<abbr title=\"Neighbour Solicitation, Type 135\">NS</abbr> 和 " -#~ "<abbr title=\"Neighbour Advertisement, Type 136\">NA</abbr> 用于检测链路上" -#~ "的可达性及重复地址,它们本身也是 SLAAC 自动配置的先决条件。<br /> <ul " -#~ "style=\"list-style-type:none;\"> <li><strong>已禁用</strong>:没有 <abbr " -#~ "title=\"Neighbour Discovery Protocol\">NDP</abbr> 消息将会被被代理到 " +#~ "<abbr title=\"Neighbour Solicitation, Type 135\">NS</abbr> 和 <abbr title=" +#~ "\"Neighbour Advertisement, Type 136\">NA</abbr> 消息组成。<abbr title=" +#~ "\"Neighbour Discovery Protocol\">NDP</abbr> 代理在布尔值 <code>master</" +#~ "code> 为 1(即上游)的接口上侦听 <abbr title=\"Neighbour Solicitation, " +#~ "Type 135\">NS</abbr>,然后查询该目标 IP 的从属/内部接口,最后发送 <abbr " +#~ "title=\"Neighbour Advertisement, Type 136\">NA</abbr> 消息。 <abbr title=" +#~ "\"Neighbour Discovery Protocol\">NDP</abbr> 实际上是用于 IPv6 的 ARP。" +#~ "<abbr title=\"Neighbour Solicitation, Type 135\">NS</abbr> 和 <abbr title=" +#~ "\"Neighbour Advertisement, Type 136\">NA</abbr> 用于检测链路上的可达性及重" +#~ "复地址,它们本身也是 SLAAC 自动配置的先决条件。<br /> <ul style=\"list-" +#~ "style-type:none;\"> <li><strong>已禁用</strong>:没有 <abbr title=" +#~ "\"Neighbour Discovery Protocol\">NDP</abbr> 消息将会被被代理到 " #~ "<code>ndproxy_slave</code> 为真的接口。</li> <li><strong>中继模式</" #~ "strong>:将 <code>master</code> 的 <abbr title=\"Neighbour Discovery " #~ "Protocol\">NDP</abbr> 消息代理到 <code>ndproxy_slave</code> 为真的接口。有" @@ -10604,9 +10698,9 @@ msgstr "« 后退" #~ "值为0 (<code>0</code>)。最小值1280。" #~ msgid "" -#~ "The maximum hops to be published in <abbr title=\"Router " -#~ "Advertisement\">RA</abbr> messages.<br />Default is 0 (<code>0</code>), " -#~ "meaning unspecified. Max 255." +#~ "The maximum hops to be published in <abbr title=\"Router Advertisement" +#~ "\">RA</abbr> messages.<br />Default is 0 (<code>0</code>), meaning " +#~ "unspecified. Max 255." #~ msgstr "" #~ "在 <abbr title=\"Router Advertisement\">RA</abbr> 报文中通告的最大跳数。" #~ "<br />默认为 0(<code>0</code>),表示未指定。最大为 255。" @@ -10636,17 +10730,17 @@ msgstr "« 后退" #~ "an IPv6 address to a host via DHCPv6.</li><ul>" #~ msgstr "" #~ "默认为无状态 + 有状态。<br /> <ul style=\"list-style-type:none;\"> " -#~ "<li><strong>无状态</strong>:路由器广播前缀,主机使用 <abbr " -#~ "title=\"Stateless Address Auto Config\">SLAAC</abbr> 来自分配自己的地址," -#~ "不使用 DHCPv6。</li> <li><strong>无状态 + 有状态</strong>:使用 SLAAC 的同" -#~ "时,路由器通过 DHCPv6 给一个主机分配一个 IPv6 地址。</li> <li><strong>仅有" -#~ "状态</strong>:不使用 SLAAC,路由器通过 DHCPv6 给一个主机分配一个 IPv6 地" -#~ "址。</li><ul>" +#~ "<li><strong>无状态</strong>:路由器广播前缀,主机使用 <abbr title=" +#~ "\"Stateless Address Auto Config\">SLAAC</abbr> 来自分配自己的地址,不使用 " +#~ "DHCPv6。</li> <li><strong>无状态 + 有状态</strong>:使用 SLAAC 的同时,路" +#~ "由器通过 DHCPv6 给一个主机分配一个 IPv6 地址。</li> <li><strong>仅有状态</" +#~ "strong>:不使用 SLAAC,路由器通过 DHCPv6 给一个主机分配一个 IPv6 地址。</" +#~ "li><ul>" #~ msgid "" -#~ "The maximum hops to be published in <abbr title=\"Router " -#~ "Advertisement\">RA</abbr> messages.<br>Default is 0 (<code>0</code>), " -#~ "meaning unspecified. Max 255." +#~ "The maximum hops to be published in <abbr title=\"Router Advertisement" +#~ "\">RA</abbr> messages.<br>Default is 0 (<code>0</code>), meaning " +#~ "unspecified. Max 255." #~ msgstr "" #~ "将以<abbr title=\"Router Advertisement\">RA</abbr>消息形式发布的最大跳数。" #~ "<br>默认值为0 (<code>0</code>),意味着未指定。最大值255。" @@ -10893,8 +10987,8 @@ msgstr "« 后退" #~ msgid "" #~ "The filesystem that was used to format the memory (<abbr title=\"for " -#~ "example\">e.g.</abbr> <samp><abbr title=\"Third Extended " -#~ "Filesystem\">ext3</abbr></samp>)" +#~ "example\">e.g.</abbr> <samp><abbr title=\"Third Extended Filesystem" +#~ "\">ext3</abbr></samp>)" #~ msgstr "" #~ "用于格式化存储器的文件系统(例如:<samp><abbr title=\"Third Extended " #~ "Filesystem\">ext3</abbr></samp>)" @@ -10994,11 +11088,11 @@ msgstr "« 后退" #~ msgstr "帧突发" #~ msgid "" -#~ "Further information about WireGuard interfaces and peers at <a " -#~ "href=\"http://wireguard.com\">wireguard.com</a>." +#~ "Further information about WireGuard interfaces and peers at <a href=" +#~ "\"http://wireguard.com\">wireguard.com</a>." #~ msgstr "" -#~ "有关 WireGuard 接口和 Peer 的更多信息:<a href=\"http://wireguard." -#~ "com\">wireguard.com</a>。" +#~ "有关 WireGuard 接口和 Peer 的更多信息:<a href=\"http://wireguard.com" +#~ "\">wireguard.com</a>。" #~ msgid "Generic 802.11%s Wireless Controller" #~ msgstr "通用 802.11%s 无线控制器" diff --git a/modules/luci-base/po/zh_Hant/base.po b/modules/luci-base/po/zh_Hant/base.po index 557e35916a..b02fb3caae 100644 --- a/modules/luci-base/po/zh_Hant/base.po +++ b/modules/luci-base/po/zh_Hant/base.po @@ -1,7 +1,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"PO-Revision-Date: 2022-09-06 13:27+0000\n" +"PO-Revision-Date: 2022-10-18 16:08+0000\n" "Last-Translator: Hulen <shift0106@gmail.com>\n" "Language-Team: Chinese (Traditional) <https://hosted.weblate.org/projects/" "openwrt/luci/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.14.1-dev\n" +"X-Generator: Weblate 4.15-dev\n" #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:643 msgctxt "Yet unknown nftables table family (\"family\" table \"name\")" @@ -22,7 +22,6 @@ msgid "%.1f dB" msgstr "%.1f 分貝" #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:123 -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:117 msgid "%d Bit" msgstr "%d 位元" @@ -231,6 +230,18 @@ msgstr "<abbr title=\"Router Advertisement\">RA</abbr> MTU" msgid "<abbr title=\"Router Advertisement\">RA</abbr>-Service" msgstr "<abbr title=\"Router Advertisement\">RA</abbr> 服務" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:294 +msgid "" +"<code>/#/</code> matches any domain. <code>/example.com/</code> returns " +"NXDOMAIN." +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:295 +msgid "" +"<code>/example.com/#</code> returns NULL addresses (<code>0.0.0.0</code> and " +"<code>::</code>) for example.com and its subdomains." +msgstr "" + #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/nftables.js:87 msgctxt "nft relational \">\" operator expression" msgid "<var>%s</var> greater than <strong>%s</strong>" @@ -396,7 +407,7 @@ msgstr "" msgid "ATM device number" msgstr "ATM裝置號碼" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:36 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:37 msgid "ATU-C System Vendor ID" msgstr "ATU-C 系統廠牌 ID" @@ -406,7 +417,7 @@ msgstr "ATU-C 系統廠牌 ID" msgid "Absent Interface" msgstr "缺少的介面" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:320 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:325 msgid "Accept DNS queries only from hosts whose address is on a local subnet." msgstr "僅在網卡所屬的子網路中提供 DNS 服務。" @@ -542,12 +553,10 @@ msgstr "加入實體" #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:171 #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:177 #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:274 -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:165 -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:268 msgid "Add key" msgstr "加入金鑰" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:410 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:415 msgid "Add local domain suffix to names served from hosts files." msgstr "將本地網域尾碼加入到主機檔案提供的名稱。" @@ -568,11 +577,11 @@ msgstr "新增至黑名單" msgid "Add to Whitelist" msgstr "新增至白名單" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:367 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:372 msgid "Additional hosts files" msgstr "額外的 hosts 檔案" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:417 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:422 msgid "Additional servers file" msgstr "額外的伺服器文件" @@ -602,7 +611,7 @@ msgstr "位址設定無效" msgid "Address to access local relay bridge" msgstr "將存取的本地中繼橋接位址" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:289 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:291 msgid "Addresses" msgstr "位址" @@ -635,7 +644,7 @@ msgstr "老化時間" msgid "Aggregate Originator Messages" msgstr "聚合發起方消息" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:27 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:28 msgid "Aggregate Transmit Power (ACTATP)" msgstr "彙總發送功率(ACTATP)" @@ -672,17 +681,17 @@ msgstr "別名介面" msgid "Alias of \"%s\"" msgstr "\"%s\" 的別名" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:427 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:432 msgid "All servers" msgstr "所有伺服器" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:378 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:383 msgid "" "Allocate IP addresses sequentially, starting from the lowest available " "address." msgstr "按照順序分配 IP 位址,從最低的可用位址開始。" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:377 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:382 msgid "Allocate IPs sequentially" msgstr "依序分配 IP" @@ -710,7 +719,7 @@ msgstr "允許舊型 802.11b 頻率" msgid "Allow listed only" msgstr "僅允許列表內" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:306 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:311 msgid "Allow localhost" msgstr "允許本機" @@ -754,7 +763,7 @@ msgstr "永遠關閉(內核:無)" msgid "Always on (kernel: default-on)" msgstr "永遠開啟 (內核:預設開啟)" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:538 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:543 msgid "Always send DHCP Options. Sometimes needed, with e.g. PXELinux." msgstr "始終傳送 DHCP 選項。 有時需要,例如 PXELinux。" @@ -783,7 +792,7 @@ msgid "An optional, short description for this device" msgstr "此裝置的可選簡短描述" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1484 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:20 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:21 msgid "Annex" msgstr "附件" @@ -899,7 +908,7 @@ msgstr "任何數據包" msgid "Any zone" msgstr "任意區域" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:532 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:537 msgid "Apply DHCP Options to this net. (Empty = all clients)." msgstr "始終傳送 DHCP 選項。 有時需要,例如 PXELinux。" @@ -991,11 +1000,11 @@ msgstr "認證" msgid "Authentication Type" msgstr "認證類型" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:265 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:267 msgid "Authoritative" msgstr "授權" -#: modules/luci-base/luasrc/view/sysauth.htm:17 +#: modules/luci-base/ucode/template/sysauth.ut:17 #: themes/luci-theme-bootstrap/htdocs/luci-static/resources/view/bootstrap/sysauth.js:11 msgid "Authorization Required" msgstr "需要授權" @@ -1065,7 +1074,7 @@ msgstr "平均:" msgid "Avoid Bridge Loops" msgstr "避免網橋環路" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:388 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:393 #, fuzzy msgid "" "Avoid uselessly triggering dial-on-demand links (filters SRV/SOA records and " @@ -1101,10 +1110,6 @@ msgstr "返回" msgid "Back to Overview" msgstr "返回至總覽" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:48 -msgid "Back to configuration" -msgstr "返回至設定" - #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:826 msgid "Back to peer configuration" msgstr "返回 peer 設定" @@ -1118,7 +1123,6 @@ msgid "Backup / Flash Firmware" msgstr "備份/燒錄韌體" #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:351 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:12 msgid "Backup file list" msgstr "備份檔列表" @@ -1165,7 +1169,6 @@ msgid "Beacon Interval" msgstr "訊號間隔" #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:352 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:46 msgid "" "Below is the determined list of files to backup. It consists of changed " "configuration files marked by opkg, essential base files and the user " @@ -1178,7 +1181,7 @@ msgstr "" msgid "Bind NTP server" msgstr "綁定NTP伺服器" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:326 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:331 msgid "Bind dynamically to interfaces rather than wildcard address." msgstr "動態繫結到介面而不是萬用字元位址 (推薦為 linux 預設值)。" @@ -1194,6 +1197,17 @@ msgstr "動態繫結到介面而不是萬用字元位址 (推薦為 linux 預設 msgid "Bind interface" msgstr "綁定介面" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:595 +msgid "" +"Bind service records to a domain name: specify the location of services." +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:556 +msgid "" +"Bind service records to a domain name: specify the location of services. See " +"<a href=\"%s\">RFC2782</a>." +msgstr "" + #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:59 #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:64 #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:64 @@ -1296,6 +1310,10 @@ msgstr "CA 憑證;如果留空會在第一次連線後儲存。" msgid "CLAT configuration failed" msgstr "CLAT 組態失敗" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:574 +msgid "CNAME or fqdn" +msgstr "" + #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/processes.js:72 msgid "CPU usage (%)" msgstr "CPU 使用率 (%)" @@ -1322,7 +1340,6 @@ msgstr "呼叫失敗" #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:295 #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:209 #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:487 -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:203 msgid "Cancel" msgstr "取消" @@ -1530,7 +1547,6 @@ msgstr "當要求DHCP時要傳送的用戶識別碼ID" #: modules/luci-base/htdocs/luci-static/resources/ui.js:4392 #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:173 #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:179 -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:167 msgid "Close" msgstr "關閉" @@ -1545,17 +1561,13 @@ msgid "" "persist connection" msgstr "幾秒後關閉閒置的連線, 打0代表永遠連線" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:49 -msgid "Close list..." -msgstr "關閉清單..." - #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:44 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:63 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2184 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:391 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:352 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:355 -#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:72 +#: themes/luci-theme-material/ucode/template/themes/material/header.ut:66 msgid "Collecting data..." msgstr "正在收集資料中…" @@ -1593,6 +1605,10 @@ msgstr "" msgid "Compute outgoing checksum (optional)." msgstr "計算傳出的校驗和(自選)." +#: protocols/luci-proto-nebula/htdocs/luci-static/resources/protocol/nebula.js:40 +msgid "Config File" +msgstr "" + #: modules/luci-base/htdocs/luci-static/resources/ui.js:4375 #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:454 msgid "Configuration" @@ -1837,7 +1853,7 @@ msgstr "DAE-連接埠" msgid "DAE-Secret" msgstr "DAE-金鑰" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:525 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:530 msgid "DHCP Options" msgstr "DHCP 選項" @@ -1877,11 +1893,11 @@ msgstr "DHCPv6-服務" msgid "DNS" msgstr "DNS" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:282 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:284 msgid "DNS forwardings" msgstr "DNS封包轉發" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:445 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:450 msgid "DNS query port" msgstr "<abbr title=\"Domain Name System\">DNS</abbr> 查詢埠號" @@ -1889,7 +1905,7 @@ msgstr "<abbr title=\"Domain Name System\">DNS</abbr> 查詢埠號" msgid "DNS search domains" msgstr "DNS 搜尋網域" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:438 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:443 msgid "DNS server port" msgstr "<abbr title=\"Domain Name System\">DNS</abbr> 伺服器埠號" @@ -1905,11 +1921,11 @@ msgstr "DNS 權重" msgid "DNS-Label / FQDN" msgstr "DNS-標籤 / FQDN" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:397 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:402 msgid "DNSSEC" msgstr "DNSSEC" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:402 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:407 msgid "DNSSEC check unsigned" msgstr "DNSSEC 檢查未簽章" @@ -1922,11 +1938,11 @@ msgid "DS-Lite AFTR address" msgstr "DS-Lite AFTR 位址" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1481 -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:44 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:45 msgid "DSL" msgstr "DSL" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:14 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:15 msgid "DSL Status" msgstr "DSL 狀態" @@ -1939,12 +1955,12 @@ msgid "DTIM Interval" msgstr "DTIM 間隔" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:59 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:700 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:771 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:136 msgid "DUID" msgstr "DHCP獨立式別碼DUID" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:21 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:22 msgid "Data Rate" msgstr "資料速率" @@ -2003,7 +2019,6 @@ msgstr "刪除" #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:205 #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:211 -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:199 msgid "Delete key" msgstr "刪除金鑰" @@ -2192,7 +2207,7 @@ msgstr "已停用" msgid "Disassociate On Low Acknowledgement" msgstr "低確認(Low Acknowledgement)時取消連線" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:302 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:307 msgid "" "Discard upstream responses containing <a href=\"%s\">RFC1918</a> addresses." msgstr "丟棄包含 <a href=\"%s\">RFC1918</a> 地址的上游響應。" @@ -2238,7 +2253,7 @@ msgstr "到最遠的網路距離以米表示." msgid "Distributed ARP Table" msgstr "分散式ARP表" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:543 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:548 msgid "" "Dnsmasq instance to which this boot section is bound. If unspecified, the " "section is valid for all dnsmasq instances." @@ -2256,7 +2271,7 @@ msgstr "" "\">DHCP</abbr> 伺服器和 <abbr title=\"Domain Name System\">DNS</abbr> 轉發" "器。" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:414 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:419 msgid "Do not cache negative replies, e.g. for non-existent domains." msgstr "不快取拒絕的回應,例如:不存在的網域。" @@ -2268,17 +2283,17 @@ msgstr "不快取拒絕的回應,例如:不存在的網域。" msgid "Do not create host route to peer (optional)." msgstr "不要建立主機(host)到節點(peer)的路由(任選)." -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:262 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:264 msgid "Do not forward DNS queries without dots or domain parts." msgstr "" "不轉發沒有 <abbr title=\"Domain Name System\">DNS</abbr> 名稱的 <abbr title=" "\"Domain Name System\">DNS</abbr> 請求。" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:383 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:388 msgid "Do not forward reverse lookups for local networks." msgstr "對本地網路不轉發反向查詢。" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:339 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:344 msgid "Do not listen on the specified interfaces." msgstr "不監聽這些介面。" @@ -2315,7 +2330,6 @@ msgid "Do you really want to delete \"%s\" ?" msgstr "您確定要刪除「%s」?" #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:206 -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:200 msgid "Do you really want to delete the following SSH key?" msgstr "您確定要刪除下列 SSH 金鑰?" @@ -2335,15 +2349,16 @@ msgstr "是否要取代目前的 PSK?" msgid "Do you want to replace the current keys?" msgstr "是否要取代目前金鑰?" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:593 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:606 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:664 msgid "Domain" msgstr "網域名稱" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:261 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:263 msgid "Domain required" msgstr "需要網域" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:311 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:316 msgid "Domain whitelist" msgstr "網域白名單" @@ -2580,7 +2595,7 @@ msgstr "啟用 NTP用戶端" msgid "Enable Single DES" msgstr "啟用單一 DES" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:480 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:485 msgid "Enable TFTP server" msgstr "啟用TFTP伺服器" @@ -2666,7 +2681,7 @@ msgstr "啟用多點播放流量(選項)." msgid "Enable the DF (Don't Fragment) flag of the encapsulating packets." msgstr "啟用封裝封包的 DF(不分段)標誌." -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:481 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:486 msgid "Enable the built-in single-instance TFTP server." msgstr "啟用內建的單一執行個體 TFTP 伺服器。" @@ -2783,7 +2798,7 @@ msgstr "錯誤" msgid "Error getting PublicKey" msgstr "獲取公鑰時出錯" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:29 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:30 msgid "Errored seconds (ES)" msgstr "錯誤秒數 (ES)" @@ -2805,11 +2820,11 @@ msgstr "每 30 秒(慢速,0)" msgid "Every second (fast, 1)" msgstr "每一秒(快,1)" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:338 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:343 msgid "Exclude interfaces" msgstr "排除介面" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:307 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:312 msgid "" "Exempt <code>127.0.0.0/8</code> and <code>::1</code> from rebinding checks, " "e.g. for RBL services." @@ -2821,7 +2836,7 @@ msgstr "" msgid "Existing device" msgstr "現有裝置" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:409 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:414 msgid "Expand hosts" msgstr "延伸主機" @@ -2955,7 +2970,7 @@ msgstr "設定操作模式失敗" msgid "File" msgstr "檔案" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:418 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:423 msgid "" "File listing upstream resolvers, optionally domain-specific, e.g. " "<code>server=1.2.3.4</code>, <code>server=/domain/1.2.3.4</code>." @@ -2967,20 +2982,20 @@ msgstr "" msgid "File not accessible" msgstr "無法存取檔案" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:349 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:354 msgid "File to store DHCP lease information." msgstr "用於儲存 DHCP 租用資訊的檔案。" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:357 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:362 msgid "File with upstream resolvers." msgstr "與上游解析器一起歸檔。" #: modules/luci-base/htdocs/luci-static/resources/ui.js:2846 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:507 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:512 msgid "Filename" msgstr "檔案名稱" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:493 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:498 msgid "Filename of the boot image advertised to clients." msgstr "開機影像檔通知給用戶端。" @@ -2989,11 +3004,11 @@ msgstr "開機影像檔通知給用戶端。" msgid "Filesystem" msgstr "檔案系統" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:382 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:387 msgid "Filter private" msgstr "私人過濾器" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:387 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:392 msgid "Filter useless" msgstr "無用過濾器" @@ -3057,7 +3072,7 @@ msgstr "韌體檔案" msgid "Firmware Version" msgstr "韌體版本" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:446 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:451 msgid "Fixed source port for outbound DNS queries." msgstr "外發DNS請求的固定來源埠號。" @@ -3083,7 +3098,7 @@ msgstr "韌體工具" msgid "Flashing…" msgstr "燒錄中…" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:537 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:542 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:686 msgid "Force" msgstr "強制" @@ -3128,7 +3143,7 @@ msgstr "強制升級" msgid "Force use of NAT-T" msgstr "強制使用 NAT-T" -#: modules/luci-base/luasrc/view/csrftoken.htm:8 +#: modules/luci-base/ucode/template/csrftoken.ut:8 msgid "Form token mismatch" msgstr "表單權杖(token )不匹配" @@ -3162,7 +3177,7 @@ msgid "" "downstream interfaces." msgstr "在指定的主介面和下游介面之間轉發 DHCPv6 訊息。" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:28 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:29 msgid "Forward Error Correction Seconds (FECS)" msgstr "前向糾錯校正秒數 (FECS)" @@ -3321,18 +3336,16 @@ msgstr "全域設定" msgid "Global network options" msgstr "全域網路選項" -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:82 -#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:89 -#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:74 +#: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/header.ut:70 +#: themes/luci-theme-material/ucode/template/themes/material/header.ut:84 +#: themes/luci-theme-openwrt-2020/ucode/template/themes/openwrt2020/header.ut:67 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:92 -#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:72 msgid "Go to firmware upgrade..." msgstr "進入固件升級..." -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:72 -#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:64 +#: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/header.ut:60 +#: themes/luci-theme-openwrt-2020/ucode/template/themes/openwrt2020/header.ut:57 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:82 -#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:62 msgid "Go to password configuration..." msgstr "前往密碼設定..." @@ -3472,7 +3485,7 @@ msgstr "HTTP(S) 存取" msgid "Hang Up" msgstr "掛斷" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:33 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:34 msgid "Header Error Code Errors (HEC)" msgstr "標頭錯誤原碼錯誤(HEC)" @@ -3523,7 +3536,7 @@ msgstr "主機" msgid "Host expiry timeout" msgstr "過期主機" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:508 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:513 msgid "Host requests this filename from the boot server." msgstr "主機從引導伺服器請求此文件名。" @@ -3532,8 +3545,8 @@ msgid "Host-Uniq tag content" msgstr "Host-Uniq 標籤內容" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:38 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:559 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:607 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:630 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:678 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/10_system.js:54 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:87 #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:135 @@ -3548,7 +3561,7 @@ msgstr "當請求DHCP服務時傳送的主機名稱" msgid "Hostnames" msgstr "主機名稱" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:551 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:622 msgid "" "Hostnames are used to bind a domain name to an IP address. This setting is " "redundant for hostnames already configured with static leases, but it can be " @@ -3614,7 +3627,7 @@ msgstr "IP 位址" msgid "IP Protocol" msgstr "IP 協定" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:258 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:260 msgid "IP Sets" msgstr "IP 集" @@ -3622,7 +3635,7 @@ msgstr "IP 集" msgid "IP Type" msgstr "IP 類型" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:563 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:634 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:178 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:204 msgid "IP address" @@ -3648,15 +3661,15 @@ msgctxt "nft meta l4proto" msgid "IP protocol" msgstr "IP 協議" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:589 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:660 msgid "IP set" msgstr "IP 集" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:295 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:300 msgid "IP sets" msgstr "IP 集" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:432 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:437 msgid "IPs to override with NXDOMAIN" msgstr "偽造的NX網域覆蓋" @@ -3697,7 +3710,7 @@ msgstr "IPv4 上游" #: modules/luci-base/htdocs/luci-static/resources/protocol/static.js:178 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:39 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:665 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:736 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:88 #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:164 msgid "IPv4 address" @@ -3868,7 +3881,7 @@ msgstr "IPv6 源路由" msgid "IPv6 suffix" msgstr "IPv6 尾碼" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:706 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:777 msgid "IPv6 suffix (hex)" msgstr "" "<abbr title=\"Internet Protocol Version 6\">IPv6</abbr> 尾碼 (十六進位)" @@ -3973,7 +3986,7 @@ msgstr "" "用高資料傳輸速率的<abbr title=\"Random Access Memory\">RAM</abbr>來存取交換設" "備,交換資料將是一個非常緩慢的過程。" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:363 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:368 msgid "Ignore <code>/etc/hosts</code>" msgstr "忽視 <code>/etc/hosts</code>" @@ -3981,7 +3994,7 @@ msgstr "忽視 <code>/etc/hosts</code>" msgid "Ignore interface" msgstr "忽視介面" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:352 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:357 msgid "Ignore resolv file" msgstr "忽視解析文件" @@ -4031,7 +4044,7 @@ msgstr "" "在橋接 LAN 設置中,建議啟用橋接環路避免功能,以避免可能導致整個 LAN 停止的廣" "播環路。" -#: modules/luci-base/luasrc/view/csrftoken.htm:13 +#: modules/luci-base/ucode/template/csrftoken.ut:13 msgid "" "In order to prevent unauthorized access to the system, your request has been " "blocked. Click \"Continue »\" below to return to the previous page." @@ -4141,7 +4154,7 @@ msgstr "內部憑證制約 (萬用字元)" msgid "Install protocol extensions..." msgstr "安裝延伸協定中..." -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:542 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:547 msgid "Instance" msgstr "實例" @@ -4228,10 +4241,6 @@ msgstr "介面" msgid "Internal" msgstr "內部" -#: modules/luci-base/luasrc/view/error500.htm:8 -msgid "Internal Server Error" -msgstr "內部伺服器發生錯誤" - #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:285 msgid "Interval For Sending Learning Packets" msgstr "傳送學習中封包的時間間隔" @@ -4302,8 +4311,8 @@ msgstr "無效的指令" msgid "Invalid hexadecimal value" msgstr "錯誤的十六進制數值" -#: modules/luci-base/luasrc/view/sysauth.htm:12 -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/sysauth.htm:37 +#: modules/luci-base/ucode/template/sysauth.ut:12 +#: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/sysauth.ut:32 msgid "Invalid username and/or password! Please try again." msgstr "不正確的使用者名稱和/或者密碼!請再試一次。" @@ -4325,8 +4334,8 @@ msgid "" "flash memory, please verify the image file!" msgstr "您正使用不適用於此 Flash 的映像檔,請檢查映像檔!" -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:89 -#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:96 +#: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/header.ut:77 +#: themes/luci-theme-material/ucode/template/themes/material/header.ut:91 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:72 msgid "JavaScript required!" msgstr "需要Java腳本!" @@ -4458,11 +4467,17 @@ msgstr "語言" msgid "Language and Style" msgstr "語言與主題" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:560 +msgid "" +"Larger weights (of the same prio) are given a proportionately higher " +"probability of being selected." +msgstr "" + #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:575 msgid "Last member interval" msgstr "最後成員間隔" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:23 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:24 msgid "Latency" msgstr "延遲" @@ -4478,11 +4493,11 @@ msgstr "學習" msgid "Learn routes" msgstr "學習路由" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:348 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:353 msgid "Lease file" msgstr "租賃檔案" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:697 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:768 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:679 msgid "Lease time" msgstr "租賃時間長度" @@ -4528,19 +4543,19 @@ msgstr "圖例:" msgid "Limit" msgstr "限制" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:24 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:25 msgid "Line Attenuation (LATN)" msgstr "線路衰減(LATN)" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:18 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:19 msgid "Line Mode" msgstr "線路模式" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:17 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:18 msgid "Line State" msgstr "線路狀態" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:19 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:20 msgid "Line Uptime" msgstr "線路已連線時間" @@ -4561,12 +4576,12 @@ msgctxt "nft @ll,off,len" msgid "Link layer header bits %d-%d" msgstr "鏈路層標頭位 %d-%d" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:433 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:438 msgid "List of IP addresses to convert into NXDOMAIN responses." msgstr "列出供應偽裝NX網域成果的主機群." -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:296 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:581 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:301 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:652 msgid "List of IP sets to populate with the specified domain IPs." msgstr "使用指定網域 IP 填充的 IP 集列表。" @@ -4598,15 +4613,11 @@ msgstr "" msgid "List of SSH key files for auth" msgstr "列出SSH金鑰以便驗證" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:312 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:317 msgid "List of domains to allow RFC1918 responses for." msgstr "列出允許RFC1918文件虛擬IP回應的網域." -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:290 -msgid "List of domains to force to an IP address." -msgstr "列出網域以便強制到某個IP位址." - -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:283 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:285 msgid "List of upstream resolvers to forward queries to." msgstr "列出 <abbr title=\"Domain Name System\">DNS</abbr> 伺服器以便轉發請求." @@ -4614,7 +4625,7 @@ msgstr "列出 <abbr title=\"Domain Name System\">DNS</abbr> 伺服器以便轉 msgid "Listen Port" msgstr "監聽連接埠" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:332 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:337 msgid "Listen interfaces" msgstr "監聽介面" @@ -4622,7 +4633,7 @@ msgstr "監聽介面" msgid "Listen only on the given interface or, if unspecified, on all" msgstr "僅監聽給定的介面,如果未指定則監聽所有介面" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:333 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:338 msgid "" "Listen only on the specified interfaces, and loopback if not excluded " "explicitly." @@ -4632,7 +4643,7 @@ msgstr "僅監聽這些介面和回送 (loopback)。" msgid "ListenPort setting is invalid" msgstr "ListenPort 設定無效" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:439 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:444 msgid "Listening port for inbound DNS queries." msgstr "進入的DNS請求聆聽埠." @@ -4659,9 +4670,9 @@ msgid "Loading directory contents…" msgstr "讀取目錄內容…" #: modules/luci-base/htdocs/luci-static/resources/luci.js:1942 -#: modules/luci-base/luasrc/view/view.htm:4 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:12 -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/sysauth.htm:45 +#: modules/luci-base/ucode/template/view.ut:4 +#: modules/luci-mod-status/ucode/template/admin_status/index.ut:12 +#: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/sysauth.ut:40 msgid "Loading view…" msgstr "載入畫面中…" @@ -4719,19 +4730,19 @@ msgstr "本地時間" msgid "Local ULA" msgstr "本地 ULA" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:273 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:275 msgid "Local domain" msgstr "本地網域" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:274 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:276 msgid "Local domain suffix appended to DHCP names and hosts file entries." msgstr "附加到 DHCP 名稱和 hosts 檔案項目的本地域字尾." -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:269 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:271 msgid "Local server" msgstr "本地伺服器" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:319 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:324 msgid "Local service only" msgstr "僅限本機服務" @@ -4739,7 +4750,7 @@ msgstr "僅限本機服務" msgid "Local wireguard key" msgstr "本機 wireguard 金鑰" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:392 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:397 msgid "Localise queries" msgstr "本地化網路請求" @@ -4751,7 +4762,7 @@ msgstr "鎖定 BSSID" msgid "Log output level" msgstr "日誌輸出等級" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:277 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:279 msgid "Log queries" msgstr "日誌查詢" @@ -4777,8 +4788,8 @@ msgstr "" msgid "Logical network to which the tunnel will be added (bridged) (optional)." msgstr "(已橋接)隧道的邏輯網路將會被新增(可選的)." -#: modules/luci-base/luasrc/view/sysauth.htm:38 -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/sysauth.htm:41 +#: modules/luci-base/ucode/template/sysauth.ut:38 +#: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/sysauth.ut:36 msgid "Login" msgstr "登入" @@ -4790,7 +4801,7 @@ msgstr "登出" msgid "Loose filtering" msgstr "寬鬆過濾" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:31 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:32 msgid "Loss of Signal Seconds (LOSS)" msgstr "信號秒漏失(LOSS)" @@ -4798,6 +4809,10 @@ msgstr "信號秒漏失(LOSS)" msgid "Lowest leased address as offset from the network address." msgstr "DHCP 起始位置。" +#: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/footer.ut:12 +msgid "Lua compatibility mode active" +msgstr "" + #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:48 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:83 msgid "MAC" @@ -4822,7 +4837,7 @@ msgstr "MAC VLAN" #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:591 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:40 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:619 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:690 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1164 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2177 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:56 @@ -4881,6 +4896,10 @@ msgstr "MII寄存器間隔" msgid "MTU" msgstr "MTU最大傳輸單元" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:259 +msgid "MX" +msgstr "" + #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:303 msgid "" "Make sure to clone the root filesystem using something like the commands " @@ -4905,23 +4924,23 @@ msgstr "主要" msgid "Max <abbr title=\"Router Advertisement\">RA</abbr> interval" msgstr "最長 <abbr title=\"Router Advertisement\">RA</abbr> 間隔" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:22 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:23 msgid "Max. Attainable Data Rate (ATTNDR)" msgstr "最高可達到的數據速率 (ATTNDR)" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:452 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:457 msgid "Max. DHCP leases" msgstr "" "<abbr title=\"maximal\">最大</abbr> <abbr title=\"Dynamic Host Configuration " "Protocol\">DHCP</abbr> 租約" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:459 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:464 msgid "Max. EDNS0 packet size" msgstr "" "<abbr title=\"maximal\">最大</abbr> <abbr title=\"Extension Mechanisms for " "Domain Name System\">EDNS0</abbr> 封包大小" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:466 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:471 msgid "Max. concurrent queries" msgstr "<abbr title=\"maximal\">最大</abbr>同時查詢數量" @@ -4933,15 +4952,15 @@ msgstr "最大年齡" msgid "Maximum allowed Listen Interval" msgstr "允許的最大監聽間隔" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:453 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:458 msgid "Maximum allowed number of active DHCP leases." msgstr "允許啟用DHCP釋放的最大數量。" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:467 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:472 msgid "Maximum allowed number of concurrent DNS queries." msgstr "允許同時齊發的DNS請求的最大數量。" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:460 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:465 msgid "Maximum allowed size of EDNS0 UDP packets." msgstr "允許EDNS.0 協定的UDP封包最大數量。" @@ -4970,7 +4989,7 @@ msgstr "" msgid "Maximum transmit power" msgstr "最大發射功率" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:389 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:394 msgid "May prevent VoIP or other services from working." msgstr "可能造成 VoIP 或其他服務無法運作。" @@ -5286,12 +5305,15 @@ msgstr "新網路的名稱" msgid "Name of the tunnel device" msgstr "通道裝置名稱" -#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:46 +#: themes/luci-theme-openwrt-2020/ucode/template/themes/openwrt2020/header.ut:39 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:50 -#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:44 msgid "Navigation" msgstr "導覽" +#: protocols/luci-proto-nebula/htdocs/luci-static/resources/protocol/nebula.js:10 +msgid "Nebula Network" +msgstr "" + #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:653 msgid "Neighbour cache validity" msgstr "鄰近快取有效性" @@ -5327,7 +5349,7 @@ msgstr "網路工具" msgid "Network address" msgstr "網路地址" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:492 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:497 msgid "Network boot image" msgstr "網路開機映像檔" @@ -5367,7 +5389,7 @@ msgstr "網路 ifname 設定遷移" msgid "Network interface" msgstr "網路界面" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:531 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:536 msgid "Network-ID" msgstr "網路-ID" @@ -5375,7 +5397,7 @@ msgstr "網路-ID" msgid "Never" msgstr "永不" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:270 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:272 msgid "" "Never forward matching domains and subdomains, resolve from DHCP or hosts " "files only." @@ -5423,11 +5445,10 @@ msgstr "無 NAT-T" msgid "No RX signal" msgstr "沒有 RX 信號" -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:80 -#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:87 -#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:72 +#: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/header.ut:68 +#: themes/luci-theme-material/ucode/template/themes/material/header.ut:82 +#: themes/luci-theme-openwrt-2020/ucode/template/themes/openwrt2020/header.ut:65 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:90 -#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:70 msgid "" "No changes to settings will be stored and are lost after rebooting. This " "mode should only be used to install a firmware upgrade" @@ -5470,10 +5491,6 @@ msgstr "沒有可用的項目" msgid "No entries in this directory" msgstr "在這目錄中缺乏項目" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:82 -msgid "No files found" -msgstr "未找到檔案" - #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:833 msgid "" "No fixed interface listening port defined, peers might not be able to " @@ -5510,7 +5527,7 @@ msgstr "缺乏更多可用的實體界面" msgid "No more slaves available, can not save interface" msgstr "缺乏更多可用的實體界面, 無法儲存界面" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:413 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:418 msgid "No negative cache" msgstr "無負向快取" @@ -5518,10 +5535,9 @@ msgstr "無負向快取" msgid "No nftables ruleset loaded." msgstr "未加載 nftables 規則集。" -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:69 -#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:61 +#: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/header.ut:57 +#: themes/luci-theme-openwrt-2020/ucode/template/themes/openwrt2020/header.ut:54 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:79 -#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:59 msgid "No password set!" msgstr "没有設定密碼!" @@ -5531,8 +5547,6 @@ msgstr "尚未定義對端。" #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:146 #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:283 -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:140 -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:277 msgid "No public keys present yet." msgstr "尚無可用公鑰。" @@ -5562,7 +5576,7 @@ msgstr "未分配區域" msgid "Noise" msgstr "雜訊比" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:26 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:27 msgid "Noise Margin (SNR)" msgstr "訊號雜訊比 (SNR)" @@ -5570,11 +5584,11 @@ msgstr "訊號雜訊比 (SNR)" msgid "Noise:" msgstr "雜訊比:" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:34 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:35 msgid "Non Pre-emptive CRC errors (CRC_P)" msgstr "非搶先CRC錯誤 (CRC_P)" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:325 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:330 msgid "Non-wildcard" msgstr "非-萬用字元" @@ -5589,7 +5603,7 @@ msgstr "無" msgid "Normal" msgstr "正常" -#: modules/luci-base/luasrc/view/error404.htm:8 +#: modules/luci-base/ucode/template/error404.ut:9 msgid "Not Found" msgstr "尚未發現" @@ -5639,7 +5653,7 @@ msgstr "名稱伺服器查詢" msgid "Number of IGMP membership reports" msgstr "IGMP成員數量報告" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:474 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:479 msgid "Number of cached DNS entries, 10000 is maximum, 0 is no caching." msgstr "快取DNS項目數量(最大值為10000,輸入0代表不快取)。" @@ -5688,7 +5702,7 @@ msgstr "狀態延遲" msgid "On-link" msgstr "連接路線" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:672 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:743 msgid "One of hostname or MAC address must be specified!" msgstr "主機名稱或 mac 位址至少要有一個被指定!" @@ -5724,7 +5738,6 @@ msgid "Open iptables rules overview…" msgstr "打開 iptables 規則概述…" #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:472 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:19 msgid "Open list..." msgstr "開啟清單..." @@ -5883,7 +5896,7 @@ msgstr "可選性. 用於進出封包的UDP埠號." msgid "Options" msgstr "選項" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:526 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:531 msgid "" "Options for the Network-ID. (Note: needs also Network-ID.) E.g. " "\"<code>42,192.168.1.4</code>\" for NTP server, \"<code>3,192.168.4.4</code>" @@ -5895,10 +5908,14 @@ msgstr "" "「運行 dnsmasq 的系統位址」。。" #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:125 -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:119 msgid "Options:" msgstr "選項:" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:584 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:616 +msgid "Ordinal: lower comes first." +msgstr "" + #: protocols/luci-proto-batman-adv/htdocs/luci-static/resources/protocol/batadv.js:55 msgid "Originator Interval" msgstr "發起人間隔" @@ -6170,13 +6187,13 @@ msgctxt "MACVLAN mode" msgid "Pass-through (Mirror physical device to single MAC VLAN)" msgstr "直通 (Pass-through, 將物理裝置鏡像到單個 MAC VLAN)" -#: modules/luci-base/luasrc/view/sysauth.htm:29 +#: modules/luci-base/ucode/template/sysauth.ut:29 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1690 #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/password.js:51 #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:114 #: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:103 #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:58 -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/sysauth.htm:24 +#: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/sysauth.ut:19 msgid "Password" msgstr "密碼" @@ -6204,7 +6221,6 @@ msgid "Password2" msgstr "密碼2" #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:266 -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:260 msgid "Paste or drag SSH key file…" msgstr "貼上或拖曳 SSH 金鑰至此…" @@ -6350,7 +6366,7 @@ msgstr "Ping" msgid "Pkts." msgstr "Pkts(流量單位)." -#: modules/luci-base/luasrc/view/sysauth.htm:19 +#: modules/luci-base/ucode/template/sysauth.ut:19 msgid "Please enter your username and password." msgstr "請輸入您的用戶名稱和密碼。" @@ -6367,6 +6383,7 @@ msgctxt "Chain hook policy" msgid "Policy: <strong>%h</strong> (%h)" msgstr "原則: <strong>%h</strong> (%h)" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:579 #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/dropbear.js:21 msgid "Port" msgstr "連接埠" @@ -6383,11 +6400,11 @@ msgstr "埠狀態:" msgid "Potential negation of: %s" msgstr "可能反取: %s" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:37 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:38 msgid "Power Management Mode" msgstr "電源管理模式" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:35 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:36 msgid "Pre-emptive CRC errors (CRCP_P)" msgstr "搶先式CRC錯誤(CRCP_P)" @@ -6464,6 +6481,8 @@ msgid "Primary becomes active slave whenever it comes back up (always, 0)" msgstr "邏輯主控在恢復後, 始終變為活動的實體界面 (永遠, 0)" #: modules/luci-mod-network/htdocs/luci-static/resources/tools/network.js:508 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:584 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:616 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:129 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:197 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:223 @@ -6556,7 +6575,6 @@ msgid "Public key: %h" msgstr "公開金鑰:%h" #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:290 -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:284 msgid "" "Public keys allow for the passwordless SSH logins with a higher security " "compared to the use of plain passwords. In order to upload a new key to the " @@ -6583,7 +6601,7 @@ msgstr "QMI手機" msgid "Quality" msgstr "品質" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:428 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:433 msgid "Query all available upstream resolvers." msgstr "" "查詢所有可用的上游 <abbr title=\"Domain Name System\">DNS</abbr> 伺服器。" @@ -6666,7 +6684,7 @@ msgstr "隨機化源埠映射" msgid "Raw hex-encoded bytes. Leave empty unless your ISP require this" msgstr "原生十六進制-編碼的位元組. 除非您的ISP要求否則將其留空" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:345 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:350 msgid "Read <code>/etc/ethers</code> to configure the DHCP server." msgstr "讀取 <code>/etc/ether 以</code>配置 DHCP 伺服器。" @@ -6682,7 +6700,7 @@ msgstr "即時圖表" msgid "Reassociation Deadline" msgstr "重新關聯期限" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:301 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:306 msgid "Rebind protection" msgstr "重新綁護" @@ -6767,6 +6785,7 @@ msgid "" msgstr "拒絕前綴長度小於或等於指定值的路由決策" #: modules/luci-compat/luasrc/model/network/proto_relay.lua:153 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:611 #: protocols/luci-proto-relay/htdocs/luci-static/resources/protocol/relay.js:39 msgid "Relay" msgstr "延遲" @@ -6857,6 +6876,10 @@ msgstr "對特定的ISP需要,例如.DOCSIS 3 加速有線電視寬頻網路" msgid "Required. Base64-encoded private key for this interface." msgstr "必需的. 對此界面的以Base64編碼的私鑰." +#: protocols/luci-proto-nebula/htdocs/luci-static/resources/protocol/nebula.js:40 +msgid "Required. Path to the .yml config file for this interface." +msgstr "" + #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:587 msgid "Required. Public key of the WireGuard peer." msgstr "必需。WireGuard 對端的公開金鑰。" @@ -6938,7 +6961,7 @@ msgid "Reselection policy for primary slave" msgstr "實體界面的重選政策" #: modules/luci-base/htdocs/luci-static/resources/luci.js:2197 -#: modules/luci-base/luasrc/view/sysauth.htm:39 +#: modules/luci-base/ucode/template/sysauth.ut:39 #: modules/luci-compat/luasrc/view/cbi/delegator.htm:17 #: modules/luci-compat/luasrc/view/cbi/footer.htm:30 #: modules/luci-compat/luasrc/view/cbi/simpleform.htm:66 @@ -6957,10 +6980,14 @@ msgstr "回復預設值" msgid "Resolv and Hosts Files" msgstr "解析和Hosts檔案" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:356 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:361 msgid "Resolv file" msgstr "解析檔" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:292 +msgid "Resolve specified FQDNs to an IP." +msgstr "列出網域以便強制到某個IP位址." + #: modules/luci-base/htdocs/luci-static/resources/rpc.js:405 msgid "Resource not found" msgstr "找不到資源" @@ -6987,7 +7014,7 @@ msgstr "還原" msgid "Restore backup" msgstr "還原之前備份設定" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:393 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:398 msgid "" "Return answers to DNS queries matching the subnet from which the query was " "received if multiple IPs are available." @@ -7076,7 +7103,7 @@ msgstr "" msgid "Robustness" msgstr "加強性" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:486 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:491 msgid "" "Root directory for files served via TFTP. <em>Enable TFTP server</em> and " "<em>TFTP server root</em> turn on the TFTP server and serve files from " @@ -7183,6 +7210,11 @@ msgstr "SHA256" msgid "SNR" msgstr "信躁比 (SNR)" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:258 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:569 +msgid "SRV" +msgstr "" + #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/dropbear.js:10 #: modules/luci-mod-system/root/usr/share/luci/menu.d/luci-mod-system.json:38 msgid "SSH Access" @@ -7202,7 +7234,6 @@ msgstr "SSH用戶名稱" #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:289 #: modules/luci-mod-system/root/usr/share/luci/menu.d/luci-mod-system.json:51 -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:283 msgid "SSH-Keys" msgstr "SSH 金鑰" @@ -7325,11 +7356,11 @@ msgstr "傳送這台設備的主機名稱" msgid "Server" msgstr "伺服器" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:519 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:524 msgid "Server address" msgstr "伺服器位址" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:513 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:518 msgid "Server name" msgstr "伺服器名稱" @@ -7421,7 +7452,7 @@ msgstr "設定" msgid "Setup routes for proxied IPv6 neighbours." msgstr "設定已代理 IPv6 鄰居的路由。" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:30 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:31 msgid "Severely Errored Seconds (SES)" msgstr "嚴重錯誤秒數(SES)" @@ -7435,7 +7466,6 @@ msgid "Short Preamble" msgstr "簡短前序編碼" #: 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 msgid "Show current backup file list" msgstr "顯示現今的備份檔清單" @@ -7469,7 +7499,7 @@ msgstr "訊號" msgid "Signal / Noise" msgstr "信號 /雜訊比" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:25 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:26 msgid "Signal Attenuation (SATN)" msgstr "信號衰減(交互式SATN)" @@ -7486,7 +7516,7 @@ msgstr "信號:" msgid "Size" msgstr "容量" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:473 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:478 msgid "Size of DNS query cache" msgstr "DNS輪詢的快取大小" @@ -7503,15 +7533,13 @@ msgstr "跳過" msgid "Skip from backup files that are equal to those in /rom" msgstr "不備份與 /rom 目錄下檔案相同的檔案" -#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:42 +#: themes/luci-theme-openwrt-2020/ucode/template/themes/openwrt2020/header.ut:35 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:46 -#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:40 msgid "Skip to content" msgstr "跳到內容" -#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:41 +#: themes/luci-theme-openwrt-2020/ucode/template/themes/openwrt2020/header.ut:34 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:45 -#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:39 msgid "Skip to navigation" msgstr "跳到導覽" @@ -7528,14 +7556,10 @@ msgstr "軟體式VLAN" msgid "Some fields are invalid, cannot save values!" msgstr "有些欄位失效, 無法儲存數值!" -#: modules/luci-base/luasrc/view/error404.htm:9 +#: modules/luci-base/ucode/template/error404.ut:10 msgid "Sorry, the object you requested was not found." msgstr "抱歉, 您請求的這物件尚無發現." -#: modules/luci-base/luasrc/view/error500.htm:9 -msgid "Sorry, the server encountered an unexpected error." -msgstr "抱歉, 伺服器遭遇非預期的錯誤." - #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:442 msgid "" "Sorry, there is no sysupgrade support present; a new firmware image must be " @@ -7573,7 +7597,7 @@ msgctxt "nft ip sport" msgid "Source port" msgstr "源埠" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:500 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:505 msgid "" "Special <abbr title=\"Preboot eXecution Environment\">PXE</abbr> boot " "options for Dnsmasq." @@ -7967,7 +7991,7 @@ msgstr "靜態租約" msgid "Static address" msgstr "靜態位址" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:598 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:669 msgid "" "Static leases are used to assign fixed IP addresses and symbolic hostnames " "to DHCP clients. They are also required for non-dynamic interface " @@ -7983,7 +8007,7 @@ msgstr "非活動站台限制" #: modules/luci-base/root/usr/share/luci/menu.d/luci-base.json:16 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:541 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:929 -#: modules/luci-mod-status/luasrc/view/admin_status/index.htm:9 +#: modules/luci-mod-status/ucode/template/admin_status/index.ut:9 msgid "Status" msgstr "狀態" @@ -8009,7 +8033,7 @@ msgstr "儲存空間使用" msgid "Strict filtering" msgstr "嚴格過濾" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:422 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:427 msgid "Strict order" msgstr "嚴謹順序" @@ -8022,11 +8046,11 @@ msgstr "超激強" msgid "Submit" msgstr "提交" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:372 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:377 msgid "Suppress logging" msgstr "禁止記錄" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:373 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:378 msgid "Suppress logging of the routine operation for the DHCP protocol." msgstr "禁止記錄這些協定的例行操作。" @@ -8079,6 +8103,14 @@ msgstr "與 NTP 伺服器同步" msgid "Sync with browser" msgstr "與瀏覽器同步時間" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:293 +msgid "Syntax: <code>/fqdn[/fqdn…]/[ipaddr]</code>." +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:569 +msgid "Syntax: <code>_service._proto.example.com</code>." +msgstr "" + #: modules/luci-base/root/usr/share/luci/menu.d/luci-base.json:26 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/10_system.js:17 #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:113 @@ -8104,11 +8136,10 @@ msgstr "系統屬性" msgid "System log buffer size" msgstr "系統日誌緩衝區大小" -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:79 -#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:86 -#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:71 +#: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/header.ut:67 +#: themes/luci-theme-material/ucode/template/themes/material/header.ut:81 +#: themes/luci-theme-openwrt-2020/ucode/template/themes/openwrt2020/header.ut:64 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:89 -#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:69 msgid "System running in recovery (initramfs) mode." msgstr "系統在恢復 (initramfs) 模式下運行。" @@ -8136,7 +8167,7 @@ msgstr "TCP 來源連接埠" msgid "TCP:" msgstr "TCP:" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:485 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:490 msgid "TFTP server root" msgstr "TFTP 伺服器根" @@ -8161,6 +8192,7 @@ msgstr "TX 佇列長度" msgid "Table" msgstr "表格" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:574 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:56 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:66 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:187 @@ -8237,15 +8269,15 @@ msgid "" "username instead of the user ID!" msgstr "HE.net端點更新組態已更改, 您現在必須使用普通用戶名而不是用戶ID!" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:681 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:752 msgid "The IP address %h is already used by another static lease" msgstr "IP 位址 %h 已被另一個靜態租約使用" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:690 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:761 msgid "The IP address is outside of any DHCP pool address range" msgstr "IP 位址不在任何 DHCP 池位址范圍之內" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:520 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:525 msgid "The IP address of the boot server" msgstr "引導伺服器的IP位址" @@ -8403,12 +8435,10 @@ msgid "" msgstr "產生的設定可以匯入到 WireGuard 客戶端應用中來設定到該裝置的連接。" #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:172 -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:166 msgid "The given SSH public key has already been added." msgstr "輸入的 SSH 公鑰早已存在。" #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:178 -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:172 msgid "" "The given SSH public key is invalid. Please supply proper public RSA, " "ED25519 or ECDSA keys." @@ -8424,7 +8454,7 @@ msgstr "" "跳懲罰設置允許修改 batman-adv 對多跳路由與短路由的偏好。 該值應用於每個轉發 " "OGM 的 TQ,從而傳播額外跳的成本(必須接收和重新傳輸數據包,這會花費通話時間)" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:514 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:519 msgid "The hostname of the boot server" msgstr "引導伺服器的主機名" @@ -8580,7 +8610,7 @@ msgstr "" msgid "The selected %s mode is incompatible with %s encryption" msgstr "選擇的模式 %s 與 %s 加密不相容" -#: modules/luci-base/luasrc/view/csrftoken.htm:11 +#: modules/luci-base/ucode/template/csrftoken.ut:11 msgid "The submitted security token is invalid or already expired!" msgstr "提交的安全權杖無效或已過期!" @@ -8659,8 +8689,8 @@ msgstr "" "系統上存在舊版 iptables 規則。 不鼓勵混合使用 iptables 和 nftables 規則,這可" "能會導致流量過濾不完整。" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:746 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:778 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:817 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:849 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:130 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:179 msgid "There are no active leases" @@ -8670,10 +8700,9 @@ msgstr "無活躍的租約" msgid "There are no changes to apply" msgstr "無可套用的變更" -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:70 -#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:62 +#: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/header.ut:58 +#: themes/luci-theme-openwrt-2020/ucode/template/themes/openwrt2020/header.ut:55 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:80 -#: themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm:60 msgid "" "There is no password set on this router. Please configure a root password to " "protect the web interface." @@ -8693,7 +8722,6 @@ msgid "This does not look like a valid PEM file" msgstr "這看起來不像有效的PEM檔案" #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:454 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:16 msgid "" "This is a list of shell glob patterns for matching files and directories to " "include during sysupgrade. Modified files in /etc/config/ and certain other " @@ -8737,7 +8765,7 @@ msgid "" "ends with <code>...:2/64</code>" msgstr "這是由通道代理人指定的本地終端位址,通常用 <code>...:2/64</code> 結尾" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:266 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:268 msgid "This is the only DHCP server in the local network." msgstr "" "在本地網路中 這是唯一的 <abbr title=\"Dynamic Host Configuration Protocol" @@ -8985,7 +9013,7 @@ msgstr "無法辨識外部 IP 位址" msgid "Unable to determine upstream interface" msgstr "無法判斷上游介面" -#: modules/luci-base/luasrc/view/error404.htm:11 +#: modules/luci-base/ucode/template/error404.ut:12 msgid "Unable to dispatch" msgstr "無法發送" @@ -9040,7 +9068,7 @@ msgstr "無法儲存內容:%s" msgid "Unable to verify PIN" msgstr "無法驗證 PIN" -#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:32 +#: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/50_dsl.js:33 msgid "Unavailable Seconds (UAS)" msgstr "不可用秒數 (UAS)" @@ -9098,7 +9126,6 @@ msgid "Unmount" msgstr "卸載" #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:121 -#: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:115 msgid "Unnamed key" msgstr "未命名的金鑰" @@ -9191,7 +9218,7 @@ msgid "" msgstr "" "按下「繼續」,ifname 選項將被重新命名,網路將重新啟動以應用更新後的設定。" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:423 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:428 msgid "Upstream resolvers will be queried in the order of the resolv file." msgstr "" "將會按照解析文件的順序查詢<abbr title=\"Domain Name System\">DNS</abbr>伺服" @@ -9202,7 +9229,7 @@ msgstr "" msgid "Uptime" msgstr "上線時間" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:344 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:349 msgid "Use <code>/etc/ethers</code>" msgstr "採用 <code>/etc/ethers</code>" @@ -9313,7 +9340,7 @@ msgstr "使用系統證書" msgid "Use system certificates for inner-tunnel" msgstr "對 inner-tunnel 使用系統憑證" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:599 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:670 msgid "" "Use the <em>Add</em> Button to add a new lease entry. The <em>MAC address</" "em> identifies the host, the <em>IPv4 address</em> specifies the fixed " @@ -9368,11 +9395,11 @@ msgstr "使用者識別碼" msgid "User key (PEM encoded)" msgstr "使用者金鑰(PEM編碼格式)" -#: modules/luci-base/luasrc/view/sysauth.htm:23 +#: modules/luci-base/ucode/template/sysauth.ut:23 #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:112 #: protocols/luci-proto-openfortivpn/htdocs/luci-static/resources/protocol/openfortivpn.js:101 #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:56 -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/sysauth.htm:18 +#: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/sysauth.ut:13 msgid "Username" msgstr "用戶名稱" @@ -9455,7 +9482,7 @@ msgstr "VPNC (CISCO 3000 (和其它) VPN)" #: protocols/luci-proto-vti/htdocs/luci-static/resources/protocol/vti.js:10 msgid "VTI" -msgstr "" +msgstr "VTI" #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:10 msgid "VXLAN (RFC7348)" @@ -9470,7 +9497,7 @@ msgstr "VXLAN 虛擬區網擴展識別碼" msgid "VXLANv6 (RFC7348)" msgstr "VXLANv6虛擬區網擴展(RFC7348)" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:398 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:403 msgid "" "Validate DNS replies and cache DNSSEC data, requires upstream to support " "DNSSEC." @@ -9503,7 +9530,7 @@ msgstr "製造商" msgid "Vendor Class to send when requesting DHCP" msgstr "當請求DHCP封包時要傳送的製造商類別碼" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:403 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:408 msgid "Verify unsigned domain responses really come from unsigned domains." msgstr "驗證未簽名域回應是否確實來自未簽名域。" @@ -9580,6 +9607,10 @@ msgstr "警告:未儲存的變更會在重新啟動時遺失!" msgid "Weak" msgstr "薄弱" +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:589 +msgid "Weight" +msgstr "" + #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:1029 msgid "" "When delegating prefixes to multiple downstreams, interfaces with a higher " @@ -9710,7 +9741,7 @@ msgstr "無線網路已停用" msgid "Wireless network is enabled" msgstr "無線網路已啟用" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:278 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:280 msgid "Write received DNS queries to syslog." msgstr "寫入已接收的DNS請求到系統日誌中。" @@ -9747,8 +9778,16 @@ msgstr "" "您可以開啟或關閉初始化指令在這. 修改將會在設備重開後被啟用. <br /><strong>警" "告: 假如您關閉必要的初始化腳本像\"網路\", 您的設備將可能無法存取!</strong>" -#: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:90 -#: themes/luci-theme-material/luasrc/view/themes/material/header.htm:97 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:559 +msgid "You may add multiple records for the same Target." +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:596 +msgid "You may add multiple records for the same domain." +msgstr "" + +#: themes/luci-theme-bootstrap/ucode/template/themes/bootstrap/header.ut:78 +#: themes/luci-theme-material/ucode/template/themes/material/header.ut:92 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:73 msgid "" "You must enable JavaScript in your browser or LuCI will not work properly." @@ -9777,7 +9816,17 @@ msgstr "ZRam 設定" msgid "ZRam Size" msgstr "ZRam 大小" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:449 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:558 +msgid "_proto: _tcp, _udp, _sctp, _quic, … ." +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:557 +msgid "" +"_service: _sip, _ldap, _imap, _stun, _xmpp-client, … . (Note: while _http is " +"possible, no browsers support SRV records.)" +msgstr "" + +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:454 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:152 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:163 msgid "any" @@ -9888,8 +9937,8 @@ msgstr "例如: --代理 10.10.10.10" msgid "e.g: dump" msgstr "例如:完全備份" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:726 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:756 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:797 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:827 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:101 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:148 msgid "expired" @@ -10102,9 +10151,9 @@ msgstr "獨特值" msgid "unknown" msgstr "未知" -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:456 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:724 -#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:754 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:461 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:795 +#: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:825 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:99 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:146 msgid "unlimited" @@ -10320,6 +10369,21 @@ msgstr "是" msgid "« Back" msgstr "« 倒退" +#~ msgid "Back to configuration" +#~ msgstr "返回至設定" + +#~ msgid "Close list..." +#~ msgstr "關閉清單..." + +#~ msgid "Internal Server Error" +#~ msgstr "內部伺服器發生錯誤" + +#~ msgid "No files found" +#~ msgstr "未找到檔案" + +#~ msgid "Sorry, the server encountered an unexpected error." +#~ msgstr "抱歉, 伺服器遭遇非預期的錯誤." + #~ msgid "Do not forward queries that cannot be answered by public resolvers." #~ msgstr "不轉發公用名稱伺服器不能回答的請求。" diff --git a/modules/luci-base/root/usr/libexec/rpcd/luci b/modules/luci-base/root/usr/libexec/rpcd/luci deleted file mode 100755 index 6a80951e8c..0000000000 --- a/modules/luci-base/root/usr/libexec/rpcd/luci +++ /dev/null @@ -1,683 +0,0 @@ -#!/usr/bin/env lua - -local json = require "luci.jsonc" -local fs = require "nixio.fs" - -local function readfile(path) - local s = fs.readfile(path) - return s and (s:gsub("^%s+", ""):gsub("%s+$", "")) -end - -local methods = { - getInitList = { - args = { name = "name" }, - call = function(args) - local sys = require "luci.sys" - local _, name, scripts = nil, nil, {} - for _, name in ipairs(args.name and { args.name } or sys.init.names()) do - local index = sys.init.index(name) - if index then - scripts[name] = { index = index, enabled = sys.init.enabled(name) } - else - return { error = "No such init script" } - end - end - return scripts - end - }, - - setInitAction = { - args = { name = "name", action = "action" }, - call = function(args) - local sys = require "luci.sys" - if type(sys.init[args.action]) ~= "function" then - return { error = "Invalid action" } - end - return { result = sys.init[args.action](args.name) } - end - }, - - getLocaltime = { - call = function(args) - return { result = os.time() } - end - }, - - setLocaltime = { - args = { localtime = 0 }, - call = function(args) - local sys = require "luci.sys" - local date = os.date("*t", args.localtime) - if date then - sys.call("date -s '%04d-%02d-%02d %02d:%02d:%02d' >/dev/null" %{ date.year, date.month, date.day, date.hour, date.min, date.sec }) - sys.call("/etc/init.d/sysfixtime restart >/dev/null") - end - return { result = args.localtime } - end - }, - - getTimezones = { - call = function(args) - local util = require "luci.util" - local zones = require "luci.sys.zoneinfo" - - local tz = readfile("/etc/TZ") - local res = util.ubus("uci", "get", { - config = "system", - section = "@system[0]", - option = "zonename" - }) - - local result = {} - local _, zone - for _, zone in ipairs(zones.TZ) do - result[zone[1]] = { - tzstring = zone[2], - active = (res and res.value == zone[1]) and true or nil - } - end - return result - end - }, - - getLEDs = { - call = function() - local iter = fs.dir("/sys/class/leds") - local result = { } - - if iter then - local led - for led in iter do - local m, s - - result[led] = { triggers = {} } - - s = readfile("/sys/class/leds/"..led.."/trigger") - for s in (s or ""):gmatch("%S+") do - m = s:match("^%[(.+)%]$") - result[led].triggers[#result[led].triggers+1] = m or s - result[led].active_trigger = m or result[led].active_trigger - end - - s = readfile("/sys/class/leds/"..led.."/brightness") - if s then - result[led].brightness = tonumber(s) - end - - s = readfile("/sys/class/leds/"..led.."/max_brightness") - if s then - result[led].max_brightness = tonumber(s) - end - end - end - - return result - end - }, - - getUSBDevices = { - call = function() - local fs = require "nixio.fs" - local iter = fs.glob("/sys/bus/usb/devices/[0-9]*/manufacturer") - local result = { } - - if iter then - result.devices = {} - - local p - for p in iter do - local id = p:match("/([^/]+)/manufacturer$") - - result.devices[#result.devices+1] = { - id = id, - vid = readfile("/sys/bus/usb/devices/"..id.."/idVendor"), - pid = readfile("/sys/bus/usb/devices/"..id.."/idProduct"), - vendor = readfile("/sys/bus/usb/devices/"..id.."/manufacturer"), - product = readfile("/sys/bus/usb/devices/"..id.."/product"), - speed = tonumber((readfile("/sys/bus/usb/devices/"..id.."/product"))) - } - end - end - - iter = fs.glob("/sys/bus/usb/devices/*/*-port[0-9]*") - - if iter then - result.ports = {} - - local p - for p in iter do - local port = p:match("([^/]+)$") - local link = fs.readlink(p.."/device") - - result.ports[#result.ports+1] = { - port = port, - device = link and fs.basename(link) - } - end - end - - return result - end - }, - - getConntrackHelpers = { - call = function() - local ok, fd = pcall(io.open, "/usr/share/fw3/helpers.conf", "r") - local rv = {} - - if not (ok and fd) then - ok, fd = pcall(io.open, "/usr/share/firewall4/helpers", "r") - end - - if ok and fd then - local entry - - while true do - local line = fd:read("*l") - if not line then - break - end - - if line:match("^%s*config%s") then - if entry then - rv[#rv+1] = entry - end - entry = {} - else - local opt, val = line:match("^%s*option%s+(%S+)%s+(%S.*)$") - if opt and val then - opt = opt:gsub("^'(.+)'$", "%1"):gsub('^"(.+)"$', "%1") - val = val:gsub("^'(.+)'$", "%1"):gsub('^"(.+)"$', "%1") - entry[opt] = val - end - end - end - - if entry then - rv[#rv+1] = entry - end - - fd:close() - end - - return { result = rv } - end - }, - - getFeatures = { - call = function() - local fs = require "nixio.fs" - local rv = {} - local ok, fd - - rv.firewall = fs.access("/sbin/fw3") - rv.firewall4 = fs.access("/sbin/fw4") - rv.opkg = fs.access("/bin/opkg") - rv.offloading = fs.access("/sys/module/xt_FLOWOFFLOAD/refcnt") or fs.access("/sys/module/nft_flow_offload/refcnt") - rv.br2684ctl = fs.access("/usr/sbin/br2684ctl") - rv.swconfig = fs.access("/sbin/swconfig") - rv.odhcpd = fs.access("/usr/sbin/odhcpd") - rv.zram = fs.access("/sys/class/zram-control") - rv.sysntpd = fs.readlink("/usr/sbin/ntpd") and true - rv.ipv6 = fs.access("/proc/net/ipv6_route") - rv.dropbear = fs.access("/usr/sbin/dropbear") - rv.cabundle = fs.access("/etc/ssl/certs/ca-certificates.crt") - rv.relayd = fs.access("/usr/sbin/relayd") - rv.dsl = fs.access("/sbin/dsl_cpe_control") or fs.access("/sbin/vdsl_cpe_control") - - local wifi_features = { "eap", "11n", "11ac", "11r", "acs", "sae", "owe", "suiteb192", "wep", "wps" } - - if fs.access("/usr/sbin/hostapd") then - rv.hostapd = { cli = fs.access("/usr/sbin/hostapd_cli") } - - local _, feature - for _, feature in ipairs(wifi_features) do - rv.hostapd[feature] = - (os.execute(string.format("/usr/sbin/hostapd -v%s >/dev/null 2>/dev/null", feature)) == 0) - end - end - - if fs.access("/usr/sbin/wpa_supplicant") then - rv.wpasupplicant = { cli = fs.access("/usr/sbin/wpa_cli") } - - local _, feature - for _, feature in ipairs(wifi_features) do - rv.wpasupplicant[feature] = - (os.execute(string.format("/usr/sbin/wpa_supplicant -v%s >/dev/null 2>/dev/null", feature)) == 0) - end - end - - ok, fd = pcall(io.popen, "dnsmasq --version 2>/dev/null") - if ok then - rv.dnsmasq = {} - - while true do - local line = fd:read("*l") - if not line then - break - end - - local opts = line:match("^Compile time options: (.+)$") - if opts then - local opt - for opt in opts:gmatch("%S+") do - local no = opt:match("^no%-(%S+)$") - rv.dnsmasq[string.lower(no or opt)] = not no - end - break - end - end - - fd:close() - end - - ok, fd = pcall(io.popen, "ipset --help 2>/dev/null") - if ok then - rv.ipset = {} - - local sets = false - - while true do - local line = fd:read("*l") - if not line then - break - elseif line:match("^Supported set types:") then - sets = true - elseif sets then - local set, ver = line:match("^%s+(%S+)%s+(%d+)") - if set and not rv.ipset[set] then - rv.ipset[set] = tonumber(ver) - end - end - end - - fd:close() - end - - return rv - end - }, - - getSwconfigFeatures = { - args = { switch = "switch0" }, - call = function(args) - local util = require "luci.util" - - -- Parse some common switch properties from swconfig help output. - local swc, err = io.popen("swconfig dev %s help 2>/dev/null" % util.shellquote(args.switch)) - if swc then - local is_port_attr = false - local is_vlan_attr = false - local rv = {} - - while true do - local line = swc:read("*l") - if not line then break end - - if line:match("^%s+%-%-vlan") then - is_vlan_attr = true - - elseif line:match("^%s+%-%-port") then - is_vlan_attr = false - is_port_attr = true - - elseif line:match("cpu @") then - rv.switch_title = line:match("^switch%d: %w+%((.-)%)") - rv.num_vlans = tonumber(line:match("vlans: (%d+)")) or 16 - rv.min_vid = 1 - - elseif line:match(": pvid") or line:match(": tag") or line:match(": vid") then - if is_vlan_attr then rv.vid_option = line:match(": (%w+)") end - - elseif line:match(": enable_vlan4k") then - rv.vlan4k_option = "enable_vlan4k" - - elseif line:match(": enable_vlan") then - rv.vlan_option = "enable_vlan" - - elseif line:match(": enable_learning") then - rv.learning_option = "enable_learning" - - elseif line:match(": enable_mirror_rx") then - rv.mirror_option = "enable_mirror_rx" - - elseif line:match(": max_length") then - rv.jumbo_option = "max_length" - end - end - - swc:close() - - if not next(rv) then - return { error = "No such switch" } - end - - return rv - else - return { error = err } - end - end - }, - - getSwconfigPortState = { - args = { switch = "switch0" }, - call = function(args) - local util = require "luci.util" - - local swc, err = io.popen("swconfig dev %s show 2>/dev/null" % util.shellquote(args.switch)) - if swc then - local ports = { } - - while true do - local line = swc:read("*l") - if not line or (line:match("^VLAN %d+:") and #ports > 0) then - break - end - - local pnum = line:match("^Port (%d+):$") - if pnum then - port = { - port = tonumber(pnum), - duplex = false, - speed = 0, - link = false, - auto = false, - rxflow = false, - txflow = false - } - - ports[#ports+1] = port - end - - if port then - local m - - if line:match("full[%- ]duplex") then - port.duplex = true - end - - m = line:match(" speed:(%d+)") - if m then - port.speed = tonumber(m) - end - - m = line:match("(%d+) Mbps") - if m and port.speed == 0 then - port.speed = tonumber(m) - end - - m = line:match("link: (%d+)") - if m and port.speed == 0 then - port.speed = tonumber(m) - end - - if line:match("link: ?up") or line:match("status: ?up") then - port.link = true - end - - if line:match("auto%-negotiate") or line:match("link:.-auto") then - port.auto = true - end - - if line:match("link:.-rxflow") then - port.rxflow = true - end - - if line:match("link:.-txflow") then - port.txflow = true - end - end - end - - swc:close() - - if not next(ports) then - return { error = "No such switch" } - end - - return { result = ports } - else - return { error = err } - end - end - }, - - setPassword = { - args = { username = "root", password = "password" }, - call = function(args) - local util = require "luci.util" - return { - result = (os.execute("(echo %s; sleep 1; echo %s) | /bin/busybox passwd %s >/dev/null 2>&1" %{ - luci.util.shellquote(args.password), - luci.util.shellquote(args.password), - luci.util.shellquote(args.username) - }) == 0) - } - end - }, - - getBlockDevices = { - call = function() - local fs = require "nixio.fs" - - local block = io.popen("/sbin/block info", "r") - if block then - local rv = {} - - while true do - local ln = block:read("*l") - if not ln then - break - end - - local dev = ln:match("^/dev/(.-):") - if dev then - local s = tonumber((fs.readfile("/sys/class/block/" .. dev .."/size"))) - local e = { - dev = "/dev/" .. dev, - size = s and s * 512 - } - - local key, val = { } - for key, val in ln:gmatch([[(%w+)="(.-)"]]) do - e[key:lower()] = val - end - - rv[dev] = e - end - end - - block:close() - - return rv - else - return { error = "Unable to execute block utility" } - end - end - }, - - setBlockDetect = { - call = function() - return { result = (os.execute("/sbin/block detect > /etc/config/fstab") == 0) } - end - }, - - getMountPoints = { - call = function() - local fs = require "nixio.fs" - - local fd, err = io.open("/proc/mounts", "r") - if fd then - local rv = {} - - while true do - local ln = fd:read("*l") - if not ln then - break - end - - local device, mount, fstype, options, freq, pass = ln:match("^(%S*) (%S*) (%S*) (%S*) (%d+) (%d+)$") - if device and mount then - device = device:gsub("\\(%d+)", function(n) return string.char(tonumber(n, 8)) end) - mount = mount:gsub("\\(%d+)", function(n) return string.char(tonumber(n, 8)) end) - - local stat = fs.statvfs(mount) - if stat and stat.blocks > 0 then - rv[#rv+1] = { - device = device, - mount = mount, - size = stat.bsize * stat.blocks, - avail = stat.bsize * stat.bavail, - free = stat.bsize * stat.bfree - } - end - end - end - - fd:close() - - return { result = rv } - else - return { error = err } - end - end - }, - - getRealtimeStats = { - args = { mode = "interface", device = "eth0" }, - call = function(args) - local util = require "luci.util" - - local flags - if args.mode == "interface" then - flags = "-i %s" % util.shellquote(args.device) - elseif args.mode == "wireless" then - flags = "-r %s" % util.shellquote(args.device) - elseif args.mode == "conntrack" then - flags = "-c" - elseif args.mode == "load" then - flags = "-l" - else - return { error = "Invalid mode" } - end - - local fd, err = io.popen("luci-bwc %s" % flags, "r") - if fd then - local parse = json.new() - local done - - parse:parse("[") - - while true do - local ln = fd:read("*l") - if not ln then - break - end - - done, err = parse:parse((ln:gsub("%d+", "%1.0"))) - - if done then - err = "Unexpected JSON data" - end - - if err then - break - end - end - - fd:close() - - done, err = parse:parse("]") - - if err then - return { error = err } - elseif not done then - return { error = "Incomplete JSON data" } - else - return { result = parse:get() } - end - else - return { error = err } - end - end - }, - - getConntrackList = { - call = function() - local sys = require "luci.sys" - return { result = sys.net.conntrack() } - end - }, - - getProcessList = { - call = function() - local sys = require "luci.sys" - local res = {} - for _, v in pairs(sys.process.list()) do - res[#res + 1] = v - end - return { result = res } - end - } -} - -local function parseInput() - local parse = json.new() - local done, err - - while true do - local chunk = io.read(4096) - if not chunk then - break - elseif not done and not err then - done, err = parse:parse(chunk) - end - end - - if not done then - print(json.stringify({ error = err or "Incomplete input" })) - os.exit(1) - end - - return parse:get() -end - -local function validateArgs(func, uargs) - local method = methods[func] - if not method then - print(json.stringify({ error = "Method not found" })) - os.exit(1) - end - - if type(uargs) ~= "table" then - print(json.stringify({ error = "Invalid arguments" })) - os.exit(1) - end - - uargs.ubus_rpc_session = nil - - local k, v - local margs = method.args or {} - for k, v in pairs(uargs) do - if margs[k] == nil or - (v ~= nil and type(v) ~= type(margs[k])) - then - print(json.stringify({ error = "Invalid arguments" })) - os.exit(1) - end - end - - return method -end - -if arg[1] == "list" then - local _, method, rv = nil, nil, {} - for _, method in pairs(methods) do rv[_] = method.args or {} end - print((json.stringify(rv):gsub(":%[%]", ":{}"))) -elseif arg[1] == "call" then - local args = parseInput() - local method = validateArgs(arg[2], args) - local result, code = method.call(args) - print((json.stringify(result):gsub("^%[%]$", "{}"))) - os.exit(code or 0) -end diff --git a/modules/luci-base/root/usr/share/luci/menu.d/luci-base.json b/modules/luci-base/root/usr/share/luci/menu.d/luci-base.json index 605c7ab777..000c368151 100644 --- a/modules/luci-base/root/usr/share/luci/menu.d/luci-base.json +++ b/modules/luci-base/root/usr/share/luci/menu.d/luci-base.json @@ -61,7 +61,7 @@ "admin/translations/*": { "action": { - "type": "call", + "type": "function", "module": "luci.controller.admin.index", "function": "action_translations" }, @@ -70,7 +70,7 @@ "admin/ubus/*": { "action": { - "type": "call", + "type": "function", "module": "luci.controller.admin.index", "function": "action_ubus" }, @@ -81,7 +81,7 @@ "title": "Logout", "order": 999, "action": { - "type": "call", + "type": "function", "module": "luci.controller.admin.index", "function": "action_logout" }, @@ -99,7 +99,7 @@ "admin/uci/revert": { "action": { - "type": "call", + "type": "function", "module": "luci.controller.admin.uci", "function": "action_revert", "post": true @@ -109,7 +109,7 @@ "admin/uci/apply_rollback": { "cors": true, "action": { - "type": "call", + "type": "function", "module": "luci.controller.admin.uci", "function": "action_apply_rollback", "post": true @@ -122,7 +122,7 @@ "admin/uci/apply_unchecked": { "cors": true, "action": { - "type": "call", + "type": "function", "module": "luci.controller.admin.uci", "function": "action_apply_unchecked", "post": true @@ -135,7 +135,7 @@ "admin/uci/confirm": { "cors": true, "action": { - "type": "call", + "type": "function", "module": "luci.controller.admin.uci", "function": "action_confirm" }, @@ -144,7 +144,7 @@ "admin/menu": { "action": { - "type": "call", + "type": "function", "module": "luci.controller.admin.index", "function": "action_menu" }, diff --git a/modules/luci-base/root/usr/share/rpcd/ucode/luci b/modules/luci-base/root/usr/share/rpcd/ucode/luci new file mode 100644 index 0000000000..cb00ff86d4 --- /dev/null +++ b/modules/luci-base/root/usr/share/rpcd/ucode/luci @@ -0,0 +1,512 @@ +// Copyright 2022 Jo-Philipp Wich <jo@mein.io> +// Licensed to the public under the Apache License 2.0. + +'use strict'; + +import { stdin, access, dirname, basename, open, popen, glob, lsdir, readfile, readlink, error } from 'fs'; +import { cursor } from 'uci'; + +import { init_list, init_index, init_enabled, init_action, conntrack_list, process_list } from 'luci.sys'; +import { statvfs } from 'luci.core'; + +import timezones from 'luci.zoneinfo'; + + +function shellquote(s) { + return `'${replace(s, "'", "'\\''")}'`; +} + +const methods = { + getInitList: { + args: { name: 'name' }, + call: function(request) { + let scripts = {}; + + for (let name in filter(init_list(), i => !request.args.name || i == request.args.name)) { + let idx = init_index(name); + + scripts[name] = { + index: idx?.[0], + stop: idx?.[1], + enabled: init_enabled(name) + }; + } + + return length(scripts) ? scripts : { error: 'No such init script' }; + } + }, + + setInitAction: { + args: { name: 'name', action: 'action' }, + call: function(request) { + switch (request.args.action) { + case 'enable': + case 'disable': + case 'start': + case 'stop': + case 'restart': + case 'reload': + const rc = init_action(request.args.name, request.args.action); + + if (rc === false) + return { error: 'No such init script' }; + + return { result: rc == 0 }; + + default: + return { error: 'Invalid action' }; + } + } + }, + + getLocaltime: { + call: function(request) { + return { result: time() }; + } + }, + + setLocaltime: { + args: { localtime: 0 }, + call: function(request) { + let t = localtime(request.args.localtime); + + if (t) { + system(sprintf('date -s "%04d-%02d-%02d %02d:%02d:%02d" >/dev/null', t.year, t.mon, t.mday, t.hour, t.min, t.sec)); + system('/etc/init.d/sysfixtime restart >/dev/null'); + } + + return { result: request.args.localtime }; + } + }, + + getTimezones: { + call: function(request) { + let tz = trim(readfile('/etc/TZ')); + let zn = cursor()?.get?.('system', '@system[0]', 'zonename'); + let result = {}; + + for (let zone, tzstring in timezones) { + result[zone] = { tzstring }; + + if (zn == zone) + result[zone].active = true; + }; + + return result; + } + }, + + getLEDs: { + call: function() { + let result = {}; + + for (let led in lsdir('/sys/class/leds')) { + let s; + + result[led] = { triggers: [] }; + + s = trim(readfile(`/sys/class/leds/${led}/trigger`)); + for (let trigger in split(s, ' ')) { + push(result[led].triggers, trim(trigger, '[]')); + + if (trigger != result[led].triggers[-1]) + result[led].active_trigger = result[led].triggers[-1]; + } + + s = readfile(`/sys/class/leds/${led}/brightness`); + result[led].brightness = +s; + + s = readfile(`/sys/class/leds/${led}/max_brightness`); + result[led].max_brightness = +s; + } + + return result; + } + }, + + getUSBDevices: { + call: function() { + let result = { devices: [], ports: [] }; + + for (let path in glob('/sys/bus/usb/devices/[0-9]*/manufacturer')) { + let id = basename(dirname(path)); + + push(result.devices, { + id, + vid: trim(readfile(`/sys/bus/usb/devices/${id}/idVendor`)), + pid: trim(readfile(`/sys/bus/usb/devices/${id}/idProduct`)), + vendor: trim(readfile(path)), + product: trim(readfile(`/sys/bus/usb/devices/${id}/product`)), + speed: +readfile(`/sys/bus/usb/devices/${id}/speed`) + }); + } + + for (let path in glob('/sys/bus/usb/devices/*/*-port[0-9]*')) { + let port = basename(path); + let link = readlink(`${path}/device`); + + push(result.ports, { + port, + device: basename(link) + }); + } + + return result; + } + }, + + getConntrackHelpers: { + call: function() { + const uci = cursor(); + let helpers = []; + + uci.load('/usr/share/firewall4/helpers'); + uci.load('/usr/share/fw3/helpers.conf'); + + uci.foreach('helpers', 'helper', (s) => { + push(helpers, { + name: s.name, + description: s.description, + module: s.module, + family: s.family, + proto: s.proto, + port: s.port + }); + }); + + return { result: helpers }; + } + }, + + getFeatures: { + call: function() { + let result = { + firewall: access('/sbin/fw3') == true, + firewall4: access('/sbin/fw4') == true, + opkg: access('/bin/opkg') == true, + offloading: access('/sys/module/xt_FLOWOFFLOAD/refcnt') == true || access('/sys/module/nft_flow_offload/refcnt') == true, + br2684ctl: access('/usr/sbin/br2684ctl') == true, + swconfig: access('/sbin/swconfig') == true, + odhcpd: access('/usr/sbin/odhcpd') == true, + zram: access('/sys/class/zram-control') == true, + sysntpd: readlink('/usr/sbin/ntpd') != null, + ipv6: access('/proc/net/ipv6_route') == true, + dropbear: access('/usr/sbin/dropbear') == true, + cabundle: access('/etc/ssl/certs/ca-certificates.crt') == true, + relayd: access('/usr/sbin/relayd') == true, + }; + + const wifi_features = [ 'eap', '11n', '11ac', '11r', 'acs', 'sae', 'owe', 'suiteb192', 'wep', 'wps' ]; + + if (access('/usr/sbin/hostapd')) { + result.hostapd = { cli: access('/usr/sbin/hostapd_cli') == true }; + + for (let feature in wifi_features) + result.hostapd[feature] = system(`/usr/sbin/hostapd -v${feature} >/dev/null 2>/dev/null`) == 0; + } + + if (access('/usr/sbin/wpa_supplicant')) { + result.wpasupplicant = { cli: access('/usr/sbin/wpa_cli') == true }; + + for (let feature in wifi_features) + result.wpasupplicant[feature] = system(`/usr/sbin/wpa_supplicant -v${feature} >/dev/null 2>/dev/null`) == 0; + } + + let fd = popen('dnsmasq --version 2>/dev/null'); + + if (fd) { + const m = match(fd.read('all'), /^Compile time options: (.+)$/s); + + for (let opt in split(m?.[1], ' ')) { + let f = replace(opt, 'no-', '', 1); + + result.dnsmasq ??= {}; + result.dnsmasq[lc(f)] = (f == opt); + } + + fd.close(); + } + + fd = popen('ipset --help 2>/dev/null'); + + if (fd) { + for (let line = fd.read('line'), flag = false; length(line); line = fd.read('line')) { + if (line == 'Supported set types:\n') { + flag = true; + } + else if (flag) { + const m = match(line, /^ +([\w:,]+)\t+([0-9]+)\t/); + + if (m) { + result.ipset ??= {}; + result.ipset[m[1]] ??= +m[2]; + } + } + } + + fd.close(); + } + + return result; + } + }, + + getSwconfigFeatures: { + args: { switch: 'switch0' }, + call: function(request) { + // Parse some common switch properties from swconfig help output. + const swc = popen(`swconfig dev ${shellquote(request.args.switch)} help 2>/dev/null`); + + if (swc) { + let is_port_attr = false; + let is_vlan_attr = false; + let result = {}; + + for (let line = swc.read('line'); length(line); line = swc.read('line')) { + if (match(line, /^\s+--vlan/)) { + is_vlan_attr = true; + } + else if (match(line, /^\s+--port/)) { + is_vlan_attr = false; + is_port_attr = true; + } + else if (match(line, /cpu @/)) { + result.switch_title = match(line, /^switch[0-9]+: \w+\((.+)\)/)?.[1]; + result.num_vlans = match(line, /vlans: ([0-9]+)/)?.[1] ?? 16; + result.min_vid = 1; + } + else if (match(line, /: (pvid|tag|vid)/)) { + if (is_vlan_attr) + result.vid_option = match(line, /: (\w+)/)?.[1]; + } + else if (match(line, /: enable_vlan4k/)) { + result.vlan4k_option = 'enable_vlan4k'; + } + else if (match(line, /: enable_vlan/)) { + result.vlan_option = 'enable_vlan'; + } + else if (match(line, /: enable_learning/)) { + result.learning_option = 'enable_learning'; + } + else if (match(line, /: enable_mirror_rx/)) { + result.mirror_option = 'enable_mirror_rx'; + } + else if (match(line, /: max_length/)) { + result.jumbo_option = 'max_length'; + } + } + + swc.close(); + + if (!length(result)) + return { error: 'No such switch' }; + + return result; + } + else { + return { error: error() }; + } + } + }, + + getSwconfigPortState: { + args: { switch: 'switch0' }, + call: function(request) { + const swc = popen(`swconfig dev ${shellquote(request.args.switch)} show 2>/dev/null`); + + if (swc) { + let ports = [], port; + + for (let line = swc.read('line'); length(line); line = swc.read('line')) { + if (match(line, /^VLAN [0-9]+:/) && length(ports)) + break; + + let pnum = match(line, /^Port ([0-9]+):/)?.[1]; + + if (pnum) { + port = { + port: +pnum, + duplex: false, + speed: 0, + link: false, + auto: false, + rxflow: false, + txflow: false + }; + + push(ports, port); + } + + if (port) { + let m; + + if (match(line, /full[ -]duplex/)) + port.duplex = true; + + if ((m = match(line, / speed:([0-9]+)/)) != null) + port.speed = +m[1]; + + if ((m = match(line, /([0-9]+) Mbps/)) != null && !port.speed) + port.speed = +m[1]; + + if ((m = match(line, /link: ([0-9]+)/)) != null && !port.speed) + port.speed = +m[1]; + + if (match(line, /(link|status): ?up/)) + port.link = true; + + if (match(line, /auto-negotiate|link:.*auto/)) + port.auto = true; + + if (match(line, /link:.*rxflow/)) + port.rxflow = true; + + if (match(line, /link:.*txflow/)) + port.txflow = true; + } + } + + swc.close(); + + if (!length(ports)) + return { error: 'No such switch' }; + + return { result: ports }; + } + else { + return { error: error() }; + } + } + }, + + setPassword: { + args: { username: 'root', password: 'password' }, + call: function(request) { + const u = shellquote(request.args.username); + const p = shellquote(request.args.password); + + return { + result: system(`(echo ${p}; sleep 1; echo ${p}) | /bin/busybox passwd ${u} >/dev/null 2>&1`) == 0 + }; + } + }, + + getBlockDevices: { + call: function() { + const block = popen('/sbin/block info 2>/dev/null'); + + if (block) { + let result = {}; + + for (let line = block.read('line'); length(line); line = block.read('line')) { + let dev = match(line, /^\/dev\/([^:]+):/)?.[1]; + + if (dev) { + let e = result[dev] = { + dev: `/dev/${dev}`, + size: +readfile(`/sys/class/block/${dev}/size`) * 512 + }; + + for (m in match(line, / (\w+)="([^"]+)"/g)) + e[lc(m[1])] = m[2]; + } + } + + block.close(); + + return result; + } + else { + return { error: 'Unable to execute block utility' }; + } + } + }, + + setBlockDetect: { + call: function() { + return { result: system('/sbin/block detect > /etc/config/fstab') == 0 }; + } + }, + + getMountPoints: { + call: function() { + const fd = open('/proc/mounts', 'r'); + + if (fd) { + let result = []; + + for (let line = fd.read('line'); length(line); line = fd.read('line')) { + const m = split(line, ' '); + const device = replace(m[0], /\\([0-9][0-9][0-9])/g, (m, n) => char(int(n, 8))); + const mount = replace(m[1], /\\([0-9][0-9][0-9])/g, (m, n) => char(int(n, 8))); + const stat = statvfs(mount); + + if (stat?.blocks > 0) { + push(result, { + device, mount, + size: stat.bsize * stat.blocks, + avail: stat.bsize * stat.bavail, + free: stat.bsize * stat.bfree + }); + } + } + + fd.close(); + + return { result }; + } + else { + return { error: error() }; + } + } + }, + getRealtimeStats: { + args: { mode: 'interface', device: 'eth0' }, + call: function(request) { + let flags; + + if (request.args.mode == 'interface') + flags = `-i ${shellquote(request.args.device)}`; + else if (request.args.mode == 'wireless') + flags = `-r ${shellquote(request.args.device)}`; + else if (request.args.mode == 'conntrack') + flags = '-c'; + else if (request.args.mode == 'load') + flags = '-l'; + else + return { error: 'Invalid mode' }; + + const fd = popen(`luci-bwc ${flags}`, 'r'); + + if (fd) { + let result; + + try { + result = { result: json(`[${fd.read('all')}]`) }; + } + catch (err) { + result = { error: err }; + } + + return result; + } + else { + return { error: error() }; + } + } + }, + + getConntrackList: { + call: function() { + return { result: conntrack_list() }; + } + }, + + getProcessList: { + call: function() { + return { result: process_list() }; + } + } +}; + +return { luci: methods }; diff --git a/modules/luci-base/src/Makefile b/modules/luci-base/src/Makefile index 2a425d5ab7..ad309e5c6b 100644 --- a/modules/luci-base/src/Makefile +++ b/modules/luci-base/src/Makefile @@ -4,29 +4,31 @@ contrib/lemon: contrib/lemon.c contrib/lempar.c cc -o contrib/lemon $< -plural_formula.c: plural_formula.y contrib/lemon +lib/plural_formula.c: lib/plural_formula.y contrib/lemon ./contrib/lemon -q $< -template_lmo.c: plural_formula.c +lib/lmo.c: lib/plural_formula.c + +core.so: lib/luci.o lib/lmo.o lib/plural_formula.o + $(CC) $(LDFLAGS) -shared -lcrypt -o $@ $^ + +version.uc: + echo "export const revision = '$(LUCI_VERSION)', branch = '$(LUCI_GITBRANCH)';" > $@ clean: - rm -f contrib/lemon po2lmo parser.so version.lua plural_formula.c plural_formula.h *.o + rm -f contrib/lemon lib/*.o lib/plural_formula.c lib/plural_formula.h core.so version.uc jsmin: jsmin.o $(CC) $(LDFLAGS) -o $@ $^ -po2lmo: po2lmo.o template_lmo.o plural_formula.o +po2lmo: po2lmo.o lib/lmo.o lib/plural_formula.o $(CC) $(LDFLAGS) -o $@ $^ -parser.so: template_parser.o template_utils.o template_lmo.o template_lualib.o plural_formula.o - $(CC) $(LDFLAGS) -shared -o $@ $^ - -version.lua: - ./mkversion.sh $@ $(LUCI_VERSION) "$(LUCI_GITBRANCH)" - -compile: parser.so version.lua +compile: core.so version.uc install: compile - mkdir -p $(DESTDIR)/usr/lib/lua/luci/template - cp parser.so $(DESTDIR)/usr/lib/lua/luci/template/parser.so - cp version.lua $(DESTDIR)/usr/lib/lua/luci/version.lua + mkdir -p $(DESTDIR)/usr/lib/ucode/luci + cp core.so $(DESTDIR)/usr/lib/ucode/luci/core.so + + mkdir -p $(DESTDIR)/usr/share/ucode/luci + cp version.uc $(DESTDIR)/usr/share/ucode/luci/version.uc diff --git a/modules/luci-base/src/template_lmo.c b/modules/luci-base/src/lib/lmo.c index 8634bc4bf3..da521bc98b 100644 --- a/modules/luci-base/src/template_lmo.c +++ b/modules/luci-base/src/lib/lmo.c @@ -16,7 +16,7 @@ * limitations under the License. */ -#include "template_lmo.h" +#include "lmo.h" #include "plural_formula.h" /* @@ -24,9 +24,9 @@ * Copyright (C) 2004-2008 by Paul Hsieh */ -uint32_t sfh_hash(const char *data, int len) +uint32_t sfh_hash(const char *data, size_t len, uint32_t init) { - uint32_t hash = len, tmp; + uint32_t hash = init, tmp; int rem; if (len <= 0 || data == NULL) return 0; @@ -137,7 +137,7 @@ uint32_t lmo_canon_hash(const char *str, int len, ptr += snprintf(ptr, 3, "\2%d", plural); } - return sfh_hash(res, ptr - res); + return sfh_hash(res, ptr - res, ptr - res); } lmo_archive_t * lmo_open(const char *file) @@ -550,7 +550,6 @@ int lmo_translate_plural_ctxt(int n, const char *skey, int skeylen, uint32_t hash; lmo_entry_t *e; lmo_archive_t *ar; - const char *plural_formula; if (!skey || !pkey || !_lmo_active_catalog) return -2; diff --git a/modules/luci-base/src/template_lmo.h b/modules/luci-base/src/lib/lmo.h index d6cba7bf49..744209f62c 100644 --- a/modules/luci-base/src/template_lmo.h +++ b/modules/luci-base/src/lib/lmo.h @@ -41,6 +41,10 @@ +(uint32_t)(((const uint8_t *)(d))[0]) ) #endif +#ifndef __hidden +#define __hidden __attribute__((visibility("hidden"))) +#endif + struct lmo_entry { uint32_t key_id; @@ -75,30 +79,30 @@ typedef struct lmo_catalog lmo_catalog_t; typedef void (*lmo_iterate_cb_t)(uint32_t, const char *, int, void *); -uint32_t sfh_hash(const char *data, int len); -uint32_t lmo_canon_hash(const char *data, int len, - const char *ctx, int ctxlen, int plural); +__hidden uint32_t sfh_hash(const char *data, size_t len, uint32_t init); +__hidden uint32_t lmo_canon_hash(const char *data, int len, + const char *ctx, int ctxlen, int plural); -lmo_archive_t * lmo_open(const char *file); -void lmo_close(lmo_archive_t *ar); +__hidden lmo_archive_t * lmo_open(const char *file); +__hidden void lmo_close(lmo_archive_t *ar); -extern lmo_catalog_t *_lmo_catalogs; -extern lmo_catalog_t *_lmo_active_catalog; +__hidden extern lmo_catalog_t *_lmo_catalogs; +__hidden extern lmo_catalog_t *_lmo_active_catalog; -int lmo_load_catalog(const char *lang, const char *dir); -int lmo_change_catalog(const char *lang); -int lmo_translate(const char *key, int keylen, char **out, int *outlen); -int lmo_translate_ctxt(const char *key, int keylen, - const char *ctx, int ctxlen, char **out, int *outlen); -int lmo_translate_plural(int n, const char *skey, int skeylen, - const char *pkey, int pkeylen, - char **out, int *outlen); -int lmo_translate_plural_ctxt(int n, const char *skey, int skeylen, - const char *pkey, int pkeylen, - const char *ctx, int ctxlen, +__hidden int lmo_load_catalog(const char *lang, const char *dir); +__hidden int lmo_change_catalog(const char *lang); +__hidden int lmo_translate(const char *key, int keylen, char **out, int *outlen); +__hidden int lmo_translate_ctxt(const char *key, int keylen, + const char *ctx, int ctxlen, char **out, int *outlen); +__hidden int lmo_translate_plural(int n, const char *skey, int skeylen, + const char *pkey, int pkeylen, + char **out, int *outlen); +__hidden int lmo_translate_plural_ctxt(int n, const char *skey, int skeylen, + const char *pkey, int pkeylen, + const char *ctx, int ctxlen, char **out, int *outlen); -void lmo_iterate(lmo_iterate_cb_t cb, void *priv); -void lmo_close_catalog(const char *lang); +__hidden void lmo_iterate(lmo_iterate_cb_t cb, void *priv); +__hidden void lmo_close_catalog(const char *lang); #endif diff --git a/modules/luci-base/src/lib/luci.c b/modules/luci-base/src/lib/luci.c new file mode 100644 index 0000000000..e6860e727d --- /dev/null +++ b/modules/luci-base/src/lib/luci.c @@ -0,0 +1,383 @@ +/* + * LuCI low level routines - ucode binding + * + * Copyright (C) 2009-2022 Jo-Philipp Wich <jo@mein.io> + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +#include "lmo.h" + +#include <pwd.h> +#include <crypt.h> +#include <shadow.h> +#include <unistd.h> +#include <signal.h> +#include <errno.h> + +#include <sys/types.h> +#include <sys/utsname.h> +#include <sys/sysinfo.h> +#include <sys/statvfs.h> + +#include <ucode/module.h> + +/* translation catalog functions */ + +static uc_value_t * +uc_luci_load_catalog(uc_vm_t *vm, size_t nargs) { + uc_value_t *lang = uc_fn_arg(0); + uc_value_t *dir = uc_fn_arg(1); + + if (lang && ucv_type(lang) != UC_STRING) + return NULL; + + if (dir && ucv_type(dir) != UC_STRING) + return NULL; + + return ucv_boolean_new(lmo_load_catalog( + lang ? ucv_string_get(lang) : "en", + ucv_string_get(dir)) == 0); +} + +static uc_value_t * +uc_luci_close_catalog(uc_vm_t *vm, size_t nargs) { + uc_value_t *lang = uc_fn_arg(0); + + if (lang && ucv_type(lang) != UC_STRING) + return NULL; + + lmo_close_catalog(lang ? ucv_string_get(lang) : "en"); + + return ucv_boolean_new(true); +} + +static uc_value_t * +uc_luci_change_catalog(uc_vm_t *vm, size_t nargs) { + uc_value_t *lang = uc_fn_arg(0); + + if (lang && ucv_type(lang) != UC_STRING) + return NULL; + + return ucv_boolean_new(lmo_change_catalog( + lang ? ucv_string_get(lang) : "en") == 0); +} + +static void +uc_luci_get_translations_cb(uint32_t key, const char *val, int len, void *priv) { + uc_vm_t *vm = priv; + + uc_vm_stack_push(vm, ucv_get(uc_vm_stack_peek(vm, 0))); + uc_vm_stack_push(vm, ucv_uint64_new(key)); + uc_vm_stack_push(vm, ucv_string_new_length(val, (size_t)len)); + + if (uc_vm_call(vm, false, 2) == EXCEPTION_NONE) + ucv_put(uc_vm_stack_pop(vm)); +} + +static uc_value_t * +uc_luci_get_translations(uc_vm_t *vm, size_t nargs) { + lmo_iterate(uc_luci_get_translations_cb, vm); + + return ucv_boolean_new(true); +} + +static uc_value_t * +uc_luci_translate(uc_vm_t *vm, size_t nargs) { + uc_value_t *key = uc_fn_arg(0); + uc_value_t *ctx = uc_fn_arg(1); + int trlen; + char *tr; + + if (ucv_type(key) != UC_STRING) + return NULL; + + if (ctx && ucv_type(ctx) != UC_STRING) + return NULL; + + if (lmo_translate_ctxt(ucv_string_get(key), ucv_string_length(key), + ucv_string_get(ctx), ucv_string_length(ctx), + &tr, &trlen) != 0) + return NULL; + + return ucv_string_new_length(tr, (size_t)trlen); +} + +static uc_value_t * +uc_luci_ntranslate(uc_vm_t *vm, size_t nargs) { + uc_value_t *cnt = uc_fn_arg(0); + uc_value_t *skey = uc_fn_arg(1); + uc_value_t *pkey = uc_fn_arg(2); + uc_value_t *ctx = uc_fn_arg(3); + int trlen; + char *tr; + + if (ucv_type(skey) != UC_STRING || ucv_type(pkey) != UC_STRING) + return NULL; + + if (ctx && ucv_type(ctx) != UC_STRING) + return NULL; + + if (lmo_translate_plural_ctxt(ucv_int64_get(cnt), + ucv_string_get(skey), ucv_string_length(skey), + ucv_string_get(pkey), ucv_string_length(pkey), + ucv_string_get(ctx), ucv_string_length(ctx), + &tr, &trlen) != 0) + return NULL; + + return ucv_string_new_length(tr, (size_t)trlen); +} + +static uc_value_t * +uc_luci_hash(uc_vm_t *vm, size_t nargs) { + uc_value_t *key = uc_fn_arg(0); + uc_value_t *init = uc_fn_arg(1); + + if (ucv_type(key) != UC_STRING) + return NULL; + + if (init && ucv_type(init) != UC_INTEGER) + return NULL; + + return ucv_uint64_new(sfh_hash(ucv_string_get(key), ucv_string_length(key), + init ? ucv_uint64_get(init) : ucv_string_length(key))); +} + + +/* user functions */ + +static uc_value_t * +uc_luci_getspnam(uc_vm_t *vm, size_t nargs) { + uc_value_t *name = uc_fn_arg(0), *rv; + struct spwd *s; + + if (ucv_type(name) != UC_STRING) + return NULL; + + s = getspnam(ucv_string_get(name)); + + if (!s) + return NULL; + + rv = ucv_object_new(vm); + + ucv_object_add(rv, "namp", ucv_string_new(s->sp_namp)); + ucv_object_add(rv, "pwdp", ucv_string_new(s->sp_pwdp)); + ucv_object_add(rv, "lstchg", ucv_int64_new(s->sp_lstchg)); + ucv_object_add(rv, "min", ucv_int64_new(s->sp_min)); + ucv_object_add(rv, "max", ucv_int64_new(s->sp_max)); + ucv_object_add(rv, "warn", ucv_int64_new(s->sp_warn)); + ucv_object_add(rv, "inact", ucv_int64_new(s->sp_inact)); + ucv_object_add(rv, "expire", ucv_int64_new(s->sp_expire)); + + return rv; +} + +static uc_value_t * +uc_luci_getpwnam(uc_vm_t *vm, size_t nargs) { + uc_value_t *name = uc_fn_arg(0), *rv; + struct passwd *p; + + if (ucv_type(name) != UC_STRING) + return NULL; + + p = getpwnam(ucv_string_get(name)); + + if (!p) + return NULL; + + rv = ucv_object_new(vm); + + ucv_object_add(rv, "name", ucv_string_new(p->pw_name)); + ucv_object_add(rv, "passwd", ucv_string_new(p->pw_passwd)); + ucv_object_add(rv, "uid", ucv_int64_new(p->pw_uid)); + ucv_object_add(rv, "gid", ucv_int64_new(p->pw_gid)); + ucv_object_add(rv, "gecos", ucv_string_new(p->pw_gecos)); + ucv_object_add(rv, "dir", ucv_string_new(p->pw_dir)); + ucv_object_add(rv, "shell", ucv_string_new(p->pw_shell)); + + return rv; +} + +static uc_value_t * +uc_luci_crypt(uc_vm_t *vm, size_t nargs) { + uc_value_t *phrase = uc_fn_arg(0); + uc_value_t *setting = uc_fn_arg(1); + char *hash; + + if (ucv_type(phrase) != UC_STRING || ucv_type(setting) != UC_STRING) + return NULL; + + errno = 0; + hash = crypt(ucv_string_get(phrase), ucv_string_get(setting)); + + if (hash == NULL || errno != 0) + return NULL; + + return ucv_string_new(hash); +} + +static uc_value_t * +uc_luci_getuid(uc_vm_t *vm, size_t nargs) { + return ucv_int64_new(getuid()); +} + +static uc_value_t * +uc_luci_getgid(uc_vm_t *vm, size_t nargs) { + return ucv_int64_new(getgid()); +} + +static uc_value_t * +uc_luci_setuid(uc_vm_t *vm, size_t nargs) { + uc_value_t *uid = uc_fn_arg(0); + + if (ucv_type(uid) != UC_INTEGER) + return NULL; + + return ucv_boolean_new(setuid(ucv_int64_get(uid)) == 0); +} + +static uc_value_t * +uc_luci_setgid(uc_vm_t *vm, size_t nargs) { + uc_value_t *gid = uc_fn_arg(0); + + if (ucv_type(gid) != UC_INTEGER) + return NULL; + + return ucv_boolean_new(setgid(ucv_int64_get(gid)) == 0); +} + + +/* misc functions */ + +static uc_value_t * +uc_luci_kill(uc_vm_t *vm, size_t nargs) { + uc_value_t *pid = uc_fn_arg(0); + uc_value_t *sig = uc_fn_arg(1); + + if (ucv_type(pid) != UC_INTEGER || ucv_type(sig) != UC_INTEGER) + return NULL; + + return ucv_boolean_new(kill(ucv_int64_get(pid), ucv_int64_get(sig)) == 0); +} + +static uc_value_t * +uc_luci_uname(uc_vm_t *vm, size_t nargs) { + struct utsname u; + uc_value_t *rv; + + if (uname(&u) == -1) + return NULL; + + rv = ucv_object_new(vm); + + ucv_object_add(rv, "sysname", ucv_string_new(u.sysname)); + ucv_object_add(rv, "nodename", ucv_string_new(u.nodename)); + ucv_object_add(rv, "release", ucv_string_new(u.release)); + ucv_object_add(rv, "version", ucv_string_new(u.version)); + ucv_object_add(rv, "machine", ucv_string_new(u.machine)); + + return rv; +} + +static uc_value_t * +uc_luci_sysinfo(uc_vm_t *vm, size_t nargs) { + uc_value_t *rv, *loads; + struct sysinfo i; + + if (sysinfo(&i) == -1) + return NULL; + + rv = ucv_object_new(vm); + loads = ucv_array_new_length(vm, 3); + + ucv_array_push(loads, ucv_uint64_new(i.loads[0])); + ucv_array_push(loads, ucv_uint64_new(i.loads[1])); + ucv_array_push(loads, ucv_uint64_new(i.loads[2])); + + ucv_object_add(rv, "uptime", ucv_int64_new(i.uptime)); + ucv_object_add(rv, "loads", loads); + ucv_object_add(rv, "totalram", ucv_uint64_new(i.totalram)); + ucv_object_add(rv, "freeram", ucv_uint64_new(i.freeram)); + ucv_object_add(rv, "sharedram", ucv_uint64_new(i.sharedram)); + ucv_object_add(rv, "bufferram", ucv_uint64_new(i.bufferram)); + ucv_object_add(rv, "totalswap", ucv_uint64_new(i.totalswap)); + ucv_object_add(rv, "freeswap", ucv_uint64_new(i.freeswap)); + ucv_object_add(rv, "procs", ucv_uint64_new(i.procs)); + ucv_object_add(rv, "totalhigh", ucv_uint64_new(i.totalhigh)); + ucv_object_add(rv, "freehigh", ucv_uint64_new(i.freehigh)); + ucv_object_add(rv, "mem_unit", ucv_uint64_new(i.mem_unit)); + + return rv; +} + +static uc_value_t * +uc_luci_statvfs(uc_vm_t *vm, size_t nargs) { + uc_value_t *path = uc_fn_arg(0), *rv; + struct statvfs s; + + if (ucv_type(path) != UC_STRING) + return NULL; + + if (statvfs(ucv_string_get(path), &s) == -1) + return NULL; + + rv = ucv_object_new(vm); + + ucv_object_add(rv, "bsize", ucv_uint64_new(s.f_bsize)); + ucv_object_add(rv, "frsize", ucv_uint64_new(s.f_frsize)); + + ucv_object_add(rv, "blocks", ucv_uint64_new(s.f_blocks)); + ucv_object_add(rv, "bfree", ucv_uint64_new(s.f_bfree)); + ucv_object_add(rv, "bavail", ucv_uint64_new(s.f_bavail)); + + ucv_object_add(rv, "files", ucv_uint64_new(s.f_files)); + ucv_object_add(rv, "ffree", ucv_uint64_new(s.f_ffree)); + ucv_object_add(rv, "favail", ucv_uint64_new(s.f_favail)); + + ucv_object_add(rv, "fsid", ucv_uint64_new(s.f_fsid)); + ucv_object_add(rv, "flag", ucv_uint64_new(s.f_flag)); + ucv_object_add(rv, "namemax", ucv_uint64_new(s.f_namemax)); + + return rv; +} + + +static const uc_function_list_t luci_fns[] = { + { "load_catalog", uc_luci_load_catalog }, + { "close_catalog", uc_luci_close_catalog }, + { "change_catalog", uc_luci_change_catalog }, + { "get_translations", uc_luci_get_translations }, + { "translate", uc_luci_translate }, + { "ntranslate", uc_luci_ntranslate }, + { "hash", uc_luci_hash }, + + { "getspnam", uc_luci_getspnam }, + { "getpwnam", uc_luci_getpwnam }, + { "crypt", uc_luci_crypt }, + { "getuid", uc_luci_getuid }, + { "setuid", uc_luci_setuid }, + { "getgid", uc_luci_getgid }, + { "setgid", uc_luci_setgid }, + + { "kill", uc_luci_kill }, + { "uname", uc_luci_uname }, + { "sysinfo", uc_luci_sysinfo }, + { "statvfs", uc_luci_statvfs }, +}; + + +void uc_module_init(uc_vm_t *vm, uc_value_t *scope) +{ + uc_function_list_register(scope, luci_fns); +} diff --git a/modules/luci-base/src/plural_formula.y b/modules/luci-base/src/lib/plural_formula.y index 1623f8b282..1623f8b282 100644 --- a/modules/luci-base/src/plural_formula.y +++ b/modules/luci-base/src/lib/plural_formula.y diff --git a/modules/luci-base/src/mkversion.sh b/modules/luci-base/src/mkversion.sh deleted file mode 100755 index e2d02c1c74..0000000000 --- a/modules/luci-base/src/mkversion.sh +++ /dev/null @@ -1,24 +0,0 @@ -#!/bin/sh - -cat <<EOF > $1 -local pcall, dofile, _G = pcall, dofile, _G - -module "luci.version" - -if pcall(dofile, "/etc/openwrt_release") and _G.DISTRIB_DESCRIPTION then - distname = "" - distversion = _G.DISTRIB_DESCRIPTION - if _G.DISTRIB_REVISION then - distrevision = _G.DISTRIB_REVISION - if not distversion:find(distrevision,1,true) then - distversion = distversion .. " " .. distrevision - end - end -else - distname = "OpenWrt" - distversion = "Development Snapshot" -end - -luciname = "${3:-LuCI}" -luciversion = "${2:-Git}" -EOF diff --git a/modules/luci-base/src/po2lmo.c b/modules/luci-base/src/po2lmo.c index 5f398c266e..0a04e9ba17 100644 --- a/modules/luci-base/src/po2lmo.c +++ b/modules/luci-base/src/po2lmo.c @@ -16,7 +16,7 @@ * limitations under the License. */ -#include "template_lmo.h" +#include "lib/lmo.h" static void die(const char *msg) { @@ -169,8 +169,11 @@ static void print_msg(struct msg *msg, FILE *out) else snprintf(key, sizeof(key), "%s", msg->id); - key_id = sfh_hash(key, strlen(key)); - val_id = sfh_hash(msg->val[i], strlen(msg->val[i])); + len = strlen(key); + key_id = sfh_hash(key, len, len); + + len = strlen(msg->val[i]); + val_id = sfh_hash(msg->val[i], len, len); if (key_id != val_id) { n_entries++; diff --git a/modules/luci-base/src/template_lualib.c b/modules/luci-base/src/template_lualib.c deleted file mode 100644 index 4efd9f1de6..0000000000 --- a/modules/luci-base/src/template_lualib.c +++ /dev/null @@ -1,224 +0,0 @@ -/* - * LuCI Template - Lua binding - * - * Copyright (C) 2009 Jo-Philipp Wich <jow@openwrt.org> - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - -#include "template_lualib.h" - -static int template_L_do_parse(lua_State *L, struct template_parser *parser, const char *chunkname) -{ - int lua_status, rv; - - if (!parser) - { - lua_pushnil(L); - lua_pushinteger(L, errno); - lua_pushstring(L, strerror(errno)); - return 3; - } - - lua_status = lua_load(L, template_reader, parser, chunkname); - - if (lua_status == 0) - rv = 1; - else - rv = template_error(L, parser); - - template_close(parser); - - return rv; -} - -int template_L_parse(lua_State *L) -{ - const char *file = luaL_checkstring(L, 1); - struct template_parser *parser = template_open(file); - - return template_L_do_parse(L, parser, file); -} - -int template_L_parse_string(lua_State *L) -{ - size_t len; - const char *str = luaL_checklstring(L, 1, &len); - struct template_parser *parser = template_string(str, len); - - return template_L_do_parse(L, parser, "[string]"); -} - -int template_L_utf8(lua_State *L) -{ - size_t len = 0; - const char *str = luaL_checklstring(L, 1, &len); - char *res = utf8(str, len); - - if (res != NULL) - { - lua_pushstring(L, res); - free(res); - - return 1; - } - - return 0; -} - -int template_L_pcdata(lua_State *L) -{ - size_t len = 0; - const char *str = luaL_checklstring(L, 1, &len); - char *res = pcdata(str, len); - - if (res != NULL) - { - lua_pushstring(L, res); - free(res); - - return 1; - } - - return 0; -} - -int template_L_striptags(lua_State *L) -{ - size_t len = 0; - const char *str = luaL_checklstring(L, 1, &len); - char *res = striptags(str, len); - - if (res != NULL) - { - lua_pushstring(L, res); - free(res); - - return 1; - } - - return 0; -} - -static int template_L_load_catalog(lua_State *L) { - const char *lang = luaL_optstring(L, 1, "en"); - const char *dir = luaL_optstring(L, 2, NULL); - lua_pushboolean(L, !lmo_load_catalog(lang, dir)); - return 1; -} - -static int template_L_close_catalog(lua_State *L) { - const char *lang = luaL_optstring(L, 1, "en"); - lmo_close_catalog(lang); - return 0; -} - -static int template_L_change_catalog(lua_State *L) { - const char *lang = luaL_optstring(L, 1, "en"); - lua_pushboolean(L, !lmo_change_catalog(lang)); - return 1; -} - -static void template_L_get_translations_cb(uint32_t key, const char *val, int len, void *priv) { - lua_State *L = priv; - char hex[9]; - - luaL_checktype(L, 1, LUA_TFUNCTION); - snprintf(hex, sizeof(hex), "%08x", key); - - lua_pushvalue(L, 1); - lua_pushstring(L, hex); - lua_pushlstring(L, val, len); - lua_call(L, 2, 0); -} - -static int template_L_get_translations(lua_State *L) { - lmo_iterate(template_L_get_translations_cb, L); - return 0; -} - -static int template_L_translate(lua_State *L) { - size_t len, ctxlen = 0; - char *tr; - int trlen; - const char *key = luaL_checklstring(L, 1, &len); - const char *ctx = luaL_optlstring(L, 2, NULL, &ctxlen); - - switch (lmo_translate_ctxt(key, len, ctx, ctxlen, &tr, &trlen)) - { - case 0: - lua_pushlstring(L, tr, trlen); - return 1; - - case -1: - return 0; - } - - lua_pushnil(L); - lua_pushstring(L, "no catalog loaded"); - return 2; -} - -static int template_L_ntranslate(lua_State *L) { - size_t slen, plen, ctxlen = 0; - char *tr; - int trlen; - int n = luaL_checkinteger(L, 1); - const char *skey = luaL_checklstring(L, 2, &slen); - const char *pkey = luaL_checklstring(L, 3, &plen); - const char *ctx = luaL_optlstring(L, 4, NULL, &ctxlen); - - switch (lmo_translate_plural_ctxt(n, skey, slen, pkey, plen, ctx, ctxlen, &tr, &trlen)) - { - case 0: - lua_pushlstring(L, tr, trlen); - return 1; - - case -1: - return 0; - } - - lua_pushnil(L); - lua_pushstring(L, "no catalog loaded"); - return 2; -} - -static int template_L_hash(lua_State *L) { - size_t len; - const char *key = luaL_checklstring(L, 1, &len); - lua_pushinteger(L, sfh_hash(key, len)); - return 1; -} - - -/* module table */ -static const luaL_reg R[] = { - { "parse", template_L_parse }, - { "parse_string", template_L_parse_string }, - { "utf8", template_L_utf8 }, - { "pcdata", template_L_pcdata }, - { "striptags", template_L_striptags }, - { "load_catalog", template_L_load_catalog }, - { "close_catalog", template_L_close_catalog }, - { "change_catalog", template_L_change_catalog }, - { "get_translations", template_L_get_translations }, - { "translate", template_L_translate }, - { "ntranslate", template_L_ntranslate }, - { "hash", template_L_hash }, - { NULL, NULL } -}; - -LUALIB_API int luaopen_luci_template_parser(lua_State *L) { - luaL_register(L, TEMPLATE_LUALIB_META, R); - return 1; -} diff --git a/modules/luci-base/src/template_lualib.h b/modules/luci-base/src/template_lualib.h deleted file mode 100644 index ff7746d158..0000000000 --- a/modules/luci-base/src/template_lualib.h +++ /dev/null @@ -1,30 +0,0 @@ -/* - * LuCI Template - Lua library header - * - * Copyright (C) 2009 Jo-Philipp Wich <jow@openwrt.org> - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - -#ifndef _TEMPLATE_LUALIB_H_ -#define _TEMPLATE_LUALIB_H_ - -#include "template_parser.h" -#include "template_utils.h" -#include "template_lmo.h" - -#define TEMPLATE_LUALIB_META "template.parser" - -LUALIB_API int luaopen_luci_template_parser(lua_State *L); - -#endif diff --git a/modules/luci-base/src/template_parser.c b/modules/luci-base/src/template_parser.c deleted file mode 100644 index 0ef08c63d2..0000000000 --- a/modules/luci-base/src/template_parser.c +++ /dev/null @@ -1,419 +0,0 @@ -/* - * LuCI Template - Parser implementation - * - * Copyright (C) 2009-2012 Jo-Philipp Wich <jow@openwrt.org> - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - -#include "template_parser.h" -#include "template_utils.h" -#include "template_lmo.h" - - -/* leading and trailing code for different types */ -const char *gen_code[9][2] = { - { NULL, NULL }, - { "write(\"", "\")" }, - { NULL, NULL }, - { "write(tostring(", " or \"\"))" }, - { "include(\"", "\")" }, - { "write(\"", "\")" }, - { "write(\"", "\")" }, - { NULL, " " }, - { NULL, NULL }, -}; - -/* Simple strstr() like function that takes len arguments for both haystack and needle. */ -static char *strfind(char *haystack, int hslen, const char *needle, int ndlen) -{ - int match = 0; - int i, j; - - for( i = 0; i < hslen; i++ ) - { - if( haystack[i] == needle[0] ) - { - match = ((ndlen == 1) || ((i + ndlen) <= hslen)); - - for( j = 1; (j < ndlen) && ((i + j) < hslen); j++ ) - { - if( haystack[i+j] != needle[j] ) - { - match = 0; - break; - } - } - - if( match ) - return &haystack[i]; - } - } - - return NULL; -} - -struct template_parser * template_open(const char *file) -{ - struct stat s; - struct template_parser *parser; - - if (!(parser = malloc(sizeof(*parser)))) - goto err; - - memset(parser, 0, sizeof(*parser)); - parser->fd = -1; - parser->file = file; - - if (stat(file, &s)) - goto err; - - if ((parser->fd = open(file, O_RDONLY)) < 0) - goto err; - - parser->size = s.st_size; - parser->data = mmap(NULL, parser->size, PROT_READ, MAP_PRIVATE, - parser->fd, 0); - - if (parser->data != MAP_FAILED) - { - parser->off = parser->data; - parser->cur_chunk.type = T_TYPE_INIT; - parser->cur_chunk.s = parser->data; - parser->cur_chunk.e = parser->data; - - return parser; - } - -err: - template_close(parser); - return NULL; -} - -struct template_parser * template_string(const char *str, uint32_t len) -{ - struct template_parser *parser; - - if (!str) { - errno = EINVAL; - goto err; - } - - if (!(parser = malloc(sizeof(*parser)))) - goto err; - - memset(parser, 0, sizeof(*parser)); - parser->fd = -1; - - parser->size = len; - parser->data = (char*)str; - - parser->off = parser->data; - parser->cur_chunk.type = T_TYPE_INIT; - parser->cur_chunk.s = parser->data; - parser->cur_chunk.e = parser->data; - - return parser; - -err: - template_close(parser); - return NULL; -} - -void template_close(struct template_parser *parser) -{ - if (!parser) - return; - - if (parser->gc != NULL) - free(parser->gc); - - /* if file is not set, we were parsing a string */ - if (parser->file) { - if ((parser->data != NULL) && (parser->data != MAP_FAILED)) - munmap(parser->data, parser->size); - - if (parser->fd >= 0) - close(parser->fd); - } - - free(parser); -} - -void template_text(struct template_parser *parser, const char *e) -{ - const char *s = parser->off; - - if (s < (parser->data + parser->size)) - { - if (parser->strip_after) - { - while ((s <= e) && isspace(*s)) - s++; - } - - parser->cur_chunk.type = T_TYPE_TEXT; - } - else - { - parser->cur_chunk.type = T_TYPE_EOF; - } - - parser->cur_chunk.line = parser->line; - parser->cur_chunk.s = s; - parser->cur_chunk.e = e; -} - -void template_code(struct template_parser *parser, const char *e) -{ - const char *s = parser->off; - - parser->strip_before = 0; - parser->strip_after = 0; - - if (*s == '-') - { - parser->strip_before = 1; - for (s++; (s <= e) && (*s == ' ' || *s == '\t'); s++); - } - - if (*(e-1) == '-') - { - parser->strip_after = 1; - for (e--; (e >= s) && (*e == ' ' || *e == '\t'); e--); - } - - switch (*s) - { - /* comment */ - case '#': - s++; - parser->cur_chunk.type = T_TYPE_COMMENT; - break; - - /* include */ - case '+': - s++; - parser->cur_chunk.type = T_TYPE_INCLUDE; - break; - - /* translate */ - case ':': - s++; - parser->cur_chunk.type = T_TYPE_I18N; - break; - - /* translate raw */ - case '_': - s++; - parser->cur_chunk.type = T_TYPE_I18N_RAW; - break; - - /* expr */ - case '=': - s++; - parser->cur_chunk.type = T_TYPE_EXPR; - break; - - /* code */ - default: - parser->cur_chunk.type = T_TYPE_CODE; - break; - } - - parser->cur_chunk.line = parser->line; - parser->cur_chunk.s = s; - parser->cur_chunk.e = e; -} - -static const char * -template_format_chunk(struct template_parser *parser, size_t *sz) -{ - const char *s, *p; - const char *head, *tail; - struct template_chunk *c = &parser->prv_chunk; - struct template_buffer *buf; - - *sz = 0; - s = parser->gc = NULL; - - if (parser->strip_before && c->type == T_TYPE_TEXT) - { - while ((c->e > c->s) && isspace(*(c->e - 1))) - c->e--; - } - - /* empty chunk */ - if (c->s == c->e) - { - if (c->type == T_TYPE_EOF) - { - *sz = 0; - s = NULL; - } - else - { - *sz = 1; - s = " "; - } - } - - /* format chunk */ - else if ((buf = buf_init(c->e - c->s)) != NULL) - { - if ((head = gen_code[c->type][0]) != NULL) - buf_append(buf, head, strlen(head)); - - switch (c->type) - { - case T_TYPE_TEXT: - luastr_escape(buf, c->s, c->e - c->s, 0); - break; - - case T_TYPE_EXPR: - buf_append(buf, c->s, c->e - c->s); - for (p = c->s; p < c->e; p++) - parser->line += (*p == '\n'); - break; - - case T_TYPE_INCLUDE: - luastr_escape(buf, c->s, c->e - c->s, 0); - break; - - case T_TYPE_I18N: - luastr_translate(buf, c->s, c->e - c->s, 1); - break; - - case T_TYPE_I18N_RAW: - luastr_translate(buf, c->s, c->e - c->s, 0); - break; - - case T_TYPE_CODE: - buf_append(buf, c->s, c->e - c->s); - for (p = c->s; p < c->e; p++) - parser->line += (*p == '\n'); - break; - } - - if ((tail = gen_code[c->type][1]) != NULL) - buf_append(buf, tail, strlen(tail)); - - *sz = buf_length(buf); - s = parser->gc = buf_destroy(buf); - - if (!*sz) - { - *sz = 1; - s = " "; - } - } - - return s; -} - -const char *template_reader(lua_State *L, void *ud, size_t *sz) -{ - struct template_parser *parser = ud; - int rem = parser->size - (parser->off - parser->data); - char *tag; - - parser->prv_chunk = parser->cur_chunk; - - /* free previous string */ - if (parser->gc) - { - free(parser->gc); - parser->gc = NULL; - } - - /* before tag */ - if (!parser->in_expr) - { - if ((tag = strfind(parser->off, rem, "<%", 2)) != NULL) - { - template_text(parser, tag); - parser->off = tag + 2; - parser->in_expr = 1; - } - else - { - template_text(parser, parser->data + parser->size); - parser->off = parser->data + parser->size; - } - } - - /* inside tag */ - else - { - if ((tag = strfind(parser->off, rem, "%>", 2)) != NULL) - { - template_code(parser, tag); - parser->off = tag + 2; - parser->in_expr = 0; - } - else - { - /* unexpected EOF */ - template_code(parser, parser->data + parser->size); - - *sz = 1; - return "\033"; - } - } - - return template_format_chunk(parser, sz); -} - -int template_error(lua_State *L, struct template_parser *parser) -{ - const char *err = luaL_checkstring(L, -1); - const char *off = parser->prv_chunk.s; - const char *ptr; - char msg[1024]; - int line = 0; - int chunkline = 0; - - if ((ptr = strfind((char *)err, strlen(err), "]:", 2)) != NULL) - { - chunkline = atoi(ptr + 2) - parser->prv_chunk.line; - - while (*ptr) - { - if (*ptr++ == ' ') - { - err = ptr; - break; - } - } - } - - if (strfind((char *)err, strlen(err), "'char(27)'", 10) != NULL) - { - off = parser->data + parser->size; - err = "'%>' expected before end of file"; - chunkline = 0; - } - - for (ptr = parser->data; ptr < off; ptr++) - if (*ptr == '\n') - line++; - - snprintf(msg, sizeof(msg), "Syntax error in %s:%d: %s", - parser->file ? parser->file : "[string]", line + chunkline, err ? err : "(unknown error)"); - - lua_pushnil(L); - lua_pushinteger(L, line + chunkline); - lua_pushstring(L, msg); - - return 3; -} diff --git a/modules/luci-base/src/template_parser.h b/modules/luci-base/src/template_parser.h deleted file mode 100644 index 2415e87079..0000000000 --- a/modules/luci-base/src/template_parser.h +++ /dev/null @@ -1,80 +0,0 @@ -/* - * LuCI Template - Parser header - * - * Copyright (C) 2009 Jo-Philipp Wich <jow@openwrt.org> - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - -#ifndef _TEMPLATE_PARSER_H_ -#define _TEMPLATE_PARSER_H_ - -#include <stdlib.h> -#include <stdio.h> -#include <stdint.h> -#include <unistd.h> -#include <fcntl.h> -#include <sys/stat.h> -#include <sys/mman.h> -#include <string.h> -#include <ctype.h> -#include <errno.h> - -#include <lua.h> -#include <lualib.h> -#include <lauxlib.h> - - -/* code types */ -#define T_TYPE_INIT 0 -#define T_TYPE_TEXT 1 -#define T_TYPE_COMMENT 2 -#define T_TYPE_EXPR 3 -#define T_TYPE_INCLUDE 4 -#define T_TYPE_I18N 5 -#define T_TYPE_I18N_RAW 6 -#define T_TYPE_CODE 7 -#define T_TYPE_EOF 8 - - -struct template_chunk { - const char *s; - const char *e; - int type; - int line; -}; - -/* parser state */ -struct template_parser { - int fd; - uint32_t size; - char *data; - char *off; - char *gc; - int line; - int in_expr; - int strip_before; - int strip_after; - struct template_chunk prv_chunk; - struct template_chunk cur_chunk; - const char *file; -}; - -struct template_parser * template_open(const char *file); -struct template_parser * template_string(const char *str, uint32_t len); -void template_close(struct template_parser *parser); - -const char *template_reader(lua_State *L, void *ud, size_t *sz); -int template_error(lua_State *L, struct template_parser *parser); - -#endif diff --git a/modules/luci-base/src/template_utils.c b/modules/luci-base/src/template_utils.c deleted file mode 100644 index 8580405e32..0000000000 --- a/modules/luci-base/src/template_utils.c +++ /dev/null @@ -1,500 +0,0 @@ -/* - * LuCI Template - Utility functions - * - * Copyright (C) 2010 Jo-Philipp Wich <jow@openwrt.org> - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - -#include "template_utils.h" -#include "template_lmo.h" - -/* initialize a buffer object */ -struct template_buffer * buf_init(int size) -{ - struct template_buffer *buf; - - if (size <= 0) - size = 1024; - - buf = (struct template_buffer *)malloc(sizeof(struct template_buffer)); - - if (buf != NULL) - { - buf->fill = 0; - buf->size = size; - buf->data = malloc(buf->size); - - if (buf->data != NULL) - { - buf->dptr = buf->data; - buf->data[0] = 0; - - return buf; - } - - free(buf); - } - - return NULL; -} - -/* grow buffer */ -int buf_grow(struct template_buffer *buf, int size) -{ - unsigned int off = (buf->dptr - buf->data); - char *data; - - if (size <= 0) - size = 1024; - - data = realloc(buf->data, buf->size + size); - - if (data != NULL) - { - buf->data = data; - buf->dptr = data + off; - buf->size += size; - - return buf->size; - } - - return 0; -} - -/* put one char into buffer object */ -int buf_putchar(struct template_buffer *buf, char c) -{ - if( ((buf->fill + 1) >= buf->size) && !buf_grow(buf, 0) ) - return 0; - - *(buf->dptr++) = c; - *(buf->dptr) = 0; - - buf->fill++; - return 1; -} - -/* append data to buffer */ -int buf_append(struct template_buffer *buf, const char *s, int len) -{ - if ((buf->fill + len + 1) >= buf->size) - { - if (!buf_grow(buf, len + 1)) - return 0; - } - - memcpy(buf->dptr, s, len); - buf->fill += len; - buf->dptr += len; - - *(buf->dptr) = 0; - - return len; -} - -/* read buffer length */ -int buf_length(struct template_buffer *buf) -{ - return buf->fill; -} - -/* destroy buffer object and return pointer to data */ -char * buf_destroy(struct template_buffer *buf) -{ - char *data = buf->data; - - free(buf); - return data; -} - - -/* calculate the number of expected continuation chars */ -static inline int mb_num_chars(unsigned char c) -{ - if ((c & 0xE0) == 0xC0) - return 2; - else if ((c & 0xF0) == 0xE0) - return 3; - else if ((c & 0xF8) == 0xF0) - return 4; - else if ((c & 0xFC) == 0xF8) - return 5; - else if ((c & 0xFE) == 0xFC) - return 6; - - return 1; -} - -/* test whether the given byte is a valid continuation char */ -static inline int mb_is_cont(unsigned char c) -{ - return ((c >= 0x80) && (c <= 0xBF)); -} - -/* test whether the byte sequence at the given pointer with the given - * length is the shortest possible representation of the code point */ -static inline int mb_is_shortest(unsigned char *s, int n) -{ - switch (n) - { - case 2: - /* 1100000x (10xxxxxx) */ - return !(((*s >> 1) == 0x60) && - ((*(s+1) >> 6) == 0x02)); - - case 3: - /* 11100000 100xxxxx (10xxxxxx) */ - return !((*s == 0xE0) && - ((*(s+1) >> 5) == 0x04) && - ((*(s+2) >> 6) == 0x02)); - - case 4: - /* 11110000 1000xxxx (10xxxxxx 10xxxxxx) */ - return !((*s == 0xF0) && - ((*(s+1) >> 4) == 0x08) && - ((*(s+2) >> 6) == 0x02) && - ((*(s+3) >> 6) == 0x02)); - - case 5: - /* 11111000 10000xxx (10xxxxxx 10xxxxxx 10xxxxxx) */ - return !((*s == 0xF8) && - ((*(s+1) >> 3) == 0x10) && - ((*(s+2) >> 6) == 0x02) && - ((*(s+3) >> 6) == 0x02) && - ((*(s+4) >> 6) == 0x02)); - - case 6: - /* 11111100 100000xx (10xxxxxx 10xxxxxx 10xxxxxx 10xxxxxx) */ - return !((*s == 0xF8) && - ((*(s+1) >> 2) == 0x20) && - ((*(s+2) >> 6) == 0x02) && - ((*(s+3) >> 6) == 0x02) && - ((*(s+4) >> 6) == 0x02) && - ((*(s+5) >> 6) == 0x02)); - } - - return 1; -} - -/* test whether the byte sequence at the given pointer with the given - * length is an UTF-16 surrogate */ -static inline int mb_is_surrogate(unsigned char *s, int n) -{ - return ((n == 3) && (*s == 0xED) && (*(s+1) >= 0xA0) && (*(s+1) <= 0xBF)); -} - -/* test whether the byte sequence at the given pointer with the given - * length is an illegal UTF-8 code point */ -static inline int mb_is_illegal(unsigned char *s, int n) -{ - return ((n == 3) && (*s == 0xEF) && (*(s+1) == 0xBF) && - (*(s+2) >= 0xBE) && (*(s+2) <= 0xBF)); -} - - -/* scan given source string, validate UTF-8 sequence and store result - * in given buffer object */ -static int _validate_utf8(unsigned char **s, int l, struct template_buffer *buf) -{ - unsigned char *ptr = *s; - unsigned int o = 0, v, n; - - /* ascii byte without null */ - if ((*(ptr+0) >= 0x01) && (*(ptr+0) <= 0x7F)) - { - if (!buf_putchar(buf, *ptr++)) - return 0; - - o = 1; - } - - /* multi byte sequence */ - else if ((n = mb_num_chars(*ptr)) > 1) - { - /* count valid chars */ - for (v = 1; (v <= n) && ((o+v) < l) && mb_is_cont(*(ptr+v)); v++); - - switch (n) - { - case 6: - case 5: - /* five and six byte sequences are always invalid */ - if (!buf_putchar(buf, '?')) - return 0; - - break; - - default: - /* if the number of valid continuation bytes matches the - * expected number and if the sequence is legal, copy - * the bytes to the destination buffer */ - if ((v == n) && mb_is_shortest(ptr, n) && - !mb_is_surrogate(ptr, n) && !mb_is_illegal(ptr, n)) - { - /* copy sequence */ - if (!buf_append(buf, (char *)ptr, n)) - return 0; - } - - /* the found sequence is illegal, skip it */ - else - { - /* invalid sequence */ - if (!buf_putchar(buf, '?')) - return 0; - } - - break; - } - - /* advance beyond the last found valid continuation char */ - o = v; - ptr += v; - } - - /* invalid byte (0x00) */ - else - { - if (!buf_putchar(buf, '?')) /* or 0xEF, 0xBF, 0xBD */ - return 0; - - o = 1; - ptr++; - } - - *s = ptr; - return o; -} - -/* sanitize given string and replace all invalid UTF-8 sequences with "?" */ -char * utf8(const char *s, unsigned int l) -{ - struct template_buffer *buf = buf_init(l); - unsigned char *ptr = (unsigned char *)s; - unsigned int v, o; - - if (!buf) - return NULL; - - for (o = 0; o < l; o++) - { - /* ascii char */ - if ((*ptr >= 0x01) && (*ptr <= 0x7F)) - { - if (!buf_putchar(buf, (char)*ptr++)) - break; - } - - /* invalid byte or multi byte sequence */ - else - { - if (!(v = _validate_utf8(&ptr, l - o, buf))) - break; - - o += (v - 1); - } - } - - return buf_destroy(buf); -} - -/* Sanitize given string and strip all invalid XML bytes - * Validate UTF-8 sequences - * Escape XML control chars */ -char * pcdata(const char *s, unsigned int l) -{ - struct template_buffer *buf = buf_init(l); - unsigned char *ptr = (unsigned char *)s; - unsigned int o, v; - char esq[8]; - int esl; - - if (!buf) - return NULL; - - for (o = 0; o < l; o++) - { - /* Invalid XML bytes */ - if (((*ptr >= 0x00) && (*ptr <= 0x08)) || - ((*ptr >= 0x0B) && (*ptr <= 0x0C)) || - ((*ptr >= 0x0E) && (*ptr <= 0x1F)) || - (*ptr == 0x7F)) - { - ptr++; - } - - /* Escapes */ - else if ((*ptr == 0x26) || - (*ptr == 0x27) || - (*ptr == 0x22) || - (*ptr == 0x3C) || - (*ptr == 0x3E)) - { - esl = snprintf(esq, sizeof(esq), "&#%i;", *ptr); - - if (!buf_append(buf, esq, esl)) - break; - - ptr++; - } - - /* ascii char */ - else if (*ptr <= 0x7F) - { - buf_putchar(buf, (char)*ptr++); - } - - /* multi byte sequence */ - else - { - if (!(v = _validate_utf8(&ptr, l - o, buf))) - break; - - o += (v - 1); - } - } - - return buf_destroy(buf); -} - -char * striptags(const char *s, unsigned int l) -{ - struct template_buffer *buf = buf_init(l); - unsigned char *ptr = (unsigned char *)s; - unsigned char *end = ptr + l; - unsigned char *tag; - unsigned char prev; - char esq[8]; - int esl; - - for (prev = ' '; ptr < end; ptr++) - { - if ((*ptr == '<') && ((ptr + 2) < end) && - ((*(ptr + 1) == '/') || isalpha(*(ptr + 1)))) - { - for (tag = ptr; tag < end; tag++) - { - if (*tag == '>') - { - if (!isspace(prev)) - buf_putchar(buf, ' '); - - ptr = tag; - prev = ' '; - break; - } - } - } - else if (isspace(*ptr)) - { - if (!isspace(prev)) - buf_putchar(buf, *ptr); - - prev = *ptr; - } - else - { - switch(*ptr) - { - case '"': - case '\'': - case '<': - case '>': - case '&': - esl = snprintf(esq, sizeof(esq), "&#%i;", *ptr); - buf_append(buf, esq, esl); - break; - - default: - buf_putchar(buf, *ptr); - break; - } - - prev = *ptr; - } - } - - return buf_destroy(buf); -} - -void luastr_escape(struct template_buffer *out, const char *s, unsigned int l, - int escape_xml) -{ - int esl; - char esq[8]; - char *ptr; - - for (ptr = (char *)s; ptr < (s + l); ptr++) - { - switch (*ptr) - { - case '\\': - buf_append(out, "\\\\", 2); - break; - - case '"': - if (escape_xml) - buf_append(out, """, 5); - else - buf_append(out, "\\\"", 2); - break; - - case '\n': - buf_append(out, "\\n", 2); - break; - - case '\'': - case '&': - case '<': - case '>': - if (escape_xml) - { - esl = snprintf(esq, sizeof(esq), "&#%i;", *ptr); - buf_append(out, esq, esl); - break; - } - - default: - buf_putchar(out, *ptr); - } - } -} - -void luastr_translate(struct template_buffer *out, const char *s, unsigned int l, - int escape_xml) -{ - int trlen, idlen = l, ctxtlen = 0, esc = 0; - const char *p, *msgid = s, *msgctxt = NULL; - char *tr; - - for (p = s; p < s + l; p++) { - if (esc) { - esc = 0; - } - else if (*p == '\\') { - esc = 1; - } - else if (*p == '|') { - idlen = p - s; - msgctxt = p + 1; - ctxtlen = s + l - msgctxt; - break; - } - } - - if (!lmo_translate_ctxt(msgid, idlen, msgctxt, ctxtlen, &tr, &trlen)) - luastr_escape(out, tr, trlen, escape_xml); - else - luastr_escape(out, s, l, escape_xml); -} diff --git a/modules/luci-base/src/template_utils.h b/modules/luci-base/src/template_utils.h deleted file mode 100644 index 32a79f93bc..0000000000 --- a/modules/luci-base/src/template_utils.h +++ /dev/null @@ -1,49 +0,0 @@ -/* - * LuCI Template - Utility header - * - * Copyright (C) 2010-2012 Jo-Philipp Wich <jow@openwrt.org> - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - */ - -#ifndef _TEMPLATE_UTILS_H_ -#define _TEMPLATE_UTILS_H_ - -#include <stdlib.h> -#include <stdio.h> -#include <string.h> - - -/* buffer object */ -struct template_buffer { - char *data; - char *dptr; - unsigned int size; - unsigned int fill; -}; - -struct template_buffer * buf_init(int size); -int buf_grow(struct template_buffer *buf, int size); -int buf_putchar(struct template_buffer *buf, char c); -int buf_append(struct template_buffer *buf, const char *s, int len); -int buf_length(struct template_buffer *buf); -char * buf_destroy(struct template_buffer *buf); - -char * utf8(const char *s, unsigned int l); -char * pcdata(const char *s, unsigned int l); -char * striptags(const char *s, unsigned int l); - -void luastr_escape(struct template_buffer *out, const char *s, unsigned int l, int escape_xml); -void luastr_translate(struct template_buffer *out, const char *s, unsigned int l, int escape_xml); - -#endif diff --git a/modules/luci-base/ucode/controller/admin/index.uc b/modules/luci-base/ucode/controller/admin/index.uc new file mode 100644 index 0000000000..16a74abc46 --- /dev/null +++ b/modules/luci-base/ucode/controller/admin/index.uc @@ -0,0 +1,158 @@ +// Copyright 2022 Jo-Philipp Wich <jo@mein.io> +// Licensed to the public under the Apache License 2.0. + +import { load_catalog, change_catalog, get_translations } from 'luci.core'; + +const ubus_types = [ + null, + 'array', + 'object', + 'string', + null, // INT64 + 'number', + null, // INT16, + 'boolean', + 'double' +]; + + +function ubus_reply(id, data, code, errmsg) { + const reply = { jsonrpc: '2.0', id }; + + if (errmsg) + reply.error = { code, message: errmsg }; + else if (type(code) == 'object') + reply.result = code; + else + reply.result = [ code, data ]; + + return reply; +} + +function ubus_access(sid, obj, fun) { + return (ubus.call('session', 'access', { + ubus_rpc_session: sid, + scope: 'ubus', + object: obj, + function: fun + })?.access == true); +} + +function ubus_request(req) { + if (type(req?.method) != 'string' || req?.jsonrpc != '2.0' || req?.id == null) + return ubus_reply(null, null, -32600, 'Invalid request'); + + if (req.method == 'call') { + if (type(req?.params) != 'array' || length(req.params) < 3) + return ubus_reply(null, null, -32600, 'Invalid parameters'); + + let sid = req.params[0], + obj = req.params[1], + fun = req.params[2], + arg = req.params[3] ?? {}; + + if (type(arg) != 'object' || exists(arg, 'ubus_rpc_session')) + return ubus_reply(req.id, null, -32602, 'Invalid parameters'); + + if (sid == '00000000000000000000000000000000' && ctx.authsession) + sid = ctx.authsession; + + if (!ubus_access(sid, obj, fun)) + return ubus_reply(req.id, null, -32002, 'Access denied'); + + arg.ubus_rpc_session = sid; + + + // clear error + ubus.error(); + + const res = ubus.call(obj, fun, arg); + + return ubus_reply(req.id, res, ubus.error(true) ?? 0); + } + + if (req.method == 'list') { + if (req?.params == null || (type(req.params) == 'array' && length(req.params) == 0)) { + return ubus_reply(req.id, null, ubus.list()); + } + else if (type(req.params) == 'array') { + const rv = {}; + + for (let param in req.params) { + if (type(param) != 'string') + return ubus_reply(req.id, null, -32602, 'Invalid parameters'); + + for (let m, p in ubus.list(param)?.[0]) { + for (let pn, pt in p) { + rv[param] ??= {}; + rv[param][m] ??= {}; + rv[param][m][pn] = ubus_types[pt] ?? 'unknown'; + } + } + } + + return ubus_reply(req.id, null, rv); + } + else { + return ubus_reply(req.id, null, -32602, 'Invalid parameters') + } + } + + return ubus_reply(req.id, null, -32601, 'Method not found') +} + + +return { + action_ubus: function() { + let request; + + try { request = json(http.content()); } + catch { request = null; } + + http.prepare_content('application/json; charset=UTF-8'); + + if (type(request) == 'object') + http.write_json(ubus_request(request)); + else if (type(request) == 'array') + http.write_json(map(request, ubus_request)); + else + http.write_json(ubus_reply(null, null, -32700, 'Parse error')) + }, + + action_translations: function(reqlang) { + if (reqlang != null && reqlang != dispatcher.lang) { + load_catalog(reqlang, '/usr/lib/lua/luci/i18n'); + change_catalog(reqlang); + } + + http.prepare_content('application/javascript; charset=UTF-8'); + http.write('window.TR={'); + + get_translations((key, val) => http.write(sprintf('"%08x":%J,', key, val))); + + http.write('};'); + }, + + action_logout: function() { + const url = dispatcher.build_url(); + + if (ctx.authsession) { + ubus.call('session', 'destroy', { ubus_rpc_session: ctx.authsession }); + + if (http.getenv('HTTPS') == 'on') + http.header('Set-Cookie', `sysauth_https=; expires=Thu, 01 Jan 1970 01:00:00 GMT; path=${url}`); + + http.header('Set-Cookie', `sysauth_http=; expires=Thu, 01 Jan 1970 01:00:00 GMT; path=${url}`); + } + + http.redirect(url); + }, + + action_menu: function() { + const session = dispatcher.is_authenticated({ methods: [ 'cookie:sysauth_https', 'cookie:sysauth_http' ] }); + const menu = dispatcher.menu_json(session?.acls ?? {}) ?? {}; + + http.prepare_content('application/json; charset=UTF-8'); + http.write_json(menu); + } +}; diff --git a/modules/luci-base/ucode/controller/admin/uci.uc b/modules/luci-base/ucode/controller/admin/uci.uc new file mode 100644 index 0000000000..c38a42b10b --- /dev/null +++ b/modules/luci-base/ucode/controller/admin/uci.uc @@ -0,0 +1,150 @@ +// Copyright 2022 Jo-Philipp Wich <jo@mein.io> +// Licensed to the public under the Apache License 2.0. + +import { STATUS_NO_DATA, STATUS_PERMISSION_DENIED } from 'ubus'; + +let last_ubus_error; + +const ubus_error_map = [ + 200, 'OK', + 400, 'Invalid command', + 400, 'Invalid argument', + 404, 'Method not found', + 404, 'Not found', + 204, 'No data', + 403, 'Permission denied', + 504, 'Timeout', + 500, 'Not supported', + 500, 'Unknown error', + 503, 'Connection failed', + 500, 'Out of memory', + 400, 'Parse error', + 500, 'System error', +]; + +function ubus_call(object, method, args) { + ubus.error(); // clear previous error + + let res = ubus.call(object, method, args); + + last_ubus_error = ubus.error(true); + + return res ?? !last_ubus_error; +} + +function ubus_state_to_http(err) { + let code = ubus_error_map[(err << 1) + 0] ?? 200; + let msg = ubus_error_map[(err << 1) + 1] ?? 'OK'; + + http.status(code, msg); + + if (code != 204) { + http.prepare_content('text/plain'); + http.write(msg); + } +} + +function uci_apply(rollback) { + if (rollback) { + const timeout = +(config?.apply?.rollback ?? 90) || 0; + const success = ubus_call('uci', 'apply', { + ubus_rpc_session: ctx.authsession, + timeout: max(timeout, 90), + rollback: true + }); + + if (success) { + const token = dispatcher.randomid(16); + + ubus.call('session', 'set', { + ubus_rpc_session: '00000000000000000000000000000000', + values: { + rollback: { + token, + session: ctx.authsession, + timeout: time() + timeout + } + } + }); + + return token; + } + + return null; + } + else { + let changes = ubus_call('uci', 'changes', { ubus_rpc_session: ctx.authsession })?.changes; + + for (let config in changes) + if (!ubus_call('uci', 'commit', { ubus_rpc_session: ctx.authsession, config })) + return false; + + return ubus_call('uci', 'apply', { + ubus_rpc_session: ctx.authsession, + rollback: false + }); + } +} + +function uci_confirm(token) { + const data = ubus.call('session', 'get', { + ubus_rpc_session: '00000000000000000000000000000000', + keys: [ 'rollback' ] + })?.values?.rollback; + + if (type(data?.token) != 'string' || type(data?.session) != 'string' || + type(data?.timeout) != 'int' || data.timeout < time()) { + last_ubus_error = STATUS_NO_DATA; + + return false; + } + + if (token != data.token) { + last_ubus_error = STATUS_PERMISSION_DENIED; + + return false; + } + + if (!ubus_call('uci', 'confirm', { ubus_rpc_session: data.session })) + return false; + + ubus_call('session', 'set', { + ubus_rpc_session: '00000000000000000000000000000000', + values: { rollback: {} } + }); + + return true; +} + + +return { + action_apply_rollback: function() { + const token = uci_apply(true); + + if (token) { + http.prepare_content('application/json; charset=UTF-8'); + http.write_json({ token }); + } + else { + ubus_state_to_http(last_ubus_error); + } + }, + + action_apply_unchecked: function() { + uci_apply(false); + ubus_state_to_http(last_ubus_error); + }, + + action_confirm: function() { + uci_confirm(http.formvalue('token')); + ubus_state_to_http(last_ubus_error); + }, + + action_revert: function() { + for (let config in ubus_call('uci', 'changes', { ubus_rpc_session: ctx.authsession })?.changes) + if (!ubus_call('uci', 'revert', { ubus_rpc_session: ctx.authsession, config })) + break; + + ubus_state_to_http(last_ubus_error); + } +}; diff --git a/modules/luci-base/ucode/dispatcher.uc b/modules/luci-base/ucode/dispatcher.uc new file mode 100644 index 0000000000..805abc4ce0 --- /dev/null +++ b/modules/luci-base/ucode/dispatcher.uc @@ -0,0 +1,974 @@ +// Copyright 2022 Jo-Philipp Wich <jo@mein.io> +// Licensed to the public under the Apache License 2.0. + +import { open, stat, glob, lsdir, unlink, basename } from 'fs'; +import { striptags, entityencode } from 'html'; +import { connect } from 'ubus'; +import { cursor } from 'uci'; +import { rand } from 'math'; + +import { hash, load_catalog, change_catalog, translate, ntranslate, getuid } from 'luci.core'; +import { revision as luciversion, branch as luciname } from 'luci.version'; +import { default as LuCIRuntime } from 'luci.runtime'; +import { urldecode } from 'luci.http'; + +let ubus = connect(); +let uci = cursor(); + +let indexcache = "/tmp/luci-indexcache"; + +let http, runtime, tree, luabridge; + +function error404(msg) { + http.status(404, 'Not Found'); + + try { + runtime.render('error404', { message: msg ?? 'Not found' }); + } + catch { + http.header('Content-Type', 'text/plain; charset=UTF-8'); + http.write(msg ?? 'Not found'); + } + + return false; +} + +function error500(msg, ex) { + if (!http.eoh) { + http.status(500, 'Internal Server Error'); + http.header('Content-Type', 'text/html; charset=UTF-8'); + } + + try { + runtime.render('error500', { + title: ex?.type ?? 'Runtime exception', + message: replace( + msg, + /(\s)((\/[A-Za-z0-9_.-]+)+:\d+|\[string "[^"]+"\]:\d+)/g, + '$1<code>$2</code>' + ), + exception: ex + }); + } + catch { + http.write('<!--]]>--><!--\'>--><!--">-->\n'); + http.write(`<p>${trim(ex)}</p>\n`); + + if (ex) { + http.write(`<p>${trim(ex.message)}</p>\n`); + http.write(`<pre>${trim(ex.stacktrace[0].context)}</pre>\n`); + } + } + + exit(0); +} + +function load_luabridge(optional) { + if (luabridge == null) { + try { + luabridge = require('lua'); + } + catch (ex) { + luabridge = false; + + if (!optional) + error500('No Lua runtime installed'); + } + } + + return luabridge; +} + +function determine_request_language() { + let lang = uci.get('luci', 'main', 'lang') || 'auto'; + + if (lang == 'auto') { + for (let tag in split(http.getenv('HTTP_ACCEPT_LANGUAGE'), ',')) { + tag = split(trim(split(tag, ';')?.[0]), '-'); + + if (tag) { + let cc = tag[1] ? `${tag[0]}_${lc(tag[1])}` : null; + + if (cc && uci.get('luci', 'languages', cc)) { + lang = cc; + break; + } + else if (uci.get('luci', 'languages', tag[0])) { + lang = tag[0]; + break; + } + } + } + } + + if (lang == 'auto') + lang = 'en'; + else + lang = replace(lang, '_', '-'); + + if (load_catalog(lang, '/usr/lib/lua/luci/i18n')) + change_catalog(lang); + + return lang; +} + +function determine_version() { + let res = { luciname, luciversion }; + + for (let f = open("/etc/os-release"), l = f?.read?.("line"); l; l = f.read?.("line")) { + let kv = split(l, '=', 2); + + switch (kv[0]) { + case 'NAME': + res.distname = trim(kv[1], '"\' \n'); + break; + + case 'VERSION': + res.distversion = trim(kv[1], '"\' \n'); + break; + + case 'HOME_URL': + res.disturl = trim(kv[1], '"\' \n'); + break; + + case 'BUILD_ID': + res.distrevision = trim(kv[1], '"\' \n'); + break; + } + } + + return res; +} + +function read_jsonfile(path, defval) { + let rv; + + try { + rv = json(open(path, "r")); + } + catch (e) { + rv = defval; + } + + return rv; +} + +function read_cachefile(file, reader) { + let euid = getuid(), + fstat = stat(file), + fuid = fstat?.uid, + perm = fstat?.perm; + + if (euid != fuid || + perm?.group_read || perm?.group_write || perm?.group_exec || + perm?.other_read || perm?.other_write || perm?.other_exec) + return null; + + return reader(file); +} + +function check_fs_depends(spec) { + for (let path, kind in spec) { + if (kind == 'directory') { + if (!length(lsdir(path))) + return false; + } + else if (kind == 'executable') { + let fstat = stat(path); + + if (fstat?.type != 'file' || fstat?.user_exec == false) + return false; + } + else if (kind == 'file') { + let fstat = stat(path); + + if (fstat?.type != 'file') + return false; + } + else if (kind == 'absent') { + if (stat(path) != null) + return false; + } + } + + return true; +} + +function check_uci_depends_options(conf, s, opts) { + if (type(opts) == 'string') { + return (s['.type'] == opts); + } + else if (opts === true) { + for (let option, value in s) + if (ord(option) != 46) + return true; + } + else if (type(opts) == 'object') { + for (let option, value in opts) { + let sval = s[option]; + + if (type(sval) == 'array') { + if (!(value in sval)) + return false; + } + else if (value === true) { + if (sval == null) + return false; + } + else { + if (sval != value) + return false; + } + } + } + + return true; +} + +function check_uci_depends_section(conf, sect) { + for (let section, options in sect) { + let stype = match(section, /^@([A-Za-z0-9_-]+)$/); + + if (stype) { + let found = false; + + uci.load(conf); + uci.foreach(conf, stype[1], (s) => { + if (check_uci_depends_options(conf, s, options)) { + found = true; + return false; + } + }); + + if (!found) + return false; + } + else { + let s = uci.get_all(conf, section); + + if (!s || !check_uci_depends_options(conf, s, options)) + return false; + } + } + + return true; +} + +function check_uci_depends(conf) { + for (let config, values in conf) { + if (values == true) { + let found = false; + + uci.load(config); + uci.foreach(config, null, () => { found = true }); + + if (!found) + return false; + } + else if (type(values) == 'object') { + if (!check_uci_depends_section(config, values)) + return false; + } + } + + return true; +} + +function check_depends(spec) { + if (type(spec?.depends?.fs) in ['array', 'object']) { + let satisfied = false; + let alternatives = (type(spec.depends.fs) == 'array') ? spec.depends.fs : [ spec.depends.fs ]; + + for (let alternative in alternatives) { + if (check_fs_depends(alternative)) { + satisfied = true; + break; + } + } + + if (!satisfied) + return false; + } + + if (type(spec?.depends?.uci) in ['array', 'object']) { + let satisfied = false; + let alternatives = (type(spec.depends.uci) == 'array') ? spec.depends.uci : [ spec.depends.uci ]; + + for (let alternative in alternatives) { + if (check_uci_depends(alternative)) { + satisfied = true; + break; + } + } + + if (!satisfied) + return false; + } + + return true; +} + +function check_acl_depends(require_groups, groups) { + if (length(require_groups)) { + let writable = false; + + for (let group in require_groups) { + let read = ('read' in groups?.[group]); + let write = ('write' in groups?.[group]); + + if (!read && !write) + return null; + + if (write) + writable = true; + } + + return writable; + } + + return true; +} + +function hash_filelist(files) { + let hashval = 0x1b756362; + + for (let file in files) { + let st = stat(file); + + if (st) + hashval = hash(sprintf("%x|%x|%x", st.ino, st.mtime, st.size), hashval); + } + + return hashval; +} + +function build_pagetree() { + let tree = { action: { type: 'firstchild' } }; + + let schema = { + action: 'object', + auth: 'object', + cors: 'bool', + depends: 'object', + order: 'int', + setgroup: 'string', + setuser: 'string', + title: 'string', + wildcard: 'bool', + firstchild_ineligible: 'bool' + }; + + let files = glob('/usr/share/luci/menu.d/*.json', '/usr/lib/lua/luci/controller/*.lua', '/usr/lib/lua/luci/controller/*/*.lua'); + let cachefile; + + if (indexcache) { + cachefile = sprintf('%s.%08x.json', indexcache, hash_filelist(files)); + + let res = read_cachefile(cachefile, read_jsonfile); + + if (res) + return res; + + for (let path in glob(indexcache + '.*.json')) + unlink(path); + } + + for (let file in files) { + let data; + + if (substr(file, -5) == '.json') + data = read_jsonfile(file); + else if (load_luabridge(true)) + data = runtime.call('luci.dispatcher', 'process_lua_controller', file); + else + warn(`Lua controller ${file} present but no Lua runtime installed.\n`); + + if (type(data) == 'object') { + for (let path, spec in data) { + if (type(spec) == 'object') { + let node = tree; + + for (let s in match(path, /[^\/]+/g)) { + if (s[0] == '*') { + node.wildcard = true; + break; + } + + node.children ??= {}; + node.children[s[0]] ??= {}; + node = node.children[s[0]]; + } + + if (node !== tree) { + for (let k, t in schema) + if (type(spec[k]) == t) + node[k] = spec[k]; + + node.satisfied = check_depends(spec); + } + } + } + } + } + + if (cachefile) { + let fd = open(cachefile, 'w', 0600); + + if (fd) { + fd.write(tree); + fd.close(); + } + } + + return tree; +} + +function menu_json(acl) { + tree ??= build_pagetree(); + + return tree; +} + +function ctx_append(ctx, name, node) { + ctx.path ??= []; + push(ctx.path, name); + + ctx.acls ??= []; + push(ctx.acls, ...(node?.depends?.acl || [])); + + ctx.auth = node.auth || ctx.auth; + ctx.cors = node.cors || ctx.cors; + ctx.suid = node.setuser || ctx.suid; + ctx.sgid = node.setgroup || ctx.sgid; + + return ctx; +} + +function session_retrieve(sid, allowed_users) { + let sdat = ubus.call("session", "get", { ubus_rpc_session: sid }); + let sacl = ubus.call("session", "access", { ubus_rpc_session: sid }); + + if (type(sdat?.values?.token) == 'string' && + (!length(allowed_users) || sdat?.values?.username in allowed_users)) { + // uci:set_session_id(sid) + return { + sid, + data: sdat.values, + acls: length(sacl) ? sacl : {} + }; + } + + return null; +} + +function randomid(num_bytes) { + let bytes = []; + + while (num_bytes-- > 0) + push(bytes, sprintf('%02x', rand() % 256)); + + return join('', bytes); +} + +function syslog(prio, msg) { + warn(sprintf("[%s] %s\n", prio, msg)); +} + +function session_setup(user, pass, path) { + let timeout = uci.get('luci', 'sauth', 'sessiontime'); + let login = ubus.call("session", "login", { + username: user, + password: pass, + timeout: timeout ? +timeout : null + }); + + if (type(login?.ubus_rpc_session) == 'string') { + ubus.call("session", "set", { + ubus_rpc_session: login.ubus_rpc_session, + values: { token: randomid(16) } + }); + syslog("info", sprintf("luci: accepted login on /%s for %s from %s", + join('/', path), user || "?", http.getenv("REMOTE_ADDR") || "?")); + + return session_retrieve(login.ubus_rpc_session); + } + + syslog("info", sprintf("luci: failed login on /%s for %s from %s", + join('/', path), user || "?", http.getenv("REMOTE_ADDR") || "?")); +} + +function check_authentication(method) { + let m = match(method, /^([[:alpha:]]+):(.+)$/); + let sid; + + switch (m?.[1]) { + case 'cookie': + sid = http.getcookie(m[2]); + break; + + case 'param': + sid = http.formvalue(m[2]); + break; + + case 'query': + sid = http.formvalue(m[2], true); + break; + } + + return sid ? session_retrieve(sid) : null; +} + +function is_authenticated(auth) { + for (let method in auth?.methods) { + let session = check_authentication(method); + + if (session) + return session; + } + + return null; +} + +function node_weight(node) { + let weight = min(node.order ?? 9999, 9999); + + if (node.auth?.login) + weight += 10000; + + return weight; +} + +function clone(src) { + switch (type(src)) { + case 'array': + return map(src, clone); + + case 'object': + let dest = {}; + + for (let k, v in src) + dest[k] = clone(v); + + return dest; + + default: + return src; + } +} + +function resolve_firstchild(node, session, login_allowed, ctx) { + let candidate, candidate_ctx; + + for (let name, child in node.children) { + if (!child.satisfied) + continue; + + if (!session) + session = is_authenticated(node.auth); + + let cacl = child.depends?.acl; + let login = login_allowed || child.auth?.login; + + if (login || check_acl_depends(cacl, session?.acls?.["access-group"]) != null) { + if (child.title && type(child.action) == "object") { + let child_ctx = ctx_append(clone(ctx), name, child); + if (child.action.type == "firstchild") { + if (!candidate || node_weight(candidate) > node_weight(child)) { + let have_grandchild = resolve_firstchild(child, session, login, child_ctx); + if (have_grandchild) { + candidate = child; + candidate_ctx = child_ctx; + } + } + } + else if (!child.firstchild_ineligible) { + if (!candidate || node_weight(candidate) > node_weight(child)) { + candidate = child; + candidate_ctx = child_ctx; + } + } + } + } + } + + if (!candidate) + return false; + + for (let k, v in candidate_ctx) + ctx[k] = v; + + return true; +} + +function resolve_page(tree, request_path) { + let node = tree; + let login = false; + let session = null; + let ctx = {}; + + for (let i, s in request_path) { + node = node.children?.[s]; + + if (!node?.satisfied) + break; + + ctx_append(ctx, s, node); + + if (!session) + session = is_authenticated(node.auth); + + if (!login && node.auth?.login) + login = true; + + if (node.wildcard) { + ctx.request_args = []; + ctx.request_path = ctx.path ? [ ...ctx.path ] : []; + + while (++i < length(request_path)) { + push(ctx.request_path, request_path[i]); + push(ctx.request_args, request_path[i]); + } + + break; + } + } + + if (node?.action?.type == 'firstchild') + resolve_firstchild(node, session, login, ctx); + + ctx.acls ??= {}; + ctx.path ??= []; + ctx.request_args ??= []; + ctx.request_path ??= request_path ? [ ...request_path ] : []; + + ctx.authsession = session?.sid; + ctx.authtoken = session?.data?.token; + ctx.authuser = session?.data?.username; + ctx.authacl = session?.acls; + + node = tree; + + for (let s in ctx.path) { + node = node.children[s]; + assert(node, "Internal node resolve error"); + } + + return { node, ctx, session }; +} + +function require_post_security(target, args) { + if (target?.type == 'arcombine') + return require_post_security(length(args) ? target?.targets?.[1] : target?.targets?.[0], args); + + if (type(target?.post) == 'object') { + for (let param_name, required_val in target.post) { + let request_val = http.formvalue(param_name); + + if ((type(required_val) == 'string' && request_val != required_val) || + (required_val == true && request_val == null)) + return false; + } + + return true; + } + + return (target?.post == true); +} + +function test_post_security(authtoken) { + if (http.getenv("REQUEST_METHOD") != "POST") { + http.status(405, "Method Not Allowed"); + http.header("Allow", "POST"); + + return false; + } + + if (http.formvalue("token") != authtoken) { + http.status(403, "Forbidden"); + runtime.render("csrftoken"); + + return false; + } + + return true; +} + +function build_url(...path) { + let url = [ http.getenv('SCRIPT_NAME') ?? '' ]; + + for (let p in path) + if (match(p, /^[A-Za-z0-9_%.\/,;-]+$/)) + push(url, '/', p); + + if (length(url) == 1) + push(url, '/'); + + return join('', url); +} + +function lookup(...segments) { + let node = menu_json(); + let path = []; + + for (let segment in segments) + for (let name in split(segment, '/')) + push(path, name); + + for (let name in path) { + node = node.children[name]; + + if (!node) + return null; + + if (node.leaf) + break; + } + + return { node, url: build_url(...path) }; +} + +function rollback_pending() { + const now = time(); + const rv = ubus.call('session', 'get', { + ubus_rpc_session: '00000000000000000000000000000000', + keys: [ 'rollback' ] + }); + + if (type(rv?.values?.rollback?.token) != 'string' || + type(rv?.values?.rollback?.session) != 'string' || + type(rv?.values?.rollback?.timeout) != 'int' || + rv.values.rollback.timeout <= now) + return false; + + return { + remaining: rv.values.rollback.timeout - now, + session: rv.values.rollback.session, + token: rv.values.rollback.token + }; +} + +let dispatch; + +function run_action(request_path, lang, tree, resolved, action) { + switch (action?.type) { + case 'template': + runtime.render(action.path, {}); + break; + + case 'view': + runtime.render('view', { view: action.path }); + break; + + case 'call': + http.write(render(() => { + runtime.call(action.module, action.function, + ...(action.parameters ?? []), + ...resolved.ctx.request_args + ); + })); + break; + + case 'function': + const mod = require(action.module); + + assert(type(mod[action.function]) == 'function', + `Module '${action.module}' does not export function '${action.function}'`); + + http.write(render(() => { + call(mod[action.function], mod, runtime.env, + ...(action.parameters ?? []), + ...resolved.ctx.request_args + ); + })); + break; + + case 'cbi': + http.write(render(() => { + runtime.call('luci.dispatcher', 'invoke_cbi_action', + action.path, null, + ...resolved.ctx.request_args + ); + })); + break; + + case 'form': + http.write(render(() => { + runtime.call('luci.dispatcher', 'invoke_form_action', + action.path, + ...resolved.ctx.request_args + ); + })); + break; + + case 'alias': + dispatch(http, [ ...split(action.path, '/'), ...resolved.ctx.request_args ]); + break; + + case 'rewrite': + dispatch(http, [ + ...splice([ ...request_path ], 0, action.remove), + ...split(action.path, '/'), + ...resolved.ctx.request_args + ]); + break; + + case 'firstchild': + if (!length(tree.children)) + error404("No root node was registered, this usually happens if no module was installed.\n" + + "Install luci-mod-admin-full and retry. " + + "If the module is already installed, try removing the /tmp/luci-indexcache file."); + else + error404(`No page is registered at '/${join("/", resolved.ctx.request_path)}'.\n` + + "If this url belongs to an extension, make sure it is properly installed.\n" + + "If the extension was recently installed, try removing the /tmp/luci-indexcache file."); + break; + + default: + error500(`Unhandled action type ${action?.type ?? '?'}`); + } +} + +dispatch = function(_http, path) { + http = _http; + + let version = determine_version(); + let lang = determine_request_language(); + + runtime = LuCIRuntime({ + http, + ubus, + uci, + ctx: {}, + version, + config: { + main: uci.get_all('luci', 'main') ?? {}, + apply: uci.get_all('luci', 'apply') ?? {} + }, + dispatcher: { + rollback_pending, + is_authenticated, + load_luabridge, + lookup, + menu_json, + build_url, + randomid, + error404, + error500, + lang + }, + striptags, + entityencode, + _: (...args) => translate(...args) ?? args[0], + N_: (...args) => ntranslate(...args) ?? (n[0] == 1 ? n[1] : n[2]), + }); + + try { + let menu = menu_json(); + + path ??= map(match(http.getenv('PATH_INFO'), /[^\/]+/g), m => m[0]); + + let resolved = resolve_page(menu, path); + + runtime.env.ctx = resolved.ctx; + runtime.env.node = resolved.node; + + if (length(resolved.ctx.auth)) { + let session = is_authenticated(resolved.ctx.auth); + + if (!session && resolved.ctx.auth.login) { + let user = http.getenv('HTTP_AUTH_USER'); + let pass = http.getenv('HTTP_AUTH_PASS'); + + if (user == null && pass == null) { + user = http.formvalue('luci_username'); + pass = http.formvalue('luci_password'); + } + + if (user != null && pass != null) + session = session_setup(user, pass, resolved.ctx.request_path); + + if (!session) { + resolved.ctx.path = []; + + http.status(403, 'Forbidden'); + http.header('X-LuCI-Login-Required', 'yes'); + + let scope = { duser: 'root', fuser: user }; + + try { + runtime.render(`themes/${basename(runtime.env.media)}/sysauth`, scope); + } + catch (e) { + runtime.render('sysauth', scope); + } + + return; + } + + let cookie_name = (http.getenv('HTTPS') == 'on') ? 'sysauth_https' : 'sysauth_http', + cookie_secure = (http.getenv('HTTPS') == 'on') ? '; secure' : ''; + + http.header('Set-Cookie', `${cookie_name}=${session.sid}; path=${build_url()}; SameSite=strict; HttpOnly${cookie_secure}`); + http.redirect(build_url(...resolved.ctx.request_path)); + + return; + } + + if (!session) { + http.status(403, 'Forbidden'); + http.header('X-LuCI-Login-Required', 'yes'); + + return; + } + + resolved.ctx.authsession ??= session.sid; + resolved.ctx.authtoken ??= session.data?.token; + resolved.ctx.authuser ??= session.data?.username; + resolved.ctx.authacl ??= session.acls; + + /* In case the Lua runtime was already initialized, e.g. by probing legacy + * theme header templates, make sure to update the session ID of the uci + * module. */ + if (runtime.L) { + runtime.L.invoke('require', 'luci.model.uci'); + runtime.L.get('luci', 'model', 'uci').invoke('set_session_id', session.sid); + } + } + + if (length(resolved.ctx.acls)) { + let perm = check_acl_depends(resolved.ctx.acls, resolved.ctx.authacl?.['access-group']); + + if (perm == null) { + http.status(403, 'Forbidden'); + + return; + } + + if (resolved.node) + resolved.node.readonly = !perm; + } + + let action = resolved.node.action; + + if (action?.type == 'arcombine') + action = length(resolved.ctx.request_args) ? action.targets?.[1] : action.targets?.[0]; + + if (resolved.ctx.cors && http.getenv('REQUEST_METHOD') == 'OPTIONS') { + http.status(200, 'OK'); + http.header('Access-Control-Allow-Origin', http.getenv('HTTP_ORIGIN') ?? '*'); + http.header('Access-Control-Allow-Methods', 'GET, POST, OPTIONS'); + + return; + } + + if (require_post_security(action) && !test_post_security(resolved.ctx.authtoken)) + return; + + run_action(path, lang, menu, resolved, action); + } + catch (ex) { + error500('Unhandled exception during request dispatching', ex); + } +}; + +export default dispatch; diff --git a/modules/luci-base/ucode/http.uc b/modules/luci-base/ucode/http.uc new file mode 100644 index 0000000000..b464497eac --- /dev/null +++ b/modules/luci-base/ucode/http.uc @@ -0,0 +1,574 @@ +// Copyright 2022 Jo-Philipp Wich <jo@mein.io> +// Licensed to the public under the Apache License 2.0. + +import { + urlencode as _urlencode, + urldecode as _urldecode, + urlencoded_parser, multipart_parser, header_attribute, + ENCODE_IF_NEEDED, ENCODE_FULL, DECODE_IF_NEEDED, DECODE_PLUS +} from 'lucihttp'; + +import { + error as fserror, + stdin, stdout, mkstemp +} from 'fs'; + +// luci.http module scope +export let HTTP_MAX_CONTENT = 1024*100; // 100 kB maximum content size + +// Decode a mime encoded http message body with multipart/form-data +// Content-Type. Stores all extracted data associated with its parameter name +// in the params table within the given message object. Multiple parameter +// values are stored as tables, ordinary ones as strings. +// If an optional file callback function is given then it is fed with the +// file contents chunk by chunk and only the extracted file name is stored +// within the params table. The callback function will be called subsequently +// with three arguments: +// o Table containing decoded (name, file) and raw (headers) mime header data +// o String value containing a chunk of the file data +// o Boolean which indicates whether the current chunk is the last one (eof) +export function mimedecode_message_body(src, msg, file_cb) { + let len = 0, maxlen = +msg.env.CONTENT_LENGTH; + let header, field, parser; + + parser = multipart_parser(msg.env.CONTENT_TYPE, function(what, buffer, length) { + if (what == parser.PART_INIT) { + field = {}; + } + else if (what == parser.HEADER_NAME) { + header = lc(buffer); + } + else if (what == parser.HEADER_VALUE && header) { + if (lc(header) == 'content-disposition' && + header_attribute(buffer, null) == 'form-data') { + field.name = header_attribute(buffer, 'name'); + field.file = header_attribute(buffer, 'filename'); + field[1] = field.file; + } + + field.headers = field.headers || {}; + field.headers[header] = buffer; + } + else if (what == parser.PART_BEGIN) { + return !field.file; + } + else if (what == parser.PART_DATA && field.name && length > 0) { + if (field.file) { + if (file_cb) { + file_cb(field, buffer, false); + + msg.params[field.name] = msg.params[field.name] || field; + } + else { + if (!field.fd) + field.fd = mkstemp(field.name); + + if (field.fd) { + field.fd.write(buffer); + msg.params[field.name] = msg.params[field.name] || field; + } + } + } + else { + field.value = buffer; + } + } + else if (what == parser.PART_END && field.name) { + if (field.file && msg.params[field.name]) { + if (file_cb) + file_cb(field, '', true); + else if (field.fd) + field.fd.seek(0); + } + else { + let val = msg.params[field.name]; + + if (type(val) == 'array') + push(val, field.value || ''); + else if (val != null) + msg.params[field.name] = [ val, field.value || '' ]; + else + msg.params[field.name] = field.value || ''; + } + + field = null; + } + else if (what == parser.ERROR) { + err = buffer; + } + + return true; + }, HTTP_MAX_CONTENT); + + while (true) { + let chunk = src(); + + len += length(chunk); + + if (maxlen && len > maxlen + 2) + die('Message body size exceeds Content-Length'); + + if (!parser.parse(chunk)) + die(err); + + if (chunk == null) + break; + } +}; + +// Decode an urlencoded http message body with application/x-www-urlencoded +// Content-Type. Stores all extracted data associated with its parameter name +// in the params table within the given message object. Multiple parameter +// values are stored as tables, ordinary ones as strings. +export function urldecode_message_body(src, msg) { + let len = 0, maxlen = +msg.env.CONTENT_LENGTH; + let err, name, value, parser; + + parser = urlencoded_parser(function (what, buffer, length) { + if (what == parser.TUPLE) { + name = null; + value = null; + } + else if (what == parser.NAME) { + name = _urldecode(buffer, DECODE_PLUS); + } + else if (what == parser.VALUE && name) { + let val = msg.params[name]; + + if (type(val) == 'array') + push(val, _urldecode(buffer, DECODE_PLUS) || ''); + else if (val != null) + msg.params[name] = [ val, _urldecode(buffer, DECODE_PLUS) || '' ]; + else + msg.params[name] = _urldecode(buffer, DECODE_PLUS) || ''; + } + else if (what == parser.ERROR) { + err = buffer; + } + + return true; + }, HTTP_MAX_CONTENT); + + while (true) { + let chunk = src(); + + len += length(chunk); + + if (maxlen && len > maxlen + 2) + die('Message body size exceeds Content-Length'); + + if (!parser.parse(chunk)) + die(err); + + if (chunk == null) + break; + } +}; + +// This function will examine the Content-Type within the given message object +// to select the appropriate content decoder. +// Currently the application/x-www-urlencoded and application/form-data +// mime types are supported. If the encountered content encoding can't be +// handled then the whole message body will be stored unaltered as 'content' +// property within the given message object. +export function parse_message_body(src, msg, filecb) { + if (msg.env.CONTENT_LENGTH || msg.env.REQUEST_METHOD == 'POST') { + let ctype = header_attribute(msg.env.CONTENT_TYPE, null); + + // Is it multipart/mime ? + if (ctype == 'multipart/form-data') + return mimedecode_message_body(src, msg, filecb); + + // Is it application/x-www-form-urlencoded ? + else if (ctype == 'application/x-www-form-urlencoded') + return urldecode_message_body(src, msg); + + // Unhandled encoding + // If a file callback is given then feed it chunk by chunk, else + // store whole buffer in message.content + let sink; + + // If we have a file callback then feed it + if (type(filecb) == 'function') { + let meta = { + name: 'raw', + encoding: msg.env.CONTENT_TYPE + }; + + sink = (chunk) => { + if (chunk != null) + return filecb(meta, chunk, false); + else + return filecb(meta, null, true); + }; + } + + // ... else append to .content + else { + let chunks = [], len = 0; + + sink = (chunk) => { + len += length(chunk); + + if (len > HTTP_MAX_CONTENT) + die('POST data exceeds maximum allowed length'); + + if (chunk != null) { + push(chunks, chunk); + } + else { + msg.content = join('', chunks); + msg.content_length = len; + } + }; + } + + // Pump data... + while (true) { + let chunk = src(); + + sink(chunk); + + if (chunk == null) + break; + } + + return true; + } + + return false; +}; + +export function build_querystring(q) { + let s = []; + + for (let k, v in q) { + push(s, + length(s) ? '&' : '?', + _urlencode(k, ENCODE_IF_NEEDED | ENCODE_FULL) || k, + '=', + _urlencode(v, ENCODE_IF_NEEDED | ENCODE_FULL) || v + ); + } + + return join('', s); +}; + +export function urlencode(value) { + if (value == null) + return null; + + value = '' + value; + + return _urlencode(value, ENCODE_IF_NEEDED | ENCODE_FULL) || value; +}; + +export function urldecode(value, decode_plus) { + if (value == null) + return null; + + value = '' + value; + + return _urldecode(value, DECODE_IF_NEEDED | (decode_plus ? DECODE_PLUS : 0)) || value; +}; + +// Extract and split urlencoded data pairs, separated bei either "&" or ";" +// from given url or string. Returns a table with urldecoded values. +// Simple parameters are stored as string values associated with the parameter +// name within the table. Parameters with multiple values are stored as array +// containing the corresponding values. +export function urldecode_params(url, tbl) { + let parser, name, value; + let params = tbl || {}; + + parser = urlencoded_parser(function(what, buffer, length) { + if (what == parser.TUPLE) { + name = null; + value = null; + } + else if (what == parser.NAME) { + name = _urldecode(buffer); + } + else if (what == parser.VALUE && name) { + params[name] = _urldecode(buffer) || ''; + } + + return true; + }); + + if (parser) { + let m = match(('' + (url || '')), /[^?]*$/); + + parser.parse(m ? m[0] : ''); + parser.parse(null); + } + + return params; +}; + +// Encode each key-value-pair in given table to x-www-urlencoded format, +// separated by '&'. Tables are encoded as parameters with multiple values by +// repeating the parameter name with each value. +export function urlencode_params(tbl) { + let enc = []; + + for (let k, v in tbl) { + if (type(v) == 'array') { + for (let v2 in v) { + if (length(enc)) + push(enc, '&'); + + push(enc, + _urlencode(k), + '=', + _urlencode('' + v2)); + } + } + else { + if (length(enc)) + push(enc, '&'); + + push(enc, + _urlencode(k), + '=', + _urlencode('' + v)); + } + } + + return join(enc, ''); +}; + + +// Default IO routines suitable for CGI invocation +let avail_len = +getenv('CONTENT_LENGTH'); + +const default_source = () => { + let rlen = min(avail_len, 4096); + + if (rlen == 0) { + stdin.close(); + + return null; + } + + let chunk = stdin.read(rlen); + + if (chunk == null) + die(`Input read error: ${fserror()}`); + + avail_len -= length(chunk); + + return chunk; +}; + +const default_sink = (...chunks) => { + for (let chunk in chunks) + stdout.write(chunk); + + stdout.flush(); +}; + +const Class = { + formvalue: function(name, noparse) { + if (!noparse && !this.parsed_input) + this._parse_input(); + + if (name != null) + return this.message.params[name]; + else + return this.message.params; + }, + + formvaluetable: function(prefix) { + let vals = {}; + + prefix = (prefix || '') + '.'; + + if (!this.parsed_input) + this._parse_input(); + + for (let k, v in this.message.params) + if (index(k, prefix) == 0) + vals[substr(k, length(prefix))] = '' + v; + + return vals; + }, + + content: function() { + if (!this.parsed_input) + this._parse_input(); + + return this.message.content; + }, + + getcookie: function(name) { + return header_attribute(`cookie; ${this.getenv('HTTP_COOKIE') ?? ''}`, name); + }, + + getenv: function(name) { + if (name != null) + return this.message.env[name]; + else + return this.message.env; + }, + + setfilehandler: function(callback) { + if (type(callback) == 'resource' && type(callback.call) == 'function') + this.filehandler = (...args) => callback.call(...args); + else if (type(callback) == 'function') + this.filehandler = callback; + else + die('Invalid callback argument for setfilehandler()'); + + if (!this.parsed_input) + return; + + // If input has already been parsed then uploads are stored as unlinked + // temporary files pointed to by open file handles in the parameter + // value table. Loop all params, and invoke the file callback for any + // param with an open file handle. + for (let name, value in this.message.params) { + while (value?.fd) { + let data = value.fd.read(1024); + let eof = (data == null || data == ''); + + callback(value, data, eof); + + if (eof) { + value.fd.close(); + value.fd = null; + } + } + } + }, + + _parse_input: function() { + parse_message_body( + this.input, + this.message, + this.filehandler + ); + + this.parsed_input = true; + }, + + close: function() { + this.write_headers(); + this.closed = true; + }, + + header: function(key, value) { + this.headers ??= {}; + this.headers[lc(key)] = value; + }, + + prepare_content: function(mime) { + if (!this.headers?.['content-type']) { + if (mime == 'application/xhtml+xml') { + if (index(this.getenv('HTTP_ACCEPT'), mime) == -1) { + mime = 'text/html; charset=UTF-8'; + this.header('Vary', 'Accept'); + } + } + + this.header('Content-Type', mime); + } + }, + + status: function(code, message) { + this.status_code = code ?? 200; + this.status_message = message ?? 'OK'; + }, + + write_headers: function() { + if (this.eoh) + return; + + if (!this.status_code) + this.status(); + + if (!this.headers?.['content-type']) + this.header('Content-Type', 'text/html; charset=UTF-8'); + + if (!this.headers?.['cache-control']) { + this.header('Cache-Control', 'no-cache'); + this.header('Expires', '0'); + } + + if (!this.headers?.['x-frame-options']) + this.header('X-Frame-Options', 'SAMEORIGIN'); + + if (!this.headers?.['x-xss-protection']) + this.header('X-XSS-Protection', '1; mode=block'); + + if (!this.headers?.['x-content-type-options']) + this.header('X-Content-Type-Options', 'nosniff'); + + this.output('Status: '); + this.output(this.status_code); + this.output(' '); + this.output(this.status_message); + this.output('\r\n'); + + for (let k, v in this.headers) { + this.output(k); + this.output(': '); + this.output(v); + this.output('\r\n'); + } + + this.output('\r\n'); + + this.eoh = true; + }, + + // If the content chunk is nil this function will automatically invoke close. + write: function(content) { + if (content != null) { + this.write_headers(); + this.output(content); + + return true; + } + else { + this.close(); + } + }, + + redirect: function(url) { + this.status(302, 'Found'); + this.header('Location', url ?? '/'); + this.close(); + }, + + write_json: function(value) { + this.write(sprintf('%.J', value)); + }, + + urlencode, + urlencode_params, + + urldecode, + urldecode_params, + + build_querystring +}; + +export default function(env, sourcein, sinkout) { + return proto({ + input: sourcein ?? default_source, + output: sinkout ?? default_sink, + + // File handler nil by default to let .content() work + file: null, + + // HTTP-Message table + message: { + env, + headers: {}, + params: urldecode_params(env?.QUERY_STRING ?? '') + }, + + parsed_input: false + }, Class); +}; diff --git a/modules/luci-base/ucode/runtime.uc b/modules/luci-base/ucode/runtime.uc new file mode 100644 index 0000000000..d02d8dd667 --- /dev/null +++ b/modules/luci-base/ucode/runtime.uc @@ -0,0 +1,163 @@ +// Copyright 2022 Jo-Philipp Wich <jo@mein.io> +// Licensed to the public under the Apache License 2.0. + +import { access, basename } from 'fs'; +import { cursor } from 'uci'; + +const template_directory = '/usr/share/ucode/luci/template'; + +function cut_message(msg) { + return trim(replace(msg, /\n--\n.*$/, '')); +} + +function format_nested_exception(ex) { + let msg = replace(cut_message(ex.message), /(\n+( \|[^\n]*(\n|$))+)/, (m, m1) => { + m1 = replace(m1, /(^|\n) \| ?/g, '$1'); + m = match(m1, /^(.+?)\n(In.*line \d+, byte \d+:.+)$/); + + return ` + <div class="exception"> + <div class="message">${cut_message(m ? m[1] : m1)}</div> + ${m ? `<pre class="context">${trim(m[2])}</pre>` : ''} + </div> + `; + }); + + return ` + <div class="exception"> + <div class="message">${cut_message(msg)}</div> + <pre class="context">${trim(ex.stacktrace[0].context)}</pre> + </div> + `; +} + +function format_lua_exception(ex) { + let m = match(ex.message, /^(.+)\nstack traceback:\n(.+)$/); + + return ` + <div class="exception"> + <div class="message">${cut_message(m ? m[1] : ex.message)}</div> + <pre class="context">${m ? trim(replace(m[2], /(^|\n)\t/g, '$1')) : ex.stacktrace[0].context}</pre> + </div> + `; +} + +const Class = { + init_lua: function() { + if (!this.L) { + this.L = this.env.dispatcher.load_luabridge().create(); + this.L.set('L', proto({ write: print }, this.env)); + this.L.invoke('require', 'luci.ucodebridge'); + + this.env.lua_active = true; + } + + return this.L; + }, + + render_ucode: function(path, scope) { + let tmplfunc = loadfile(path, { raw_mode: false }); + call(tmplfunc, null, scope ?? {}); + }, + + render_lua: function(path, scope) { + let vm = this.init_lua(); + let render = vm.get('_G', 'luci', 'ucodebridge', 'render'); + + render.call(path, scope ?? {}); + }, + + trycompile: function(path) { + let ucode_path = `${template_directory}/${path}.ut`; + + if (access(ucode_path)) { + try { + loadfile(ucode_path, { raw_mode: false }); + } + catch (ucode_err) { + return `Unable to compile '${path}' as ucode template: ${format_nested_exception(ucode_err)}`; + } + } + else { + try { + let vm = this.init_lua(); + let compile = vm.get('_G', 'luci', 'ucodebridge', 'compile'); + + compile.call(path); + } + catch (lua_err) { + return `Unable to compile '${path}' as Lua template: ${format_lua_exception(lua_err)}`; + } + } + + return true; + }, + + render_any: function(path, scope) { + let ucode_path = `${template_directory}/${path}.ut`; + + scope = proto(scope ?? {}, this.scopes[-1]); + + push(this.scopes, scope); + + try { + if (access(ucode_path)) + this.render_ucode(ucode_path, scope); + else + this.render_lua(path, scope); + } + catch (ex) { + pop(this.scopes); + die(ex); + } + + pop(this.scopes); + }, + + render: function(path, scope) { + let self = this; + this.env.http.write(render(() => self.render_any(path, scope))); + }, + + call: function(modname, method, ...args) { + let vm = this.init_lua(); + let lcall = vm.get('_G', 'luci', 'ucodebridge', 'call'); + + return lcall.call(modname, method, ...args); + } +}; + +export default function(env) { + const self = proto({ env: env ??= {}, scopes: [ proto(env, global) ], global }, Class); + const uci = cursor(); + + // determine theme + let media = uci.get('luci', 'main', 'mediaurlbase'); + let status = self.trycompile(`themes/${basename(media)}/header`); + + if (status !== true) { + media = null; + self.env.media_error = status; + + for (let k, v in uci.get_all('luci', 'themes')) { + if (substr(k, 0, 1) != '.') { + status = self.trycompile(`themes/${basename(v)}/header`); + + if (status === true) { + media = v; + break; + } + } + } + + if (!media) + error500(`Unable to render any theme header template, last error was:\n${status}`); + } + + self.env.media = media; + self.env.theme = basename(media); + self.env.resource = uci.get('luci', 'main', 'resourcebase'); + self.env.include = (...args) => self.render_any(...args); + + return self; +}; diff --git a/modules/luci-base/ucode/sys.uc b/modules/luci-base/ucode/sys.uc new file mode 100644 index 0000000000..305499c797 --- /dev/null +++ b/modules/luci-base/ucode/sys.uc @@ -0,0 +1,157 @@ +// Copyright 2022 Jo-Philipp Wich <jo@mein.io> +// Licensed to the public under the Apache License 2.0. + +import { basename, readlink, readfile, open, popen, stat, glob } from 'fs'; + +export function process_list() { + const top = popen('/bin/busybox top -bn1'); + let line, list = []; + + for (let line = top.read('line'); length(line); line = top.read('line')) { + let m = match(trim(line), /^([0-9]+) +([0-9]+) +(.+) +([RSDZTWI][<NW ][<N ]) +([0-9]+m?) +([0-9]+%) +([0-9]+%) +(.+)$/); + + if (m && m[8] != '/bin/busybox top -bn1') { + push(list, { + PID: m[1], + PPID: m[2], + USER: trim(m[3]), + STAT: m[4], + VSZ: m[5], + '%MEM': m[6], + '%CPU': m[7], + COMMAND: m[8] + }); + } + } + + top.close(); + + return list; +}; + +export function conntrack_list(callback) { + const etcpr = open('/etc/protocols'); + const protos = {}; + + if (etcpr) { + for (let line = etcpr.read('line'); length(line); line = etcpr.read('line')) { + const m = match(line, /^([^# \t\n]+)\s+([0-9]+)\s+/); + + if (m) + protos[m[2]] = m[1]; + } + + etcpr.close(); + } + + const nfct = open('/proc/net/nf_conntrack', 'r'); + let connt; + + if (nfct) { + for (let line = nfct.read('line'); length(line); line = nfct.read('line')) { + let m = match(line, /^(ipv[46]) +([0-9]+) +\S+ +([0-9]+)( +.+)\n$/); + + if (!m) + continue; + + let fam = m[1]; + let l3 = m[2]; + let l4 = m[3]; + let tuples = m[4]; + let timeout = null; + + m = match(tuples, /^ +([0-9]+)( .+)$/); + + if (m) { + timeout = m[1]; + tuples = m[2]; + } + + if (index(tuples, 'TIME_WAIT') !== -1) + continue; + + let e = { + bytes: 0, + packets: 0, + layer3: fam, + layer4: protos[l4] ?? 'unknown', + timeout: +timeout + }; + + for (let kv in match(tuples, / (\w+)=(\S+)/g)) { + switch (kv[1]) { + case 'bytes': + case 'packets': + e[kv[1]] += +kv[2]; + break; + + case 'src': + case 'dst': + e[kv[1]] ??= arrtoip(iptoarr(kv[2])); + break; + + case 'sport': + case 'dport': + e[kv[1]] ??= +kv[2]; + break; + + default: + e[kv[1]] = kv[2]; + } + } + + if (callback) + callback(e); + else + push(connt ??= [], e); + } + + nfct.close(); + } + + return callback ? true : (connt ?? []); +}; + +export function init_list() { + return map(filter(glob('/etc/init.d/*'), path => { + const s = stat(path); + + return s?.type == 'file' && s?.perm?.user_exec; + }), basename); +}; + +export function init_index(name) { + const src = readfile(`/etc/init.d/${basename(name)}`, 2048); + const idx = []; + + for (let m in match(src, /^[[:space:]]*(START|STOP)=('[0-9][0-9]'|"[0-9][0-9]"|[0-9][0-9])[[:space:]]*$/gs)) { + switch (m[1]) { + case 'START': idx[0] = +trim(m[2], '"\''); break; + case 'STOP': idx[1] = +trim(m[2], '"\''); break; + } + } + + return length(idx) ? idx : null; +}; + +export function init_enabled(name) { + for (let path in glob(`/etc/rc.d/[SK][0-9][0-9]${basename(name)}`)) { + const ln = readlink(path); + const s1 = stat(index(ln, '/') == 0 ? ln : `/etc/rc.d/${ln}`); + const s2 = stat(`/etc/init.d/${basename(name)}`); + + if (s1?.inode == s2?.inode && s1?.type == 'file' && s1?.perm?.user_exec) + return true; + } + + return false; +}; + +export function init_action(name, action) { + const s = stat(`/etc/init.d/${basename(name)}`); + + if (s?.type != 'file' || s?.user_exec == false) + return false; + + return system(`env -i /etc/init.d/${basename(name)} ${action} >/dev/null`); +}; diff --git a/modules/luci-base/luasrc/view/csrftoken.htm b/modules/luci-base/ucode/template/csrftoken.ut index 57ac03f3bf..4e96eebe90 100644 --- a/modules/luci-base/luasrc/view/csrftoken.htm +++ b/modules/luci-base/ucode/template/csrftoken.ut @@ -1,19 +1,19 @@ -<%# - Copyright 2015 Jo-Philipp Wich <jow@openwrt.org> +{# + Copyright 2015-2022 Jo-Philipp Wich <jo@mein.io> Licensed to the public under the Apache License 2.0. --%> +-#} -<%+header%> +{% include('header') %} -<h2 name="content"><%:Form token mismatch%></h2> +<h2 name="content">{{ _('Form token mismatch') }}</h2> <br /> -<p class="alert-message"><%:The submitted security token is invalid or already expired!%></p> +<p class="alert-message">{{ _('The submitted security token is invalid or already expired!') }}</p> -<p><%: +<p>{{ _(` In order to prevent unauthorized access to the system, your request has been blocked. Click "Continue »" below to return to the previous page. -%></p> +`) }}</p> <hr /> @@ -21,4 +21,4 @@ <strong><a href="#" onclick="window.history.back();">Continue »</a></strong> </p> -<%+footer%> +{% include('footer') %} diff --git a/modules/luci-base/ucode/template/error404.ut b/modules/luci-base/ucode/template/error404.ut new file mode 100644 index 0000000000..90c3d3784b --- /dev/null +++ b/modules/luci-base/ucode/template/error404.ut @@ -0,0 +1,14 @@ +{# + Copyright 2008 Steven Barth <steven@midlink.org> + Copyright 2008-2022 Jo-Philipp Wich <jo@mein.io> + Licensed to the public under the Apache License 2.0. +-#} + +{% include('header') %} + +<h2 name="content">404 {{ _('Not Found') }}</h2> +<p>{{ _('Sorry, the object you requested was not found.') }}</p> +<p>{{ message }}</p> +<tt>{{ _('Unable to dispatch') }}: {{ dispatcher.build_url(...ctx.request_path) }}</tt> + +{% include('footer') %} diff --git a/modules/luci-base/ucode/template/error500.ut b/modules/luci-base/ucode/template/error500.ut new file mode 100644 index 0000000000..39a0eec678 --- /dev/null +++ b/modules/luci-base/ucode/template/error500.ut @@ -0,0 +1,67 @@ +{# + Copyright 2022 Jo-Philipp Wich <jo@mein.io> + Licensed to the public under the Apache License 2.0. +-#} + +<!--]]>--><!--'>--><!--">--> +<style type="text/css"> + body { + line-height: 1.5; + font-size: 14px; + font-family: sans-serif; + } + + .error500 * { + margin: 0; + padding: 0; + color: inherit; + } + + .error500 { + box-sizing: border-box; + position: fixed; + z-index: 999999; + top: 0; + left: 0; + width: 100vw; + height: 100vh; + overflow: auto; + background: #ffe; + color: #f00 !important; + padding: 1em; + } + + .error500 h1 { + margin-bottom: .5em; + } + + .error500 .exception { + font-weight: normal; + white-space: normal; + margin: .25em; + padding: .5em; + border: 1px solid #f00; + background: rgba(204, 204, 204, .2); + } + + .error500 .message { + font-weight: bold; + white-space: pre-line; + } + + .error500 .context { + margin-top: 2em; + } +</style> + +<div class="error500"> + <h1>{{ title }}</h1> + <div class="message">{{ message }}</div> + + {% if (exception): %} + <div class="exception"> + <div class="message">{{ exception.message }}</div> + <pre class="context">{{ exception.stacktrace[0].context }}</pre> + </div> + {% endif %} +</div> diff --git a/modules/luci-base/ucode/template/footer.ut b/modules/luci-base/ucode/template/footer.ut new file mode 100644 index 0000000000..d0978594f8 --- /dev/null +++ b/modules/luci-base/ucode/template/footer.ut @@ -0,0 +1,42 @@ +{# + Copyright 2022 Jo-Philipp Wich <jo@mein.io> + Licensed to the public under the Apache License 2.0. +-#} + +{% const rollback = dispatcher.rollback_pending() %} +{% if (rollback || trigger_apply || trigger_revert): %} + <script type="text/javascript"> + document.addEventListener("luci-loaded", function() { + {% if (trigger_apply): %} + L.ui.changes.apply(true); + {% elif (trigger_revert): %} + L.ui.changes.revert(); + {% else %} + L.ui.changes.confirm(true, Date.now() + {{rollback.remaining * 1000}}, {{sprintf('%J', rollback.token)}}); + {% endif %} + }); + </script> +{% endif %} + +{% if (media_error): %} + <script type="text/javascript"> + L.require('ui').then(function(ui) { + ui.showIndicator('media_error', _('Theme fallback'), function(ev) { + ui.showModal(_('Error loading theme'), [ + E('p', [ + _('A fallback is used since the configured theme failed to load with the error below.') + ]), + E('hr'), + E('div', { 'style': 'white-space:pre-line' }, {{ sprintf('%J', trim(media_error)) }}), + E('div', { 'class': 'right' }, [ + E('button', { 'class': 'btn cbi-button', 'click': ui.hideModal }, _('Dismiss')) + ]) + ]); + }); + }); + </script> +{% endif %} + +{% include(`themes/${theme}/footer`) %} + +<!-- Lua compatibility mode active: {{ lua_active ? 'yes' : 'no' }} --> diff --git a/modules/luci-base/ucode/template/header.ut b/modules/luci-base/ucode/template/header.ut new file mode 100644 index 0000000000..fb61da5146 --- /dev/null +++ b/modules/luci-base/ucode/template/header.ut @@ -0,0 +1,32 @@ +{# + Copyright 2022 Jo-Philipp Wich <jo@mein.io> + Licensed to the public under the Apache License 2.0. +-#} + +{% + include(`themes/${theme}/header`); +-%} + +<script type="text/javascript" src="{{ resource }}/promis.min.js"></script> +<script type="text/javascript" src="{{ resource }}/luci.js"></script> +<script type="text/javascript"> + L = new LuCI({{ { + media : media, + resource : resource, + scriptname : http.getenv("SCRIPT_NAME"), + pathinfo : http.getenv("PATH_INFO"), + documentroot : http.getenv("DOCUMENT_ROOT"), + requestpath : ctx.request_path, + dispatchpath : ctx.path, + pollinterval : +config.main.pollinterval || 5, + ubuspath : config.main.ubuspath || '/ubus/', + sessionid : ctx.authsession, + token : ctx.authtoken, + nodespec : node, + apply_rollback : max(+config.apply.rollback || 90, 90), + apply_holdoff : max(+config.apply.holdoff || 4, 1), + apply_timeout : max(+config.apply.timeout || 5, 1), + apply_display : max(+config.apply.display || 1.5, 1), + rollback_token : rollback_token + } }}); +</script> diff --git a/modules/luci-base/ucode/template/sysauth.ut b/modules/luci-base/ucode/template/sysauth.ut new file mode 100644 index 0000000000..0fe873d440 --- /dev/null +++ b/modules/luci-base/ucode/template/sysauth.ut @@ -0,0 +1,74 @@ +{# + Copyright 2008 Steven Barth <steven@midlink.org> + Copyright 2008-2012 Jo-Philipp Wich <jow@openwrt.org> + Licensed to the public under the Apache License 2.0. +-#} + +{% include('header') %} + +<form method="post"> + {% if (fuser): %} + <div class="alert-message warning"> + <p>{{ _('Invalid username and/or password! Please try again.') }}</p> + </div> + {% endif %} + + <div class="cbi-map"> + <h2 name="content">{{ _('Authorization Required') }}</h2> + <div class="cbi-map-descr"> + {{ _('Please enter your username and password.') }} + </div> + <div class="cbi-section"><div class="cbi-section-node"> + <div class="cbi-value"> + <label class="cbi-value-title">{{ _('Username') }}</label> + <div class="cbi-value-field"> + <input class="cbi-input-text" type="text" name="luci_username" value="{{ entityencode(duser, true) }}" /> + </div> + </div> + <div class="cbi-value cbi-value-last"> + <label class="cbi-value-title">{{ _('Password') }}</label> + <div class="cbi-value-field"> + <input class="cbi-input-text" type="password" name="luci_password" /> + </div> + </div> + </div></div> + </div> + + <div class="cbi-page-actions"> + <input type="submit" value="{{ _('Login') }}" class="btn cbi-button cbi-button-apply" /> + <input type="reset" value="{{ _('Reset') }}" class="btn cbi-button cbi-button-reset" /> + </div> +</form> + +{% + let https_ports = uci.get('uhttpd', 'main', 'listen_https') ?? []; + + https_ports = uniq(filter( + map( + (type(https_ports) == 'string') ? split(https_port, /\s+/) : https_ports, + e => +match(e, /\d+$/)?.[0] + ), + p => (p >= 0 && p <= 65535) + )); +%} + +<script type="text/javascript">//<![CDATA[ + var input = document.getElementsByName('luci_password')[0]; + + if (input) + input.focus(); + + if (document.location.protocol != 'https:') { + {{ https_ports }}.forEach(function(port) { + var url = 'https://' + window.location.hostname + ':' + port + window.location.pathname; + var img = new Image(); + + img.onload = function() { window.location = url }; + img.src = 'https://' + window.location.hostname + ':' + port + '{{ resource }}/icons/loading.gif?' + Math.random(); + + setTimeout(function() { img.src = '' }, 5000); + }); + } +//]]></script> + +{% include('footer') %} diff --git a/modules/luci-base/ucode/template/view.ut b/modules/luci-base/ucode/template/view.ut new file mode 100644 index 0000000000..11ac824290 --- /dev/null +++ b/modules/luci-base/ucode/template/view.ut @@ -0,0 +1,12 @@ +{% include('header') %} + +<div id="view"> + <div class="spinning">{{ _('Loading view…') }}</div> + <script type="text/javascript"> + L.require('ui').then(function(ui) { + ui.instantiateView('{{ view }}'); + }); + </script> +</div> + +{% include('footer') %} diff --git a/modules/luci-base/ucode/uhttpd.uc b/modules/luci-base/ucode/uhttpd.uc new file mode 100644 index 0000000000..df1ecc7865 --- /dev/null +++ b/modules/luci-base/ucode/uhttpd.uc @@ -0,0 +1,12 @@ +{% + +import dispatch from 'luci.dispatcher'; +import request from 'luci.http'; + +global.handle_request = function(env) { + let req = request(env, uhttpd.recv, uhttpd.send); + + dispatch(req); + + req.close(); +}; diff --git a/modules/luci-base/ucode/zoneinfo.uc b/modules/luci-base/ucode/zoneinfo.uc new file mode 100644 index 0000000000..c5e588dd6a --- /dev/null +++ b/modules/luci-base/ucode/zoneinfo.uc @@ -0,0 +1,453 @@ +// Autogenerated by zoneinfo2ucode.pl + +export default { + 'Africa/Abidjan': 'GMT0', + 'Africa/Accra': 'GMT0', + 'Africa/Addis Ababa': 'EAT-3', + 'Africa/Algiers': 'CET-1', + 'Africa/Asmara': 'EAT-3', + 'Africa/Bamako': 'GMT0', + 'Africa/Bangui': 'WAT-1', + 'Africa/Banjul': 'GMT0', + 'Africa/Bissau': 'GMT0', + 'Africa/Blantyre': 'CAT-2', + 'Africa/Brazzaville': 'WAT-1', + 'Africa/Bujumbura': 'CAT-2', + 'Africa/Cairo': 'EET-2', + 'Africa/Casablanca': '<+01>-1', + 'Africa/Ceuta': 'CET-1CEST,M3.5.0,M10.5.0/3', + 'Africa/Conakry': 'GMT0', + 'Africa/Dakar': 'GMT0', + 'Africa/Dar es Salaam': 'EAT-3', + 'Africa/Djibouti': 'EAT-3', + 'Africa/Douala': 'WAT-1', + 'Africa/El Aaiun': '<+01>-1', + 'Africa/Freetown': 'GMT0', + 'Africa/Gaborone': 'CAT-2', + 'Africa/Harare': 'CAT-2', + 'Africa/Johannesburg': 'SAST-2', + 'Africa/Juba': 'CAT-2', + 'Africa/Kampala': 'EAT-3', + 'Africa/Khartoum': 'CAT-2', + 'Africa/Kigali': 'CAT-2', + 'Africa/Kinshasa': 'WAT-1', + 'Africa/Lagos': 'WAT-1', + 'Africa/Libreville': 'WAT-1', + 'Africa/Lome': 'GMT0', + 'Africa/Luanda': 'WAT-1', + 'Africa/Lubumbashi': 'CAT-2', + 'Africa/Lusaka': 'CAT-2', + 'Africa/Malabo': 'WAT-1', + 'Africa/Maputo': 'CAT-2', + 'Africa/Maseru': 'SAST-2', + 'Africa/Mbabane': 'SAST-2', + 'Africa/Mogadishu': 'EAT-3', + 'Africa/Monrovia': 'GMT0', + 'Africa/Nairobi': 'EAT-3', + 'Africa/Ndjamena': 'WAT-1', + 'Africa/Niamey': 'WAT-1', + 'Africa/Nouakchott': 'GMT0', + 'Africa/Ouagadougou': 'GMT0', + 'Africa/Porto-Novo': 'WAT-1', + 'Africa/Sao Tome': 'GMT0', + 'Africa/Tripoli': 'EET-2', + 'Africa/Tunis': 'CET-1', + 'Africa/Windhoek': 'CAT-2', + 'America/Adak': 'HST10HDT,M3.2.0,M11.1.0', + 'America/Anchorage': 'AKST9AKDT,M3.2.0,M11.1.0', + 'America/Anguilla': 'AST4', + 'America/Antigua': 'AST4', + 'America/Araguaina': '<-03>3', + 'America/Argentina/Buenos Aires': '<-03>3', + 'America/Argentina/Catamarca': '<-03>3', + 'America/Argentina/Cordoba': '<-03>3', + 'America/Argentina/Jujuy': '<-03>3', + 'America/Argentina/La Rioja': '<-03>3', + 'America/Argentina/Mendoza': '<-03>3', + 'America/Argentina/Rio Gallegos': '<-03>3', + 'America/Argentina/Salta': '<-03>3', + 'America/Argentina/San Juan': '<-03>3', + 'America/Argentina/San Luis': '<-03>3', + 'America/Argentina/Tucuman': '<-03>3', + 'America/Argentina/Ushuaia': '<-03>3', + 'America/Aruba': 'AST4', + 'America/Asuncion': '<-04>4<-03>,M10.1.0/0,M3.4.0/0', + 'America/Atikokan': 'EST5', + 'America/Bahia': '<-03>3', + 'America/Bahia Banderas': 'CST6CDT,M4.1.0,M10.5.0', + 'America/Barbados': 'AST4', + 'America/Belem': '<-03>3', + 'America/Belize': 'CST6', + 'America/Blanc-Sablon': 'AST4', + 'America/Boa Vista': '<-04>4', + 'America/Bogota': '<-05>5', + 'America/Boise': 'MST7MDT,M3.2.0,M11.1.0', + 'America/Cambridge Bay': 'MST7MDT,M3.2.0,M11.1.0', + 'America/Campo Grande': '<-04>4', + 'America/Cancun': 'EST5', + 'America/Caracas': '<-04>4', + 'America/Cayenne': '<-03>3', + 'America/Cayman': 'EST5', + 'America/Chicago': 'CST6CDT,M3.2.0,M11.1.0', + 'America/Chihuahua': 'MST7MDT,M4.1.0,M10.5.0', + 'America/Costa Rica': 'CST6', + 'America/Creston': 'MST7', + 'America/Cuiaba': '<-04>4', + 'America/Curacao': 'AST4', + 'America/Danmarkshavn': 'GMT0', + 'America/Dawson': 'MST7', + 'America/Dawson Creek': 'MST7', + 'America/Denver': 'MST7MDT,M3.2.0,M11.1.0', + 'America/Detroit': 'EST5EDT,M3.2.0,M11.1.0', + 'America/Dominica': 'AST4', + 'America/Edmonton': 'MST7MDT,M3.2.0,M11.1.0', + 'America/Eirunepe': '<-05>5', + 'America/El Salvador': 'CST6', + 'America/Fort Nelson': 'MST7', + 'America/Fortaleza': '<-03>3', + 'America/Glace Bay': 'AST4ADT,M3.2.0,M11.1.0', + 'America/Goose Bay': 'AST4ADT,M3.2.0,M11.1.0', + 'America/Grand Turk': 'EST5EDT,M3.2.0,M11.1.0', + 'America/Grenada': 'AST4', + 'America/Guadeloupe': 'AST4', + 'America/Guatemala': 'CST6', + 'America/Guayaquil': '<-05>5', + 'America/Guyana': '<-04>4', + 'America/Halifax': 'AST4ADT,M3.2.0,M11.1.0', + 'America/Havana': 'CST5CDT,M3.2.0/0,M11.1.0/1', + 'America/Hermosillo': 'MST7', + 'America/Indiana/Indianapolis': 'EST5EDT,M3.2.0,M11.1.0', + 'America/Indiana/Knox': 'CST6CDT,M3.2.0,M11.1.0', + 'America/Indiana/Marengo': 'EST5EDT,M3.2.0,M11.1.0', + 'America/Indiana/Petersburg': 'EST5EDT,M3.2.0,M11.1.0', + 'America/Indiana/Tell City': 'CST6CDT,M3.2.0,M11.1.0', + 'America/Indiana/Vevay': 'EST5EDT,M3.2.0,M11.1.0', + 'America/Indiana/Vincennes': 'EST5EDT,M3.2.0,M11.1.0', + 'America/Indiana/Winamac': 'EST5EDT,M3.2.0,M11.1.0', + 'America/Inuvik': 'MST7MDT,M3.2.0,M11.1.0', + 'America/Iqaluit': 'EST5EDT,M3.2.0,M11.1.0', + 'America/Jamaica': 'EST5', + 'America/Juneau': 'AKST9AKDT,M3.2.0,M11.1.0', + 'America/Kentucky/Louisville': 'EST5EDT,M3.2.0,M11.1.0', + 'America/Kentucky/Monticello': 'EST5EDT,M3.2.0,M11.1.0', + 'America/Kralendijk': 'AST4', + 'America/La Paz': '<-04>4', + 'America/Lima': '<-05>5', + 'America/Los Angeles': 'PST8PDT,M3.2.0,M11.1.0', + 'America/Lower Princes': 'AST4', + 'America/Maceio': '<-03>3', + 'America/Managua': 'CST6', + 'America/Manaus': '<-04>4', + 'America/Marigot': 'AST4', + 'America/Martinique': 'AST4', + 'America/Matamoros': 'CST6CDT,M3.2.0,M11.1.0', + 'America/Mazatlan': 'MST7MDT,M4.1.0,M10.5.0', + 'America/Menominee': 'CST6CDT,M3.2.0,M11.1.0', + 'America/Merida': 'CST6CDT,M4.1.0,M10.5.0', + 'America/Metlakatla': 'AKST9AKDT,M3.2.0,M11.1.0', + 'America/Mexico City': 'CST6CDT,M4.1.0,M10.5.0', + 'America/Miquelon': '<-03>3<-02>,M3.2.0,M11.1.0', + 'America/Moncton': 'AST4ADT,M3.2.0,M11.1.0', + 'America/Monterrey': 'CST6CDT,M4.1.0,M10.5.0', + 'America/Montevideo': '<-03>3', + 'America/Montserrat': 'AST4', + 'America/Nassau': 'EST5EDT,M3.2.0,M11.1.0', + 'America/New York': 'EST5EDT,M3.2.0,M11.1.0', + 'America/Nipigon': 'EST5EDT,M3.2.0,M11.1.0', + 'America/Nome': 'AKST9AKDT,M3.2.0,M11.1.0', + 'America/Noronha': '<-02>2', + 'America/North Dakota/Beulah': 'CST6CDT,M3.2.0,M11.1.0', + 'America/North Dakota/Center': 'CST6CDT,M3.2.0,M11.1.0', + 'America/North Dakota/New Salem': 'CST6CDT,M3.2.0,M11.1.0', + 'America/Nuuk': '<-03>3<-02>,M3.5.0/-2,M10.5.0/-1', + 'America/Ojinaga': 'MST7MDT,M3.2.0,M11.1.0', + 'America/Panama': 'EST5', + 'America/Pangnirtung': 'EST5EDT,M3.2.0,M11.1.0', + 'America/Paramaribo': '<-03>3', + 'America/Phoenix': 'MST7', + 'America/Port of Spain': 'AST4', + 'America/Port-au-Prince': 'EST5EDT,M3.2.0,M11.1.0', + 'America/Porto Velho': '<-04>4', + 'America/Puerto Rico': 'AST4', + 'America/Punta Arenas': '<-03>3', + 'America/Rainy River': 'CST6CDT,M3.2.0,M11.1.0', + 'America/Rankin Inlet': 'CST6CDT,M3.2.0,M11.1.0', + 'America/Recife': '<-03>3', + 'America/Regina': 'CST6', + 'America/Resolute': 'CST6CDT,M3.2.0,M11.1.0', + 'America/Rio Branco': '<-05>5', + 'America/Santarem': '<-03>3', + 'America/Santiago': '<-04>4<-03>,M9.1.6/24,M4.1.6/24', + 'America/Santo Domingo': 'AST4', + 'America/Sao Paulo': '<-03>3', + 'America/Scoresbysund': '<-01>1<+00>,M3.5.0/0,M10.5.0/1', + 'America/Sitka': 'AKST9AKDT,M3.2.0,M11.1.0', + 'America/St Barthelemy': 'AST4', + 'America/St Johns': 'NST3:30NDT,M3.2.0,M11.1.0', + 'America/St Kitts': 'AST4', + 'America/St Lucia': 'AST4', + 'America/St Thomas': 'AST4', + 'America/St Vincent': 'AST4', + 'America/Swift Current': 'CST6', + 'America/Tegucigalpa': 'CST6', + 'America/Thule': 'AST4ADT,M3.2.0,M11.1.0', + 'America/Thunder Bay': 'EST5EDT,M3.2.0,M11.1.0', + 'America/Tijuana': 'PST8PDT,M3.2.0,M11.1.0', + 'America/Toronto': 'EST5EDT,M3.2.0,M11.1.0', + 'America/Tortola': 'AST4', + 'America/Vancouver': 'PST8PDT,M3.2.0,M11.1.0', + 'America/Whitehorse': 'MST7', + 'America/Winnipeg': 'CST6CDT,M3.2.0,M11.1.0', + 'America/Yakutat': 'AKST9AKDT,M3.2.0,M11.1.0', + 'America/Yellowknife': 'MST7MDT,M3.2.0,M11.1.0', + 'Antarctica/Casey': '<+11>-11', + 'Antarctica/Davis': '<+07>-7', + 'Antarctica/DumontDUrville': '<+10>-10', + 'Antarctica/Macquarie': 'AEST-10AEDT,M10.1.0,M4.1.0/3', + 'Antarctica/Mawson': '<+05>-5', + 'Antarctica/McMurdo': 'NZST-12NZDT,M9.5.0,M4.1.0/3', + 'Antarctica/Palmer': '<-03>3', + 'Antarctica/Rothera': '<-03>3', + 'Antarctica/Syowa': '<+03>-3', + 'Antarctica/Troll': '<+00>0<+02>-2,M3.5.0/1,M10.5.0/3', + 'Antarctica/Vostok': '<+06>-6', + 'Arctic/Longyearbyen': 'CET-1CEST,M3.5.0,M10.5.0/3', + 'Asia/Aden': '<+03>-3', + 'Asia/Almaty': '<+06>-6', + 'Asia/Amman': '<+03>-3', + 'Asia/Anadyr': '<+12>-12', + 'Asia/Aqtau': '<+05>-5', + 'Asia/Aqtobe': '<+05>-5', + 'Asia/Ashgabat': '<+05>-5', + 'Asia/Atyrau': '<+05>-5', + 'Asia/Baghdad': '<+03>-3', + 'Asia/Bahrain': '<+03>-3', + 'Asia/Baku': '<+04>-4', + 'Asia/Bangkok': '<+07>-7', + 'Asia/Barnaul': '<+07>-7', + 'Asia/Beirut': 'EET-2EEST,M3.5.0/0,M10.5.0/0', + 'Asia/Bishkek': '<+06>-6', + 'Asia/Brunei': '<+08>-8', + 'Asia/Chita': '<+09>-9', + 'Asia/Choibalsan': '<+08>-8', + 'Asia/Colombo': '<+0530>-5:30', + 'Asia/Damascus': '<+03>-3', + 'Asia/Dhaka': '<+06>-6', + 'Asia/Dili': '<+09>-9', + 'Asia/Dubai': '<+04>-4', + 'Asia/Dushanbe': '<+05>-5', + 'Asia/Famagusta': 'EET-2EEST,M3.5.0/3,M10.5.0/4', + 'Asia/Gaza': 'EET-2EEST,M3.4.4/50,M10.4.4/50', + 'Asia/Hebron': 'EET-2EEST,M3.4.4/50,M10.4.4/50', + 'Asia/Ho Chi Minh': '<+07>-7', + 'Asia/Hong Kong': 'HKT-8', + 'Asia/Hovd': '<+07>-7', + 'Asia/Irkutsk': '<+08>-8', + 'Asia/Jakarta': 'WIB-7', + 'Asia/Jayapura': 'WIT-9', + 'Asia/Jerusalem': 'IST-2IDT,M3.4.4/26,M10.5.0', + 'Asia/Kabul': '<+0430>-4:30', + 'Asia/Kamchatka': '<+12>-12', + 'Asia/Karachi': 'PKT-5', + 'Asia/Kathmandu': '<+0545>-5:45', + 'Asia/Khandyga': '<+09>-9', + 'Asia/Kolkata': 'IST-5:30', + 'Asia/Krasnoyarsk': '<+07>-7', + 'Asia/Kuala Lumpur': '<+08>-8', + 'Asia/Kuching': '<+08>-8', + 'Asia/Kuwait': '<+03>-3', + 'Asia/Macau': 'CST-8', + 'Asia/Magadan': '<+11>-11', + 'Asia/Makassar': 'WITA-8', + 'Asia/Manila': 'PST-8', + 'Asia/Muscat': '<+04>-4', + 'Asia/Nicosia': 'EET-2EEST,M3.5.0/3,M10.5.0/4', + 'Asia/Novokuznetsk': '<+07>-7', + 'Asia/Novosibirsk': '<+07>-7', + 'Asia/Omsk': '<+06>-6', + 'Asia/Oral': '<+05>-5', + 'Asia/Phnom Penh': '<+07>-7', + 'Asia/Pontianak': 'WIB-7', + 'Asia/Pyongyang': 'KST-9', + 'Asia/Qatar': '<+03>-3', + 'Asia/Qostanay': '<+06>-6', + 'Asia/Qyzylorda': '<+05>-5', + 'Asia/Riyadh': '<+03>-3', + 'Asia/Sakhalin': '<+11>-11', + 'Asia/Samarkand': '<+05>-5', + 'Asia/Seoul': 'KST-9', + 'Asia/Shanghai': 'CST-8', + 'Asia/Singapore': '<+08>-8', + 'Asia/Srednekolymsk': '<+11>-11', + 'Asia/Taipei': 'CST-8', + 'Asia/Tashkent': '<+05>-5', + 'Asia/Tbilisi': '<+04>-4', + 'Asia/Tehran': '<+0330>-3:30', + 'Asia/Thimphu': '<+06>-6', + 'Asia/Tokyo': 'JST-9', + 'Asia/Tomsk': '<+07>-7', + 'Asia/Ulaanbaatar': '<+08>-8', + 'Asia/Urumqi': '<+06>-6', + 'Asia/Ust-Nera': '<+10>-10', + 'Asia/Vientiane': '<+07>-7', + 'Asia/Vladivostok': '<+10>-10', + 'Asia/Yakutsk': '<+09>-9', + 'Asia/Yangon': '<+0630>-6:30', + 'Asia/Yekaterinburg': '<+05>-5', + 'Asia/Yerevan': '<+04>-4', + 'Atlantic/Azores': '<-01>1<+00>,M3.5.0/0,M10.5.0/1', + 'Atlantic/Bermuda': 'AST4ADT,M3.2.0,M11.1.0', + 'Atlantic/Canary': 'WET0WEST,M3.5.0/1,M10.5.0', + 'Atlantic/Cape Verde': '<-01>1', + 'Atlantic/Faroe': 'WET0WEST,M3.5.0/1,M10.5.0', + 'Atlantic/Madeira': 'WET0WEST,M3.5.0/1,M10.5.0', + 'Atlantic/Reykjavik': 'GMT0', + 'Atlantic/South Georgia': '<-02>2', + 'Atlantic/St Helena': 'GMT0', + 'Atlantic/Stanley': '<-03>3', + 'Australia/Adelaide': 'ACST-9:30ACDT,M10.1.0,M4.1.0/3', + 'Australia/Brisbane': 'AEST-10', + 'Australia/Broken Hill': 'ACST-9:30ACDT,M10.1.0,M4.1.0/3', + 'Australia/Darwin': 'ACST-9:30', + 'Australia/Eucla': '<+0845>-8:45', + 'Australia/Hobart': 'AEST-10AEDT,M10.1.0,M4.1.0/3', + 'Australia/Lindeman': 'AEST-10', + 'Australia/Lord Howe': '<+1030>-10:30<+11>-11,M10.1.0,M4.1.0', + 'Australia/Melbourne': 'AEST-10AEDT,M10.1.0,M4.1.0/3', + 'Australia/Perth': 'AWST-8', + 'Australia/Sydney': 'AEST-10AEDT,M10.1.0,M4.1.0/3', + 'Etc/GMT': 'GMT0', + 'Etc/GMT+1': '<-01>1', + 'Etc/GMT+10': '<-10>10', + 'Etc/GMT+11': '<-11>11', + 'Etc/GMT+12': '<-12>12', + 'Etc/GMT+2': '<-02>2', + 'Etc/GMT+3': '<-03>3', + 'Etc/GMT+4': '<-04>4', + 'Etc/GMT+5': '<-05>5', + 'Etc/GMT+6': '<-06>6', + 'Etc/GMT+7': '<-07>7', + 'Etc/GMT+8': '<-08>8', + 'Etc/GMT+9': '<-09>9', + 'Etc/GMT-1': '<+01>-1', + 'Etc/GMT-10': '<+10>-10', + 'Etc/GMT-11': '<+11>-11', + 'Etc/GMT-12': '<+12>-12', + 'Etc/GMT-13': '<+13>-13', + 'Etc/GMT-14': '<+14>-14', + 'Etc/GMT-2': '<+02>-2', + 'Etc/GMT-3': '<+03>-3', + 'Etc/GMT-4': '<+04>-4', + 'Etc/GMT-5': '<+05>-5', + 'Etc/GMT-6': '<+06>-6', + 'Etc/GMT-7': '<+07>-7', + 'Etc/GMT-8': '<+08>-8', + 'Etc/GMT-9': '<+09>-9', + 'Europe/Amsterdam': 'CET-1CEST,M3.5.0,M10.5.0/3', + 'Europe/Andorra': 'CET-1CEST,M3.5.0,M10.5.0/3', + 'Europe/Astrakhan': '<+04>-4', + 'Europe/Athens': 'EET-2EEST,M3.5.0/3,M10.5.0/4', + 'Europe/Belgrade': 'CET-1CEST,M3.5.0,M10.5.0/3', + 'Europe/Berlin': 'CET-1CEST,M3.5.0,M10.5.0/3', + 'Europe/Bratislava': 'CET-1CEST,M3.5.0,M10.5.0/3', + 'Europe/Brussels': 'CET-1CEST,M3.5.0,M10.5.0/3', + 'Europe/Bucharest': 'EET-2EEST,M3.5.0/3,M10.5.0/4', + 'Europe/Budapest': 'CET-1CEST,M3.5.0,M10.5.0/3', + 'Europe/Busingen': 'CET-1CEST,M3.5.0,M10.5.0/3', + 'Europe/Chisinau': 'EET-2EEST,M3.5.0,M10.5.0/3', + 'Europe/Copenhagen': 'CET-1CEST,M3.5.0,M10.5.0/3', + 'Europe/Dublin': 'IST-1GMT0,M10.5.0,M3.5.0/1', + 'Europe/Gibraltar': 'CET-1CEST,M3.5.0,M10.5.0/3', + 'Europe/Guernsey': 'GMT0BST,M3.5.0/1,M10.5.0', + 'Europe/Helsinki': 'EET-2EEST,M3.5.0/3,M10.5.0/4', + 'Europe/Isle of Man': 'GMT0BST,M3.5.0/1,M10.5.0', + 'Europe/Istanbul': '<+03>-3', + 'Europe/Jersey': 'GMT0BST,M3.5.0/1,M10.5.0', + 'Europe/Kaliningrad': 'EET-2', + 'Europe/Kirov': '<+03>-3', + 'Europe/Kyiv': 'EET-2EEST,M3.5.0/3,M10.5.0/4', + 'Europe/Lisbon': 'WET0WEST,M3.5.0/1,M10.5.0', + 'Europe/Ljubljana': 'CET-1CEST,M3.5.0,M10.5.0/3', + 'Europe/London': 'GMT0BST,M3.5.0/1,M10.5.0', + 'Europe/Luxembourg': 'CET-1CEST,M3.5.0,M10.5.0/3', + 'Europe/Madrid': 'CET-1CEST,M3.5.0,M10.5.0/3', + 'Europe/Malta': 'CET-1CEST,M3.5.0,M10.5.0/3', + 'Europe/Mariehamn': 'EET-2EEST,M3.5.0/3,M10.5.0/4', + 'Europe/Minsk': '<+03>-3', + 'Europe/Monaco': 'CET-1CEST,M3.5.0,M10.5.0/3', + 'Europe/Moscow': 'MSK-3', + 'Europe/Oslo': 'CET-1CEST,M3.5.0,M10.5.0/3', + 'Europe/Paris': 'CET-1CEST,M3.5.0,M10.5.0/3', + 'Europe/Podgorica': 'CET-1CEST,M3.5.0,M10.5.0/3', + 'Europe/Prague': 'CET-1CEST,M3.5.0,M10.5.0/3', + 'Europe/Riga': 'EET-2EEST,M3.5.0/3,M10.5.0/4', + 'Europe/Rome': 'CET-1CEST,M3.5.0,M10.5.0/3', + 'Europe/Samara': '<+04>-4', + 'Europe/San Marino': 'CET-1CEST,M3.5.0,M10.5.0/3', + 'Europe/Sarajevo': 'CET-1CEST,M3.5.0,M10.5.0/3', + 'Europe/Saratov': '<+04>-4', + 'Europe/Simferopol': 'MSK-3', + 'Europe/Skopje': 'CET-1CEST,M3.5.0,M10.5.0/3', + 'Europe/Sofia': 'EET-2EEST,M3.5.0/3,M10.5.0/4', + 'Europe/Stockholm': 'CET-1CEST,M3.5.0,M10.5.0/3', + 'Europe/Tallinn': 'EET-2EEST,M3.5.0/3,M10.5.0/4', + 'Europe/Tirane': 'CET-1CEST,M3.5.0,M10.5.0/3', + 'Europe/Ulyanovsk': '<+04>-4', + 'Europe/Vaduz': 'CET-1CEST,M3.5.0,M10.5.0/3', + 'Europe/Vatican': 'CET-1CEST,M3.5.0,M10.5.0/3', + 'Europe/Vienna': 'CET-1CEST,M3.5.0,M10.5.0/3', + 'Europe/Vilnius': 'EET-2EEST,M3.5.0/3,M10.5.0/4', + 'Europe/Volgograd': '<+03>-3', + 'Europe/Warsaw': 'CET-1CEST,M3.5.0,M10.5.0/3', + 'Europe/Zagreb': 'CET-1CEST,M3.5.0,M10.5.0/3', + 'Europe/Zurich': 'CET-1CEST,M3.5.0,M10.5.0/3', + 'Indian/Antananarivo': 'EAT-3', + 'Indian/Chagos': '<+06>-6', + 'Indian/Christmas': '<+07>-7', + 'Indian/Cocos': '<+0630>-6:30', + 'Indian/Comoro': 'EAT-3', + 'Indian/Kerguelen': '<+05>-5', + 'Indian/Mahe': '<+04>-4', + 'Indian/Maldives': '<+05>-5', + 'Indian/Mauritius': '<+04>-4', + 'Indian/Mayotte': 'EAT-3', + 'Indian/Reunion': '<+04>-4', + 'Pacific/Apia': '<+13>-13', + 'Pacific/Auckland': 'NZST-12NZDT,M9.5.0,M4.1.0/3', + 'Pacific/Bougainville': '<+11>-11', + 'Pacific/Chatham': '<+1245>-12:45<+1345>,M9.5.0/2:45,M4.1.0/3:45', + 'Pacific/Chuuk': '<+10>-10', + 'Pacific/Easter': '<-06>6<-05>,M9.1.6/22,M4.1.6/22', + 'Pacific/Efate': '<+11>-11', + 'Pacific/Fakaofo': '<+13>-13', + 'Pacific/Fiji': '<+12>-12<+13>,M11.2.0,M1.2.3/99', + 'Pacific/Funafuti': '<+12>-12', + 'Pacific/Galapagos': '<-06>6', + 'Pacific/Gambier': '<-09>9', + 'Pacific/Guadalcanal': '<+11>-11', + 'Pacific/Guam': 'ChST-10', + 'Pacific/Honolulu': 'HST10', + 'Pacific/Kanton': '<+13>-13', + 'Pacific/Kiritimati': '<+14>-14', + 'Pacific/Kosrae': '<+11>-11', + 'Pacific/Kwajalein': '<+12>-12', + 'Pacific/Majuro': '<+12>-12', + 'Pacific/Marquesas': '<-0930>9:30', + 'Pacific/Midway': 'SST11', + 'Pacific/Nauru': '<+12>-12', + 'Pacific/Niue': '<-11>11', + 'Pacific/Norfolk': '<+11>-11<+12>,M10.1.0,M4.1.0/3', + 'Pacific/Noumea': '<+11>-11', + 'Pacific/Pago Pago': 'SST11', + 'Pacific/Palau': '<+09>-9', + 'Pacific/Pitcairn': '<-08>8', + 'Pacific/Pohnpei': '<+11>-11', + 'Pacific/Port Moresby': '<+10>-10', + 'Pacific/Rarotonga': '<-10>10', + 'Pacific/Saipan': 'ChST-10', + 'Pacific/Tahiti': '<-10>10', + 'Pacific/Tarawa': '<+12>-12', + 'Pacific/Tongatapu': '<+13>-13', + 'Pacific/Wake': '<+12>-12', + 'Pacific/Wallis': '<+12>-12', +}; |