diff options
Diffstat (limited to 'modules')
58 files changed, 2384 insertions, 3222 deletions
diff --git a/modules/luci-base/Makefile b/modules/luci-base/Makefile index 5019646611..6cb2b64092 100644 --- a/modules/luci-base/Makefile +++ b/modules/luci-base/Makefile @@ -12,7 +12,7 @@ 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 +rpcd-mod-file +rpcd-mod-luci +cgi-io +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 PKG_LICENSE:=MIT diff --git a/modules/luci-base/luasrc/debug.lua b/modules/luci-base/luasrc/debug.lua deleted file mode 100644 index 8ff1bb6981..0000000000 --- a/modules/luci-base/luasrc/debug.lua +++ /dev/null @@ -1,37 +0,0 @@ -local debug = require "debug" -local io = require "io" -local collectgarbage, floor = collectgarbage, math.floor - -module "luci.debug" -__file__ = debug.getinfo(1, 'S').source:sub(2) - --- Enables the memory tracer with given flags and returns a function to disable the tracer again -function trap_memtrace(flags, dest) - flags = flags or "clr" - local tracefile = io.open(dest or "/tmp/memtrace", "w") - local peak = 0 - - local function trap(what, line) - local info = debug.getinfo(2, "Sn") - local size = floor(collectgarbage("count")) - if size > peak then - peak = size - end - if tracefile then - tracefile:write( - "[", what, "] ", info.source, ":", (line or "?"), "\t", - (info.namewhat or ""), "\t", - (info.name or ""), "\t", - size, " (", peak, ")\n" - ) - end - end - - debug.sethook(trap, flags) - - return function() - debug.sethook() - tracefile:close() - end -end - diff --git a/modules/luci-base/luasrc/dispatcher.lua b/modules/luci-base/luasrc/dispatcher.lua index 57b4e12d17..560140e3d3 100644 --- a/modules/luci-base/luasrc/dispatcher.lua +++ b/modules/luci-base/luasrc/dispatcher.lua @@ -5,6 +5,7 @@ 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" @@ -276,7 +277,7 @@ local function tree_to_json(node, json) if type(node.nodes) == "table" then for subname, subnode in pairs(node.nodes) do local spec = { - title = util.striptags(subnode.title), + title = xml.striptags(subnode.title), order = subnode.order } @@ -741,7 +742,7 @@ local function init_template_engine(ctx) (scope and type(scope[key]) ~= "function" and scope[key]) or "") if noescape ~= true then - val = util.pcdata(val) + val = xml.pcdata(val) end return string.format(' %s="%s"', tostring(key), val) @@ -756,8 +757,8 @@ local function init_template_engine(ctx) 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 = util.striptags; - pcdata = util.pcdata; + striptags = xml.striptags; + pcdata = xml.pcdata; media = media; theme = fs.basename(media); resource = luci.config.main.resourcebase; diff --git a/modules/luci-base/luasrc/http.lua b/modules/luci-base/luasrc/http.lua deleted file mode 100644 index 20b55f2854..0000000000 --- a/modules/luci-base/luasrc/http.lua +++ /dev/null @@ -1,554 +0,0 @@ --- Copyright 2008 Steven Barth <steven@midlink.org> --- Copyright 2010-2018 Jo-Philipp Wich <jo@mein.io> --- Licensed to the public under the Apache License 2.0. - -local util = require "luci.util" -local coroutine = require "coroutine" -local table = require "table" -local lhttp = require "lucihttp" -local nixio = require "nixio" -local ltn12 = require "luci.ltn12" - -local table, ipairs, pairs, type, tostring, tonumber, error = - table, ipairs, pairs, type, tostring, tonumber, error - -module "luci.http" - -HTTP_MAX_CONTENT = 1024*100 -- 100 kB maximum content size - -context = util.threadlocal() - -Request = util.class() -function Request.__init__(self, env, sourcein, sinkerr) - self.input = sourcein - self.error = sinkerr - - - -- File handler nil by default to let .content() work - self.filehandler = nil - - -- HTTP-Message table - self.message = { - env = env, - headers = {}, - params = urldecode_params(env.QUERY_STRING or ""), - } - - self.parsed_input = false -end - -function Request.formvalue(self, name, noparse) - if not noparse and not self.parsed_input then - self:_parse_input() - end - - if name then - return self.message.params[name] - else - return self.message.params - end -end - -function Request.formvaluetable(self, prefix) - local vals = {} - prefix = prefix and prefix .. "." or "." - - if not self.parsed_input then - self:_parse_input() - end - - local void = self.message.params[nil] - for k, v in pairs(self.message.params) do - if k:find(prefix, 1, true) == 1 then - vals[k:sub(#prefix + 1)] = tostring(v) - end - end - - return vals -end - -function Request.content(self) - if not self.parsed_input then - self:_parse_input() - end - - return self.message.content, self.message.content_length -end - -function Request.getcookie(self, name) - return lhttp.header_attribute("cookie; " .. (self:getenv("HTTP_COOKIE") or ""), name) -end - -function Request.getenv(self, name) - if name then - return self.message.env[name] - else - return self.message.env - end -end - -function Request.setfilehandler(self, callback) - self.filehandler = callback - - if not self.parsed_input then - return - end - - -- 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. - local name, value - for name, value in pairs(self.message.params) do - if type(value) == "table" then - while value.fd do - local data = value.fd:read(1024) - local eof = (not data or data == "") - - callback(value, data, eof) - - if eof then - value.fd:close() - value.fd = nil - end - end - end - end -end - -function Request._parse_input(self) - parse_message_body( - self.input, - self.message, - self.filehandler - ) - self.parsed_input = true -end - -function close() - if not context.eoh then - context.eoh = true - coroutine.yield(3) - end - - if not context.closed then - context.closed = true - coroutine.yield(5) - end -end - -function content() - return context.request:content() -end - -function formvalue(name, noparse) - return context.request:formvalue(name, noparse) -end - -function formvaluetable(prefix) - return context.request:formvaluetable(prefix) -end - -function getcookie(name) - return context.request:getcookie(name) -end - --- or the environment table itself. -function getenv(name) - return context.request:getenv(name) -end - -function setfilehandler(callback) - return context.request:setfilehandler(callback) -end - -function header(key, value) - if not context.headers then - context.headers = {} - end - context.headers[key:lower()] = value - coroutine.yield(2, key, value) -end - -function prepare_content(mime) - if not context.headers or not context.headers["content-type"] then - if mime == "application/xhtml+xml" then - if not getenv("HTTP_ACCEPT") or - not getenv("HTTP_ACCEPT"):find("application/xhtml+xml", nil, true) then - mime = "text/html; charset=UTF-8" - end - header("Vary", "Accept") - end - header("Content-Type", mime) - end -end - -function source() - return context.request.input -end - -function status(code, message) - code = code or 200 - message = message or "OK" - context.status = code - coroutine.yield(1, code, message) -end - --- This function is as a valid LTN12 sink. --- If the content chunk is nil this function will automatically invoke close. -function write(content, src_err) - if not content then - if src_err then - error(src_err) - else - close() - end - return true - elseif #content == 0 then - return true - else - if not context.eoh then - if not context.status then - status() - end - if not context.headers or not context.headers["content-type"] then - header("Content-Type", "text/html; charset=utf-8") - end - if not context.headers["cache-control"] then - header("Cache-Control", "no-cache") - header("Expires", "0") - end - if not context.headers["x-frame-options"] then - header("X-Frame-Options", "SAMEORIGIN") - end - if not context.headers["x-xss-protection"] then - header("X-XSS-Protection", "1; mode=block") - end - if not context.headers["x-content-type-options"] then - header("X-Content-Type-Options", "nosniff") - end - - context.eoh = true - coroutine.yield(3) - end - coroutine.yield(4, content) - return true - end -end - -function splice(fd, size) - coroutine.yield(6, fd, size) -end - -function redirect(url) - if url == "" then url = "/" end - status(302, "Found") - header("Location", url) - close() -end - -function build_querystring(q) - local s, n, k, v = {}, 1, nil, nil - - for k, v in pairs(q) do - s[n+0] = (n == 1) and "?" or "&" - s[n+1] = util.urlencode(k) - s[n+2] = "=" - s[n+3] = util.urlencode(v) - n = n + 4 - end - - return table.concat(s, "") -end - -urldecode = util.urldecode - -urlencode = util.urlencode - -function write_json(x) - util.serialize_json(x, write) -end - --- 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. -function urldecode_params(url, tbl) - local parser, name - local params = tbl or { } - - parser = lhttp.urlencoded_parser(function (what, buffer, length) - if what == parser.TUPLE then - name, value = nil, nil - elseif what == parser.NAME then - name = lhttp.urldecode(buffer) - elseif what == parser.VALUE and name then - params[name] = lhttp.urldecode(buffer) or "" - end - - return true - end) - - if parser then - parser:parse((url or ""):match("[^?]*$")) - parser:parse(nil) - end - - return params -end - --- separated by "&". Tables are encoded as parameters with multiple values by --- repeating the parameter name with each value. -function urlencode_params(tbl) - local k, v - local n, enc = 1, {} - for k, v in pairs(tbl) do - if type(v) == "table" then - local i, v2 - for i, v2 in ipairs(v) do - if enc[1] then - enc[n] = "&" - n = n + 1 - end - - enc[n+0] = lhttp.urlencode(k) - enc[n+1] = "=" - enc[n+2] = lhttp.urlencode(v2) - n = n + 3 - end - else - if enc[1] then - enc[n] = "&" - n = n + 1 - end - - enc[n+0] = lhttp.urlencode(k) - enc[n+1] = "=" - enc[n+2] = lhttp.urlencode(v) - n = n + 3 - end - end - - return table.concat(enc, "") -end - --- 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) -function mimedecode_message_body(src, msg, file_cb) - local parser, header, field - local len, maxlen = 0, tonumber(msg.env.CONTENT_LENGTH or nil) - - parser, err = lhttp.multipart_parser(msg.env.CONTENT_TYPE, function (what, buffer, length) - if what == parser.PART_INIT then - field = { } - - elseif what == parser.HEADER_NAME then - header = buffer:lower() - - elseif what == parser.HEADER_VALUE and header then - if header:lower() == "content-disposition" and - lhttp.header_attribute(buffer, nil) == "form-data" - then - field.name = lhttp.header_attribute(buffer, "name") - field.file = lhttp.header_attribute(buffer, "filename") - field[1] = field.file - end - - if field.headers then - field.headers[header] = buffer - else - field.headers = { [header] = buffer } - end - - elseif what == parser.PART_BEGIN then - return not field.file - - elseif what == parser.PART_DATA and field.name and length > 0 then - if field.file then - if file_cb then - file_cb(field, buffer, false) - msg.params[field.name] = msg.params[field.name] or field - else - if not field.fd then - field.fd = nixio.mkstemp(field.name) - end - - if field.fd then - field.fd:write(buffer) - msg.params[field.name] = msg.params[field.name] or field - end - end - else - field.value = buffer - end - - elseif what == parser.PART_END and field.name then - if field.file and msg.params[field.name] then - if file_cb then - file_cb(field, "", true) - elseif field.fd then - field.fd:seek(0, "set") - end - else - local val = msg.params[field.name] - - if type(val) == "table" then - val[#val+1] = field.value or "" - elseif val ~= nil then - msg.params[field.name] = { val, field.value or "" } - else - msg.params[field.name] = field.value or "" - end - end - - field = nil - - elseif what == parser.ERROR then - err = buffer - end - - return true - end, HTTP_MAX_CONTENT) - - return ltn12.pump.all(src, function (chunk) - len = len + (chunk and #chunk or 0) - - if maxlen and len > maxlen + 2 then - return nil, "Message body size exceeds Content-Length" - end - - if not parser or not parser:parse(chunk) then - return nil, err - end - - return true - end) -end - --- 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. -function urldecode_message_body(src, msg) - local err, name, value, parser - local len, maxlen = 0, tonumber(msg.env.CONTENT_LENGTH or nil) - - parser = lhttp.urlencoded_parser(function (what, buffer, length) - if what == parser.TUPLE then - name, value = nil, nil - elseif what == parser.NAME then - name = lhttp.urldecode(buffer, lhttp.DECODE_PLUS) - elseif what == parser.VALUE and name then - local val = msg.params[name] - - if type(val) == "table" then - val[#val+1] = lhttp.urldecode(buffer, lhttp.DECODE_PLUS) or "" - elseif val ~= nil then - msg.params[name] = { val, lhttp.urldecode(buffer, lhttp.DECODE_PLUS) or "" } - else - msg.params[name] = lhttp.urldecode(buffer, lhttp.DECODE_PLUS) or "" - end - elseif what == parser.ERROR then - err = buffer - end - - return true - end, HTTP_MAX_CONTENT) - - return ltn12.pump.all(src, function (chunk) - len = len + (chunk and #chunk or 0) - - if maxlen and len > maxlen + 2 then - return nil, "Message body size exceeds Content-Length" - elseif len > HTTP_MAX_CONTENT then - return nil, "Message body size exceeds maximum allowed length" - end - - if not parser or not parser:parse(chunk) then - return nil, err - end - - return true - end) -end - --- 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. -function parse_message_body(src, msg, filecb) - if msg.env.CONTENT_LENGTH or msg.env.REQUEST_METHOD == "POST" then - local ctype = lhttp.header_attribute(msg.env.CONTENT_TYPE, nil) - - -- Is it multipart/mime ? - if ctype == "multipart/form-data" then - return mimedecode_message_body(src, msg, filecb) - - -- Is it application/x-www-form-urlencoded ? - elseif ctype == "application/x-www-form-urlencoded" then - return urldecode_message_body(src, msg) - - end - - -- Unhandled encoding - -- If a file callback is given then feed it chunk by chunk, else - -- store whole buffer in message.content - local sink - - -- If we have a file callback then feed it - if type(filecb) == "function" then - local meta = { - name = "raw", - encoding = msg.env.CONTENT_TYPE - } - sink = function( chunk ) - if chunk then - return filecb(meta, chunk, false) - else - return filecb(meta, nil, true) - end - end - -- ... else append to .content - else - msg.content = "" - msg.content_length = 0 - - sink = function( chunk ) - if chunk then - if ( msg.content_length + #chunk ) <= HTTP_MAX_CONTENT then - msg.content = msg.content .. chunk - msg.content_length = msg.content_length + #chunk - return true - else - return nil, "POST data exceeds maximum allowed length" - end - end - return true - end - end - - -- Pump data... - while true do - local ok, err = ltn12.pump.step( src, sink ) - - if not ok and err then - return nil, err - elseif not ok then -- eof - return true - end - end - - return true - end - - return false -end diff --git a/modules/luci-base/luasrc/http.luadoc b/modules/luci-base/luasrc/http.luadoc deleted file mode 100644 index 8f6f380d8b..0000000000 --- a/modules/luci-base/luasrc/http.luadoc +++ /dev/null @@ -1,260 +0,0 @@ ----[[ -LuCI Web Framework high-level HTTP functions. -]] -module "luci.http" - ----[[ -Close the HTTP-Connection. - -@class function -@name close -]] - ----[[ -Return the request content if the request was of unknown type. - -@class function -@name content -@return HTTP request body -@return HTTP request body length -]] - ----[[ -Get a certain HTTP input value or a table of all input values. - -@class function -@name formvalue -@param name Name of the GET or POST variable to fetch -@param noparse Don't parse POST data before getting the value -@return HTTP input value or table of all input value -]] - ----[[ -Get a table of all HTTP input values with a certain prefix. - -@class function -@name formvaluetable -@param prefix Prefix -@return Table of all HTTP input values with given prefix -]] - ----[[ -Get the value of a certain HTTP-Cookie. - -@class function -@name getcookie -@param name Cookie Name -@return String containing cookie data -]] - ----[[ -Get the value of a certain HTTP environment variable -or the environment table itself. - -@class function -@name getenv -@param name Environment variable -@return HTTP environment value or environment table -]] - ----[[ -Set a handler function for incoming user file uploads. - -@class function -@name setfilehandler -@param callback Handler function -]] - ----[[ -Send a HTTP-Header. - -@class function -@name header -@param key Header key -@param value Header value -]] - ----[[ -Set the mime type of following content data. - -@class function -@name prepare_content -@param mime Mimetype of following content -]] - ----[[ -Get the RAW HTTP input source - -@class function -@name source -@return HTTP LTN12 source -]] - ----[[ -Set the HTTP status code and status message. - -@class function -@name status -@param code Status code -@param message Status message -]] - ----[[ -Send a chunk of content data to the client. - -This function is as a valid LTN12 sink. -If the content chunk is nil this function will automatically invoke close. - -@class function -@name write -@param content Content chunk -@param src_err Error object from source (optional) -@see close -]] - ----[[ -Splice data from a filedescriptor to the client. - -@class function -@name splice -@param fp File descriptor -@param size Bytes to splice (optional) -]] - ----[[ -Redirects the client to a new URL and closes the connection. - -@class function -@name redirect -@param url Target URL -]] - ----[[ -Create a querystring out of a table of key - value pairs. - -@class function -@name build_querystring -@param table Query string source table -@return Encoded HTTP query string -]] - ----[[ -Return the URL-decoded equivalent of a string. - -@class function -@name urldecode -@param str URL-encoded string -@param no_plus Don't decode + to " " -@return URL-decoded string -@see urlencode -]] - ----[[ -Return the URL-encoded equivalent of a string. - -@class function -@name urlencode -@param str Source string -@return URL-encoded string -@see urldecode -]] - ----[[ -Send the given data as JSON encoded string. - -@class function -@name write_json -@param data Data to send -]] - ----[[ -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. - -@class function -@name urldecode_params -@param url The url or string which contains x-www-urlencoded form data -@param tbl Use the given table for storing values (optional) -@return Table containing the urldecoded parameters -@see urlencode_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. - -@class function -@name urlencode_params -@param tbl Table with the values -@return String containing encoded values -@see urldecode_params -]] - ----[[ -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) - -@class function -@name mimedecode_message_body -@param src Ltn12 source function -@param msg HTTP message object -@param filecb File callback function (optional) -@return Value indicating successful operation (not nil means "ok") -@return String containing the error if unsuccessful -@see parse_message_header -]] - ----[[ -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. - -@class function -@name urldecode_message_body -@param src Ltn12 source function -@param msg HTTP message object -@return Value indicating successful operation (not nil means "ok") -@return String containing the error if unsuccessful -@see parse_message_header -]] - ----[[ -Try to extract and decode a http message body from the given ltn12 source. -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. - -@class function -@name parse_message_body -@param src Ltn12 source function -@param msg HTTP message object -@param filecb File data callback (optional, see mimedecode_message_body()) -@return Value indicating successful operation (not nil means "ok") -@return String containing the error if unsuccessful -@see parse_message_header -]] diff --git a/modules/luci-base/luasrc/ltn12.lua b/modules/luci-base/luasrc/ltn12.lua deleted file mode 100644 index 3a7268ccae..0000000000 --- a/modules/luci-base/luasrc/ltn12.lua +++ /dev/null @@ -1,316 +0,0 @@ ---[[ -LuaSocket 2.0.2 license -Copyright � 2004-2007 Diego Nehab - -Permission is hereby granted, free of charge, to any person obtaining a -copy of this software and associated documentation files (the "Software"), -to deal in the Software without restriction, including without limitation -the rights to use, copy, modify, merge, publish, distribute, sublicense, -and/or sell copies of the Software, and to permit persons to whom the -Software is furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in -all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING -FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -DEALINGS IN THE SOFTWARE. -]]-- ---[[ - Changes made by LuCI project: - * Renamed to luci.ltn12 to avoid collisions with luasocket - * Added inline documentation -]]-- ------------------------------------------------------------------------------ --- LTN12 - Filters, sources, sinks and pumps. --- LuaSocket toolkit. --- Author: Diego Nehab --- RCS ID: $Id$ ------------------------------------------------------------------------------ - ------------------------------------------------------------------------------ --- Declare module ------------------------------------------------------------------------------ -local string = require("string") -local table = require("table") -local base = _G - --- See http://lua-users.org/wiki/FiltersSourcesAndSinks for design concepts -module("luci.ltn12") - -filter = {} -source = {} -sink = {} -pump = {} - --- 2048 seems to be better in windows... -BLOCKSIZE = 2048 -_VERSION = "LTN12 1.0.1" - ------------------------------------------------------------------------------ --- Filter stuff ------------------------------------------------------------------------------ - - --- by passing it each chunk and updating a context between calls. -function filter.cycle(low, ctx, extra) - base.assert(low) - return function(chunk) - local ret - ret, ctx = low(ctx, chunk, extra) - return ret - end -end - --- (thanks to Wim Couwenberg) -function filter.chain(...) - local n = table.getn(arg) - local top, index = 1, 1 - local retry = "" - return function(chunk) - retry = chunk and retry - while true do - if index == top then - chunk = arg[index](chunk) - if chunk == "" or top == n then return chunk - elseif chunk then index = index + 1 - else - top = top+1 - index = top - end - else - chunk = arg[index](chunk or "") - if chunk == "" then - index = index - 1 - chunk = retry - elseif chunk then - if index == n then return chunk - else index = index + 1 end - else base.error("filter returned inappropriate nil") end - end - end - end -end - ------------------------------------------------------------------------------ --- Source stuff ------------------------------------------------------------------------------ - - --- create an empty source -local function empty() - return nil -end - -function source.empty() - return empty -end - -function source.error(err) - return function() - return nil, err - end -end - -function source.file(handle, io_err) - if handle then - return function() - local chunk = handle:read(BLOCKSIZE) - if chunk and chunk:len() == 0 then chunk = nil end - if not chunk then handle:close() end - return chunk - end - else return source.error(io_err or "unable to open file") end -end - -function source.simplify(src) - base.assert(src) - return function() - local chunk, err_or_new = src() - src = err_or_new or src - if not chunk then return nil, err_or_new - else return chunk end - end -end - -function source.string(s) - if s then - local i = 1 - return function() - local chunk = string.sub(s, i, i+BLOCKSIZE-1) - i = i + BLOCKSIZE - if chunk ~= "" then return chunk - else return nil end - end - else return source.empty() end -end - -function source.rewind(src) - base.assert(src) - local t = {} - return function(chunk) - if not chunk then - chunk = table.remove(t) - if not chunk then return src() - else return chunk end - else - t[#t+1] = chunk - end - end -end - -function source.chain(src, f) - base.assert(src and f) - local last_in, last_out = "", "" - local state = "feeding" - local err - return function() - if not last_out then - base.error('source is empty!', 2) - end - while true do - if state == "feeding" then - last_in, err = src() - if err then return nil, err end - last_out = f(last_in) - if not last_out then - if last_in then - base.error('filter returned inappropriate nil') - else - return nil - end - elseif last_out ~= "" then - state = "eating" - if last_in then last_in = "" end - return last_out - end - else - last_out = f(last_in) - if last_out == "" then - if last_in == "" then - state = "feeding" - else - base.error('filter returned ""') - end - elseif not last_out then - if last_in then - base.error('filter returned inappropriate nil') - else - return nil - end - else - return last_out - end - end - end - end -end - --- Sources will be used one after the other, as if they were concatenated --- (thanks to Wim Couwenberg) -function source.cat(...) - local src = table.remove(arg, 1) - return function() - while src do - local chunk, err = src() - if chunk then return chunk end - if err then return nil, err end - src = table.remove(arg, 1) - end - end -end - ------------------------------------------------------------------------------ --- Sink stuff ------------------------------------------------------------------------------ - - -function sink.table(t) - t = t or {} - local f = function(chunk, err) - if chunk then t[#t+1] = chunk end - return 1 - end - return f, t -end - -function sink.simplify(snk) - base.assert(snk) - return function(chunk, err) - local ret, err_or_new = snk(chunk, err) - if not ret then return nil, err_or_new end - snk = err_or_new or snk - return 1 - end -end - -function sink.file(handle, io_err) - if handle then - return function(chunk, err) - if not chunk then - handle:close() - return 1 - else return handle:write(chunk) end - end - else return sink.error(io_err or "unable to open file") end -end - --- creates a sink that discards data -local function null() - return 1 -end - -function sink.null() - return null -end - -function sink.error(err) - return function() - return nil, err - end -end - -function sink.chain(f, snk) - base.assert(f and snk) - return function(chunk, err) - if chunk ~= "" then - local filtered = f(chunk) - local done = chunk and "" - while true do - local ret, snkerr = snk(filtered, err) - if not ret then return nil, snkerr end - if filtered == done then return 1 end - filtered = f(done) - end - else return 1 end - end -end - ------------------------------------------------------------------------------ --- Pump stuff ------------------------------------------------------------------------------ - - -function pump.step(src, snk) - local chunk, src_err = src() - local ret, snk_err = snk(chunk, src_err) - if chunk and ret then return 1 - else return nil, src_err or snk_err end -end - -function pump.all(src, snk, step) - base.assert(src and snk) - step = step or pump.step - while true do - local ret, err = step(src, snk) - if not ret then - if err then return nil, err - else return 1 end - end - end -end - diff --git a/modules/luci-base/luasrc/util.lua b/modules/luci-base/luasrc/util.lua deleted file mode 100644 index a30e8b72f3..0000000000 --- a/modules/luci-base/luasrc/util.lua +++ /dev/null @@ -1,776 +0,0 @@ --- Copyright 2008 Steven Barth <steven@midlink.org> --- Licensed to the public under the Apache License 2.0. - -local io = require "io" -local math = require "math" -local table = require "table" -local debug = require "debug" -local ldebug = require "luci.debug" -local string = require "string" -local coroutine = require "coroutine" -local tparser = require "luci.template.parser" -local json = require "luci.jsonc" -local lhttp = require "lucihttp" - -local _ubus = require "ubus" -local _ubus_connection = nil - -local getmetatable, setmetatable = getmetatable, setmetatable -local rawget, rawset, unpack, select = rawget, rawset, unpack, select -local tostring, type, assert, error = tostring, type, assert, error -local ipairs, pairs, next, loadstring = ipairs, pairs, next, loadstring -local require, pcall, xpcall = require, pcall, xpcall -local collectgarbage, get_memory_limit = collectgarbage, get_memory_limit - -module "luci.util" - --- --- Pythonic string formatting extension --- -getmetatable("").__mod = function(a, b) - local ok, res - - if not b then - return a - elseif type(b) == "table" then - local k, _ - for k, _ in pairs(b) do if type(b[k]) == "userdata" then b[k] = tostring(b[k]) end end - - ok, res = pcall(a.format, a, unpack(b)) - if not ok then - error(res, 2) - end - return res - else - if type(b) == "userdata" then b = tostring(b) end - - ok, res = pcall(a.format, a, b) - if not ok then - error(res, 2) - end - return res - end -end - - --- --- Class helper routines --- - --- Instantiates a class -local function _instantiate(class, ...) - local inst = setmetatable({}, {__index = class}) - - if inst.__init__ then - inst:__init__(...) - end - - return inst -end - --- The class object can be instantiated by calling itself. --- Any class functions or shared parameters can be attached to this object. --- Attaching a table to the class object makes this table shared between --- all instances of this class. For object parameters use the __init__ function. --- Classes can inherit member functions and values from a base class. --- Class can be instantiated by calling them. All parameters will be passed --- to the __init__ function of this class - if such a function exists. --- The __init__ function must be used to set any object parameters that are not shared --- with other objects of this class. Any return values will be ignored. -function class(base) - return setmetatable({}, { - __call = _instantiate, - __index = base - }) -end - -function instanceof(object, class) - local meta = getmetatable(object) - while meta and meta.__index do - if meta.__index == class then - return true - end - meta = getmetatable(meta.__index) - end - return false -end - - --- --- Scope manipulation routines --- - -coxpt = setmetatable({}, { __mode = "kv" }) - -local tl_meta = { - __mode = "k", - - __index = function(self, key) - local t = rawget(self, coxpt[coroutine.running()] - or coroutine.running() or 0) - return t and t[key] - end, - - __newindex = function(self, key, value) - local c = coxpt[coroutine.running()] or coroutine.running() or 0 - local r = rawget(self, c) - if not r then - rawset(self, c, { [key] = value }) - else - r[key] = value - end - end -} - --- the current active coroutine. A thread local store is private a table object --- whose values can't be accessed from outside of the running coroutine. -function threadlocal(tbl) - return setmetatable(tbl or {}, tl_meta) -end - - --- --- Debugging routines --- - -function perror(obj) - return io.stderr:write(tostring(obj) .. "\n") -end - -function dumptable(t, maxdepth, i, seen) - i = i or 0 - seen = seen or setmetatable({}, {__mode="k"}) - - for k,v in pairs(t) do - perror(string.rep("\t", i) .. tostring(k) .. "\t" .. tostring(v)) - if type(v) == "table" and (not maxdepth or i < maxdepth) then - if not seen[v] then - seen[v] = true - dumptable(v, maxdepth, i+1, seen) - else - perror(string.rep("\t", i) .. "*** RECURSION ***") - end - end - end -end - - --- --- String and data manipulation routines --- - -function pcdata(value) - return value and tparser.pcdata(tostring(value)) -end - -function urlencode(value) - if value ~= nil then - local str = tostring(value) - return lhttp.urlencode(str, lhttp.ENCODE_IF_NEEDED + lhttp.ENCODE_FULL) - or str - end - return nil -end - -function urldecode(value, decode_plus) - if value ~= nil then - local flag = decode_plus and lhttp.DECODE_PLUS or 0 - local str = tostring(value) - return lhttp.urldecode(str, lhttp.DECODE_IF_NEEDED + flag) - or str - end - return nil -end - -function striptags(value) - return value and tparser.striptags(tostring(value)) -end - -function shellquote(value) - return string.format("'%s'", string.gsub(value or "", "'", "'\\''")) -end - --- for bash, ash and similar shells single-quoted strings are taken --- literally except for single quotes (which terminate the string) --- (and the exception noted below for dash (-) at the start of a --- command line parameter). -function shellsqescape(value) - local res - res, _ = string.gsub(value, "'", "'\\''") - return res -end - --- bash, ash and other similar shells interpret a dash (-) at the start --- of a command-line parameters as an option indicator regardless of --- whether it is inside a single-quoted string. It must be backlash --- escaped to resolve this. This requires in some funky special-case --- handling. It may actually be a property of the getopt function --- rather than the shell proper. -function shellstartsqescape(value) - res, _ = string.gsub(value, "^%-", "\\-") - return shellsqescape(res) -end - --- containing the resulting substrings. The optional max parameter specifies --- the number of bytes to process, regardless of the actual length of the given --- string. The optional last parameter, regex, specifies whether the separator --- sequence is interpreted as regular expression. --- pattern as regular expression (optional, default is false) -function split(str, pat, max, regex) - pat = pat or "\n" - max = max or #str - - local t = {} - local c = 1 - - if #str == 0 then - return {""} - end - - if #pat == 0 then - return nil - end - - if max == 0 then - return str - end - - repeat - local s, e = str:find(pat, c, not regex) - max = max - 1 - if s and max < 0 then - t[#t+1] = str:sub(c) - else - t[#t+1] = str:sub(c, s and s - 1) - end - c = e and e + 1 or #str + 1 - until not s or max < 0 - - return t -end - -function trim(str) - return (str:gsub("^%s*(.-)%s*$", "%1")) -end - -function cmatch(str, pat) - local count = 0 - for _ in str:gmatch(pat) do count = count + 1 end - return count -end - --- one token per invocation, the tokens are separated by whitespace. If the --- input value is a table, it is transformed into a string first. A nil value --- will result in a valid iterator which aborts with the first invocation. -function imatch(v) - if type(v) == "table" then - local k = nil - return function() - k = next(v, k) - return v[k] - end - - elseif type(v) == "number" or type(v) == "boolean" then - local x = true - return function() - if x then - x = false - return tostring(v) - end - end - - elseif type(v) == "userdata" or type(v) == "string" then - return tostring(v):gmatch("%S+") - end - - return function() end -end - --- value or 0 if the unit is unknown. Upper- or lower case is irrelevant. --- Recognized units are: --- o "y" - one year (60*60*24*366) --- o "m" - one month (60*60*24*31) --- o "w" - one week (60*60*24*7) --- o "d" - one day (60*60*24) --- o "h" - one hour (60*60) --- o "min" - one minute (60) --- o "kb" - one kilobyte (1024) --- o "mb" - one megabyte (1024*1024) --- o "gb" - one gigabyte (1024*1024*1024) --- o "kib" - one si kilobyte (1000) --- o "mib" - one si megabyte (1000*1000) --- o "gib" - one si gigabyte (1000*1000*1000) -function parse_units(ustr) - - local val = 0 - - -- unit map - local map = { - -- date stuff - y = 60 * 60 * 24 * 366, - m = 60 * 60 * 24 * 31, - w = 60 * 60 * 24 * 7, - d = 60 * 60 * 24, - h = 60 * 60, - min = 60, - - -- storage sizes - kb = 1024, - mb = 1024 * 1024, - gb = 1024 * 1024 * 1024, - - -- storage sizes (si) - kib = 1000, - mib = 1000 * 1000, - gib = 1000 * 1000 * 1000 - } - - -- parse input string - for spec in ustr:lower():gmatch("[0-9%.]+[a-zA-Z]*") do - - local num = spec:gsub("[^0-9%.]+$","") - local spn = spec:gsub("^[0-9%.]+", "") - - if map[spn] or map[spn:sub(1,1)] then - val = val + num * ( map[spn] or map[spn:sub(1,1)] ) - else - val = val + num - end - end - - - return val -end - --- also register functions above in the central string class for convenience -string.pcdata = pcdata -string.striptags = striptags -string.split = split -string.trim = trim -string.cmatch = cmatch -string.parse_units = parse_units - - -function append(src, ...) - for i, a in ipairs({...}) do - if type(a) == "table" then - for j, v in ipairs(a) do - src[#src+1] = v - end - else - src[#src+1] = a - end - end - return src -end - -function combine(...) - return append({}, ...) -end - -function contains(table, value) - for k, v in pairs(table) do - if value == v then - return k - end - end - return false -end - --- Both table are - in fact - merged together. -function update(t, updates) - for k, v in pairs(updates) do - t[k] = v - end -end - -function keys(t) - local keys = { } - if t then - for k, _ in kspairs(t) do - keys[#keys+1] = k - end - end - return keys -end - -function clone(object, deep) - local copy = {} - - for k, v in pairs(object) do - if deep and type(v) == "table" then - v = clone(v, deep) - end - copy[k] = v - end - - return setmetatable(copy, getmetatable(object)) -end - - --- Serialize the contents of a table value. -function _serialize_table(t, seen) - assert(not seen[t], "Recursion detected.") - seen[t] = true - - local data = "" - local idata = "" - local ilen = 0 - - for k, v in pairs(t) do - if type(k) ~= "number" or k < 1 or math.floor(k) ~= k or ( k - #t ) > 3 then - k = serialize_data(k, seen) - v = serialize_data(v, seen) - data = data .. ( #data > 0 and ", " or "" ) .. - '[' .. k .. '] = ' .. v - elseif k > ilen then - ilen = k - end - end - - for i = 1, ilen do - local v = serialize_data(t[i], seen) - idata = idata .. ( #idata > 0 and ", " or "" ) .. v - end - - return idata .. ( #data > 0 and #idata > 0 and ", " or "" ) .. data -end - --- with loadstring(). -function serialize_data(val, seen) - seen = seen or setmetatable({}, {__mode="k"}) - - if val == nil then - return "nil" - elseif type(val) == "number" then - return val - elseif type(val) == "string" then - return "%q" % val - elseif type(val) == "boolean" then - return val and "true" or "false" - elseif type(val) == "function" then - return "loadstring(%q)" % get_bytecode(val) - elseif type(val) == "table" then - return "{ " .. _serialize_table(val, seen) .. " }" - else - return '"[unhandled data type:' .. type(val) .. ']"' - end -end - -function restore_data(str) - return loadstring("return " .. str)() -end - - --- --- Byte code manipulation routines --- - --- will be stripped before it is returned. -function get_bytecode(val) - local code - - if type(val) == "function" then - code = string.dump(val) - else - code = string.dump( loadstring( "return " .. serialize_data(val) ) ) - end - - return code -- and strip_bytecode(code) -end - --- numbers and debugging numbers will be discarded. Original version by --- Peter Cawley (http://lua-users.org/lists/lua-l/2008-02/msg01158.html) -function strip_bytecode(code) - local version, format, endian, int, size, ins, num, lnum = code:byte(5, 12) - local subint - if endian == 1 then - subint = function(code, i, l) - local val = 0 - for n = l, 1, -1 do - val = val * 256 + code:byte(i + n - 1) - end - return val, i + l - end - else - subint = function(code, i, l) - local val = 0 - for n = 1, l, 1 do - val = val * 256 + code:byte(i + n - 1) - end - return val, i + l - end - end - - local function strip_function(code) - local count, offset = subint(code, 1, size) - local stripped = { string.rep("\0", size) } - local dirty = offset + count - offset = offset + count + int * 2 + 4 - offset = offset + int + subint(code, offset, int) * ins - count, offset = subint(code, offset, int) - for n = 1, count do - local t - t, offset = subint(code, offset, 1) - if t == 1 then - offset = offset + 1 - elseif t == 4 then - offset = offset + size + subint(code, offset, size) - elseif t == 3 then - offset = offset + num - elseif t == 254 or t == 9 then - offset = offset + lnum - end - end - count, offset = subint(code, offset, int) - stripped[#stripped+1] = code:sub(dirty, offset - 1) - for n = 1, count do - local proto, off = strip_function(code:sub(offset, -1)) - stripped[#stripped+1] = proto - offset = offset + off - 1 - end - offset = offset + subint(code, offset, int) * int + int - count, offset = subint(code, offset, int) - for n = 1, count do - offset = offset + subint(code, offset, size) + size + int * 2 - end - count, offset = subint(code, offset, int) - for n = 1, count do - offset = offset + subint(code, offset, size) + size - end - stripped[#stripped+1] = string.rep("\0", int * 3) - return table.concat(stripped), offset - end - - return code:sub(1,12) .. strip_function(code:sub(13,-1)) -end - - --- --- Sorting iterator functions --- - -function _sortiter( t, f ) - local keys = { } - - local k, v - for k, v in pairs(t) do - keys[#keys+1] = k - end - - local _pos = 0 - - table.sort( keys, f ) - - return function() - _pos = _pos + 1 - if _pos <= #keys then - return keys[_pos], t[keys[_pos]], _pos - end - end -end - --- the provided callback function. -function spairs(t,f) - return _sortiter( t, f ) -end - --- The table pairs are sorted by key. -function kspairs(t) - return _sortiter( t ) -end - --- The table pairs are sorted by value. -function vspairs(t) - return _sortiter( t, function (a,b) return t[a] < t[b] end ) -end - - --- --- System utility functions --- - -function bigendian() - return string.byte(string.dump(function() end), 7) == 0 -end - -function exec(command) - local pp = io.popen(command) - local data = pp:read("*a") - pp:close() - - return data -end - -function execi(command) - local pp = io.popen(command) - - return pp and function() - local line = pp:read() - - if not line then - pp:close() - end - - return line - end -end - --- Deprecated -function execl(command) - local pp = io.popen(command) - local line = "" - local data = {} - - while true do - line = pp:read() - if (line == nil) then break end - data[#data+1] = line - end - pp:close() - - return data -end - - -local ubus_codes = { - "INVALID_COMMAND", - "INVALID_ARGUMENT", - "METHOD_NOT_FOUND", - "NOT_FOUND", - "NO_DATA", - "PERMISSION_DENIED", - "TIMEOUT", - "NOT_SUPPORTED", - "UNKNOWN_ERROR", - "CONNECTION_FAILED" -} - -local function ubus_return(...) - if select('#', ...) == 2 then - local rv, err = select(1, ...), select(2, ...) - if rv == nil and type(err) == "number" then - return nil, err, ubus_codes[err] - end - end - - return ... -end - -function ubus(object, method, data) - if not _ubus_connection then - _ubus_connection = _ubus.connect() - assert(_ubus_connection, "Unable to establish ubus connection") - end - - if object and method then - if type(data) ~= "table" then - data = { } - end - return ubus_return(_ubus_connection:call(object, method, data)) - elseif object then - return _ubus_connection:signatures(object) - else - return _ubus_connection:objects() - end -end - -function serialize_json(x, cb) - local js = json.stringify(x) - if type(cb) == "function" then - cb(js) - else - return js - end -end - - -function libpath() - return require "nixio.fs".dirname(ldebug.__file__) -end - -function checklib(fullpathexe, wantedlib) - local fs = require "nixio.fs" - local haveldd = fs.access('/usr/bin/ldd') - local haveexe = fs.access(fullpathexe) - if not haveldd or not haveexe then - return false - end - local libs = exec(string.format("/usr/bin/ldd %s", shellquote(fullpathexe))) - if not libs then - return false - end - for k, v in ipairs(split(libs)) do - if v:find(wantedlib) then - return true - end - end - return false -end - -------------------------------------------------------------------------------- --- Coroutine safe xpcall and pcall versions --- --- Encapsulates the protected calls with a coroutine based loop, so errors can --- be dealed without the usual Lua 5.x pcall/xpcall issues with coroutines --- yielding inside the call to pcall or xpcall. --- --- Authors: Roberto Ierusalimschy and Andre Carregal --- Contributors: Thomas Harning Jr., Ignacio Burgueño, Fabio Mascarenhas --- --- Copyright 2005 - Kepler Project --- --- $Id: coxpcall.lua,v 1.13 2008/05/19 19:20:02 mascarenhas Exp $ -------------------------------------------------------------------------------- - -------------------------------------------------------------------------------- --- Implements xpcall with coroutines -------------------------------------------------------------------------------- -local coromap = setmetatable({}, { __mode = "k" }) - -local function handleReturnValue(err, co, status, ...) - if not status then - return false, err(debug.traceback(co, (...)), ...) - end - if coroutine.status(co) == 'suspended' then - return performResume(err, co, coroutine.yield(...)) - else - return true, ... - end -end - -function performResume(err, co, ...) - return handleReturnValue(err, co, coroutine.resume(co, ...)) -end - -local function id(trace, ...) - return trace -end - -function coxpcall(f, err, ...) - local current = coroutine.running() - if not current then - if err == id then - return pcall(f, ...) - else - if select("#", ...) > 0 then - local oldf, params = f, { ... } - f = function() return oldf(unpack(params)) end - end - return xpcall(f, err) - end - else - local res, co = pcall(coroutine.create, f) - if not res then - local newf = function(...) return f(...) end - co = coroutine.create(newf) - end - coromap[co] = current - coxpt[co] = coxpt[current] or current or 0 - return performResume(err, co, ...) - end -end - -function copcall(f, ...) - return coxpcall(f, id, ...) -end diff --git a/modules/luci-base/luasrc/util.luadoc b/modules/luci-base/luasrc/util.luadoc deleted file mode 100644 index 4ec68dd1ef..0000000000 --- a/modules/luci-base/luasrc/util.luadoc +++ /dev/null @@ -1,413 +0,0 @@ ----[[ -LuCI utility functions. -]] -module "luci.util" - ----[[ -Create a Class object (Python-style object model). - -The class object can be instantiated by calling itself. -Any class functions or shared parameters can be attached to this object. -Attaching a table to the class object makes this table shared between -all instances of this class. For object parameters use the __init__ function. -Classes can inherit member functions and values from a base class. -Class can be instantiated by calling them. All parameters will be passed -to the __init__ function of this class - if such a function exists. -The __init__ function must be used to set any object parameters that are not shared -with other objects of this class. Any return values will be ignored. - -@class function -@name class -@param base The base class to inherit from (optional) -@return A class object -@see instanceof -@see clone -]] - ----[[ -Test whether the given object is an instance of the given class. - -@class function -@name instanceof -@param object Object instance -@param class Class object to test against -@return Boolean indicating whether the object is an instance -@see class -@see clone -]] - ----[[ -Create a new or get an already existing thread local store associated with -the current active coroutine. - -A thread local store is private a table object -whose values can't be accessed from outside of the running coroutine. - -@class function -@name threadlocal -@return Table value representing the corresponding thread local store -]] - ----[[ -Write given object to stderr. - -@class function -@name perror -@param obj Value to write to stderr -@return Boolean indicating whether the write operation was successful -]] - ----[[ -Recursively dumps a table to stdout, useful for testing and debugging. - -@class function -@name dumptable -@param t Table value to dump -@param maxdepth Maximum depth -@return Always nil -]] - ----[[ -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 -]] - ----[[ -Decode an URL-encoded string - optionally decoding the "+" sign to space. - -@class function -@name urldecode -@param str Input string in x-www-urlencoded format -@param decode_plus Decode "+" signs to spaces if true (optional) -@return The decoded string -@see urlencode -]] - ----[[ -URL-encode given string. - -@class function -@name urlencode -@param str String to encode -@return String containing the encoded data -@see urldecode -]] - ----[[ -Strip HTML tags from given string. - -@class function -@name striptags -@param value String containing the HTML text -@return String with HTML tags stripped of -]] - ----[[ -Safely quote value for use in shell commands. - -@class function -@name shellquote -@param value String containing the value to quote -@return Single-quote enclosed string with embedded quotes escaped -]] - ----[[ -Splits given string on a defined separator sequence and return a table -containing the resulting substrings. - -The optional max parameter specifies the number of bytes to process, -regardless of the actual length of the given string. The optional last -parameter, regex, specifies whether the separator sequence is -nterpreted as regular expression. - -@class function -@name split -@param str String value containing the data to split up -@param pat String with separator pattern (optional, defaults to "\n") -@param max Maximum times to split (optional) -@param regex Boolean indicating whether to interpret the separator --- pattern as regular expression (optional, default is false) -@return Table containing the resulting substrings -]] - ----[[ -Remove leading and trailing whitespace from given string value. - -@class function -@name trim -@param str String value containing whitespace padded data -@return String value with leading and trailing space removed -]] - ----[[ -Count the occurrences of given substring in given string. - -@class function -@name cmatch -@param str String to search in -@param pattern String containing pattern to find -@return Number of found occurrences -]] - ----[[ -Return a matching iterator for the given value. - -The iterator will return one token per invocation, the tokens are separated by -whitespace. If the input value is a table, it is transformed into a string first. -A nil value will result in a valid iterator which aborts with the first invocation. - -@class function -@name imatch -@param val The value to scan (table, string or nil) -@return Iterator which returns one token per call -]] - ----[[ -Parse certain units from the given string and return the canonical integer -value or 0 if the unit is unknown. - -Upper- or lower case is irrelevant. -Recognized units are: - --- o "y" - one year (60*60*24*366) - o "m" - one month (60*60*24*31) - o "w" - one week (60*60*24*7) - o "d" - one day (60*60*24) - o "h" - one hour (60*60) - o "min" - one minute (60) - o "kb" - one kilobyte (1024) - o "mb" - one megabyte (1024*1024) - o "gb" - one gigabyte (1024*1024*1024) - o "kib" - one si kilobyte (1000) - o "mib" - one si megabyte (1000*1000) - o "gib" - one si gigabyte (1000*1000*1000) - -@class function -@name parse_units -@param ustr String containing a numerical value with trailing unit -@return Number containing the canonical value -]] - ----[[ -Appends numerically indexed tables or single objects to a given table. - -@class function -@name append -@param src Target table -@param ... Objects to insert -@return Target table -]] - ----[[ -Combines two or more numerically indexed tables and single objects into one table. - -@class function -@name combine -@param tbl1 Table value to combine -@param tbl2 Table value to combine -@param ... More tables to combine -@return Table value containing all values of given tables -]] - ----[[ -Checks whether the given table contains the given value. - -@class function -@name contains -@param table Table value -@param value Value to search within the given table -@return Number indicating the first index at which the given value occurs --- within table or false. -]] - ----[[ -Update values in given table with the values from the second given table. - -Both table are - in fact - merged together. - -@class function -@name update -@param t Table which should be updated -@param updates Table containing the values to update -@return Always nil -]] - ----[[ -Retrieve all keys of given associative table. - -@class function -@name keys -@param t Table to extract keys from -@return Sorted table containing the keys -]] - ----[[ -Clones the given object and return it's copy. - -@class function -@name clone -@param object Table value to clone -@param deep Boolean indicating whether to do recursive cloning -@return Cloned table value -]] - ----[[ -Recursively serialize given data to lua code, suitable for restoring -with loadstring(). - -@class function -@name serialize_data -@param val Value containing the data to serialize -@return String value containing the serialized code -@see restore_data -@see get_bytecode -]] - ----[[ -Restore data previously serialized with serialize_data(). - -@class function -@name restore_data -@param str String containing the data to restore -@return Value containing the restored data structure -@see serialize_data -@see get_bytecode -]] - ----[[ -Return the current runtime bytecode of the given data. The byte code -will be stripped before it is returned. - -@class function -@name get_bytecode -@param val Value to return as bytecode -@return String value containing the bytecode of the given data -]] - ----[[ -Strips unnecessary lua bytecode from given string. - -Information like line numbers and debugging numbers will be discarded. -Original version by Peter Cawley (http://lua-users.org/lists/lua-l/2008-02/msg01158.html) - -@class function -@name strip_bytecode -@param code String value containing the original lua byte code -@return String value containing the stripped lua byte code -]] - ----[[ -Return a key, value iterator which returns the values sorted according to -the provided callback function. - -@class function -@name spairs -@param t The table to iterate -@param f A callback function to decide the order of elements -@return Function value containing the corresponding iterator -]] - ----[[ -Return a key, value iterator for the given table. - -The table pairs are sorted by key. - -@class function -@name kspairs -@param t The table to iterate -@return Function value containing the corresponding iterator -]] - ----[[ -Return a key, value iterator for the given table. - -The table pairs are sorted by value. - -@class function -@name vspairs -@param t The table to iterate -@return Function value containing the corresponding iterator -]] - ----[[ -Test whether the current system is operating in big endian mode. - -@class function -@name bigendian -@return Boolean value indicating whether system is big endian -]] - ----[[ -Execute given commandline and gather stdout. - -@class function -@name exec -@param command String containing command to execute -@return String containing the command's stdout -]] - ----[[ -Return a line-buffered iterator over the output of given command. - -@class function -@name execi -@param command String containing the command to execute -@return Iterator -]] - ----[[ -Issue an ubus call. - -@class function -@name ubus -@param object String containing the ubus object to call -@param method String containing the ubus method to call -@param values Table containing the values to pass -@return Table containin the ubus result -]] - ----[[ -Convert data structure to JSON - -@class function -@name serialize_json -@param data The data to serialize -@param writer A function to write a chunk of JSON data (optional) -@return String containing the JSON if called without write callback -]] - ----[[ -Returns the absolute path to LuCI base directory. - -@class function -@name libpath -@return String containing the directory path -]] - ----[[ -This is a coroutine-safe drop-in replacement for Lua's "xpcall"-function - -@class function -@name coxpcall -@param f Lua function to be called protected -@param err Custom error handler -@param ... Parameters passed to the function -@return A boolean whether the function call succeeded and the return --- values of either the function or the error handler -]] - ----[[ -This is a coroutine-safe drop-in replacement for Lua's "pcall"-function - -@class function -@name copcall -@param f Lua function to be called protected -@param ... Parameters passed to the function -@return A boolean whether the function call succeeded and the returns --- values of the function or the error object -]] - diff --git a/modules/luci-base/luasrc/xml.lua b/modules/luci-base/luasrc/xml.lua new file mode 100644 index 0000000000..30b37210bd --- /dev/null +++ b/modules/luci-base/luasrc/xml.lua @@ -0,0 +1,26 @@ +-- 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 new file mode 100644 index 0000000000..58de533966 --- /dev/null +++ b/modules/luci-base/luasrc/xml.luadoc @@ -0,0 +1,23 @@ +---[[ +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 50760c71eb..6a79edda09 100644 --- a/modules/luci-base/po/ar/base.po +++ b/modules/luci-base/po/ar/base.po @@ -279,7 +279,7 @@ msgid "ANSI T1.413" msgstr "" #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:94 -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:87 +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:93 #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:86 #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:67 msgid "APN" @@ -782,7 +782,7 @@ msgstr "" msgid "Authentication" msgstr "" -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:90 +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:96 #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:70 msgid "Authentication Type" msgstr "" @@ -1004,7 +1004,6 @@ msgstr "" #: modules/luci-compat/luasrc/model/network/proto_modemmanager.lua:53 #: modules/luci-compat/luasrc/model/network/proto_qmi.lua:53 -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:40 #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:21 msgid "Call failed" msgstr "" @@ -1261,6 +1260,10 @@ msgstr "" msgid "Connection attempt failed" msgstr "" +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:40 +msgid "Connection attempt failed." +msgstr "" + #: modules/luci-base/htdocs/luci-static/resources/rpc.js:414 msgid "Connection lost" msgstr "" @@ -1584,6 +1587,10 @@ msgstr "" msgid "Device is restarting…" msgstr "" +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:45 +msgid "Device not managed by ModemManager." +msgstr "" + #: modules/luci-base/htdocs/luci-static/resources/ui.js:4122 msgid "Device unreachable!" msgstr "" @@ -1664,6 +1671,10 @@ msgstr "قطع الاتصال" msgid "Disconnection attempt failed" msgstr "" +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:48 +msgid "Disconnection attempt failed." +msgstr "" + #: modules/luci-base/htdocs/luci-static/resources/form.js:606 #: modules/luci-base/htdocs/luci-static/resources/form.js:2707 #: modules/luci-base/htdocs/luci-static/resources/ui.js:3268 @@ -2350,7 +2361,7 @@ msgstr "" msgid "Gateway address is invalid" msgstr "" -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:118 +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:124 msgid "Gateway metric" msgstr "" @@ -2605,7 +2616,7 @@ msgstr "" msgid "IP Protocol" msgstr "" -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:108 +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:114 msgid "IP Type" msgstr "" @@ -2668,7 +2679,7 @@ msgstr "" msgid "IPv4 network in address/netmask notation" msgstr "" -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:110 +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:116 msgid "IPv4 only" msgstr "" @@ -2700,7 +2711,7 @@ msgstr "" msgid "IPv4-in-IPv4 (RFC2003)" msgstr "" -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:109 +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:115 msgid "IPv4/IPv6 (both - defaults to IPv4)" msgstr "" @@ -2762,7 +2773,7 @@ msgstr "" msgid "IPv6 network in address/netmask notation" msgstr "" -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:111 +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:117 msgid "IPv6 only" msgstr "" @@ -3097,6 +3108,12 @@ msgstr "" msgid "Invalid argument" msgstr "" +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:46 +msgid "" +"Invalid bearer list. Possibly too many bearers created. This protocol " +"supports one and only one bearer." +msgstr "" + #: modules/luci-base/htdocs/luci-static/resources/rpc.js:405 msgid "Invalid command" msgstr "" @@ -3722,18 +3739,32 @@ msgstr "" msgid "Model" msgstr "" +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:43 +msgid "Modem bearer teardown in progress." +msgstr "" + +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:42 +msgid "" +"Modem connection in progress. Please wait. This process will timeout after 2 " +"minutes." +msgstr "" + #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:72 msgid "Modem default" msgstr "" #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:73 -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:76 +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:82 #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:61 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:73 #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:57 msgid "Modem device" msgstr "" +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:41 +msgid "Modem disconnection in progress. Please wait." +msgstr "" + #: modules/luci-compat/luasrc/model/network/proto_ncm.lua:66 #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:24 msgid "Modem information query failed" @@ -3745,7 +3776,11 @@ msgstr "" msgid "Modem init timeout" msgstr "" -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:46 +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:44 +msgid "Modem is disabled." +msgstr "" + +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:52 msgid "ModemManager" msgstr "" @@ -4040,7 +4075,7 @@ msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:159 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:183 -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:94 +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:100 msgid "None" msgstr "" @@ -4323,7 +4358,7 @@ msgstr "" #: protocols/luci-proto-hnet/htdocs/luci-static/resources/protocol/hnet.js:44 #: protocols/luci-proto-ipip/htdocs/luci-static/resources/protocol/ipip.js:53 #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dhcpv6.js:54 -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:114 +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:120 #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:158 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/l2tp.js:71 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:145 @@ -4385,12 +4420,12 @@ msgstr "" msgid "Owner" msgstr "" -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:91 +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:97 msgid "PAP/CHAP (both)" msgstr "" #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:98 -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:102 +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:108 #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:90 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/l2tp.js:45 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:89 @@ -4403,7 +4438,7 @@ msgid "PAP/CHAP password" msgstr "" #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:96 -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:97 +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:103 #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:88 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/l2tp.js:43 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:87 @@ -4424,7 +4459,7 @@ msgid "PID" msgstr "" #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:95 -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:88 +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:94 #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:87 #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:68 msgid "PIN" @@ -5390,7 +5425,6 @@ msgstr "" #: modules/luci-compat/luasrc/model/network/proto_modemmanager.lua:55 #: modules/luci-compat/luasrc/model/network/proto_qmi.lua:55 -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:42 #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:23 msgid "Setting PLMN failed" msgstr "" @@ -6409,7 +6443,6 @@ msgstr "" #: modules/luci-compat/luasrc/model/network/proto_modemmanager.lua:54 #: modules/luci-compat/luasrc/model/network/proto_qmi.lua:54 -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:41 #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:22 msgid "Unable to obtain client ID" msgstr "" @@ -6459,6 +6492,10 @@ msgstr "" msgid "Unknown" msgstr "مجهول" +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:47 +msgid "Unknown and unsupported connection method." +msgstr "" + #: modules/luci-base/htdocs/luci-static/resources/network.js:2276 #: modules/luci-compat/luasrc/model/network.lua:1138 msgid "Unknown error (%s)" diff --git a/modules/luci-base/po/bg/base.po b/modules/luci-base/po/bg/base.po index 9b3048273b..e81e8f505d 100644 --- a/modules/luci-base/po/bg/base.po +++ b/modules/luci-base/po/bg/base.po @@ -278,7 +278,7 @@ msgid "ANSI T1.413" msgstr "ANSI T1.413" #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:94 -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:87 +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:93 #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:86 #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:67 msgid "APN" @@ -781,7 +781,7 @@ msgstr "" msgid "Authentication" msgstr "" -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:90 +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:96 #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:70 msgid "Authentication Type" msgstr "" @@ -1003,7 +1003,6 @@ msgstr "" #: modules/luci-compat/luasrc/model/network/proto_modemmanager.lua:53 #: modules/luci-compat/luasrc/model/network/proto_qmi.lua:53 -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:40 #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:21 msgid "Call failed" msgstr "" @@ -1260,6 +1259,10 @@ msgstr "" msgid "Connection attempt failed" msgstr "" +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:40 +msgid "Connection attempt failed." +msgstr "" + #: modules/luci-base/htdocs/luci-static/resources/rpc.js:414 msgid "Connection lost" msgstr "" @@ -1583,6 +1586,10 @@ msgstr "" msgid "Device is restarting…" msgstr "" +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:45 +msgid "Device not managed by ModemManager." +msgstr "" + #: modules/luci-base/htdocs/luci-static/resources/ui.js:4122 msgid "Device unreachable!" msgstr "" @@ -1663,6 +1670,10 @@ msgstr "" msgid "Disconnection attempt failed" msgstr "" +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:48 +msgid "Disconnection attempt failed." +msgstr "" + #: modules/luci-base/htdocs/luci-static/resources/form.js:606 #: modules/luci-base/htdocs/luci-static/resources/form.js:2707 #: modules/luci-base/htdocs/luci-static/resources/ui.js:3268 @@ -2349,7 +2360,7 @@ msgstr "" msgid "Gateway address is invalid" msgstr "" -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:118 +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:124 msgid "Gateway metric" msgstr "" @@ -2604,7 +2615,7 @@ msgstr "" msgid "IP Protocol" msgstr "" -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:108 +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:114 msgid "IP Type" msgstr "" @@ -2667,7 +2678,7 @@ msgstr "" msgid "IPv4 network in address/netmask notation" msgstr "" -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:110 +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:116 msgid "IPv4 only" msgstr "" @@ -2699,7 +2710,7 @@ msgstr "" msgid "IPv4-in-IPv4 (RFC2003)" msgstr "" -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:109 +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:115 msgid "IPv4/IPv6 (both - defaults to IPv4)" msgstr "" @@ -2761,7 +2772,7 @@ msgstr "" msgid "IPv6 network in address/netmask notation" msgstr "" -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:111 +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:117 msgid "IPv6 only" msgstr "" @@ -3096,6 +3107,12 @@ msgstr "" msgid "Invalid argument" msgstr "" +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:46 +msgid "" +"Invalid bearer list. Possibly too many bearers created. This protocol " +"supports one and only one bearer." +msgstr "" + #: modules/luci-base/htdocs/luci-static/resources/rpc.js:405 msgid "Invalid command" msgstr "" @@ -3721,18 +3738,32 @@ msgstr "" msgid "Model" msgstr "" +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:43 +msgid "Modem bearer teardown in progress." +msgstr "" + +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:42 +msgid "" +"Modem connection in progress. Please wait. This process will timeout after 2 " +"minutes." +msgstr "" + #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:72 msgid "Modem default" msgstr "" #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:73 -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:76 +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:82 #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:61 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:73 #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:57 msgid "Modem device" msgstr "" +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:41 +msgid "Modem disconnection in progress. Please wait." +msgstr "" + #: modules/luci-compat/luasrc/model/network/proto_ncm.lua:66 #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:24 msgid "Modem information query failed" @@ -3744,7 +3775,11 @@ msgstr "" msgid "Modem init timeout" msgstr "" -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:46 +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:44 +msgid "Modem is disabled." +msgstr "" + +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:52 msgid "ModemManager" msgstr "" @@ -4039,7 +4074,7 @@ msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:159 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:183 -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:94 +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:100 msgid "None" msgstr "" @@ -4322,7 +4357,7 @@ msgstr "" #: protocols/luci-proto-hnet/htdocs/luci-static/resources/protocol/hnet.js:44 #: protocols/luci-proto-ipip/htdocs/luci-static/resources/protocol/ipip.js:53 #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dhcpv6.js:54 -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:114 +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:120 #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:158 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/l2tp.js:71 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:145 @@ -4384,12 +4419,12 @@ msgstr "" msgid "Owner" msgstr "" -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:91 +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:97 msgid "PAP/CHAP (both)" msgstr "" #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:98 -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:102 +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:108 #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:90 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/l2tp.js:45 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:89 @@ -4402,7 +4437,7 @@ msgid "PAP/CHAP password" msgstr "" #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:96 -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:97 +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:103 #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:88 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/l2tp.js:43 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:87 @@ -4423,7 +4458,7 @@ msgid "PID" msgstr "" #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:95 -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:88 +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:94 #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:87 #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:68 msgid "PIN" @@ -5389,7 +5424,6 @@ msgstr "" #: modules/luci-compat/luasrc/model/network/proto_modemmanager.lua:55 #: modules/luci-compat/luasrc/model/network/proto_qmi.lua:55 -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:42 #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:23 msgid "Setting PLMN failed" msgstr "" @@ -6408,7 +6442,6 @@ msgstr "" #: modules/luci-compat/luasrc/model/network/proto_modemmanager.lua:54 #: modules/luci-compat/luasrc/model/network/proto_qmi.lua:54 -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:41 #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:22 msgid "Unable to obtain client ID" msgstr "" @@ -6458,6 +6491,10 @@ msgstr "" msgid "Unknown" msgstr "" +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:47 +msgid "Unknown and unsupported connection method." +msgstr "" + #: modules/luci-base/htdocs/luci-static/resources/network.js:2276 #: modules/luci-compat/luasrc/model/network.lua:1138 msgid "Unknown error (%s)" diff --git a/modules/luci-base/po/bn_BD/base.po b/modules/luci-base/po/bn_BD/base.po index 7b86cc8a99..f4a8039716 100644 --- a/modules/luci-base/po/bn_BD/base.po +++ b/modules/luci-base/po/bn_BD/base.po @@ -272,7 +272,7 @@ msgid "ANSI T1.413" msgstr "" #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:94 -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:87 +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:93 #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:86 #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:67 msgid "APN" @@ -775,7 +775,7 @@ msgstr "" msgid "Authentication" msgstr "" -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:90 +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:96 #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:70 msgid "Authentication Type" msgstr "" @@ -997,7 +997,6 @@ msgstr "" #: modules/luci-compat/luasrc/model/network/proto_modemmanager.lua:53 #: modules/luci-compat/luasrc/model/network/proto_qmi.lua:53 -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:40 #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:21 msgid "Call failed" msgstr "" @@ -1254,6 +1253,10 @@ msgstr "" msgid "Connection attempt failed" msgstr "" +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:40 +msgid "Connection attempt failed." +msgstr "" + #: modules/luci-base/htdocs/luci-static/resources/rpc.js:414 msgid "Connection lost" msgstr "" @@ -1577,6 +1580,10 @@ msgstr "" msgid "Device is restarting…" msgstr "" +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:45 +msgid "Device not managed by ModemManager." +msgstr "" + #: modules/luci-base/htdocs/luci-static/resources/ui.js:4122 msgid "Device unreachable!" msgstr "" @@ -1657,6 +1664,10 @@ msgstr "" msgid "Disconnection attempt failed" msgstr "" +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:48 +msgid "Disconnection attempt failed." +msgstr "" + #: modules/luci-base/htdocs/luci-static/resources/form.js:606 #: modules/luci-base/htdocs/luci-static/resources/form.js:2707 #: modules/luci-base/htdocs/luci-static/resources/ui.js:3268 @@ -2343,7 +2354,7 @@ msgstr "" msgid "Gateway address is invalid" msgstr "" -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:118 +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:124 msgid "Gateway metric" msgstr "" @@ -2598,7 +2609,7 @@ msgstr "" msgid "IP Protocol" msgstr "" -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:108 +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:114 msgid "IP Type" msgstr "" @@ -2661,7 +2672,7 @@ msgstr "" msgid "IPv4 network in address/netmask notation" msgstr "" -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:110 +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:116 msgid "IPv4 only" msgstr "" @@ -2693,7 +2704,7 @@ msgstr "" msgid "IPv4-in-IPv4 (RFC2003)" msgstr "" -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:109 +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:115 msgid "IPv4/IPv6 (both - defaults to IPv4)" msgstr "" @@ -2755,7 +2766,7 @@ msgstr "" msgid "IPv6 network in address/netmask notation" msgstr "" -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:111 +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:117 msgid "IPv6 only" msgstr "" @@ -3090,6 +3101,12 @@ msgstr "" msgid "Invalid argument" msgstr "" +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:46 +msgid "" +"Invalid bearer list. Possibly too many bearers created. This protocol " +"supports one and only one bearer." +msgstr "" + #: modules/luci-base/htdocs/luci-static/resources/rpc.js:405 msgid "Invalid command" msgstr "" @@ -3715,18 +3732,32 @@ msgstr "" msgid "Model" msgstr "" +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:43 +msgid "Modem bearer teardown in progress." +msgstr "" + +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:42 +msgid "" +"Modem connection in progress. Please wait. This process will timeout after 2 " +"minutes." +msgstr "" + #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:72 msgid "Modem default" msgstr "" #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:73 -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:76 +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:82 #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:61 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:73 #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:57 msgid "Modem device" msgstr "" +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:41 +msgid "Modem disconnection in progress. Please wait." +msgstr "" + #: modules/luci-compat/luasrc/model/network/proto_ncm.lua:66 #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:24 msgid "Modem information query failed" @@ -3738,7 +3769,11 @@ msgstr "" msgid "Modem init timeout" msgstr "" -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:46 +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:44 +msgid "Modem is disabled." +msgstr "" + +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:52 msgid "ModemManager" msgstr "" @@ -4033,7 +4068,7 @@ msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:159 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:183 -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:94 +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:100 msgid "None" msgstr "" @@ -4316,7 +4351,7 @@ msgstr "" #: protocols/luci-proto-hnet/htdocs/luci-static/resources/protocol/hnet.js:44 #: protocols/luci-proto-ipip/htdocs/luci-static/resources/protocol/ipip.js:53 #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dhcpv6.js:54 -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:114 +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:120 #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:158 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/l2tp.js:71 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:145 @@ -4378,12 +4413,12 @@ msgstr "" msgid "Owner" msgstr "" -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:91 +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:97 msgid "PAP/CHAP (both)" msgstr "" #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:98 -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:102 +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:108 #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:90 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/l2tp.js:45 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:89 @@ -4396,7 +4431,7 @@ msgid "PAP/CHAP password" msgstr "" #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:96 -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:97 +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:103 #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:88 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/l2tp.js:43 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:87 @@ -4417,7 +4452,7 @@ msgid "PID" msgstr "" #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:95 -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:88 +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:94 #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:87 #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:68 msgid "PIN" @@ -5383,7 +5418,6 @@ msgstr "" #: modules/luci-compat/luasrc/model/network/proto_modemmanager.lua:55 #: modules/luci-compat/luasrc/model/network/proto_qmi.lua:55 -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:42 #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:23 msgid "Setting PLMN failed" msgstr "" @@ -6402,7 +6436,6 @@ msgstr "" #: modules/luci-compat/luasrc/model/network/proto_modemmanager.lua:54 #: modules/luci-compat/luasrc/model/network/proto_qmi.lua:54 -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:41 #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:22 msgid "Unable to obtain client ID" msgstr "" @@ -6452,6 +6485,10 @@ msgstr "" msgid "Unknown" msgstr "" +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:47 +msgid "Unknown and unsupported connection method." +msgstr "" + #: modules/luci-base/htdocs/luci-static/resources/network.js:2276 #: modules/luci-compat/luasrc/model/network.lua:1138 msgid "Unknown error (%s)" diff --git a/modules/luci-base/po/ca/base.po b/modules/luci-base/po/ca/base.po index 5937598590..73b607c5ff 100644 --- a/modules/luci-base/po/ca/base.po +++ b/modules/luci-base/po/ca/base.po @@ -292,7 +292,7 @@ msgid "ANSI T1.413" msgstr "ANSI T1.413" #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:94 -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:87 +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:93 #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:86 #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:67 msgid "APN" @@ -803,7 +803,7 @@ msgstr "" msgid "Authentication" msgstr "Autenticació" -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:90 +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:96 #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:70 msgid "Authentication Type" msgstr "" @@ -1028,7 +1028,6 @@ msgstr "" #: modules/luci-compat/luasrc/model/network/proto_modemmanager.lua:53 #: modules/luci-compat/luasrc/model/network/proto_qmi.lua:53 -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:40 #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:21 msgid "Call failed" msgstr "" @@ -1296,6 +1295,10 @@ msgstr "Connectat" msgid "Connection attempt failed" msgstr "" +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:40 +msgid "Connection attempt failed." +msgstr "" + #: modules/luci-base/htdocs/luci-static/resources/rpc.js:414 msgid "Connection lost" msgstr "" @@ -1621,6 +1624,10 @@ msgstr "" msgid "Device is restarting…" msgstr "" +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:45 +msgid "Device not managed by ModemManager." +msgstr "" + #: modules/luci-base/htdocs/luci-static/resources/ui.js:4122 msgid "Device unreachable!" msgstr "" @@ -1703,6 +1710,10 @@ msgstr "" msgid "Disconnection attempt failed" msgstr "" +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:48 +msgid "Disconnection attempt failed." +msgstr "" + #: modules/luci-base/htdocs/luci-static/resources/form.js:606 #: modules/luci-base/htdocs/luci-static/resources/form.js:2707 #: modules/luci-base/htdocs/luci-static/resources/ui.js:3268 @@ -2398,7 +2409,7 @@ msgstr "Ports de passarel·la" msgid "Gateway address is invalid" msgstr "" -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:118 +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:124 msgid "Gateway metric" msgstr "" @@ -2658,7 +2669,7 @@ msgstr "" msgid "IP Protocol" msgstr "" -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:108 +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:114 msgid "IP Type" msgstr "" @@ -2721,7 +2732,7 @@ msgstr "Màscara de xarxa IPv4" msgid "IPv4 network in address/netmask notation" msgstr "" -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:110 +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:116 msgid "IPv4 only" msgstr "Només IPv4" @@ -2753,7 +2764,7 @@ msgstr "" msgid "IPv4-in-IPv4 (RFC2003)" msgstr "" -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:109 +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:115 msgid "IPv4/IPv6 (both - defaults to IPv4)" msgstr "" @@ -2815,7 +2826,7 @@ msgstr "Passarel·la IPv6" msgid "IPv6 network in address/netmask notation" msgstr "" -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:111 +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:117 msgid "IPv6 only" msgstr "Només IPv6" @@ -3156,6 +3167,12 @@ msgstr "" msgid "Invalid argument" msgstr "" +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:46 +msgid "" +"Invalid bearer list. Possibly too many bearers created. This protocol " +"supports one and only one bearer." +msgstr "" + #: modules/luci-base/htdocs/luci-static/resources/rpc.js:405 msgid "Invalid command" msgstr "" @@ -3786,18 +3803,32 @@ msgstr "Mode" msgid "Model" msgstr "" +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:43 +msgid "Modem bearer teardown in progress." +msgstr "" + +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:42 +msgid "" +"Modem connection in progress. Please wait. This process will timeout after 2 " +"minutes." +msgstr "" + #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:72 msgid "Modem default" msgstr "" #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:73 -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:76 +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:82 #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:61 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:73 #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:57 msgid "Modem device" msgstr "Dispositiu mòdem" +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:41 +msgid "Modem disconnection in progress. Please wait." +msgstr "" + #: modules/luci-compat/luasrc/model/network/proto_ncm.lua:66 #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:24 msgid "Modem information query failed" @@ -3809,7 +3840,11 @@ msgstr "" msgid "Modem init timeout" msgstr "Temps d'espera d'inici de mòdem" -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:46 +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:44 +msgid "Modem is disabled." +msgstr "" + +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:52 msgid "ModemManager" msgstr "" @@ -4106,7 +4141,7 @@ msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:159 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:183 -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:94 +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:100 msgid "None" msgstr "Cap" @@ -4389,7 +4424,7 @@ msgstr "" #: protocols/luci-proto-hnet/htdocs/luci-static/resources/protocol/hnet.js:44 #: protocols/luci-proto-ipip/htdocs/luci-static/resources/protocol/ipip.js:53 #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dhcpv6.js:54 -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:114 +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:120 #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:158 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/l2tp.js:71 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:145 @@ -4451,12 +4486,12 @@ msgstr "" msgid "Owner" msgstr "Propietari" -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:91 +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:97 msgid "PAP/CHAP (both)" msgstr "" #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:98 -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:102 +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:108 #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:90 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/l2tp.js:45 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:89 @@ -4469,7 +4504,7 @@ msgid "PAP/CHAP password" msgstr "Contrasenya PAP/CHAP" #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:96 -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:97 +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:103 #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:88 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/l2tp.js:43 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:87 @@ -4490,7 +4525,7 @@ msgid "PID" msgstr "PID" #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:95 -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:88 +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:94 #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:87 #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:68 msgid "PIN" @@ -5460,7 +5495,6 @@ msgstr "" #: modules/luci-compat/luasrc/model/network/proto_modemmanager.lua:55 #: modules/luci-compat/luasrc/model/network/proto_qmi.lua:55 -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:42 #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:23 msgid "Setting PLMN failed" msgstr "" @@ -6511,7 +6545,6 @@ msgstr "No s'han pogut carregar les dades del registre:" #: modules/luci-compat/luasrc/model/network/proto_modemmanager.lua:54 #: modules/luci-compat/luasrc/model/network/proto_qmi.lua:54 -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:41 #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:22 msgid "Unable to obtain client ID" msgstr "" @@ -6561,6 +6594,10 @@ msgstr "" msgid "Unknown" msgstr "Desconegut" +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:47 +msgid "Unknown and unsupported connection method." +msgstr "" + #: modules/luci-base/htdocs/luci-static/resources/network.js:2276 #: modules/luci-compat/luasrc/model/network.lua:1138 msgid "Unknown error (%s)" diff --git a/modules/luci-base/po/cs/base.po b/modules/luci-base/po/cs/base.po index 66ccdb360c..8109a6fc9e 100644 --- a/modules/luci-base/po/cs/base.po +++ b/modules/luci-base/po/cs/base.po @@ -291,7 +291,7 @@ msgid "ANSI T1.413" msgstr "ANSI T1.413" #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:94 -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:87 +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:93 #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:86 #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:67 msgid "APN" @@ -815,7 +815,7 @@ msgstr "Autorizační skupina" msgid "Authentication" msgstr "Ověřování se" -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:90 +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:96 #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:70 msgid "Authentication Type" msgstr "Typ ověřování se" @@ -1044,7 +1044,6 @@ msgstr "Mezipaměť" #: modules/luci-compat/luasrc/model/network/proto_modemmanager.lua:53 #: modules/luci-compat/luasrc/model/network/proto_qmi.lua:53 -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:40 #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:21 msgid "Call failed" msgstr "Volání se nezdařilo" @@ -1319,6 +1318,10 @@ msgstr "Připojeno" msgid "Connection attempt failed" msgstr "Pokus o připojení se nezdařil" +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:40 +msgid "Connection attempt failed." +msgstr "" + #: modules/luci-base/htdocs/luci-static/resources/rpc.js:414 msgid "Connection lost" msgstr "Spojení ztraceno" @@ -1651,6 +1654,10 @@ msgstr "Zařízení není aktivní" msgid "Device is restarting…" msgstr "Zařízení se restartuje…" +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:45 +msgid "Device not managed by ModemManager." +msgstr "" + #: modules/luci-base/htdocs/luci-static/resources/ui.js:4122 msgid "Device unreachable!" msgstr "Zařízení nedostupné!" @@ -1733,6 +1740,10 @@ msgstr "Odpojit" msgid "Disconnection attempt failed" msgstr "Pokud o odpojení se nezdařil" +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:48 +msgid "Disconnection attempt failed." +msgstr "" + #: modules/luci-base/htdocs/luci-static/resources/form.js:606 #: modules/luci-base/htdocs/luci-static/resources/form.js:2707 #: modules/luci-base/htdocs/luci-static/resources/ui.js:3268 @@ -2449,7 +2460,7 @@ msgstr "Porty brány" msgid "Gateway address is invalid" msgstr "Adresa brány není platná" -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:118 +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:124 msgid "Gateway metric" msgstr "Metrika brány" @@ -2707,7 +2718,7 @@ msgstr "IP adresy" msgid "IP Protocol" msgstr "Protokol IP" -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:108 +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:114 msgid "IP Type" msgstr "Typ IP" @@ -2770,7 +2781,7 @@ msgstr "IPv4 maska sítě" msgid "IPv4 network in address/netmask notation" msgstr "Síť IPv4 v notaci adresa/maska sítě" -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:110 +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:116 msgid "IPv4 only" msgstr "Pouze IPv4" @@ -2802,7 +2813,7 @@ msgstr "" msgid "IPv4-in-IPv4 (RFC2003)" msgstr "IPv4-in-IPv4 (RFC2003)" -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:109 +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:115 msgid "IPv4/IPv6 (both - defaults to IPv4)" msgstr "IPv4/IPv6 (obojí - výchozí IPv4)" @@ -2864,7 +2875,7 @@ msgstr "IPv6 brána" msgid "IPv6 network in address/netmask notation" msgstr "Síť IPv6 v notaci adresa/maska sítě" -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:111 +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:117 msgid "IPv6 only" msgstr "Pouze IPv6" @@ -3209,6 +3220,12 @@ msgstr "Uvedené VLAN ID je neplatné! Každé ID musí být jedinečné" msgid "Invalid argument" msgstr "Neplatný argument" +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:46 +msgid "" +"Invalid bearer list. Possibly too many bearers created. This protocol " +"supports one and only one bearer." +msgstr "" + #: modules/luci-base/htdocs/luci-static/resources/rpc.js:405 msgid "Invalid command" msgstr "Neplatný příkaz" @@ -3864,18 +3881,32 @@ msgstr "Mód" msgid "Model" msgstr "Model" +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:43 +msgid "Modem bearer teardown in progress." +msgstr "" + +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:42 +msgid "" +"Modem connection in progress. Please wait. This process will timeout after 2 " +"minutes." +msgstr "" + #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:72 msgid "Modem default" msgstr "Výchozí nastavení modemu" #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:73 -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:76 +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:82 #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:61 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:73 #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:57 msgid "Modem device" msgstr "Modemové zařízení" +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:41 +msgid "Modem disconnection in progress. Please wait." +msgstr "" + #: modules/luci-compat/luasrc/model/network/proto_ncm.lua:66 #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:24 msgid "Modem information query failed" @@ -3887,7 +3918,11 @@ msgstr "Dotaz na informace o modemu selhal" msgid "Modem init timeout" msgstr "Časový limit inicializace modemu" -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:46 +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:44 +msgid "Modem is disabled." +msgstr "" + +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:52 msgid "ModemManager" msgstr "ModemManager" @@ -4185,7 +4220,7 @@ msgstr "Bez zástupných znaků" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:159 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:183 -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:94 +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:100 msgid "None" msgstr "Žádný" @@ -4483,7 +4518,7 @@ msgstr "Přepsat MAC adresu" #: protocols/luci-proto-hnet/htdocs/luci-static/resources/protocol/hnet.js:44 #: protocols/luci-proto-ipip/htdocs/luci-static/resources/protocol/ipip.js:53 #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dhcpv6.js:54 -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:114 +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:120 #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:158 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/l2tp.js:71 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:145 @@ -4547,12 +4582,12 @@ msgstr "Přepsat existující soubor \"%s\"?" msgid "Owner" msgstr "Vlastník" -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:91 +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:97 msgid "PAP/CHAP (both)" msgstr "Protokol PAP/CHAP (obojí)" #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:98 -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:102 +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:108 #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:90 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/l2tp.js:45 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:89 @@ -4565,7 +4600,7 @@ msgid "PAP/CHAP password" msgstr "Heslo PAP/CHAP" #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:96 -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:97 +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:103 #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:88 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/l2tp.js:43 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:87 @@ -4586,7 +4621,7 @@ msgid "PID" msgstr "PID" #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:95 -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:88 +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:94 #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:87 #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:68 msgid "PIN" @@ -5581,7 +5616,6 @@ msgstr "" #: modules/luci-compat/luasrc/model/network/proto_modemmanager.lua:55 #: modules/luci-compat/luasrc/model/network/proto_qmi.lua:55 -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:42 #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:23 msgid "Setting PLMN failed" msgstr "Nastavení PLMN selhalo" @@ -6684,7 +6718,6 @@ msgstr "" #: modules/luci-compat/luasrc/model/network/proto_modemmanager.lua:54 #: modules/luci-compat/luasrc/model/network/proto_qmi.lua:54 -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:41 #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:22 msgid "Unable to obtain client ID" msgstr "Nelze získat ID klienta" @@ -6734,6 +6767,10 @@ msgstr "Neočekávaný formát dat odpovědi" msgid "Unknown" msgstr "Neznámé" +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:47 +msgid "Unknown and unsupported connection method." +msgstr "" + #: modules/luci-base/htdocs/luci-static/resources/network.js:2276 #: modules/luci-compat/luasrc/model/network.lua:1138 msgid "Unknown error (%s)" diff --git a/modules/luci-base/po/de/base.po b/modules/luci-base/po/de/base.po index 7efc0057f9..5d36a1ca41 100644 --- a/modules/luci-base/po/de/base.po +++ b/modules/luci-base/po/de/base.po @@ -297,7 +297,7 @@ msgid "ANSI T1.413" msgstr "ANSI T1.413" #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:94 -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:87 +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:93 #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:86 #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:67 msgid "APN" @@ -827,7 +827,7 @@ msgstr "Berechtigungsgruppe" msgid "Authentication" msgstr "Authentifizierung" -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:90 +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:96 #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:70 msgid "Authentication Type" msgstr "Authentifizierungstyp" @@ -1057,7 +1057,6 @@ msgstr "Im Cache" #: modules/luci-compat/luasrc/model/network/proto_modemmanager.lua:53 #: modules/luci-compat/luasrc/model/network/proto_qmi.lua:53 -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:40 #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:21 msgid "Call failed" msgstr "Anruf fehlgeschlagen" @@ -1342,6 +1341,10 @@ msgstr "Verbunden" msgid "Connection attempt failed" msgstr "Verbindungsversuch fehlgeschlagen" +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:40 +msgid "Connection attempt failed." +msgstr "" + #: modules/luci-base/htdocs/luci-static/resources/rpc.js:414 msgid "Connection lost" msgstr "Verbindung verloren" @@ -1678,6 +1681,10 @@ msgstr "Netzwerkadapter ist nicht aktiv" msgid "Device is restarting…" msgstr "Netzwerkadapter startet neu…" +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:45 +msgid "Device not managed by ModemManager." +msgstr "" + #: modules/luci-base/htdocs/luci-static/resources/ui.js:4122 msgid "Device unreachable!" msgstr "Das Gerät ist nicht erreichbar!" @@ -1760,6 +1767,10 @@ msgstr "Trennen" msgid "Disconnection attempt failed" msgstr "Verbindungstrennung fehlgeschlagen" +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:48 +msgid "Disconnection attempt failed." +msgstr "" + #: modules/luci-base/htdocs/luci-static/resources/form.js:606 #: modules/luci-base/htdocs/luci-static/resources/form.js:2707 #: modules/luci-base/htdocs/luci-static/resources/ui.js:3268 @@ -2482,7 +2493,7 @@ msgstr "Gateway-Ports" msgid "Gateway address is invalid" msgstr "Gateway-Adresse ist ungültig" -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:118 +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:124 msgid "Gateway metric" msgstr "Gateway-Metrik" @@ -2742,7 +2753,7 @@ msgstr "IP-Adressen" msgid "IP Protocol" msgstr "IP-Protokoll" -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:108 +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:114 msgid "IP Type" msgstr "IP-Typ" @@ -2805,7 +2816,7 @@ msgstr "IPv4 Netzmaske" msgid "IPv4 network in address/netmask notation" msgstr "IPv4-Netzwerk in Addresse/Netzmaske-Notation" -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:110 +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:116 msgid "IPv4 only" msgstr "nur IPv4" @@ -2837,7 +2848,7 @@ msgstr "IPv4-Gateway" msgid "IPv4-in-IPv4 (RFC2003)" msgstr "IPv4-in-IPv4 (RFC2003)" -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:109 +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:115 msgid "IPv4/IPv6 (both - defaults to IPv4)" msgstr "IPv4/IPv6 (beide - standardmäßig IPv4)" @@ -2899,7 +2910,7 @@ msgstr "IPv6 Gateway" msgid "IPv6 network in address/netmask notation" msgstr "IPv6-Netzwerk in Addresse/Netzmaske-Notation" -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:111 +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:117 msgid "IPv6 only" msgstr "nur IPv6" @@ -3248,6 +3259,12 @@ msgstr "Ungültige VLAN-ID angegeben! Nur eindeutige IDs sind zulässig" msgid "Invalid argument" msgstr "Ungültiges Argument" +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:46 +msgid "" +"Invalid bearer list. Possibly too many bearers created. This protocol " +"supports one and only one bearer." +msgstr "" + #: modules/luci-base/htdocs/luci-static/resources/rpc.js:405 msgid "Invalid command" msgstr "Ungültiges Kommando" @@ -3901,18 +3918,32 @@ msgstr "Modus" msgid "Model" msgstr "Modell" +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:43 +msgid "Modem bearer teardown in progress." +msgstr "" + +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:42 +msgid "" +"Modem connection in progress. Please wait. This process will timeout after 2 " +"minutes." +msgstr "" + #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:72 msgid "Modem default" msgstr "Modem-Grundeinstellung" #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:73 -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:76 +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:82 #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:61 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:73 #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:57 msgid "Modem device" msgstr "Modemgerät" +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:41 +msgid "Modem disconnection in progress. Please wait." +msgstr "" + #: modules/luci-compat/luasrc/model/network/proto_ncm.lua:66 #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:24 msgid "Modem information query failed" @@ -3924,7 +3955,11 @@ msgstr "Modem-Informationsabfrage fehlgeschlagen" msgid "Modem init timeout" msgstr "Wartezeit für Modeminitialisierung" -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:46 +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:44 +msgid "Modem is disabled." +msgstr "" + +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:52 msgid "ModemManager" msgstr "ModemManager" @@ -4221,7 +4256,7 @@ msgstr "An Schnittstellen binden" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:159 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:183 -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:94 +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:100 msgid "None" msgstr "Keine" @@ -4520,7 +4555,7 @@ msgstr "MAC-Adresse überschreiben" #: protocols/luci-proto-hnet/htdocs/luci-static/resources/protocol/hnet.js:44 #: protocols/luci-proto-ipip/htdocs/luci-static/resources/protocol/ipip.js:53 #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dhcpv6.js:54 -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:114 +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:120 #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:158 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/l2tp.js:71 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:145 @@ -4584,12 +4619,12 @@ msgstr "Existierende Datei \"%s\" überschreiben?" msgid "Owner" msgstr "Besitzer" -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:91 +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:97 msgid "PAP/CHAP (both)" msgstr "PAP/CHAP (beide)" #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:98 -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:102 +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:108 #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:90 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/l2tp.js:45 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:89 @@ -4602,7 +4637,7 @@ msgid "PAP/CHAP password" msgstr "PAP/CHAP Passwort" #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:96 -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:97 +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:103 #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:88 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/l2tp.js:43 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:87 @@ -4623,7 +4658,7 @@ msgid "PID" msgstr "PID" #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:95 -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:88 +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:94 #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:87 #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:68 msgid "PIN" @@ -5625,7 +5660,6 @@ msgstr "" #: modules/luci-compat/luasrc/model/network/proto_modemmanager.lua:55 #: modules/luci-compat/luasrc/model/network/proto_qmi.lua:55 -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:42 #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:23 msgid "Setting PLMN failed" msgstr "Setzen der PLMN fehlgeschlagen" @@ -6757,7 +6791,6 @@ msgstr "Protokolldaten können nicht geladen werden:" #: modules/luci-compat/luasrc/model/network/proto_modemmanager.lua:54 #: modules/luci-compat/luasrc/model/network/proto_qmi.lua:54 -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:41 #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:22 msgid "Unable to obtain client ID" msgstr "Client-ID konnte nicht bezogen werden" @@ -6807,6 +6840,10 @@ msgstr "Unerwartetes Antwortdatenformat" msgid "Unknown" msgstr "Unbekannt" +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:47 +msgid "Unknown and unsupported connection method." +msgstr "" + #: modules/luci-base/htdocs/luci-static/resources/network.js:2276 #: modules/luci-compat/luasrc/model/network.lua:1138 msgid "Unknown error (%s)" diff --git a/modules/luci-base/po/el/base.po b/modules/luci-base/po/el/base.po index a6ded3c23e..724ab1c932 100644 --- a/modules/luci-base/po/el/base.po +++ b/modules/luci-base/po/el/base.po @@ -289,7 +289,7 @@ msgid "ANSI T1.413" msgstr "ANSI T1.413" #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:94 -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:87 +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:93 #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:86 #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:67 msgid "APN" @@ -805,7 +805,7 @@ msgstr "" msgid "Authentication" msgstr "Εξουσιοδότηση" -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:90 +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:96 #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:70 msgid "Authentication Type" msgstr "" @@ -1031,7 +1031,6 @@ msgstr "" #: modules/luci-compat/luasrc/model/network/proto_modemmanager.lua:53 #: modules/luci-compat/luasrc/model/network/proto_qmi.lua:53 -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:40 #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:21 msgid "Call failed" msgstr "" @@ -1297,6 +1296,10 @@ msgstr "Συνδεδεμένος" msgid "Connection attempt failed" msgstr "" +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:40 +msgid "Connection attempt failed." +msgstr "" + #: modules/luci-base/htdocs/luci-static/resources/rpc.js:414 msgid "Connection lost" msgstr "" @@ -1625,6 +1628,10 @@ msgstr "" msgid "Device is restarting…" msgstr "" +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:45 +msgid "Device not managed by ModemManager." +msgstr "" + #: modules/luci-base/htdocs/luci-static/resources/ui.js:4122 msgid "Device unreachable!" msgstr "" @@ -1707,6 +1714,10 @@ msgstr "" msgid "Disconnection attempt failed" msgstr "" +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:48 +msgid "Disconnection attempt failed." +msgstr "" + #: modules/luci-base/htdocs/luci-static/resources/form.js:606 #: modules/luci-base/htdocs/luci-static/resources/form.js:2707 #: modules/luci-base/htdocs/luci-static/resources/ui.js:3268 @@ -2414,7 +2425,7 @@ msgstr "Θύρες πύλης" msgid "Gateway address is invalid" msgstr "" -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:118 +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:124 msgid "Gateway metric" msgstr "" @@ -2672,7 +2683,7 @@ msgstr "" msgid "IP Protocol" msgstr "" -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:108 +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:114 msgid "IP Type" msgstr "" @@ -2735,7 +2746,7 @@ msgstr "Μάσκα IPv4" msgid "IPv4 network in address/netmask notation" msgstr "" -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:110 +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:116 msgid "IPv4 only" msgstr "Μόνο IPv4" @@ -2767,7 +2778,7 @@ msgstr "" msgid "IPv4-in-IPv4 (RFC2003)" msgstr "" -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:109 +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:115 msgid "IPv4/IPv6 (both - defaults to IPv4)" msgstr "" @@ -2829,7 +2840,7 @@ msgstr "Πύλη IPv6" msgid "IPv6 network in address/netmask notation" msgstr "" -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:111 +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:117 msgid "IPv6 only" msgstr "Μόνο IPv6" @@ -3174,6 +3185,12 @@ msgstr "" msgid "Invalid argument" msgstr "" +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:46 +msgid "" +"Invalid bearer list. Possibly too many bearers created. This protocol " +"supports one and only one bearer." +msgstr "" + #: modules/luci-base/htdocs/luci-static/resources/rpc.js:405 msgid "Invalid command" msgstr "" @@ -3803,18 +3820,32 @@ msgstr "Λειτουργία" msgid "Model" msgstr "" +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:43 +msgid "Modem bearer teardown in progress." +msgstr "" + +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:42 +msgid "" +"Modem connection in progress. Please wait. This process will timeout after 2 " +"minutes." +msgstr "" + #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:72 msgid "Modem default" msgstr "" #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:73 -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:76 +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:82 #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:61 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:73 #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:57 msgid "Modem device" msgstr "Συσκευή Modem" +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:41 +msgid "Modem disconnection in progress. Please wait." +msgstr "" + #: modules/luci-compat/luasrc/model/network/proto_ncm.lua:66 #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:24 msgid "Modem information query failed" @@ -3826,7 +3857,11 @@ msgstr "" msgid "Modem init timeout" msgstr "" -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:46 +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:44 +msgid "Modem is disabled." +msgstr "" + +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:52 msgid "ModemManager" msgstr "" @@ -4123,7 +4158,7 @@ msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:159 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:183 -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:94 +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:100 msgid "None" msgstr "Κανένα" @@ -4406,7 +4441,7 @@ msgstr "" #: protocols/luci-proto-hnet/htdocs/luci-static/resources/protocol/hnet.js:44 #: protocols/luci-proto-ipip/htdocs/luci-static/resources/protocol/ipip.js:53 #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dhcpv6.js:54 -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:114 +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:120 #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:158 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/l2tp.js:71 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:145 @@ -4468,12 +4503,12 @@ msgstr "" msgid "Owner" msgstr "Κάτοχος" -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:91 +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:97 msgid "PAP/CHAP (both)" msgstr "" #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:98 -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:102 +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:108 #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:90 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/l2tp.js:45 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:89 @@ -4486,7 +4521,7 @@ msgid "PAP/CHAP password" msgstr "" #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:96 -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:97 +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:103 #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:88 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/l2tp.js:43 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:87 @@ -4507,7 +4542,7 @@ msgid "PID" msgstr "PID" #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:95 -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:88 +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:94 #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:87 #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:68 msgid "PIN" @@ -5479,7 +5514,6 @@ msgstr "" #: modules/luci-compat/luasrc/model/network/proto_modemmanager.lua:55 #: modules/luci-compat/luasrc/model/network/proto_qmi.lua:55 -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:42 #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:23 msgid "Setting PLMN failed" msgstr "" @@ -6519,7 +6553,6 @@ msgstr "" #: modules/luci-compat/luasrc/model/network/proto_modemmanager.lua:54 #: modules/luci-compat/luasrc/model/network/proto_qmi.lua:54 -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:41 #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:22 msgid "Unable to obtain client ID" msgstr "" @@ -6569,6 +6602,10 @@ msgstr "" msgid "Unknown" msgstr "Άγνωστο" +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:47 +msgid "Unknown and unsupported connection method." +msgstr "" + #: modules/luci-base/htdocs/luci-static/resources/network.js:2276 #: modules/luci-compat/luasrc/model/network.lua:1138 msgid "Unknown error (%s)" diff --git a/modules/luci-base/po/en/base.po b/modules/luci-base/po/en/base.po index 2bf14709d3..b7a2eab7f2 100644 --- a/modules/luci-base/po/en/base.po +++ b/modules/luci-base/po/en/base.po @@ -289,7 +289,7 @@ msgid "ANSI T1.413" msgstr "" #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:94 -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:87 +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:93 #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:86 #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:67 msgid "APN" @@ -796,7 +796,7 @@ msgstr "" msgid "Authentication" msgstr "Authentication" -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:90 +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:96 #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:70 msgid "Authentication Type" msgstr "" @@ -1021,7 +1021,6 @@ msgstr "" #: modules/luci-compat/luasrc/model/network/proto_modemmanager.lua:53 #: modules/luci-compat/luasrc/model/network/proto_qmi.lua:53 -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:40 #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:21 msgid "Call failed" msgstr "" @@ -1286,6 +1285,10 @@ msgstr "Connected" msgid "Connection attempt failed" msgstr "" +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:40 +msgid "Connection attempt failed." +msgstr "" + #: modules/luci-base/htdocs/luci-static/resources/rpc.js:414 msgid "Connection lost" msgstr "" @@ -1614,6 +1617,10 @@ msgstr "" msgid "Device is restarting…" msgstr "" +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:45 +msgid "Device not managed by ModemManager." +msgstr "" + #: modules/luci-base/htdocs/luci-static/resources/ui.js:4122 msgid "Device unreachable!" msgstr "" @@ -1694,6 +1701,10 @@ msgstr "" msgid "Disconnection attempt failed" msgstr "" +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:48 +msgid "Disconnection attempt failed." +msgstr "" + #: modules/luci-base/htdocs/luci-static/resources/form.js:606 #: modules/luci-base/htdocs/luci-static/resources/form.js:2707 #: modules/luci-base/htdocs/luci-static/resources/ui.js:3268 @@ -2389,7 +2400,7 @@ msgstr "" msgid "Gateway address is invalid" msgstr "" -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:118 +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:124 msgid "Gateway metric" msgstr "" @@ -2646,7 +2657,7 @@ msgstr "" msgid "IP Protocol" msgstr "" -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:108 +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:114 msgid "IP Type" msgstr "" @@ -2709,7 +2720,7 @@ msgstr "" msgid "IPv4 network in address/netmask notation" msgstr "" -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:110 +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:116 msgid "IPv4 only" msgstr "" @@ -2741,7 +2752,7 @@ msgstr "" msgid "IPv4-in-IPv4 (RFC2003)" msgstr "" -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:109 +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:115 msgid "IPv4/IPv6 (both - defaults to IPv4)" msgstr "" @@ -2803,7 +2814,7 @@ msgstr "" msgid "IPv6 network in address/netmask notation" msgstr "" -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:111 +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:117 msgid "IPv6 only" msgstr "" @@ -3143,6 +3154,12 @@ msgstr "" msgid "Invalid argument" msgstr "" +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:46 +msgid "" +"Invalid bearer list. Possibly too many bearers created. This protocol " +"supports one and only one bearer." +msgstr "" + #: modules/luci-base/htdocs/luci-static/resources/rpc.js:405 msgid "Invalid command" msgstr "" @@ -3771,18 +3788,32 @@ msgstr "Mode" msgid "Model" msgstr "" +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:43 +msgid "Modem bearer teardown in progress." +msgstr "" + +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:42 +msgid "" +"Modem connection in progress. Please wait. This process will timeout after 2 " +"minutes." +msgstr "" + #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:72 msgid "Modem default" msgstr "" #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:73 -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:76 +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:82 #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:61 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:73 #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:57 msgid "Modem device" msgstr "Modem device" +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:41 +msgid "Modem disconnection in progress. Please wait." +msgstr "" + #: modules/luci-compat/luasrc/model/network/proto_ncm.lua:66 #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:24 msgid "Modem information query failed" @@ -3794,7 +3825,11 @@ msgstr "" msgid "Modem init timeout" msgstr "" -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:46 +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:44 +msgid "Modem is disabled." +msgstr "" + +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:52 msgid "ModemManager" msgstr "" @@ -4091,7 +4126,7 @@ msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:159 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:183 -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:94 +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:100 msgid "None" msgstr "" @@ -4374,7 +4409,7 @@ msgstr "" #: protocols/luci-proto-hnet/htdocs/luci-static/resources/protocol/hnet.js:44 #: protocols/luci-proto-ipip/htdocs/luci-static/resources/protocol/ipip.js:53 #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dhcpv6.js:54 -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:114 +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:120 #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:158 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/l2tp.js:71 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:145 @@ -4436,12 +4471,12 @@ msgstr "" msgid "Owner" msgstr "Owner" -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:91 +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:97 msgid "PAP/CHAP (both)" msgstr "" #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:98 -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:102 +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:108 #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:90 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/l2tp.js:45 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:89 @@ -4454,7 +4489,7 @@ msgid "PAP/CHAP password" msgstr "" #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:96 -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:97 +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:103 #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:88 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/l2tp.js:43 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:87 @@ -4475,7 +4510,7 @@ msgid "PID" msgstr "PID" #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:95 -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:88 +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:94 #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:87 #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:68 msgid "PIN" @@ -5445,7 +5480,6 @@ msgstr "" #: modules/luci-compat/luasrc/model/network/proto_modemmanager.lua:55 #: modules/luci-compat/luasrc/model/network/proto_qmi.lua:55 -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:42 #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:23 msgid "Setting PLMN failed" msgstr "" @@ -6480,7 +6514,6 @@ msgstr "" #: modules/luci-compat/luasrc/model/network/proto_modemmanager.lua:54 #: modules/luci-compat/luasrc/model/network/proto_qmi.lua:54 -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:41 #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:22 msgid "Unable to obtain client ID" msgstr "" @@ -6530,6 +6563,10 @@ msgstr "" msgid "Unknown" msgstr "" +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:47 +msgid "Unknown and unsupported connection method." +msgstr "" + #: modules/luci-base/htdocs/luci-static/resources/network.js:2276 #: modules/luci-compat/luasrc/model/network.lua:1138 msgid "Unknown error (%s)" diff --git a/modules/luci-base/po/es/base.po b/modules/luci-base/po/es/base.po index 46dacb550d..19416d4325 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: 2020-07-12 20:10+0000\n" +"PO-Revision-Date: 2020-07-19 09:43+0000\n" "Last-Translator: Franco Castillo <castillofrancodamian@gmail.com>\n" "Language-Team: Spanish <https://hosted.weblate.org/projects/openwrt/luci/es/>" "\n" @@ -297,7 +297,7 @@ msgid "ANSI T1.413" msgstr "ANSI T1.413" #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:94 -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:87 +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:93 #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:86 #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:67 msgid "APN" @@ -827,7 +827,7 @@ msgstr "Grupo de autenticaciones" msgid "Authentication" msgstr "Autenticación" -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:90 +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:96 #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:70 msgid "Authentication Type" msgstr "Tipo de autenticación" @@ -1058,7 +1058,6 @@ msgstr "En caché" #: modules/luci-compat/luasrc/model/network/proto_modemmanager.lua:53 #: modules/luci-compat/luasrc/model/network/proto_qmi.lua:53 -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:40 #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:21 msgid "Call failed" msgstr "Llamada fallida" @@ -1342,6 +1341,10 @@ msgstr "Conectado" msgid "Connection attempt failed" msgstr "Intento de conexión fallido" +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:40 +msgid "Connection attempt failed." +msgstr "Intento de conexión fallido." + #: modules/luci-base/htdocs/luci-static/resources/rpc.js:414 msgid "Connection lost" msgstr "Conexión perdida" @@ -1680,6 +1683,10 @@ msgstr "El dispositivo no está activo" msgid "Device is restarting…" msgstr "El dispositivo se está reiniciando…" +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:45 +msgid "Device not managed by ModemManager." +msgstr "Dispositivo no administrado por ModemManager." + #: modules/luci-base/htdocs/luci-static/resources/ui.js:4122 msgid "Device unreachable!" msgstr "Dispositivo inalcanzable!" @@ -1762,6 +1769,10 @@ msgstr "Desconectar" msgid "Disconnection attempt failed" msgstr "Intento de desconexión fallido" +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:48 +msgid "Disconnection attempt failed." +msgstr "Intento de desconexión fallido." + #: modules/luci-base/htdocs/luci-static/resources/form.js:606 #: modules/luci-base/htdocs/luci-static/resources/form.js:2707 #: modules/luci-base/htdocs/luci-static/resources/ui.js:3268 @@ -2481,7 +2492,7 @@ msgstr "Puertos del gateway" msgid "Gateway address is invalid" msgstr "La dirección de la puerta de enlace es inválida" -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:118 +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:124 msgid "Gateway metric" msgstr "Métrica de puerta de enlace" @@ -2740,7 +2751,7 @@ msgstr "Direcciones IP" msgid "IP Protocol" msgstr "Protocolo IP" -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:108 +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:114 msgid "IP Type" msgstr "Tipo de IP" @@ -2803,7 +2814,7 @@ msgstr "Máscara de red IPv4" msgid "IPv4 network in address/netmask notation" msgstr "Red IPv4 en notación de dirección / máscara de red" -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:110 +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:116 msgid "IPv4 only" msgstr "Sólo IPv4" @@ -2835,7 +2846,7 @@ msgstr "Puerta de enlace-IPv4" msgid "IPv4-in-IPv4 (RFC2003)" msgstr "IPv4 en IPv4 (RFC2003)" -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:109 +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:115 msgid "IPv4/IPv6 (both - defaults to IPv4)" msgstr "IPv4/IPv6 (ambos: el valor predeterminado es IPv4)" @@ -2897,7 +2908,7 @@ msgstr "Puerta de enlace IPv6" msgid "IPv6 network in address/netmask notation" msgstr "Red IPv6 en notación de dirección / máscara de red" -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:111 +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:117 msgid "IPv6 only" msgstr "Sólo IPv6" @@ -3248,6 +3259,14 @@ msgstr "¡ID de VLAN no válido! Sólo se permiten IDs únicos" msgid "Invalid argument" msgstr "Argumento inválido" +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:46 +msgid "" +"Invalid bearer list. Possibly too many bearers created. This protocol " +"supports one and only one bearer." +msgstr "" +"Lista de portadores inválida. Posiblemente se hayan creado demasiados " +"portadores. Este protocolo admite uno y solo un portador." + #: modules/luci-base/htdocs/luci-static/resources/rpc.js:405 msgid "Invalid command" msgstr "Comando inválido" @@ -3900,18 +3919,34 @@ msgstr "Modo" msgid "Model" msgstr "Modelo" +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:43 +msgid "Modem bearer teardown in progress." +msgstr "Desmontaje del portador del módem en progreso." + +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:42 +msgid "" +"Modem connection in progress. Please wait. This process will timeout after 2 " +"minutes." +msgstr "" +"Conexión del módem en progreso. Por favor espere. Este proceso expirará " +"después de 2 minutos." + #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:72 msgid "Modem default" msgstr "Módem predeterminado" #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:73 -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:76 +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:82 #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:61 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:73 #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:57 msgid "Modem device" msgstr "Dispositivo de módem" +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:41 +msgid "Modem disconnection in progress. Please wait." +msgstr "Desconexión del módem en progreso. Por favor espere." + #: modules/luci-compat/luasrc/model/network/proto_ncm.lua:66 #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:24 msgid "Modem information query failed" @@ -3923,7 +3958,11 @@ msgstr "Error en la consulta de información del módem" msgid "Modem init timeout" msgstr "Espera de inicialización del Módem" -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:46 +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:44 +msgid "Modem is disabled." +msgstr "El módem está desactivado." + +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:52 msgid "ModemManager" msgstr "ModemManager" @@ -4220,7 +4259,7 @@ msgstr "Sin comodín" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:159 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:183 -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:94 +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:100 msgid "None" msgstr "Ninguno" @@ -4521,7 +4560,7 @@ msgstr "Reemplazar dirección MAC" #: protocols/luci-proto-hnet/htdocs/luci-static/resources/protocol/hnet.js:44 #: protocols/luci-proto-ipip/htdocs/luci-static/resources/protocol/ipip.js:53 #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dhcpv6.js:54 -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:114 +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:120 #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:158 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/l2tp.js:71 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:145 @@ -4585,12 +4624,12 @@ msgstr "Sobrescribir archivo \"%s\" existente?" msgid "Owner" msgstr "Propietario" -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:91 +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:97 msgid "PAP/CHAP (both)" msgstr "PAP/CHAP (ambos)" #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:98 -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:102 +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:108 #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:90 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/l2tp.js:45 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:89 @@ -4603,7 +4642,7 @@ msgid "PAP/CHAP password" msgstr "Contraseña PAP/CHAP" #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:96 -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:97 +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:103 #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:88 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/l2tp.js:43 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:87 @@ -4624,7 +4663,7 @@ msgid "PID" msgstr "PID" #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:95 -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:88 +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:94 #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:87 #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:68 msgid "PIN" @@ -5628,7 +5667,6 @@ msgstr "Establecer como primer esclavo agregado al vínculo (seguir, 2)" #: modules/luci-compat/luasrc/model/network/proto_modemmanager.lua:55 #: modules/luci-compat/luasrc/model/network/proto_qmi.lua:55 -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:42 #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:23 msgid "Setting PLMN failed" msgstr "La configuración de la PLMN falló" @@ -6788,7 +6826,6 @@ msgstr "No se pueden cargar los datos de registro:" #: modules/luci-compat/luasrc/model/network/proto_modemmanager.lua:54 #: modules/luci-compat/luasrc/model/network/proto_qmi.lua:54 -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:41 #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:22 msgid "Unable to obtain client ID" msgstr "No se puede obtener la identificación del cliente" @@ -6838,6 +6875,10 @@ msgstr "Formato de datos de respuesta inesperado" msgid "Unknown" msgstr "Desconocido" +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:47 +msgid "Unknown and unsupported connection method." +msgstr "Método de conexión desconocido y no compatible." + #: modules/luci-base/htdocs/luci-static/resources/network.js:2276 #: modules/luci-compat/luasrc/model/network.lua:1138 msgid "Unknown error (%s)" diff --git a/modules/luci-base/po/fi/base.po b/modules/luci-base/po/fi/base.po index 51c786e543..0d132277d7 100644 --- a/modules/luci-base/po/fi/base.po +++ b/modules/luci-base/po/fi/base.po @@ -1,6 +1,6 @@ msgid "" msgstr "" -"PO-Revision-Date: 2020-07-10 10:41+0000\n" +"PO-Revision-Date: 2020-07-15 12:02+0000\n" "Last-Translator: Petri Asikainen <uniluodossa@gmail.com>\n" "Language-Team: Finnish <https://hosted.weblate.org/projects/openwrt/luci/fi/>" "\n" @@ -91,7 +91,7 @@ msgstr "-- valitse --" #: protocols/luci-proto-sstp/htdocs/luci-static/resources/protocol/sstp.js:54 msgctxt "sstp log level value" msgid "0" -msgstr "" +msgstr "0" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:939 msgid "0 = not using RSSI threshold, 1 = do not change driver default" @@ -100,7 +100,7 @@ msgstr "0 = ei käytetä RSSI-rajaa, 1 = ei muuteta ajurin vakiota" #: protocols/luci-proto-sstp/htdocs/luci-static/resources/protocol/sstp.js:55 msgctxt "sstp log level value" msgid "1" -msgstr "" +msgstr "1" #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/load.js:231 msgid "1 Minute Load:" @@ -113,17 +113,17 @@ msgstr "15 minuutin kuorma:" #: protocols/luci-proto-sstp/htdocs/luci-static/resources/protocol/sstp.js:56 msgctxt "sstp log level value" msgid "2" -msgstr "" +msgstr "2" #: protocols/luci-proto-sstp/htdocs/luci-static/resources/protocol/sstp.js:57 msgctxt "sstp log level value" msgid "3" -msgstr "" +msgstr "3" #: protocols/luci-proto-sstp/htdocs/luci-static/resources/protocol/sstp.js:58 msgctxt "sstp log level value" msgid "4" -msgstr "" +msgstr "4" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1442 msgid "4-character hexadecimal ID" @@ -292,7 +292,7 @@ msgid "ANSI T1.413" msgstr "ANSI T1.413" #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:94 -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:87 +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:93 #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:86 #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:67 msgid "APN" @@ -817,7 +817,7 @@ msgstr "Auth-ryhmä" msgid "Authentication" msgstr "Todennus" -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:90 +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:96 #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:70 msgid "Authentication Type" msgstr "Todennuksen tyyppi" @@ -1046,7 +1046,6 @@ msgstr "Välimuistissa" #: modules/luci-compat/luasrc/model/network/proto_modemmanager.lua:53 #: modules/luci-compat/luasrc/model/network/proto_qmi.lua:53 -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:40 #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:21 msgid "Call failed" msgstr "Kutsu epäonnistui" @@ -1290,7 +1289,7 @@ msgstr "" #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:93 #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:98 msgid "Compute outgoing checksum (optional)." -msgstr "" +msgstr "Laske lähtevä tarkistussumma." #: modules/luci-base/htdocs/luci-static/resources/ui.js:3987 #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:421 @@ -1328,6 +1327,10 @@ msgstr "Yhdistetty" msgid "Connection attempt failed" msgstr "Yhteyden muodostaminen epäonnistui" +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:40 +msgid "Connection attempt failed." +msgstr "" + #: modules/luci-base/htdocs/luci-static/resources/rpc.js:414 msgid "Connection lost" msgstr "Yhteys katkennut" @@ -1664,6 +1667,10 @@ msgstr "Laite ei ole aktiivinen" msgid "Device is restarting…" msgstr "Laite käynnistyy uudelleen…" +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:45 +msgid "Device not managed by ModemManager." +msgstr "" + #: modules/luci-base/htdocs/luci-static/resources/ui.js:4122 msgid "Device unreachable!" msgstr "Laitetta ei tavoiteta!" @@ -1746,6 +1753,10 @@ msgstr "Irroita" msgid "Disconnection attempt failed" msgstr "Irrotusyritys epäonnistui" +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:48 +msgid "Disconnection attempt failed." +msgstr "" + #: modules/luci-base/htdocs/luci-static/resources/form.js:606 #: modules/luci-base/htdocs/luci-static/resources/form.js:2707 #: modules/luci-base/htdocs/luci-static/resources/ui.js:3268 @@ -1786,7 +1797,7 @@ msgstr "" #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:81 #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:86 msgid "Do not create host route to peer (optional)." -msgstr "" +msgstr "Älä luo reittiä kohteelle (valinnainen)." #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:219 msgid "Do not forward requests that cannot be answered by public name servers" @@ -2207,11 +2218,11 @@ msgstr "Lisättävät vaihtoehdot SSH-komentoon" #: protocols/luci-proto-sstp/htdocs/luci-static/resources/protocol/sstp.js:83 msgid "Extra pppd options" -msgstr "" +msgstr "Pppd lisävalinnat" #: protocols/luci-proto-sstp/htdocs/luci-static/resources/protocol/sstp.js:81 msgid "Extra sstpc options" -msgstr "" +msgstr "Sstpc lisävalinnat" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1456 msgid "FT over DS" @@ -2436,19 +2447,19 @@ msgstr "Vain GPRS" #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:10 msgid "GRE tunnel over IPv4" -msgstr "" +msgstr "GRE tunneli IPv4:n yli" #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:10 msgid "GRE tunnel over IPv6" -msgstr "" +msgstr "GRE tunneli IPv6:n yli" #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:10 msgid "GRETAP tunnel over IPv4" -msgstr "" +msgstr "GRETAP tunneli IPv4:n yli" #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:10 msgid "GRETAP tunnel over IPv6" -msgstr "" +msgstr "GRETAP tunneli IPv6:n yli" #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:44 msgid "Gateway" @@ -2463,7 +2474,7 @@ msgstr "Yhdyskäytävän portit" msgid "Gateway address is invalid" msgstr "Yhdyskäytävän osoite ei kelpaa" -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:118 +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:124 msgid "Gateway metric" msgstr "Yhdyskäytävän mittari" @@ -2721,7 +2732,7 @@ msgstr "IP-osoitteet" msgid "IP Protocol" msgstr "IP-protokolla" -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:108 +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:114 msgid "IP Type" msgstr "IP-tyyppi" @@ -2784,7 +2795,7 @@ msgstr "IPv4-verkkomaski" msgid "IPv4 network in address/netmask notation" msgstr "IPv4-verkko osoite/verkkopeittemerkittynä" -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:110 +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:116 msgid "IPv4 only" msgstr "Vain IPv4" @@ -2816,7 +2827,7 @@ msgstr "IPv4-yhdyskäytävä" msgid "IPv4-in-IPv4 (RFC2003)" msgstr "IPv4-in-IPv4 (RFC2003)" -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:109 +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:115 msgid "IPv4/IPv6 (both - defaults to IPv4)" msgstr "IPv4/IPv6 (molemmat - oletuksena IPv4)" @@ -2878,7 +2889,7 @@ msgstr "IPv6-yhdyskäytävä" msgid "IPv6 network in address/netmask notation" msgstr "IPv6-verkko osoite/verkkomaski merkittynä" -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:111 +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:117 msgid "IPv6 only" msgstr "Vain IPv6" @@ -2903,7 +2914,7 @@ msgstr "IPv6-pääte" #: protocols/luci-proto-sstp/htdocs/luci-static/resources/protocol/sstp.js:51 msgid "IPv6 support" -msgstr "" +msgstr "IPv6 tuki" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:56 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:57 @@ -2940,7 +2951,7 @@ msgstr "Jos valittuna, 1DES on käytössä" #: protocols/luci-proto-sstp/htdocs/luci-static/resources/protocol/sstp.js:51 msgid "If checked, adds \"+ipv6\" to the pppd options" -msgstr "" +msgstr "Lisää \"+ipv6\" valinnan pppd sovelluksen valitsimiin" #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:93 msgid "If checked, encryption is disabled" @@ -3055,21 +3066,21 @@ msgstr "Sisään tuleva:" #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:92 #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:97 msgid "Incoming checksum" -msgstr "" +msgstr "Tuleva tarkistussumma" #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:82 #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:87 #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:84 #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:89 msgid "Incoming key" -msgstr "" +msgstr "Tuleva avain" #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:92 #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:97 #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:94 #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:99 msgid "Incoming serialization" -msgstr "" +msgstr "Tuleva sarjoitus" #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:166 msgid "Info" @@ -3226,6 +3237,12 @@ msgstr "" msgid "Invalid argument" msgstr "Virheellinen argumentti" +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:46 +msgid "" +"Invalid bearer list. Possibly too many bearers created. This protocol " +"supports one and only one bearer." +msgstr "" + #: modules/luci-base/htdocs/luci-static/resources/rpc.js:405 msgid "Invalid command" msgstr "Virheellinen komento" @@ -3243,7 +3260,7 @@ msgstr "Virheellinen käyttäjätunnus tai salasana! Yritä uudelleen." #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:76 #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:81 msgid "Invalid value" -msgstr "" +msgstr "Virheellinen arvo" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1075 msgid "Isolate Clients" @@ -3306,14 +3323,14 @@ msgstr "Avain #%d" #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:84 #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:89 msgid "Key for incoming packets (optional)." -msgstr "" +msgstr "Avain tuleville paketeille." #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:86 #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:91 #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:88 #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:93 msgid "Key for outgoing packets (optinal)." -msgstr "" +msgstr "Avain lähteville paketeille." #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/processes.js:54 msgid "Kill" @@ -3634,11 +3651,13 @@ msgid "" "Logical network from which to select the local endpoint if local IPv6 " "address is empty and no WAN IPv6 is available (optional)." msgstr "" +"Looginen verkko, josta valitaan paikallinen päätepiste, jos paikallinen IPv6-" +"osoite on tyhjä eikä WAN IPv6 ole käytettävissä (valinnainen)." #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:50 #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:55 msgid "Logical network to which the tunnel will be added (bridged) (optional)." -msgstr "" +msgstr "Looginen verkko, johon tunneli lisätään (sillataan) (valinnainen)." #: modules/luci-base/luasrc/view/sysauth.htm:38 msgid "Login" @@ -3875,18 +3894,32 @@ msgstr "Tila" msgid "Model" msgstr "Malli" +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:43 +msgid "Modem bearer teardown in progress." +msgstr "" + +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:42 +msgid "" +"Modem connection in progress. Please wait. This process will timeout after 2 " +"minutes." +msgstr "" + #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:72 msgid "Modem default" msgstr "Modeemin oletus" #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:73 -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:76 +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:82 #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:61 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:73 #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:57 msgid "Modem device" msgstr "Modeemilaite" +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:41 +msgid "Modem disconnection in progress. Please wait." +msgstr "" + #: modules/luci-compat/luasrc/model/network/proto_ncm.lua:66 #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:24 msgid "Modem information query failed" @@ -3898,7 +3931,11 @@ msgstr "Modeemitietojen kysely epäonnistui" msgid "Modem init timeout" msgstr "Modeemin aikakatkaisu" -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:46 +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:44 +msgid "Modem is disabled." +msgstr "" + +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:52 msgid "ModemManager" msgstr "ModemManager" @@ -4050,7 +4087,7 @@ msgstr "Verkkolaitetta ei ole" #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:50 #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:55 msgid "Network interface" -msgstr "" +msgstr "Sovitin" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:777 msgid "New interface for \"%s\" can not be created: %s" @@ -4112,7 +4149,7 @@ msgstr "Tiedostoja ei löytynyt" #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:81 #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:86 msgid "No host route" -msgstr "" +msgstr "Ei reittiä kohteelle" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:674 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:142 @@ -4195,7 +4232,7 @@ msgstr "Ei-yleismerkki" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:159 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:183 -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:94 +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:100 msgid "None" msgstr "Ei mikään" @@ -4451,21 +4488,21 @@ msgstr "Lähtevä:" #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:93 #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:98 msgid "Outgoing checksum" -msgstr "" +msgstr "Lähtevä tarkistusumma" #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:86 #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:91 #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:88 #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:93 msgid "Outgoing key" -msgstr "" +msgstr "Lähtevä avain" #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:93 #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:98 #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:95 #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:100 msgid "Outgoing serialization" -msgstr "" +msgstr "Lähtevä sarjoitus" #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:50 msgid "Output Interface" @@ -4494,7 +4531,7 @@ msgstr "Ohita MAC-osoite" #: protocols/luci-proto-hnet/htdocs/luci-static/resources/protocol/hnet.js:44 #: protocols/luci-proto-ipip/htdocs/luci-static/resources/protocol/ipip.js:53 #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dhcpv6.js:54 -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:114 +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:120 #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:158 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/l2tp.js:71 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:145 @@ -4558,12 +4595,12 @@ msgstr "Korvataanko aiemmin luotu tiedosto %s?" msgid "Owner" msgstr "Omistaja" -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:91 +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:97 msgid "PAP/CHAP (both)" msgstr "PAP/CHAP (molemmat)" #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:98 -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:102 +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:108 #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:90 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/l2tp.js:45 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:89 @@ -4576,7 +4613,7 @@ msgid "PAP/CHAP password" msgstr "PAP/CHAP-salasana" #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:96 -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:97 +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:103 #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:88 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/l2tp.js:43 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:87 @@ -4597,7 +4634,7 @@ msgid "PID" msgstr "PID" #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:95 -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:88 +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:94 #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:87 #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:68 msgid "PIN" @@ -4769,7 +4806,7 @@ msgstr "Perfect Forward Secrecy" #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:95 #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:100 msgid "Perform outgoing packets serialization (optional)." -msgstr "" +msgstr "Sarjoita lähtevät paketit." #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:28 msgid "Perform reboot" @@ -5133,7 +5170,7 @@ msgstr "IPv6-etäosoite" #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:42 #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:42 msgid "Remote IPv6 address or FQDN" -msgstr "" +msgstr "Etäpään IPv6 osoite tai verkkonimi" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:849 msgid "Remove" @@ -5160,14 +5197,14 @@ msgstr "Pyynnön aikakatkaisu" #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:92 #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:97 msgid "Require incoming checksum (optional)." -msgstr "" +msgstr "Vaadi tarkistussumma tulevalta liikenteeltä." #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:92 #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:97 #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:94 #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:99 msgid "Require incoming packets serialization (optional)." -msgstr "" +msgstr "Vaadi tulevien pakettien sarjoitus." #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1610 msgid "Required" @@ -5224,7 +5261,7 @@ msgstr "Vaatii hostapd-sovelluksen SAE-tuella" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1237 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1238 msgid "Requires hostapd with WEP support" -msgstr "" +msgstr "Vaatii WEP tuen hostapd sovellukselta" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1607 msgid "" @@ -5274,7 +5311,7 @@ msgstr "Vaatii wpa-supplicant-sovelluksen SAE-tuella" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1251 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1252 msgid "Requires wpa-supplicant with WEP support" -msgstr "" +msgstr "Vaatii WEP tuen wpa-supplicant sovellukselta" #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:224 msgid "Reselection policy for primary slave" @@ -5454,11 +5491,11 @@ msgstr "SSID" #: protocols/luci-proto-sstp/htdocs/luci-static/resources/protocol/sstp.js:9 msgid "SSTP" -msgstr "" +msgstr "SSTP" #: protocols/luci-proto-sstp/htdocs/luci-static/resources/protocol/sstp.js:41 msgid "SSTP Server" -msgstr "" +msgstr "SSTP Palvelin" #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:339 msgid "SWAP" @@ -5595,7 +5632,6 @@ msgstr "Aseta ensimmäiseen orjaan sidoksessa (seuraa, 2)" #: modules/luci-compat/luasrc/model/network/proto_modemmanager.lua:55 #: modules/luci-compat/luasrc/model/network/proto_qmi.lua:55 -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:42 #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:23 msgid "Setting PLMN failed" msgstr "PLMN: n asetus epäonnistui" @@ -5730,7 +5766,7 @@ msgstr "Lähdeosoite" #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:50 #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:50 msgid "Source interface" -msgstr "" +msgstr "Lähde sovitin" #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:342 msgid "" @@ -5934,6 +5970,9 @@ msgid "" "outer header inherits the value of the inner header) or an hexadecimal value " "starting with <code>0x</code> (optional)." msgstr "" +"Määritä TOS (palvelun tyyppi). Voi olla joko <code>peritty</code> (ulompi " +"otsikko perii sisäisen otsikon arvon) tai heksadesimaaliarvon alkaen " +"<code>0x</code> (valinnainen)." #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:62 #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:67 @@ -5943,6 +5982,8 @@ msgid "" "Specify a TTL (Time to Live) for the encapsulating packet other than the " "default (64) (optional)." msgstr "" +"Määritä TTL (Time to Live) kapselointipaketille, oletuksena (64) " +"(valinnainen)." #: protocols/luci-proto-ipip/htdocs/luci-static/resources/protocol/ipip.js:58 #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:67 @@ -5960,6 +6001,9 @@ msgid "" "header inherits the value of the inner header) or an hexadecimal value " "starting with <code>0x</code> (optional)." msgstr "" +"Määritä liikenneluokka. Voi olla joko <code>peritty</code> (ulompi otsikko " +"perii sisäisen otsikon arvon) tai heksadesimaaliarvon alkaen <code>0x</code> " +"(valinnainen)." #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:57 #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:62 @@ -5969,6 +6013,8 @@ msgid "" "Specify an MTU (Maximum Transmission Unit) other than the default (1280 " "bytes) (optional)." msgstr "" +"Määritä muu MTU (suurin siirtoyksikkö) kuin oletusarvo (1280 tavua) " +"(valinnainen)." #: protocols/luci-proto-ipip/htdocs/luci-static/resources/protocol/ipip.js:53 #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:62 @@ -6224,7 +6270,7 @@ msgstr "Etäpään IPv6-osoite tai täysin kelvollinen verkkotunnus." #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:42 msgid "" "The IPv6 address or the fully-qualified domain name of the remote tunnel end." -msgstr "" +msgstr "Etäpään IPv6 osoite tai sen täydellinen verkkonimi." #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6rd.js:53 #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:59 @@ -6629,7 +6675,7 @@ msgstr "Liikenne" #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:72 #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:77 msgid "Traffic Class" -msgstr "" +msgstr "Liikenneluokka" #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:385 msgid "Transfer" @@ -6722,7 +6768,6 @@ msgstr "Lokitietoja ei voi ladata:" #: modules/luci-compat/luasrc/model/network/proto_modemmanager.lua:54 #: modules/luci-compat/luasrc/model/network/proto_qmi.lua:54 -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:41 #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:22 msgid "Unable to obtain client ID" msgstr "Asiakastunnusta ei voitu saada" @@ -6772,6 +6817,10 @@ msgstr "Odottamaton vastaustietojen muoto" msgid "Unknown" msgstr "Tuntematon" +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:47 +msgid "Unknown and unsupported connection method." +msgstr "" + #: modules/luci-base/htdocs/luci-static/resources/network.js:2276 #: modules/luci-compat/luasrc/model/network.lua:1138 msgid "Unknown error (%s)" @@ -7469,11 +7518,11 @@ msgstr "ohjaimen oletusasetus" #: protocols/luci-proto-sstp/htdocs/luci-static/resources/protocol/sstp.js:81 msgid "e.g: --proxy 10.10.10.10" -msgstr "" +msgstr "esim: --proxy 10.10.10.10" #: protocols/luci-proto-sstp/htdocs/luci-static/resources/protocol/sstp.js:83 msgid "e.g: dump" -msgstr "" +msgstr "esim. dump" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:517 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:538 @@ -7636,7 +7685,7 @@ msgstr "palvelintila" #: protocols/luci-proto-sstp/htdocs/luci-static/resources/protocol/sstp.js:53 msgid "sstpc Log-level" -msgstr "" +msgstr "sstp Lokitaso" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:649 msgid "stateful-only" diff --git a/modules/luci-base/po/fr/base.po b/modules/luci-base/po/fr/base.po index 5d4919b9b8..d49aa7477e 100644 --- a/modules/luci-base/po/fr/base.po +++ b/modules/luci-base/po/fr/base.po @@ -300,7 +300,7 @@ msgid "ANSI T1.413" msgstr "ANSI T1.413" #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:94 -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:87 +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:93 #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:86 #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:67 msgid "APN" @@ -838,7 +838,7 @@ msgstr "Groupe d'authentification" msgid "Authentication" msgstr "Authentification" -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:90 +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:96 #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:70 msgid "Authentication Type" msgstr "Type d'authentification" @@ -1068,7 +1068,6 @@ msgstr "Mise en cache" #: modules/luci-compat/luasrc/model/network/proto_modemmanager.lua:53 #: modules/luci-compat/luasrc/model/network/proto_qmi.lua:53 -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:40 #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:21 msgid "Call failed" msgstr "L'appel a échoué" @@ -1355,6 +1354,10 @@ msgstr "Connecté" msgid "Connection attempt failed" msgstr "Échec de la tentative de connexion" +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:40 +msgid "Connection attempt failed." +msgstr "" + #: modules/luci-base/htdocs/luci-static/resources/rpc.js:414 msgid "Connection lost" msgstr "Connexion perdue" @@ -1693,6 +1696,10 @@ msgstr "L’appareil n’est pas actif" msgid "Device is restarting…" msgstr "L'appareil redémarre…" +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:45 +msgid "Device not managed by ModemManager." +msgstr "" + #: modules/luci-base/htdocs/luci-static/resources/ui.js:4122 msgid "Device unreachable!" msgstr "Appareil inaccessible !" @@ -1775,6 +1782,10 @@ msgstr "Déconnecter" msgid "Disconnection attempt failed" msgstr "La tentative de déconnexion a échoué" +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:48 +msgid "Disconnection attempt failed." +msgstr "" + #: modules/luci-base/htdocs/luci-static/resources/form.js:606 #: modules/luci-base/htdocs/luci-static/resources/form.js:2707 #: modules/luci-base/htdocs/luci-static/resources/ui.js:3268 @@ -2499,7 +2510,7 @@ msgstr "Autoriser la connexion aux ports forwardés" msgid "Gateway address is invalid" msgstr "L'adresse de la passerelle n'est pas valide" -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:118 +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:124 msgid "Gateway metric" msgstr "Métrique de la passerelle" @@ -2758,7 +2769,7 @@ msgstr "Adresses IP" msgid "IP Protocol" msgstr "Protocole IP" -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:108 +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:114 msgid "IP Type" msgstr "Type IP" @@ -2821,7 +2832,7 @@ msgstr "Masque-réseau IPv4" msgid "IPv4 network in address/netmask notation" msgstr "Réseau IPv4 au format adresse/masque réseau" -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:110 +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:116 msgid "IPv4 only" msgstr "IPv4 seulement" @@ -2853,7 +2864,7 @@ msgstr "Passerelle IPv4" msgid "IPv4-in-IPv4 (RFC2003)" msgstr "IPv4 en IPv4 (RFC2003)" -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:109 +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:115 msgid "IPv4/IPv6 (both - defaults to IPv4)" msgstr "IPv4/IPv6 (les deux - par défaut IPv4)" @@ -2915,7 +2926,7 @@ msgstr "Passerelle IPv6" msgid "IPv6 network in address/netmask notation" msgstr "Réseau IPv6 au format adresse/masque réseau" -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:111 +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:117 msgid "IPv6 only" msgstr "IPv6 seulement" @@ -3268,6 +3279,12 @@ msgstr "" msgid "Invalid argument" msgstr "Argument invalide" +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:46 +msgid "" +"Invalid bearer list. Possibly too many bearers created. This protocol " +"supports one and only one bearer." +msgstr "" + #: modules/luci-base/htdocs/luci-static/resources/rpc.js:405 msgid "Invalid command" msgstr "Commande invalide" @@ -3922,18 +3939,32 @@ msgstr "Mode" msgid "Model" msgstr "Modèle" +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:43 +msgid "Modem bearer teardown in progress." +msgstr "" + +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:42 +msgid "" +"Modem connection in progress. Please wait. This process will timeout after 2 " +"minutes." +msgstr "" + #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:72 msgid "Modem default" msgstr "Modem par défaut" #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:73 -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:76 +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:82 #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:61 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:73 #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:57 msgid "Modem device" msgstr "Interface Modem" +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:41 +msgid "Modem disconnection in progress. Please wait." +msgstr "" + #: modules/luci-compat/luasrc/model/network/proto_ncm.lua:66 #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:24 msgid "Modem information query failed" @@ -3945,7 +3976,11 @@ msgstr "Échec de la requête d'informations sur le modem" msgid "Modem init timeout" msgstr "Délai max. d'initialisation du modem" -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:46 +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:44 +msgid "Modem is disabled." +msgstr "" + +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:52 msgid "ModemManager" msgstr "ModemManager" @@ -4242,7 +4277,7 @@ msgstr "Non-wildcard" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:159 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:183 -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:94 +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:100 msgid "None" msgstr "Aucun" @@ -4543,7 +4578,7 @@ msgstr "Modifier l'adresse MAC" #: protocols/luci-proto-hnet/htdocs/luci-static/resources/protocol/hnet.js:44 #: protocols/luci-proto-ipip/htdocs/luci-static/resources/protocol/ipip.js:53 #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dhcpv6.js:54 -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:114 +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:120 #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:158 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/l2tp.js:71 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:145 @@ -4607,12 +4642,12 @@ msgstr "Remplacer le fichier existant \"%s\" ?" msgid "Owner" msgstr "Utilisateur" -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:91 +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:97 msgid "PAP/CHAP (both)" msgstr "PAP/CHAP (les deux)" #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:98 -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:102 +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:108 #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:90 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/l2tp.js:45 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:89 @@ -4625,7 +4660,7 @@ msgid "PAP/CHAP password" msgstr "Mot de passe PAP/CHAP" #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:96 -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:97 +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:103 #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:88 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/l2tp.js:43 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:87 @@ -4646,7 +4681,7 @@ msgid "PID" msgstr "PID" #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:95 -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:88 +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:94 #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:87 #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:68 msgid "PIN" @@ -5648,7 +5683,6 @@ msgstr "Fixe le premier esclave ajouté au lien (follow, 2)" #: modules/luci-compat/luasrc/model/network/proto_modemmanager.lua:55 #: modules/luci-compat/luasrc/model/network/proto_qmi.lua:55 -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:42 #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:23 msgid "Setting PLMN failed" msgstr "Échec de la définition du PLMN" @@ -6808,7 +6842,6 @@ msgstr "Impossible de charger les données du journal:" #: modules/luci-compat/luasrc/model/network/proto_modemmanager.lua:54 #: modules/luci-compat/luasrc/model/network/proto_qmi.lua:54 -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:41 #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:22 msgid "Unable to obtain client ID" msgstr "Impossible d'obtenir l'ID client" @@ -6858,6 +6891,10 @@ msgstr "Format de données de réponse inattendu" msgid "Unknown" msgstr "Inconnue" +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:47 +msgid "Unknown and unsupported connection method." +msgstr "" + #: modules/luci-base/htdocs/luci-static/resources/network.js:2276 #: modules/luci-compat/luasrc/model/network.lua:1138 msgid "Unknown error (%s)" diff --git a/modules/luci-base/po/he/base.po b/modules/luci-base/po/he/base.po index 5ffcd391d9..7022eb0975 100644 --- a/modules/luci-base/po/he/base.po +++ b/modules/luci-base/po/he/base.po @@ -281,7 +281,7 @@ msgid "ANSI T1.413" msgstr "" #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:94 -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:87 +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:93 #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:86 #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:67 msgid "APN" @@ -798,7 +798,7 @@ msgstr "" msgid "Authentication" msgstr "אימות" -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:90 +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:96 #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:70 msgid "Authentication Type" msgstr "" @@ -1024,7 +1024,6 @@ msgstr "" #: modules/luci-compat/luasrc/model/network/proto_modemmanager.lua:53 #: modules/luci-compat/luasrc/model/network/proto_qmi.lua:53 -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:40 #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:21 msgid "Call failed" msgstr "" @@ -1281,6 +1280,10 @@ msgstr "מחובר" msgid "Connection attempt failed" msgstr "" +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:40 +msgid "Connection attempt failed." +msgstr "" + #: modules/luci-base/htdocs/luci-static/resources/rpc.js:414 msgid "Connection lost" msgstr "" @@ -1608,6 +1611,10 @@ msgstr "" msgid "Device is restarting…" msgstr "" +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:45 +msgid "Device not managed by ModemManager." +msgstr "" + #: modules/luci-base/htdocs/luci-static/resources/ui.js:4122 msgid "Device unreachable!" msgstr "" @@ -1688,6 +1695,10 @@ msgstr "" msgid "Disconnection attempt failed" msgstr "" +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:48 +msgid "Disconnection attempt failed." +msgstr "" + #: modules/luci-base/htdocs/luci-static/resources/form.js:606 #: modules/luci-base/htdocs/luci-static/resources/form.js:2707 #: modules/luci-base/htdocs/luci-static/resources/ui.js:3268 @@ -2376,7 +2387,7 @@ msgstr "" msgid "Gateway address is invalid" msgstr "" -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:118 +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:124 msgid "Gateway metric" msgstr "" @@ -2631,7 +2642,7 @@ msgstr "" msgid "IP Protocol" msgstr "" -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:108 +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:114 msgid "IP Type" msgstr "" @@ -2694,7 +2705,7 @@ msgstr "" msgid "IPv4 network in address/netmask notation" msgstr "" -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:110 +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:116 msgid "IPv4 only" msgstr "" @@ -2726,7 +2737,7 @@ msgstr "" msgid "IPv4-in-IPv4 (RFC2003)" msgstr "" -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:109 +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:115 msgid "IPv4/IPv6 (both - defaults to IPv4)" msgstr "" @@ -2788,7 +2799,7 @@ msgstr "" msgid "IPv6 network in address/netmask notation" msgstr "" -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:111 +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:117 msgid "IPv6 only" msgstr "" @@ -3123,6 +3134,12 @@ msgstr "" msgid "Invalid argument" msgstr "" +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:46 +msgid "" +"Invalid bearer list. Possibly too many bearers created. This protocol " +"supports one and only one bearer." +msgstr "" + #: modules/luci-base/htdocs/luci-static/resources/rpc.js:405 msgid "Invalid command" msgstr "" @@ -3748,18 +3765,32 @@ msgstr "" msgid "Model" msgstr "" +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:43 +msgid "Modem bearer teardown in progress." +msgstr "" + +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:42 +msgid "" +"Modem connection in progress. Please wait. This process will timeout after 2 " +"minutes." +msgstr "" + #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:72 msgid "Modem default" msgstr "" #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:73 -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:76 +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:82 #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:61 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:73 #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:57 msgid "Modem device" msgstr "" +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:41 +msgid "Modem disconnection in progress. Please wait." +msgstr "" + #: modules/luci-compat/luasrc/model/network/proto_ncm.lua:66 #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:24 msgid "Modem information query failed" @@ -3771,7 +3802,11 @@ msgstr "" msgid "Modem init timeout" msgstr "" -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:46 +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:44 +msgid "Modem is disabled." +msgstr "" + +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:52 msgid "ModemManager" msgstr "" @@ -4066,7 +4101,7 @@ msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:159 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:183 -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:94 +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:100 msgid "None" msgstr "" @@ -4349,7 +4384,7 @@ msgstr "" #: protocols/luci-proto-hnet/htdocs/luci-static/resources/protocol/hnet.js:44 #: protocols/luci-proto-ipip/htdocs/luci-static/resources/protocol/ipip.js:53 #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dhcpv6.js:54 -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:114 +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:120 #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:158 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/l2tp.js:71 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:145 @@ -4411,12 +4446,12 @@ msgstr "" msgid "Owner" msgstr "" -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:91 +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:97 msgid "PAP/CHAP (both)" msgstr "" #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:98 -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:102 +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:108 #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:90 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/l2tp.js:45 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:89 @@ -4429,7 +4464,7 @@ msgid "PAP/CHAP password" msgstr "" #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:96 -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:97 +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:103 #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:88 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/l2tp.js:43 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:87 @@ -4450,7 +4485,7 @@ msgid "PID" msgstr "" #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:95 -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:88 +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:94 #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:87 #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:68 msgid "PIN" @@ -5416,7 +5451,6 @@ msgstr "" #: modules/luci-compat/luasrc/model/network/proto_modemmanager.lua:55 #: modules/luci-compat/luasrc/model/network/proto_qmi.lua:55 -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:42 #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:23 msgid "Setting PLMN failed" msgstr "" @@ -6441,7 +6475,6 @@ msgstr "" #: modules/luci-compat/luasrc/model/network/proto_modemmanager.lua:54 #: modules/luci-compat/luasrc/model/network/proto_qmi.lua:54 -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:41 #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:22 msgid "Unable to obtain client ID" msgstr "" @@ -6491,6 +6524,10 @@ msgstr "" msgid "Unknown" msgstr "" +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:47 +msgid "Unknown and unsupported connection method." +msgstr "" + #: modules/luci-base/htdocs/luci-static/resources/network.js:2276 #: modules/luci-compat/luasrc/model/network.lua:1138 msgid "Unknown error (%s)" diff --git a/modules/luci-base/po/hi/base.po b/modules/luci-base/po/hi/base.po index 88d6ccbd43..d055ae2364 100644 --- a/modules/luci-base/po/hi/base.po +++ b/modules/luci-base/po/hi/base.po @@ -277,7 +277,7 @@ msgid "ANSI T1.413" msgstr "ANSI T1.413" #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:94 -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:87 +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:93 #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:86 #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:67 msgid "APN" @@ -783,7 +783,7 @@ msgstr "" msgid "Authentication" msgstr "" -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:90 +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:96 #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:70 msgid "Authentication Type" msgstr "" @@ -1005,7 +1005,6 @@ msgstr "" #: modules/luci-compat/luasrc/model/network/proto_modemmanager.lua:53 #: modules/luci-compat/luasrc/model/network/proto_qmi.lua:53 -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:40 #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:21 msgid "Call failed" msgstr "" @@ -1262,6 +1261,10 @@ msgstr "" msgid "Connection attempt failed" msgstr "" +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:40 +msgid "Connection attempt failed." +msgstr "" + #: modules/luci-base/htdocs/luci-static/resources/rpc.js:414 msgid "Connection lost" msgstr "" @@ -1585,6 +1588,10 @@ msgstr "" msgid "Device is restarting…" msgstr "" +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:45 +msgid "Device not managed by ModemManager." +msgstr "" + #: modules/luci-base/htdocs/luci-static/resources/ui.js:4122 msgid "Device unreachable!" msgstr "" @@ -1665,6 +1672,10 @@ msgstr "" msgid "Disconnection attempt failed" msgstr "" +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:48 +msgid "Disconnection attempt failed." +msgstr "" + #: modules/luci-base/htdocs/luci-static/resources/form.js:606 #: modules/luci-base/htdocs/luci-static/resources/form.js:2707 #: modules/luci-base/htdocs/luci-static/resources/ui.js:3268 @@ -2351,7 +2362,7 @@ msgstr "" msgid "Gateway address is invalid" msgstr "" -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:118 +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:124 msgid "Gateway metric" msgstr "" @@ -2606,7 +2617,7 @@ msgstr "" msgid "IP Protocol" msgstr "" -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:108 +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:114 msgid "IP Type" msgstr "" @@ -2669,7 +2680,7 @@ msgstr "" msgid "IPv4 network in address/netmask notation" msgstr "" -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:110 +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:116 msgid "IPv4 only" msgstr "" @@ -2701,7 +2712,7 @@ msgstr "" msgid "IPv4-in-IPv4 (RFC2003)" msgstr "" -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:109 +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:115 msgid "IPv4/IPv6 (both - defaults to IPv4)" msgstr "" @@ -2763,7 +2774,7 @@ msgstr "" msgid "IPv6 network in address/netmask notation" msgstr "" -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:111 +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:117 msgid "IPv6 only" msgstr "" @@ -3098,6 +3109,12 @@ msgstr "" msgid "Invalid argument" msgstr "" +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:46 +msgid "" +"Invalid bearer list. Possibly too many bearers created. This protocol " +"supports one and only one bearer." +msgstr "" + #: modules/luci-base/htdocs/luci-static/resources/rpc.js:405 msgid "Invalid command" msgstr "" @@ -3723,18 +3740,32 @@ msgstr "" msgid "Model" msgstr "" +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:43 +msgid "Modem bearer teardown in progress." +msgstr "" + +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:42 +msgid "" +"Modem connection in progress. Please wait. This process will timeout after 2 " +"minutes." +msgstr "" + #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:72 msgid "Modem default" msgstr "" #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:73 -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:76 +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:82 #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:61 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:73 #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:57 msgid "Modem device" msgstr "" +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:41 +msgid "Modem disconnection in progress. Please wait." +msgstr "" + #: modules/luci-compat/luasrc/model/network/proto_ncm.lua:66 #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:24 msgid "Modem information query failed" @@ -3746,7 +3777,11 @@ msgstr "" msgid "Modem init timeout" msgstr "" -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:46 +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:44 +msgid "Modem is disabled." +msgstr "" + +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:52 msgid "ModemManager" msgstr "" @@ -4041,7 +4076,7 @@ msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:159 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:183 -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:94 +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:100 msgid "None" msgstr "" @@ -4324,7 +4359,7 @@ msgstr "" #: protocols/luci-proto-hnet/htdocs/luci-static/resources/protocol/hnet.js:44 #: protocols/luci-proto-ipip/htdocs/luci-static/resources/protocol/ipip.js:53 #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dhcpv6.js:54 -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:114 +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:120 #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:158 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/l2tp.js:71 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:145 @@ -4386,12 +4421,12 @@ msgstr "" msgid "Owner" msgstr "" -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:91 +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:97 msgid "PAP/CHAP (both)" msgstr "" #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:98 -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:102 +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:108 #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:90 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/l2tp.js:45 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:89 @@ -4404,7 +4439,7 @@ msgid "PAP/CHAP password" msgstr "" #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:96 -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:97 +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:103 #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:88 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/l2tp.js:43 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:87 @@ -4425,7 +4460,7 @@ msgid "PID" msgstr "" #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:95 -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:88 +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:94 #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:87 #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:68 msgid "PIN" @@ -5391,7 +5426,6 @@ msgstr "" #: modules/luci-compat/luasrc/model/network/proto_modemmanager.lua:55 #: modules/luci-compat/luasrc/model/network/proto_qmi.lua:55 -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:42 #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:23 msgid "Setting PLMN failed" msgstr "" @@ -6410,7 +6444,6 @@ msgstr "" #: modules/luci-compat/luasrc/model/network/proto_modemmanager.lua:54 #: modules/luci-compat/luasrc/model/network/proto_qmi.lua:54 -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:41 #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:22 msgid "Unable to obtain client ID" msgstr "" @@ -6460,6 +6493,10 @@ msgstr "" msgid "Unknown" msgstr "" +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:47 +msgid "Unknown and unsupported connection method." +msgstr "" + #: modules/luci-base/htdocs/luci-static/resources/network.js:2276 #: modules/luci-compat/luasrc/model/network.lua:1138 msgid "Unknown error (%s)" diff --git a/modules/luci-base/po/hu/base.po b/modules/luci-base/po/hu/base.po index 43a008dea9..c20fb0af0d 100644 --- a/modules/luci-base/po/hu/base.po +++ b/modules/luci-base/po/hu/base.po @@ -293,7 +293,7 @@ msgid "ANSI T1.413" msgstr "ANSI T1.413" #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:94 -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:87 +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:93 #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:86 #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:67 msgid "APN" @@ -820,7 +820,7 @@ msgstr "Hitelesítési csoport" msgid "Authentication" msgstr "Hitelesítés" -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:90 +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:96 #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:70 msgid "Authentication Type" msgstr "Hitelesítés típusa" @@ -1050,7 +1050,6 @@ msgstr "Gyorsítótárazott" #: modules/luci-compat/luasrc/model/network/proto_modemmanager.lua:53 #: modules/luci-compat/luasrc/model/network/proto_qmi.lua:53 -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:40 #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:21 msgid "Call failed" msgstr "Hívás sikertelen" @@ -1335,6 +1334,10 @@ msgstr "Kapcsolódva" msgid "Connection attempt failed" msgstr "Kapcsolódási kísérlet sikertelen" +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:40 +msgid "Connection attempt failed." +msgstr "" + #: modules/luci-base/htdocs/luci-static/resources/rpc.js:414 msgid "Connection lost" msgstr "A kapcsolat elveszett" @@ -1669,6 +1672,10 @@ msgstr "Az eszköz nem aktív" msgid "Device is restarting…" msgstr "Az eszköz újraindul…" +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:45 +msgid "Device not managed by ModemManager." +msgstr "" + #: modules/luci-base/htdocs/luci-static/resources/ui.js:4122 msgid "Device unreachable!" msgstr "Az eszköz elérhetetlen!" @@ -1751,6 +1758,10 @@ msgstr "Leválasztás" msgid "Disconnection attempt failed" msgstr "Leválasztási kísérlet sikertelen" +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:48 +msgid "Disconnection attempt failed." +msgstr "" + #: modules/luci-base/htdocs/luci-static/resources/form.js:606 #: modules/luci-base/htdocs/luci-static/resources/form.js:2707 #: modules/luci-base/htdocs/luci-static/resources/ui.js:3268 @@ -2466,7 +2477,7 @@ msgstr "Átjáró portok" msgid "Gateway address is invalid" msgstr "Az átjáró címe érvénytelen" -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:118 +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:124 msgid "Gateway metric" msgstr "Átjáró mérőszáma" @@ -2725,7 +2736,7 @@ msgstr "IP-címek" msgid "IP Protocol" msgstr "IP protokoll" -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:108 +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:114 msgid "IP Type" msgstr "IP típusa" @@ -2788,7 +2799,7 @@ msgstr "IPv4 hálózati maszk" msgid "IPv4 network in address/netmask notation" msgstr "IPv4 hálózat cím/hálózati maszk jelölésben" -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:110 +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:116 msgid "IPv4 only" msgstr "Csak IPv4" @@ -2820,7 +2831,7 @@ msgstr "IPv4-átjáró" msgid "IPv4-in-IPv4 (RFC2003)" msgstr "IPv4 az IPv4-ben (RFC2003)" -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:109 +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:115 msgid "IPv4/IPv6 (both - defaults to IPv4)" msgstr "IPv4/IPv6 (mindkettő – alapértelmezetten IPv4)" @@ -2882,7 +2893,7 @@ msgstr "IPv6-átjáró" msgid "IPv6 network in address/netmask notation" msgstr "IPv6 hálózat cím/hálózati maszk jelölésben" -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:111 +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:117 msgid "IPv6 only" msgstr "Csak IPv6" @@ -3238,6 +3249,12 @@ msgstr "" msgid "Invalid argument" msgstr "Érvénytelen argumentum" +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:46 +msgid "" +"Invalid bearer list. Possibly too many bearers created. This protocol " +"supports one and only one bearer." +msgstr "" + #: modules/luci-base/htdocs/luci-static/resources/rpc.js:405 msgid "Invalid command" msgstr "Érvénytelen parancs" @@ -3888,18 +3905,32 @@ msgstr "Mód" msgid "Model" msgstr "Modell" +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:43 +msgid "Modem bearer teardown in progress." +msgstr "" + +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:42 +msgid "" +"Modem connection in progress. Please wait. This process will timeout after 2 " +"minutes." +msgstr "" + #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:72 msgid "Modem default" msgstr "Modem alapértelmezett" #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:73 -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:76 +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:82 #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:61 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:73 #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:57 msgid "Modem device" msgstr "Modemeszköz" +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:41 +msgid "Modem disconnection in progress. Please wait." +msgstr "" + #: modules/luci-compat/luasrc/model/network/proto_ncm.lua:66 #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:24 msgid "Modem information query failed" @@ -3911,7 +3942,11 @@ msgstr "A modem információinak lekérdezése nem sikerült" msgid "Modem init timeout" msgstr "Modem előkészítésének időkorlátja" -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:46 +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:44 +msgid "Modem is disabled." +msgstr "" + +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:52 msgid "ModemManager" msgstr "Modemkezelő" @@ -4208,7 +4243,7 @@ msgstr "Nincs helyettesítő karakter" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:159 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:183 -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:94 +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:100 msgid "None" msgstr "Nincs" @@ -4507,7 +4542,7 @@ msgstr "MAC-cím felülbírálása" #: protocols/luci-proto-hnet/htdocs/luci-static/resources/protocol/hnet.js:44 #: protocols/luci-proto-ipip/htdocs/luci-static/resources/protocol/ipip.js:53 #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dhcpv6.js:54 -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:114 +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:120 #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:158 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/l2tp.js:71 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:145 @@ -4571,12 +4606,12 @@ msgstr "Felülírja a meglévő „%s” fájlt?" msgid "Owner" msgstr "Tulajdonos" -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:91 +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:97 msgid "PAP/CHAP (both)" msgstr "PAP/CHAP (mindkettő)" #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:98 -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:102 +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:108 #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:90 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/l2tp.js:45 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:89 @@ -4589,7 +4624,7 @@ msgid "PAP/CHAP password" msgstr "PAP/CHAP jelszó" #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:96 -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:97 +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:103 #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:88 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/l2tp.js:43 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:87 @@ -4610,7 +4645,7 @@ msgid "PID" msgstr "PID" #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:95 -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:88 +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:94 #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:87 #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:68 msgid "PIN" @@ -5610,7 +5645,6 @@ msgstr "" #: modules/luci-compat/luasrc/model/network/proto_modemmanager.lua:55 #: modules/luci-compat/luasrc/model/network/proto_qmi.lua:55 -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:42 #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:23 msgid "Setting PLMN failed" msgstr "A PLMN beállítása nem sikerült" @@ -6727,7 +6761,6 @@ msgstr "Nem lehet betölteni a naplóadatokat:" #: modules/luci-compat/luasrc/model/network/proto_modemmanager.lua:54 #: modules/luci-compat/luasrc/model/network/proto_qmi.lua:54 -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:41 #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:22 msgid "Unable to obtain client ID" msgstr "Nem lehet beszerezni az ügyfél-azonosítót" @@ -6777,6 +6810,10 @@ msgstr "Váratlan válaszadat-formátum" msgid "Unknown" msgstr "Ismeretlen" +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:47 +msgid "Unknown and unsupported connection method." +msgstr "" + #: modules/luci-base/htdocs/luci-static/resources/network.js:2276 #: modules/luci-compat/luasrc/model/network.lua:1138 msgid "Unknown error (%s)" diff --git a/modules/luci-base/po/it/base.po b/modules/luci-base/po/it/base.po index e20aecc698..1975f0e6fc 100644 --- a/modules/luci-base/po/it/base.po +++ b/modules/luci-base/po/it/base.po @@ -293,7 +293,7 @@ msgid "ANSI T1.413" msgstr "ANSI T1.413" #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:94 -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:87 +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:93 #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:86 #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:67 msgid "APN" @@ -807,7 +807,7 @@ msgstr "" msgid "Authentication" msgstr "Autenticazione" -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:90 +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:96 #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:70 msgid "Authentication Type" msgstr "Tipo di autenticazione" @@ -1034,7 +1034,6 @@ msgstr "" #: modules/luci-compat/luasrc/model/network/proto_modemmanager.lua:53 #: modules/luci-compat/luasrc/model/network/proto_qmi.lua:53 -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:40 #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:21 msgid "Call failed" msgstr "" @@ -1302,6 +1301,10 @@ msgstr "Connesso" msgid "Connection attempt failed" msgstr "" +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:40 +msgid "Connection attempt failed." +msgstr "" + #: modules/luci-base/htdocs/luci-static/resources/rpc.js:414 msgid "Connection lost" msgstr "" @@ -1630,6 +1633,10 @@ msgstr "" msgid "Device is restarting…" msgstr "" +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:45 +msgid "Device not managed by ModemManager." +msgstr "" + #: modules/luci-base/htdocs/luci-static/resources/ui.js:4122 msgid "Device unreachable!" msgstr "Dispositivo irraggiungibile!" @@ -1712,6 +1719,10 @@ msgstr "" msgid "Disconnection attempt failed" msgstr "" +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:48 +msgid "Disconnection attempt failed." +msgstr "" + #: modules/luci-base/htdocs/luci-static/resources/form.js:606 #: modules/luci-base/htdocs/luci-static/resources/form.js:2707 #: modules/luci-base/htdocs/luci-static/resources/ui.js:3268 @@ -2413,7 +2424,7 @@ msgstr "Porte Gateway" msgid "Gateway address is invalid" msgstr "" -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:118 +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:124 msgid "Gateway metric" msgstr "" @@ -2670,7 +2681,7 @@ msgstr "Indirizzi IP" msgid "IP Protocol" msgstr "" -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:108 +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:114 msgid "IP Type" msgstr "" @@ -2733,7 +2744,7 @@ msgstr "Maschera di rete IPv4" msgid "IPv4 network in address/netmask notation" msgstr "" -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:110 +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:116 msgid "IPv4 only" msgstr "Solo IPv4" @@ -2765,7 +2776,7 @@ msgstr "" msgid "IPv4-in-IPv4 (RFC2003)" msgstr "" -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:109 +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:115 msgid "IPv4/IPv6 (both - defaults to IPv4)" msgstr "" @@ -2827,7 +2838,7 @@ msgstr "Gateway IPv6" msgid "IPv6 network in address/netmask notation" msgstr "" -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:111 +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:117 msgid "IPv6 only" msgstr "Solo IPv6" @@ -3174,6 +3185,12 @@ msgstr "ID VLAN non valido! Solo gli ID unici sono consentiti" msgid "Invalid argument" msgstr "" +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:46 +msgid "" +"Invalid bearer list. Possibly too many bearers created. This protocol " +"supports one and only one bearer." +msgstr "" + #: modules/luci-base/htdocs/luci-static/resources/rpc.js:405 msgid "Invalid command" msgstr "" @@ -3810,18 +3827,32 @@ msgstr "Modalità" msgid "Model" msgstr "Modello" +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:43 +msgid "Modem bearer teardown in progress." +msgstr "" + +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:42 +msgid "" +"Modem connection in progress. Please wait. This process will timeout after 2 " +"minutes." +msgstr "" + #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:72 msgid "Modem default" msgstr "" #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:73 -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:76 +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:82 #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:61 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:73 #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:57 msgid "Modem device" msgstr "Dispositivo modem" +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:41 +msgid "Modem disconnection in progress. Please wait." +msgstr "" + #: modules/luci-compat/luasrc/model/network/proto_ncm.lua:66 #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:24 msgid "Modem information query failed" @@ -3833,7 +3864,11 @@ msgstr "" msgid "Modem init timeout" msgstr "" -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:46 +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:44 +msgid "Modem is disabled." +msgstr "" + +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:52 msgid "ModemManager" msgstr "" @@ -4130,7 +4165,7 @@ msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:159 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:183 -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:94 +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:100 msgid "None" msgstr "Nessuno" @@ -4413,7 +4448,7 @@ msgstr "Sovrascrivi indirizzo MAC" #: protocols/luci-proto-hnet/htdocs/luci-static/resources/protocol/hnet.js:44 #: protocols/luci-proto-ipip/htdocs/luci-static/resources/protocol/ipip.js:53 #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dhcpv6.js:54 -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:114 +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:120 #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:158 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/l2tp.js:71 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:145 @@ -4477,12 +4512,12 @@ msgstr "" msgid "Owner" msgstr "Proprietario" -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:91 +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:97 msgid "PAP/CHAP (both)" msgstr "" #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:98 -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:102 +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:108 #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:90 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/l2tp.js:45 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:89 @@ -4495,7 +4530,7 @@ msgid "PAP/CHAP password" msgstr "" #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:96 -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:97 +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:103 #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:88 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/l2tp.js:43 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:87 @@ -4516,7 +4551,7 @@ msgid "PID" msgstr "PID" #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:95 -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:88 +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:94 #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:87 #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:68 msgid "PIN" @@ -5486,7 +5521,6 @@ msgstr "" #: modules/luci-compat/luasrc/model/network/proto_modemmanager.lua:55 #: modules/luci-compat/luasrc/model/network/proto_qmi.lua:55 -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:42 #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:23 msgid "Setting PLMN failed" msgstr "" @@ -6537,7 +6571,6 @@ msgstr "" #: modules/luci-compat/luasrc/model/network/proto_modemmanager.lua:54 #: modules/luci-compat/luasrc/model/network/proto_qmi.lua:54 -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:41 #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:22 msgid "Unable to obtain client ID" msgstr "" @@ -6587,6 +6620,10 @@ msgstr "" msgid "Unknown" msgstr "Sconosciuto" +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:47 +msgid "Unknown and unsupported connection method." +msgstr "" + #: modules/luci-base/htdocs/luci-static/resources/network.js:2276 #: modules/luci-compat/luasrc/model/network.lua:1138 msgid "Unknown error (%s)" diff --git a/modules/luci-base/po/ja/base.po b/modules/luci-base/po/ja/base.po index cbe3897928..8be09a2c74 100644 --- a/modules/luci-base/po/ja/base.po +++ b/modules/luci-base/po/ja/base.po @@ -293,7 +293,7 @@ msgid "ANSI T1.413" msgstr "ANSI T1.413" #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:94 -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:87 +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:93 #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:86 #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:67 msgid "APN" @@ -813,7 +813,7 @@ msgstr "認証グループ" msgid "Authentication" msgstr "認証" -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:90 +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:96 #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:70 msgid "Authentication Type" msgstr "認証タイプ" @@ -1040,7 +1040,6 @@ msgstr "キャッシュ済" #: modules/luci-compat/luasrc/model/network/proto_modemmanager.lua:53 #: modules/luci-compat/luasrc/model/network/proto_qmi.lua:53 -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:40 #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:21 msgid "Call failed" msgstr "呼び出しに失敗しました" @@ -1318,6 +1317,10 @@ msgstr "接続中" msgid "Connection attempt failed" msgstr "接続の試行が失敗しました" +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:40 +msgid "Connection attempt failed." +msgstr "" + #: modules/luci-base/htdocs/luci-static/resources/rpc.js:414 msgid "Connection lost" msgstr "接続喪失" @@ -1650,6 +1653,10 @@ msgstr "デバイスがアクティブではありません" msgid "Device is restarting…" msgstr "デバイスを再起動中…" +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:45 +msgid "Device not managed by ModemManager." +msgstr "" + #: modules/luci-base/htdocs/luci-static/resources/ui.js:4122 msgid "Device unreachable!" msgstr "デバイスに到達できません!" @@ -1732,6 +1739,10 @@ msgstr "切断" msgid "Disconnection attempt failed" msgstr "切断の試行が失敗しました" +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:48 +msgid "Disconnection attempt failed." +msgstr "" + #: modules/luci-base/htdocs/luci-static/resources/form.js:606 #: modules/luci-base/htdocs/luci-static/resources/form.js:2707 #: modules/luci-base/htdocs/luci-static/resources/ui.js:3268 @@ -2445,7 +2456,7 @@ msgstr "ゲートウェイ ポート" msgid "Gateway address is invalid" msgstr "無効なゲートウェイ アドレスです" -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:118 +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:124 msgid "Gateway metric" msgstr "" @@ -2702,7 +2713,7 @@ msgstr "IPアドレス" msgid "IP Protocol" msgstr "IP プロトコル" -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:108 +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:114 msgid "IP Type" msgstr "" @@ -2765,7 +2776,7 @@ msgstr "IPv4 ネットマスク" msgid "IPv4 network in address/netmask notation" msgstr "IPv4 ネットワーク(アドレス/ネットマスク 表記)" -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:110 +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:116 msgid "IPv4 only" msgstr "IPv4のみ" @@ -2797,7 +2808,7 @@ msgstr "IPv4 ゲートウェイ" msgid "IPv4-in-IPv4 (RFC2003)" msgstr "IPv4-in-IPv4 (RFC2003)" -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:109 +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:115 msgid "IPv4/IPv6 (both - defaults to IPv4)" msgstr "" @@ -2859,7 +2870,7 @@ msgstr "IPv6 ゲートウェイ" msgid "IPv6 network in address/netmask notation" msgstr "IPv6 ネットワーク(アドレス/ネットマスク 表記)" -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:111 +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:117 msgid "IPv6 only" msgstr "IPv6のみ" @@ -3207,6 +3218,12 @@ msgstr "無効なVLAN IDです! ユニークなIDを入力してください。" msgid "Invalid argument" msgstr "無効な引数" +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:46 +msgid "" +"Invalid bearer list. Possibly too many bearers created. This protocol " +"supports one and only one bearer." +msgstr "" + #: modules/luci-base/htdocs/luci-static/resources/rpc.js:405 msgid "Invalid command" msgstr "無効なコマンド" @@ -3849,18 +3866,32 @@ msgstr "モード" msgid "Model" msgstr "モデル" +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:43 +msgid "Modem bearer teardown in progress." +msgstr "" + +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:42 +msgid "" +"Modem connection in progress. Please wait. This process will timeout after 2 " +"minutes." +msgstr "" + #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:72 msgid "Modem default" msgstr "モデム デフォルト" #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:73 -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:76 +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:82 #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:61 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:73 #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:57 msgid "Modem device" msgstr "モデム デバイス" +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:41 +msgid "Modem disconnection in progress. Please wait." +msgstr "" + #: modules/luci-compat/luasrc/model/network/proto_ncm.lua:66 #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:24 msgid "Modem information query failed" @@ -3872,7 +3903,11 @@ msgstr "" msgid "Modem init timeout" msgstr "モデム初期化タイムアウト" -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:46 +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:44 +msgid "Modem is disabled." +msgstr "" + +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:52 msgid "ModemManager" msgstr "" @@ -4169,7 +4204,7 @@ msgstr "非ワイルドカード" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:159 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:183 -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:94 +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:100 msgid "None" msgstr "なし" @@ -4462,7 +4497,7 @@ msgstr "MACアドレスを上書きする" #: protocols/luci-proto-hnet/htdocs/luci-static/resources/protocol/hnet.js:44 #: protocols/luci-proto-ipip/htdocs/luci-static/resources/protocol/ipip.js:53 #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dhcpv6.js:54 -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:114 +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:120 #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:158 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/l2tp.js:71 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:145 @@ -4526,12 +4561,12 @@ msgstr "既存のファイル \"%s\" を上書きしますか?" msgid "Owner" msgstr "所有者" -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:91 +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:97 msgid "PAP/CHAP (both)" msgstr "" #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:98 -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:102 +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:108 #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:90 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/l2tp.js:45 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:89 @@ -4544,7 +4579,7 @@ msgid "PAP/CHAP password" msgstr "PAP/CHAP パスワード" #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:96 -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:97 +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:103 #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:88 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/l2tp.js:43 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:87 @@ -4565,7 +4600,7 @@ msgid "PID" msgstr "PID" #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:95 -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:88 +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:94 #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:87 #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:68 msgid "PIN" @@ -5555,7 +5590,6 @@ msgstr "" #: modules/luci-compat/luasrc/model/network/proto_modemmanager.lua:55 #: modules/luci-compat/luasrc/model/network/proto_qmi.lua:55 -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:42 #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:23 msgid "Setting PLMN failed" msgstr "PLMN の設定に失敗しました" @@ -6648,7 +6682,6 @@ msgstr "ログデータを読み込めません:" #: modules/luci-compat/luasrc/model/network/proto_modemmanager.lua:54 #: modules/luci-compat/luasrc/model/network/proto_qmi.lua:54 -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:41 #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:22 msgid "Unable to obtain client ID" msgstr "クライアント ID を取得できません" @@ -6698,6 +6731,10 @@ msgstr "予期しない応答データ形式" msgid "Unknown" msgstr "不明" +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:47 +msgid "Unknown and unsupported connection method." +msgstr "" + #: modules/luci-base/htdocs/luci-static/resources/network.js:2276 #: modules/luci-compat/luasrc/model/network.lua:1138 msgid "Unknown error (%s)" diff --git a/modules/luci-base/po/ko/base.po b/modules/luci-base/po/ko/base.po index e8143aeabf..e2a722f536 100644 --- a/modules/luci-base/po/ko/base.po +++ b/modules/luci-base/po/ko/base.po @@ -290,7 +290,7 @@ msgid "ANSI T1.413" msgstr "ANSI T1.413" #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:94 -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:87 +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:93 #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:86 #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:67 msgid "APN" @@ -795,7 +795,7 @@ msgstr "" msgid "Authentication" msgstr "" -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:90 +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:96 #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:70 msgid "Authentication Type" msgstr "" @@ -1020,7 +1020,6 @@ msgstr "" #: modules/luci-compat/luasrc/model/network/proto_modemmanager.lua:53 #: modules/luci-compat/luasrc/model/network/proto_qmi.lua:53 -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:40 #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:21 msgid "Call failed" msgstr "" @@ -1285,6 +1284,10 @@ msgstr "연결 시간" msgid "Connection attempt failed" msgstr "" +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:40 +msgid "Connection attempt failed." +msgstr "" + #: modules/luci-base/htdocs/luci-static/resources/rpc.js:414 msgid "Connection lost" msgstr "" @@ -1613,6 +1616,10 @@ msgstr "" msgid "Device is restarting…" msgstr "" +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:45 +msgid "Device not managed by ModemManager." +msgstr "" + #: modules/luci-base/htdocs/luci-static/resources/ui.js:4122 msgid "Device unreachable!" msgstr "" @@ -1695,6 +1702,10 @@ msgstr "" msgid "Disconnection attempt failed" msgstr "" +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:48 +msgid "Disconnection attempt failed." +msgstr "" + #: modules/luci-base/htdocs/luci-static/resources/form.js:606 #: modules/luci-base/htdocs/luci-static/resources/form.js:2707 #: modules/luci-base/htdocs/luci-static/resources/ui.js:3268 @@ -2388,7 +2399,7 @@ msgstr "" msgid "Gateway address is invalid" msgstr "" -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:118 +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:124 msgid "Gateway metric" msgstr "" @@ -2644,7 +2655,7 @@ msgstr "" msgid "IP Protocol" msgstr "" -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:108 +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:114 msgid "IP Type" msgstr "" @@ -2707,7 +2718,7 @@ msgstr "" msgid "IPv4 network in address/netmask notation" msgstr "" -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:110 +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:116 msgid "IPv4 only" msgstr "" @@ -2739,7 +2750,7 @@ msgstr "" msgid "IPv4-in-IPv4 (RFC2003)" msgstr "" -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:109 +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:115 msgid "IPv4/IPv6 (both - defaults to IPv4)" msgstr "" @@ -2801,7 +2812,7 @@ msgstr "" msgid "IPv6 network in address/netmask notation" msgstr "" -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:111 +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:117 msgid "IPv6 only" msgstr "" @@ -3136,6 +3147,12 @@ msgstr "" msgid "Invalid argument" msgstr "" +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:46 +msgid "" +"Invalid bearer list. Possibly too many bearers created. This protocol " +"supports one and only one bearer." +msgstr "" + #: modules/luci-base/htdocs/luci-static/resources/rpc.js:405 msgid "Invalid command" msgstr "" @@ -3763,18 +3780,32 @@ msgstr "" msgid "Model" msgstr "모델" +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:43 +msgid "Modem bearer teardown in progress." +msgstr "" + +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:42 +msgid "" +"Modem connection in progress. Please wait. This process will timeout after 2 " +"minutes." +msgstr "" + #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:72 msgid "Modem default" msgstr "" #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:73 -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:76 +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:82 #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:61 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:73 #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:57 msgid "Modem device" msgstr "" +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:41 +msgid "Modem disconnection in progress. Please wait." +msgstr "" + #: modules/luci-compat/luasrc/model/network/proto_ncm.lua:66 #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:24 msgid "Modem information query failed" @@ -3786,7 +3817,11 @@ msgstr "" msgid "Modem init timeout" msgstr "" -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:46 +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:44 +msgid "Modem is disabled." +msgstr "" + +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:52 msgid "ModemManager" msgstr "" @@ -4081,7 +4116,7 @@ msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:159 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:183 -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:94 +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:100 msgid "None" msgstr "" @@ -4364,7 +4399,7 @@ msgstr "MAC 주소 덮어쓰기" #: protocols/luci-proto-hnet/htdocs/luci-static/resources/protocol/hnet.js:44 #: protocols/luci-proto-ipip/htdocs/luci-static/resources/protocol/ipip.js:53 #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dhcpv6.js:54 -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:114 +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:120 #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:158 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/l2tp.js:71 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:145 @@ -4428,12 +4463,12 @@ msgstr "" msgid "Owner" msgstr "" -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:91 +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:97 msgid "PAP/CHAP (both)" msgstr "" #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:98 -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:102 +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:108 #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:90 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/l2tp.js:45 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:89 @@ -4446,7 +4481,7 @@ msgid "PAP/CHAP password" msgstr "" #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:96 -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:97 +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:103 #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:88 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/l2tp.js:43 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:87 @@ -4467,7 +4502,7 @@ msgid "PID" msgstr "" #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:95 -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:88 +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:94 #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:87 #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:68 msgid "PIN" @@ -5437,7 +5472,6 @@ msgstr "" #: modules/luci-compat/luasrc/model/network/proto_modemmanager.lua:55 #: modules/luci-compat/luasrc/model/network/proto_qmi.lua:55 -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:42 #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:23 msgid "Setting PLMN failed" msgstr "" @@ -6475,7 +6509,6 @@ msgstr "" #: modules/luci-compat/luasrc/model/network/proto_modemmanager.lua:54 #: modules/luci-compat/luasrc/model/network/proto_qmi.lua:54 -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:41 #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:22 msgid "Unable to obtain client ID" msgstr "" @@ -6525,6 +6558,10 @@ msgstr "" msgid "Unknown" msgstr "알수없음" +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:47 +msgid "Unknown and unsupported connection method." +msgstr "" + #: modules/luci-base/htdocs/luci-static/resources/network.js:2276 #: modules/luci-compat/luasrc/model/network.lua:1138 msgid "Unknown error (%s)" diff --git a/modules/luci-base/po/mr/base.po b/modules/luci-base/po/mr/base.po index 04362e9f97..cd2cd53d20 100644 --- a/modules/luci-base/po/mr/base.po +++ b/modules/luci-base/po/mr/base.po @@ -278,7 +278,7 @@ msgid "ANSI T1.413" msgstr "ANSI T1.413" #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:94 -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:87 +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:93 #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:86 #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:67 msgid "APN" @@ -781,7 +781,7 @@ msgstr "" msgid "Authentication" msgstr "" -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:90 +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:96 #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:70 msgid "Authentication Type" msgstr "" @@ -1003,7 +1003,6 @@ msgstr "" #: modules/luci-compat/luasrc/model/network/proto_modemmanager.lua:53 #: modules/luci-compat/luasrc/model/network/proto_qmi.lua:53 -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:40 #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:21 msgid "Call failed" msgstr "" @@ -1260,6 +1259,10 @@ msgstr "" msgid "Connection attempt failed" msgstr "" +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:40 +msgid "Connection attempt failed." +msgstr "" + #: modules/luci-base/htdocs/luci-static/resources/rpc.js:414 msgid "Connection lost" msgstr "" @@ -1583,6 +1586,10 @@ msgstr "" msgid "Device is restarting…" msgstr "" +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:45 +msgid "Device not managed by ModemManager." +msgstr "" + #: modules/luci-base/htdocs/luci-static/resources/ui.js:4122 msgid "Device unreachable!" msgstr "" @@ -1663,6 +1670,10 @@ msgstr "" msgid "Disconnection attempt failed" msgstr "" +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:48 +msgid "Disconnection attempt failed." +msgstr "" + #: modules/luci-base/htdocs/luci-static/resources/form.js:606 #: modules/luci-base/htdocs/luci-static/resources/form.js:2707 #: modules/luci-base/htdocs/luci-static/resources/ui.js:3268 @@ -2349,7 +2360,7 @@ msgstr "" msgid "Gateway address is invalid" msgstr "" -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:118 +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:124 msgid "Gateway metric" msgstr "" @@ -2604,7 +2615,7 @@ msgstr "" msgid "IP Protocol" msgstr "" -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:108 +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:114 msgid "IP Type" msgstr "" @@ -2667,7 +2678,7 @@ msgstr "" msgid "IPv4 network in address/netmask notation" msgstr "" -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:110 +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:116 msgid "IPv4 only" msgstr "केवळ IPv4" @@ -2699,7 +2710,7 @@ msgstr "" msgid "IPv4-in-IPv4 (RFC2003)" msgstr "" -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:109 +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:115 msgid "IPv4/IPv6 (both - defaults to IPv4)" msgstr "" @@ -2761,7 +2772,7 @@ msgstr "" msgid "IPv6 network in address/netmask notation" msgstr "" -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:111 +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:117 msgid "IPv6 only" msgstr "केवळ IPv6" @@ -3096,6 +3107,12 @@ msgstr "" msgid "Invalid argument" msgstr "" +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:46 +msgid "" +"Invalid bearer list. Possibly too many bearers created. This protocol " +"supports one and only one bearer." +msgstr "" + #: modules/luci-base/htdocs/luci-static/resources/rpc.js:405 msgid "Invalid command" msgstr "" @@ -3721,18 +3738,32 @@ msgstr "मोड" msgid "Model" msgstr "मॉडेल" +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:43 +msgid "Modem bearer teardown in progress." +msgstr "" + +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:42 +msgid "" +"Modem connection in progress. Please wait. This process will timeout after 2 " +"minutes." +msgstr "" + #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:72 msgid "Modem default" msgstr "" #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:73 -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:76 +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:82 #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:61 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:73 #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:57 msgid "Modem device" msgstr "" +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:41 +msgid "Modem disconnection in progress. Please wait." +msgstr "" + #: modules/luci-compat/luasrc/model/network/proto_ncm.lua:66 #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:24 msgid "Modem information query failed" @@ -3744,7 +3775,11 @@ msgstr "" msgid "Modem init timeout" msgstr "" -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:46 +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:44 +msgid "Modem is disabled." +msgstr "" + +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:52 msgid "ModemManager" msgstr "" @@ -4039,7 +4074,7 @@ msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:159 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:183 -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:94 +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:100 msgid "None" msgstr "एकही नाही" @@ -4322,7 +4357,7 @@ msgstr "" #: protocols/luci-proto-hnet/htdocs/luci-static/resources/protocol/hnet.js:44 #: protocols/luci-proto-ipip/htdocs/luci-static/resources/protocol/ipip.js:53 #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dhcpv6.js:54 -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:114 +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:120 #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:158 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/l2tp.js:71 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:145 @@ -4384,12 +4419,12 @@ msgstr "" msgid "Owner" msgstr "" -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:91 +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:97 msgid "PAP/CHAP (both)" msgstr "" #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:98 -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:102 +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:108 #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:90 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/l2tp.js:45 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:89 @@ -4402,7 +4437,7 @@ msgid "PAP/CHAP password" msgstr "" #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:96 -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:97 +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:103 #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:88 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/l2tp.js:43 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:87 @@ -4423,7 +4458,7 @@ msgid "PID" msgstr "" #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:95 -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:88 +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:94 #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:87 #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:68 msgid "PIN" @@ -5389,7 +5424,6 @@ msgstr "" #: modules/luci-compat/luasrc/model/network/proto_modemmanager.lua:55 #: modules/luci-compat/luasrc/model/network/proto_qmi.lua:55 -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:42 #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:23 msgid "Setting PLMN failed" msgstr "" @@ -6408,7 +6442,6 @@ msgstr "" #: modules/luci-compat/luasrc/model/network/proto_modemmanager.lua:54 #: modules/luci-compat/luasrc/model/network/proto_qmi.lua:54 -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:41 #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:22 msgid "Unable to obtain client ID" msgstr "" @@ -6458,6 +6491,10 @@ msgstr "" msgid "Unknown" msgstr "अज्ञात" +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:47 +msgid "Unknown and unsupported connection method." +msgstr "" + #: modules/luci-base/htdocs/luci-static/resources/network.js:2276 #: modules/luci-compat/luasrc/model/network.lua:1138 msgid "Unknown error (%s)" diff --git a/modules/luci-base/po/ms/base.po b/modules/luci-base/po/ms/base.po index f8de6e87c3..a078b94350 100644 --- a/modules/luci-base/po/ms/base.po +++ b/modules/luci-base/po/ms/base.po @@ -282,7 +282,7 @@ msgid "ANSI T1.413" msgstr "ANSI T1.413" #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:94 -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:87 +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:93 #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:86 #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:67 msgid "APN" @@ -785,7 +785,7 @@ msgstr "" msgid "Authentication" msgstr "Authentifizierung" -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:90 +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:96 #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:70 msgid "Authentication Type" msgstr "" @@ -1007,7 +1007,6 @@ msgstr "" #: modules/luci-compat/luasrc/model/network/proto_modemmanager.lua:53 #: modules/luci-compat/luasrc/model/network/proto_qmi.lua:53 -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:40 #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:21 msgid "Call failed" msgstr "" @@ -1264,6 +1263,10 @@ msgstr "" msgid "Connection attempt failed" msgstr "" +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:40 +msgid "Connection attempt failed." +msgstr "" + #: modules/luci-base/htdocs/luci-static/resources/rpc.js:414 msgid "Connection lost" msgstr "" @@ -1587,6 +1590,10 @@ msgstr "" msgid "Device is restarting…" msgstr "" +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:45 +msgid "Device not managed by ModemManager." +msgstr "" + #: modules/luci-base/htdocs/luci-static/resources/ui.js:4122 msgid "Device unreachable!" msgstr "" @@ -1667,6 +1674,10 @@ msgstr "" msgid "Disconnection attempt failed" msgstr "" +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:48 +msgid "Disconnection attempt failed." +msgstr "" + #: modules/luci-base/htdocs/luci-static/resources/form.js:606 #: modules/luci-base/htdocs/luci-static/resources/form.js:2707 #: modules/luci-base/htdocs/luci-static/resources/ui.js:3268 @@ -2359,7 +2370,7 @@ msgstr "" msgid "Gateway address is invalid" msgstr "" -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:118 +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:124 msgid "Gateway metric" msgstr "" @@ -2616,7 +2627,7 @@ msgstr "" msgid "IP Protocol" msgstr "" -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:108 +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:114 msgid "IP Type" msgstr "" @@ -2679,7 +2690,7 @@ msgstr "" msgid "IPv4 network in address/netmask notation" msgstr "" -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:110 +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:116 msgid "IPv4 only" msgstr "" @@ -2711,7 +2722,7 @@ msgstr "" msgid "IPv4-in-IPv4 (RFC2003)" msgstr "" -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:109 +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:115 msgid "IPv4/IPv6 (both - defaults to IPv4)" msgstr "" @@ -2773,7 +2784,7 @@ msgstr "" msgid "IPv6 network in address/netmask notation" msgstr "" -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:111 +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:117 msgid "IPv6 only" msgstr "" @@ -3113,6 +3124,12 @@ msgstr "" msgid "Invalid argument" msgstr "" +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:46 +msgid "" +"Invalid bearer list. Possibly too many bearers created. This protocol " +"supports one and only one bearer." +msgstr "" + #: modules/luci-base/htdocs/luci-static/resources/rpc.js:405 msgid "Invalid command" msgstr "" @@ -3742,18 +3759,32 @@ msgstr "Mode" msgid "Model" msgstr "" +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:43 +msgid "Modem bearer teardown in progress." +msgstr "" + +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:42 +msgid "" +"Modem connection in progress. Please wait. This process will timeout after 2 " +"minutes." +msgstr "" + #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:72 msgid "Modem default" msgstr "" #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:73 -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:76 +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:82 #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:61 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:73 #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:57 msgid "Modem device" msgstr "Alat modem" +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:41 +msgid "Modem disconnection in progress. Please wait." +msgstr "" + #: modules/luci-compat/luasrc/model/network/proto_ncm.lua:66 #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:24 msgid "Modem information query failed" @@ -3765,7 +3796,11 @@ msgstr "" msgid "Modem init timeout" msgstr "" -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:46 +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:44 +msgid "Modem is disabled." +msgstr "" + +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:52 msgid "ModemManager" msgstr "" @@ -4062,7 +4097,7 @@ msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:159 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:183 -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:94 +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:100 msgid "None" msgstr "" @@ -4345,7 +4380,7 @@ msgstr "" #: protocols/luci-proto-hnet/htdocs/luci-static/resources/protocol/hnet.js:44 #: protocols/luci-proto-ipip/htdocs/luci-static/resources/protocol/ipip.js:53 #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dhcpv6.js:54 -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:114 +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:120 #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:158 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/l2tp.js:71 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:145 @@ -4407,12 +4442,12 @@ msgstr "" msgid "Owner" msgstr "Pemilik" -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:91 +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:97 msgid "PAP/CHAP (both)" msgstr "" #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:98 -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:102 +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:108 #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:90 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/l2tp.js:45 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:89 @@ -4425,7 +4460,7 @@ msgid "PAP/CHAP password" msgstr "" #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:96 -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:97 +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:103 #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:88 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/l2tp.js:43 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:87 @@ -4446,7 +4481,7 @@ msgid "PID" msgstr "PID" #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:95 -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:88 +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:94 #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:87 #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:68 msgid "PIN" @@ -5415,7 +5450,6 @@ msgstr "" #: modules/luci-compat/luasrc/model/network/proto_modemmanager.lua:55 #: modules/luci-compat/luasrc/model/network/proto_qmi.lua:55 -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:42 #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:23 msgid "Setting PLMN failed" msgstr "" @@ -6448,7 +6482,6 @@ msgstr "" #: modules/luci-compat/luasrc/model/network/proto_modemmanager.lua:54 #: modules/luci-compat/luasrc/model/network/proto_qmi.lua:54 -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:41 #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:22 msgid "Unable to obtain client ID" msgstr "" @@ -6498,6 +6531,10 @@ msgstr "" msgid "Unknown" msgstr "" +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:47 +msgid "Unknown and unsupported connection method." +msgstr "" + #: modules/luci-base/htdocs/luci-static/resources/network.js:2276 #: modules/luci-compat/luasrc/model/network.lua:1138 msgid "Unknown error (%s)" diff --git a/modules/luci-base/po/nb_NO/base.po b/modules/luci-base/po/nb_NO/base.po index 209045dde9..d56b7f15fc 100644 --- a/modules/luci-base/po/nb_NO/base.po +++ b/modules/luci-base/po/nb_NO/base.po @@ -286,7 +286,7 @@ msgid "ANSI T1.413" msgstr "ANSI T1.413" #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:94 -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:87 +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:93 #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:86 #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:67 msgid "APN" @@ -796,7 +796,7 @@ msgstr "" msgid "Authentication" msgstr "Godkjenning" -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:90 +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:96 #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:70 msgid "Authentication Type" msgstr "" @@ -1021,7 +1021,6 @@ msgstr "" #: modules/luci-compat/luasrc/model/network/proto_modemmanager.lua:53 #: modules/luci-compat/luasrc/model/network/proto_qmi.lua:53 -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:40 #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:21 msgid "Call failed" msgstr "" @@ -1288,6 +1287,10 @@ msgstr "Tilkoblet" msgid "Connection attempt failed" msgstr "" +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:40 +msgid "Connection attempt failed." +msgstr "" + #: modules/luci-base/htdocs/luci-static/resources/rpc.js:414 msgid "Connection lost" msgstr "" @@ -1615,6 +1618,10 @@ msgstr "" msgid "Device is restarting…" msgstr "" +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:45 +msgid "Device not managed by ModemManager." +msgstr "" + #: modules/luci-base/htdocs/luci-static/resources/ui.js:4122 msgid "Device unreachable!" msgstr "" @@ -1697,6 +1704,10 @@ msgstr "" msgid "Disconnection attempt failed" msgstr "" +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:48 +msgid "Disconnection attempt failed." +msgstr "" + #: modules/luci-base/htdocs/luci-static/resources/form.js:606 #: modules/luci-base/htdocs/luci-static/resources/form.js:2707 #: modules/luci-base/htdocs/luci-static/resources/ui.js:3268 @@ -2398,7 +2409,7 @@ msgstr "Gateway porter" msgid "Gateway address is invalid" msgstr "" -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:118 +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:124 msgid "Gateway metric" msgstr "" @@ -2656,7 +2667,7 @@ msgstr "" msgid "IP Protocol" msgstr "" -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:108 +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:114 msgid "IP Type" msgstr "" @@ -2719,7 +2730,7 @@ msgstr "IPv4 nettmaske" msgid "IPv4 network in address/netmask notation" msgstr "" -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:110 +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:116 msgid "IPv4 only" msgstr "Kun IPv4" @@ -2751,7 +2762,7 @@ msgstr "" msgid "IPv4-in-IPv4 (RFC2003)" msgstr "" -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:109 +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:115 msgid "IPv4/IPv6 (both - defaults to IPv4)" msgstr "" @@ -2813,7 +2824,7 @@ msgstr "IPv6 gateway" msgid "IPv6 network in address/netmask notation" msgstr "" -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:111 +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:117 msgid "IPv6 only" msgstr "Kun IPv6" @@ -3152,6 +3163,12 @@ msgstr "Ugyldig VLAN ID gitt! Bare unike ID'er er tillatt" msgid "Invalid argument" msgstr "" +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:46 +msgid "" +"Invalid bearer list. Possibly too many bearers created. This protocol " +"supports one and only one bearer." +msgstr "" + #: modules/luci-base/htdocs/luci-static/resources/rpc.js:405 msgid "Invalid command" msgstr "" @@ -3788,18 +3805,32 @@ msgstr "Modus" msgid "Model" msgstr "" +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:43 +msgid "Modem bearer teardown in progress." +msgstr "" + +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:42 +msgid "" +"Modem connection in progress. Please wait. This process will timeout after 2 " +"minutes." +msgstr "" + #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:72 msgid "Modem default" msgstr "" #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:73 -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:76 +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:82 #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:61 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:73 #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:57 msgid "Modem device" msgstr "Modem" +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:41 +msgid "Modem disconnection in progress. Please wait." +msgstr "" + #: modules/luci-compat/luasrc/model/network/proto_ncm.lua:66 #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:24 msgid "Modem information query failed" @@ -3811,7 +3842,11 @@ msgstr "" msgid "Modem init timeout" msgstr "Modem initiering tidsavbrudd" -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:46 +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:44 +msgid "Modem is disabled." +msgstr "" + +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:52 msgid "ModemManager" msgstr "" @@ -4108,7 +4143,7 @@ msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:159 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:183 -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:94 +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:100 msgid "None" msgstr "Ingen" @@ -4391,7 +4426,7 @@ msgstr "Overstyr MAC adresse" #: protocols/luci-proto-hnet/htdocs/luci-static/resources/protocol/hnet.js:44 #: protocols/luci-proto-ipip/htdocs/luci-static/resources/protocol/ipip.js:53 #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dhcpv6.js:54 -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:114 +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:120 #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:158 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/l2tp.js:71 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:145 @@ -4455,12 +4490,12 @@ msgstr "" msgid "Owner" msgstr "Eier" -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:91 +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:97 msgid "PAP/CHAP (both)" msgstr "" #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:98 -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:102 +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:108 #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:90 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/l2tp.js:45 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:89 @@ -4473,7 +4508,7 @@ msgid "PAP/CHAP password" msgstr "PAP/CHAP passord" #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:96 -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:97 +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:103 #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:88 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/l2tp.js:43 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:87 @@ -4494,7 +4529,7 @@ msgid "PID" msgstr "PID" #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:95 -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:88 +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:94 #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:87 #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:68 msgid "PIN" @@ -5468,7 +5503,6 @@ msgstr "" #: modules/luci-compat/luasrc/model/network/proto_modemmanager.lua:55 #: modules/luci-compat/luasrc/model/network/proto_qmi.lua:55 -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:42 #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:23 msgid "Setting PLMN failed" msgstr "" @@ -6529,7 +6563,6 @@ msgstr "" #: modules/luci-compat/luasrc/model/network/proto_modemmanager.lua:54 #: modules/luci-compat/luasrc/model/network/proto_qmi.lua:54 -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:41 #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:22 msgid "Unable to obtain client ID" msgstr "" @@ -6579,6 +6612,10 @@ msgstr "" msgid "Unknown" msgstr "Ukjent" +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:47 +msgid "Unknown and unsupported connection method." +msgstr "" + #: modules/luci-base/htdocs/luci-static/resources/network.js:2276 #: modules/luci-compat/luasrc/model/network.lua:1138 msgid "Unknown error (%s)" diff --git a/modules/luci-base/po/pl/base.po b/modules/luci-base/po/pl/base.po index 7d6e0f070a..f6c9bd4b7d 100644 --- a/modules/luci-base/po/pl/base.po +++ b/modules/luci-base/po/pl/base.po @@ -293,7 +293,7 @@ msgid "ANSI T1.413" msgstr "ANSI T1.413" #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:94 -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:87 +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:93 #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:86 #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:67 msgid "APN" @@ -822,7 +822,7 @@ msgstr "Grupa autoryzacji" msgid "Authentication" msgstr "Uwierzytelnienie" -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:90 +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:96 #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:70 msgid "Authentication Type" msgstr "Typ uwierzytelniania" @@ -1051,7 +1051,6 @@ msgstr "Podręczna" #: modules/luci-compat/luasrc/model/network/proto_modemmanager.lua:53 #: modules/luci-compat/luasrc/model/network/proto_qmi.lua:53 -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:40 #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:21 msgid "Call failed" msgstr "Połączenie nieudane" @@ -1333,6 +1332,10 @@ msgstr "Połączony" msgid "Connection attempt failed" msgstr "Próba połączenia nieudana" +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:40 +msgid "Connection attempt failed." +msgstr "" + #: modules/luci-base/htdocs/luci-static/resources/rpc.js:414 msgid "Connection lost" msgstr "Utrata połączenia" @@ -1667,6 +1670,10 @@ msgstr "Urządzenie nieaktywne" msgid "Device is restarting…" msgstr "Urządzenie jest restartowane…" +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:45 +msgid "Device not managed by ModemManager." +msgstr "" + #: modules/luci-base/htdocs/luci-static/resources/ui.js:4122 msgid "Device unreachable!" msgstr "Urządzenie nieosiągalne!" @@ -1749,6 +1756,10 @@ msgstr "Rozłącz" msgid "Disconnection attempt failed" msgstr "Próba rozłączenia nie powiodła się" +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:48 +msgid "Disconnection attempt failed." +msgstr "" + #: modules/luci-base/htdocs/luci-static/resources/form.js:606 #: modules/luci-base/htdocs/luci-static/resources/form.js:2707 #: modules/luci-base/htdocs/luci-static/resources/ui.js:3268 @@ -2471,7 +2482,7 @@ msgstr "Porty bramy" msgid "Gateway address is invalid" msgstr "Adres bramy jest nieprawidłowy" -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:118 +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:124 msgid "Gateway metric" msgstr "Brama metryczna" @@ -2730,7 +2741,7 @@ msgstr "Adres IP" msgid "IP Protocol" msgstr "Protokół IP" -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:108 +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:114 msgid "IP Type" msgstr "Typ IP" @@ -2793,7 +2804,7 @@ msgstr "Maska IPv4" msgid "IPv4 network in address/netmask notation" msgstr "Zapis adresu/maski w sieci IPv4" -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:110 +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:116 msgid "IPv4 only" msgstr "Tylko IPv4" @@ -2825,7 +2836,7 @@ msgstr "Brama IPv4" msgid "IPv4-in-IPv4 (RFC2003)" msgstr "IPv4-in-IPv4 (RFC2003)" -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:109 +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:115 msgid "IPv4/IPv6 (both - defaults to IPv4)" msgstr "IPv4/IPv6 (oba - domyślnie IPv4)" @@ -2887,7 +2898,7 @@ msgstr "Brama IPv6" msgid "IPv6 network in address/netmask notation" msgstr "Zapis adresu/maski w sieci IPv6" -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:111 +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:117 msgid "IPv6 only" msgstr "Tylko IPv6" @@ -3237,6 +3248,12 @@ msgstr "Podano niewłaściwy ID VLAN`u! Dozwolone są tylko unikalne ID" msgid "Invalid argument" msgstr "Błędny argument" +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:46 +msgid "" +"Invalid bearer list. Possibly too many bearers created. This protocol " +"supports one and only one bearer." +msgstr "" + #: modules/luci-base/htdocs/luci-static/resources/rpc.js:405 msgid "Invalid command" msgstr "Nieprawidłowe polecenie" @@ -3885,18 +3902,32 @@ msgstr "Tryb" msgid "Model" msgstr "Model" +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:43 +msgid "Modem bearer teardown in progress." +msgstr "" + +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:42 +msgid "" +"Modem connection in progress. Please wait. This process will timeout after 2 " +"minutes." +msgstr "" + #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:72 msgid "Modem default" msgstr "Domyślny modem" #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:73 -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:76 +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:82 #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:61 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:73 #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:57 msgid "Modem device" msgstr "Urządzenie modemowe" +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:41 +msgid "Modem disconnection in progress. Please wait." +msgstr "" + #: modules/luci-compat/luasrc/model/network/proto_ncm.lua:66 #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:24 msgid "Modem information query failed" @@ -3908,7 +3939,11 @@ msgstr "Zapytanie dotyczące modemu nie powiodło się" msgid "Modem init timeout" msgstr "Limit czasu inicjacji modemu" -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:46 +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:44 +msgid "Modem is disabled." +msgstr "" + +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:52 msgid "ModemManager" msgstr "Menedżer modemu" @@ -4205,7 +4240,7 @@ msgstr "Bez symboli wieloznacznych" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:159 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:183 -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:94 +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:100 msgid "None" msgstr "Brak" @@ -4504,7 +4539,7 @@ msgstr "Nadpisz adres MAC" #: protocols/luci-proto-hnet/htdocs/luci-static/resources/protocol/hnet.js:44 #: protocols/luci-proto-ipip/htdocs/luci-static/resources/protocol/ipip.js:53 #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dhcpv6.js:54 -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:114 +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:120 #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:158 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/l2tp.js:71 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:145 @@ -4568,12 +4603,12 @@ msgstr "Nadpisać istniejący plik \"%s\" ?" msgid "Owner" msgstr "Właściciel" -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:91 +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:97 msgid "PAP/CHAP (both)" msgstr "PAP/CHAP (oba)" #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:98 -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:102 +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:108 #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:90 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/l2tp.js:45 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:89 @@ -4586,7 +4621,7 @@ msgid "PAP/CHAP password" msgstr "Hasło PAP/CHAP" #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:96 -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:97 +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:103 #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:88 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/l2tp.js:43 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:87 @@ -4607,7 +4642,7 @@ msgid "PID" msgstr "PID" #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:95 -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:88 +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:94 #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:87 #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:68 msgid "PIN" @@ -5609,7 +5644,6 @@ msgstr "Ustaw na pierwszego niewolnika dodanego do wiązania (wykonaj 2)" #: modules/luci-compat/luasrc/model/network/proto_modemmanager.lua:55 #: modules/luci-compat/luasrc/model/network/proto_qmi.lua:55 -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:42 #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:23 msgid "Setting PLMN failed" msgstr "Ustawienie PLMN nie powiodło się" @@ -6753,7 +6787,6 @@ msgstr "Nie można załadować danych dziennika:" #: modules/luci-compat/luasrc/model/network/proto_modemmanager.lua:54 #: modules/luci-compat/luasrc/model/network/proto_qmi.lua:54 -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:41 #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:22 msgid "Unable to obtain client ID" msgstr "Nie można uzyskać ID klienta" @@ -6803,6 +6836,10 @@ msgstr "Nieprzewidziany format danych odpowiedzi" msgid "Unknown" msgstr "Nieznany" +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:47 +msgid "Unknown and unsupported connection method." +msgstr "" + #: modules/luci-base/htdocs/luci-static/resources/network.js:2276 #: modules/luci-compat/luasrc/model/network.lua:1138 msgid "Unknown error (%s)" diff --git a/modules/luci-base/po/pt/base.po b/modules/luci-base/po/pt/base.po index 24d29036c9..4c3e2159ae 100644 --- a/modules/luci-base/po/pt/base.po +++ b/modules/luci-base/po/pt/base.po @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2009-05-26 19:03+0200\n" -"PO-Revision-Date: 2020-07-11 21:29+0000\n" +"PO-Revision-Date: 2020-07-19 09:43+0000\n" "Last-Translator: ssantos <ssantos@web.de>\n" "Language-Team: Portuguese <https://hosted.weblate.org/projects/openwrt/luci/" "pt/>\n" @@ -95,7 +95,7 @@ msgstr "-- por favor selecione --" #: protocols/luci-proto-sstp/htdocs/luci-static/resources/protocol/sstp.js:54 msgctxt "sstp log level value" msgid "0" -msgstr "" +msgstr "0" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:939 msgid "0 = not using RSSI threshold, 1 = do not change driver default" @@ -105,7 +105,7 @@ msgstr "" #: protocols/luci-proto-sstp/htdocs/luci-static/resources/protocol/sstp.js:55 msgctxt "sstp log level value" msgid "1" -msgstr "" +msgstr "1" #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/load.js:231 msgid "1 Minute Load:" @@ -118,17 +118,17 @@ msgstr "Carga de 15 minutos:" #: protocols/luci-proto-sstp/htdocs/luci-static/resources/protocol/sstp.js:56 msgctxt "sstp log level value" msgid "2" -msgstr "" +msgstr "2" #: protocols/luci-proto-sstp/htdocs/luci-static/resources/protocol/sstp.js:57 msgctxt "sstp log level value" msgid "3" -msgstr "" +msgstr "3" #: protocols/luci-proto-sstp/htdocs/luci-static/resources/protocol/sstp.js:58 msgctxt "sstp log level value" msgid "4" -msgstr "" +msgstr "4" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1442 msgid "4-character hexadecimal ID" @@ -300,7 +300,7 @@ msgid "ANSI T1.413" msgstr "ANSI T1.413" #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:94 -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:87 +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:93 #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:86 #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:67 msgid "APN" @@ -313,23 +313,23 @@ msgstr "ARP" #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:365 msgid "ARP IP Targets" -msgstr "" +msgstr "Alvos do IP ARP" #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:357 msgid "ARP Interval" -msgstr "" +msgstr "Intervalo do ARP" #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:381 msgid "ARP Validation" -msgstr "" +msgstr "Validação do ARP" #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:373 msgid "ARP mode to consider a slave as being up" -msgstr "" +msgstr "Modo ARP a ser considerado como um escravo ativo" #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:77 msgid "ARP monitoring is not supported for the selected policy!" -msgstr "" +msgstr "O monitoramento ARP não é compatível com a política selecionada!" #: protocols/luci-proto-relay/htdocs/luci-static/resources/protocol/relay.js:175 msgid "ARP retry threshold" @@ -417,7 +417,7 @@ msgstr "Concessões DHCPv6 Ativas" #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:203 msgid "Active-Backup policy (active-backup, 1)" -msgstr "" +msgstr "Política de Backup Ativo (backup ativo, 1)" #: modules/luci-base/htdocs/luci-static/resources/network.js:3650 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:929 @@ -427,11 +427,11 @@ msgstr "Ad-Hoc" #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:208 msgid "Adaptive load balancing (balance-alb, 6)" -msgstr "" +msgstr "Balanceamento de carga adaptável (balanço-alb, 6)" #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:207 msgid "Adaptive transmit load balancing (balance-tlb, 5)" -msgstr "" +msgstr "Balanceamento adaptativo da carga de transmissão (balanço-tlb, 5)" #: modules/luci-base/htdocs/luci-static/resources/form.js:2013 #: modules/luci-base/htdocs/luci-static/resources/form.js:2016 @@ -541,21 +541,26 @@ msgstr "" #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:258 msgid "Aggregation Selection Logic" -msgstr "" +msgstr "Lógica da Seleção de Agregação" #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:261 msgid "Aggregator: All slaves down or has no slaves (stable, 0)" msgstr "" +"Agregador: Todos os escravos foram derrubados ou não há escravos (estável, 0)" #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:263 msgid "" "Aggregator: Chosen by the largest number of ports + slave added/removed or " "state changes (count, 2)" msgstr "" +"Agregador: Escolhido pelo maior quantidade de portas + escravo adicionado/" +"removido ou alterações da condição (contagem, 2)" #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:262 msgid "Aggregator: Slave added/removed or state changes (bandwidth, 1)" msgstr "" +"Agregador: Escravo adicionado/removido ou houve alteração da condição " +"(largura de banda, 1)" #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:171 msgid "Alert" @@ -603,7 +608,7 @@ msgstr "Permitir todos, excepto os listados" #: modules/luci-compat/root/usr/share/rpcd/acl.d/luci-compat.json:3 msgid "Allow full UCI access for legacy applications" -msgstr "Conceder acesso UCI total a aplicativos herdados" +msgstr "Conceder acesso UCI total a aplicações herdadas" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:892 msgid "Allow legacy 802.11b rates" @@ -650,7 +655,7 @@ msgstr "Endereços IP autorizados" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:654 msgid "Always announce default router" -msgstr "Anunciar sempre o router padrão" +msgstr "Anunciar sempre o router predefinido" #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/led-trigger/none.js:5 msgid "Always off (kernel: none)" @@ -736,8 +741,7 @@ msgstr "Anexo M G.992.5" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:654 msgid "Announce as default router even if no public prefix is available." msgstr "" -"Anunciar-se como router padrão mesmo se não existir um prefixo público " -"disponível." +"Anunciar-se como gateway mesmo se não existir um prefixo público disponível." #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:659 msgid "Announced DNS domains" @@ -825,7 +829,7 @@ msgstr "Grupo de Autenticação" msgid "Authentication" msgstr "Autenticação" -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:90 +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:96 #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:70 msgid "Authentication Type" msgstr "Tipo de Autenticação" @@ -971,7 +975,7 @@ msgid "" "linux default)" msgstr "" "Ligar dinamicamente a interfaces ao invés de endereços wildcard (recomendado " -"como padrão do Linux)" +"como predefinição do Linux)" #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:52 #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:57 @@ -1005,7 +1009,7 @@ msgstr "Substituir Domínios NX Falsos" #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:199 msgid "Bonding Policy" -msgstr "" +msgstr "Política do Vínculo" #: modules/luci-base/htdocs/luci-static/resources/network.js:2861 #: modules/luci-compat/luasrc/model/network.lua:1421 @@ -1027,7 +1031,7 @@ msgstr "Ativar com o arranque" #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:205 msgid "Broadcast policy (broadcast, 3)" -msgstr "" +msgstr "Política de divulgação (transmissão, 3)" #: modules/luci-base/htdocs/luci-static/resources/ui.js:2769 #: modules/luci-base/htdocs/luci-static/resources/ui.js:3758 @@ -1057,7 +1061,6 @@ msgstr "Em cache" #: modules/luci-compat/luasrc/model/network/proto_modemmanager.lua:53 #: modules/luci-compat/luasrc/model/network/proto_qmi.lua:53 -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:40 #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:21 msgid "Call failed" msgstr "A chamada falhou" @@ -1302,7 +1305,7 @@ msgstr "" #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:93 #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:98 msgid "Compute outgoing checksum (optional)." -msgstr "" +msgstr "Cálculo do checksum de saída (opcional)." #: modules/luci-base/htdocs/luci-static/resources/ui.js:3987 #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:421 @@ -1340,6 +1343,10 @@ msgstr "Ligada" msgid "Connection attempt failed" msgstr "A tentativa de ligação falhou" +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:40 +msgid "Connection attempt failed." +msgstr "A tentativa de ligação falhou." + #: modules/luci-base/htdocs/luci-static/resources/rpc.js:414 msgid "Connection lost" msgstr "Ligação perdida" @@ -1351,10 +1358,14 @@ msgstr "Ligações" #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:377 msgid "Consider the slave up when all ARP IP targets are reachable (all, 1)" msgstr "" +"Considere o escravo ativo quando todos os destinos IP do ARP estiverem " +"acessíveis (todos, 1)" #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:376 msgid "Consider the slave up when any ARP IP target is reachable (any, 0)" msgstr "" +"Considere o escravo ativo quando qualquer alvo IP ARP estiver acessível " +"(qualquer, 0)" #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/crontab.js:18 #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:340 @@ -1557,7 +1568,7 @@ msgstr "Depurar" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1343 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1358 msgid "Default %d" -msgstr "Padrão %d" +msgstr "Predefinição %d" #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:107 msgid "Default Route" @@ -1576,7 +1587,7 @@ msgstr "Gateway predefinido" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:646 msgid "Default is stateless + stateful" -msgstr "O padrão é sem estado + com estado" +msgstr "A predefinição é sem estado + com estado" #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/led-trigger/default-on.js:11 msgid "Default state" @@ -1640,7 +1651,7 @@ msgstr "Destino" #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:48 msgid "Destination port" -msgstr "" +msgstr "Porta de destino" #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:59 #: modules/luci-base/htdocs/luci-static/resources/tools/widgets.js:165 @@ -1674,6 +1685,10 @@ msgstr "O aparelho não está ativo" msgid "Device is restarting…" msgstr "O aparelho está a reiniciar…" +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:45 +msgid "Device not managed by ModemManager." +msgstr "Aparelho não gerido pelo ModemManager." + #: modules/luci-base/htdocs/luci-static/resources/ui.js:4122 msgid "Device unreachable!" msgstr "Aparelho não alcançável!" @@ -1756,6 +1771,10 @@ msgstr "Desconectar" msgid "Disconnection attempt failed" msgstr "A tentativa de desconexão falhou" +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:48 +msgid "Disconnection attempt failed." +msgstr "A tentativa de desconexão falhou." + #: modules/luci-base/htdocs/luci-static/resources/form.js:606 #: modules/luci-base/htdocs/luci-static/resources/form.js:2707 #: modules/luci-base/htdocs/luci-static/resources/ui.js:3268 @@ -1795,7 +1814,7 @@ msgstr "Não por respostas negativas em cache, p.e. para domínios inexistentes" #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:81 #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:86 msgid "Do not create host route to peer (optional)." -msgstr "" +msgstr "Não crie a rota do host para o peer (opcional)." #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:219 msgid "Do not forward requests that cannot be answered by public name servers" @@ -1851,7 +1870,7 @@ msgstr "Abaixo" #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:402 msgid "Down Delay" -msgstr "" +msgstr "Atraso de Descida" #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:366 msgid "Download backup" @@ -1873,7 +1892,7 @@ msgstr "Arraste para reordenar" #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:341 msgid "Drop Duplicate Frames" -msgstr "" +msgstr "Descartar Quadros Duplicados" #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/dropbear.js:12 msgid "Dropbear Instance" @@ -1972,7 +1991,7 @@ msgstr "Ativar pesquisas de DNS" #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:292 msgid "Enable Dynamic Shuffling Of Flows" -msgstr "" +msgstr "Ativar o Embaralhamento Dinâmico do Flows" #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6in4.js:60 msgid "Enable HE.net dynamic endpoint update" @@ -2041,7 +2060,7 @@ msgstr "" #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:80 #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:75 msgid "Enable rx checksum" -msgstr "" +msgstr "Ativar o checksum no rx" #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:76 #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:81 @@ -2056,7 +2075,7 @@ msgstr "Ativar esta rede" #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:84 #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:79 msgid "Enable tx checksum" -msgstr "" +msgstr "Ativar o checksum no tx" #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:243 #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:352 @@ -2144,11 +2163,11 @@ msgstr "Switch Ethernet" #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:270 msgid "Every 30 seconds (slow, 0)" -msgstr "" +msgstr "A cada 30 segundos (lento, 0)" #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:271 msgid "Every second (fast, 1)" -msgstr "" +msgstr "A cada segundo (rápido, 1)" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:399 msgid "Exclude interfaces" @@ -2172,11 +2191,11 @@ msgstr "À espera de uma dica de atribuição hexadecimal" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:132 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:136 msgid "Expecting: %s" -msgstr "À espera de: %s" +msgstr "Esperando: %s" #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:48 msgid "Expecting: non-empty value" -msgstr "" +msgstr "Esperando: um valor não vazio" #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:50 msgid "Expires" @@ -2218,11 +2237,11 @@ msgstr "Opções adicionais do comando SSH" #: protocols/luci-proto-sstp/htdocs/luci-static/resources/protocol/sstp.js:83 msgid "Extra pppd options" -msgstr "" +msgstr "Opções adicionais do pppd" #: protocols/luci-proto-sstp/htdocs/luci-static/resources/protocol/sstp.js:81 msgid "Extra sstpc options" -msgstr "" +msgstr "Opções extras do sstpc" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1456 msgid "FT over DS" @@ -2281,15 +2300,18 @@ msgstr "Filtrar inúteis" #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:388 msgid "Filtering for all slaves, no validation" -msgstr "" +msgstr "Filtragem para todos os escravos, sem validação" #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:389 msgid "Filtering for all slaves, validation only for active slave" msgstr "" +"Filtragem para todos os escravos, validação apenas para o escravo que esteja " +"ativo" #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:390 msgid "Filtering for all slaves, validation only for backup slaves" msgstr "" +"Filtragem para todos os escravos, validação apenas para os escravos de backup" #: modules/luci-compat/luasrc/model/network/proto_ncm.lua:65 #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:23 @@ -2302,7 +2324,8 @@ msgid "" "with defaults based on what was detected" msgstr "" "Encontre todos os sistemas de ficheiros e swap atualmente conectados e " -"substitua a configuração com valores padrão baseados no que foi detetado" +"substitua a configuração com valores predefinidos baseados no que foi " +"detetado" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:820 msgid "Find and join network" @@ -2449,19 +2472,19 @@ msgstr "Só GPRS" #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:10 msgid "GRE tunnel over IPv4" -msgstr "" +msgstr "Túnel GRE sobre IPv4" #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:10 msgid "GRE tunnel over IPv6" -msgstr "" +msgstr "Túnel GRE sobre IPv6" #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:10 msgid "GRETAP tunnel over IPv4" -msgstr "" +msgstr "Túnel GRETAP sobre IPv4" #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:10 msgid "GRETAP tunnel over IPv6" -msgstr "" +msgstr "Túnel GRETAP sobre IPv6" #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:44 msgid "Gateway" @@ -2476,7 +2499,7 @@ msgstr "Portas de gateway" msgid "Gateway address is invalid" msgstr "O endereço do gateway é inválido" -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:118 +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:124 msgid "Gateway metric" msgstr "Métrica de Gateway" @@ -2533,7 +2556,7 @@ msgstr "Ir para a configuração da palavra-passe…" #: modules/luci-compat/luasrc/view/cbi/full_valueheader.htm:4 #: modules/luci-compat/luasrc/view/cbi/tblsection.htm:58 msgid "Go to relevant configuration page" -msgstr "Ir para a página respectiva de configuração" +msgstr "Ir para a página respetiva de configuração" #: modules/luci-mod-network/root/usr/share/rpcd/acl.d/luci-mod-network.json:33 msgid "Grant access to DHCP configuration" @@ -2720,11 +2743,11 @@ msgstr "Híbrido" #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:53 #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:48 msgid "ID used to uniquely identify the VXLAN" -msgstr "" +msgstr "O ID utilizado para identificar de forma única o VXLAN" #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:206 msgid "IEEE 802.3ad Dynamic link aggregation (802.3ad, 4)" -msgstr "" +msgstr "Agregação de link dinâmico IEEE 802.3ad (802.3ad, 4)" #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:75 msgid "IKE DH Group" @@ -2738,7 +2761,7 @@ msgstr "Endereços IP" msgid "IP Protocol" msgstr "Protocolo IP" -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:108 +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:114 msgid "IP Type" msgstr "Tipo de IP" @@ -2801,7 +2824,7 @@ msgstr "Máscara IPv4" msgid "IPv4 network in address/netmask notation" msgstr "Rede IPv4 em notação endereço/máscara de rede" -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:110 +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:116 msgid "IPv4 only" msgstr "Só IPv4" @@ -2833,9 +2856,9 @@ msgstr "Gateway de IPv4" msgid "IPv4-in-IPv4 (RFC2003)" msgstr "IPv4-in-IPv4 (RFC2003)" -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:109 +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:115 msgid "IPv4/IPv6 (both - defaults to IPv4)" -msgstr "IPv4/IPv6 (ambos - padrão é IPv4)" +msgstr "IPv4/IPv6 (ambos - predefinição é IPv4)" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/diagnostics.js:80 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/diagnostics.js:103 @@ -2895,7 +2918,7 @@ msgstr "Gateway IPv6" msgid "IPv6 network in address/netmask notation" msgstr "Rede IPv6 em notação endereço/máscara de rede" -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:111 +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:117 msgid "IPv6 only" msgstr "Só IPv6" @@ -2920,7 +2943,7 @@ msgstr "Sufixo IPv6" #: protocols/luci-proto-sstp/htdocs/luci-static/resources/protocol/sstp.js:51 msgid "IPv6 support" -msgstr "" +msgstr "Suporte de IPv6" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:56 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:57 @@ -2957,7 +2980,7 @@ msgstr "Se marcado, 1DES será ativada" #: protocols/luci-proto-sstp/htdocs/luci-static/resources/protocol/sstp.js:51 msgid "If checked, adds \"+ipv6\" to the pppd options" -msgstr "" +msgstr "Se marcado, adiciona o \"+ipv6\" nas opções do pppd" #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:93 msgid "If checked, encryption is disabled" @@ -3076,21 +3099,21 @@ msgstr "Entrada:" #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:92 #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:97 msgid "Incoming checksum" -msgstr "" +msgstr "Checksum da entrada" #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:82 #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:87 #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:84 #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:89 msgid "Incoming key" -msgstr "" +msgstr "Chave da entrada" #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:92 #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:97 #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:94 #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:99 msgid "Incoming serialization" -msgstr "" +msgstr "Entrada da serialização" #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:166 msgid "Info" @@ -3220,7 +3243,7 @@ msgstr "Erro Interno do Servidor" #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:283 msgid "Interval For Sending Learning Packets" -msgstr "" +msgstr "Intervalo para o Envio dos Pacotes de Aprendizagem" #: modules/luci-compat/luasrc/view/cbi/tblsection.htm:192 #: modules/luci-compat/luasrc/view/cbi/tsection.htm:42 @@ -3245,6 +3268,14 @@ msgstr "O ID de VLAN fornecido é inválido! Só IDs únicos são permitidos" msgid "Invalid argument" msgstr "Argumento inválido" +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:46 +msgid "" +"Invalid bearer list. Possibly too many bearers created. This protocol " +"supports one and only one bearer." +msgstr "" +"Lista de portadores inválidos. Possivelmente, demasiados portadores foram " +"criados. Este protocolo suporta apenas um portador." + #: modules/luci-base/htdocs/luci-static/resources/rpc.js:405 msgid "Invalid command" msgstr "Comando inválido" @@ -3262,7 +3293,7 @@ msgstr "Username e/ou password inválidos! Por favor, tente novamente." #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:76 #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:81 msgid "Invalid value" -msgstr "" +msgstr "Valor inválido" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1075 msgid "Isolate Clients" @@ -3325,14 +3356,14 @@ msgstr "Chave #%d" #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:84 #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:89 msgid "Key for incoming packets (optional)." -msgstr "" +msgstr "Chave para os pacotes da entrada (opcional)." #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:86 #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:91 #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:88 #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:93 msgid "Key for outgoing packets (optinal)." -msgstr "" +msgstr "Chave para os pacotes da saída (optinal)." #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/processes.js:54 msgid "Kill" @@ -3349,7 +3380,7 @@ msgstr "Servidor L2TP" #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:267 msgid "LACPDU Packets" -msgstr "" +msgstr "Pacotes LACPDU" #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:131 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:115 @@ -3463,11 +3494,11 @@ msgstr "Tempo de Ativo da Linha" #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:123 msgid "Link Aggregation (Channel Bonding)" -msgstr "" +msgstr "Agregação dos Enlaces (Ligação do Canal)" #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:348 msgid "Link Monitoring" -msgstr "" +msgstr "Monitoramento do Enlace" #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/led-trigger/netdev.js:23 msgid "Link On" @@ -3657,11 +3688,13 @@ msgid "" "Logical network from which to select the local endpoint if local IPv6 " "address is empty and no WAN IPv6 is available (optional)." msgstr "" +"Rede lógica a partir de onde selecionar o ponto final local caso o endereço " +"IPv6 local esteja vazio e não haja um IPv6 WAN disponível (opcional)." #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:50 #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:55 msgid "Logical network to which the tunnel will be added (bridged) (optional)." -msgstr "" +msgstr "Rede lógica onde o túnel será adicionado (bridged) (opcional)." #: modules/luci-base/luasrc/view/sysauth.htm:38 msgid "Login" @@ -3688,7 +3721,7 @@ msgstr "MAC" #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:251 msgid "MAC Address For The Actor" -msgstr "" +msgstr "Endereço MAC Para o Ator" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:38 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:2069 @@ -3739,15 +3772,15 @@ msgstr "MHz" #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:353 msgid "MII" -msgstr "" +msgstr "MII" #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:421 msgid "MII / ETHTOOL ioctls" -msgstr "" +msgstr "MII / ETHTOOL ioctls" #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:394 msgid "MII Interval" -msgstr "" +msgstr "Intervalo MII" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:54 #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:53 @@ -3856,11 +3889,11 @@ msgstr "Método não encontrado" #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:349 msgid "Method of link monitoring" -msgstr "" +msgstr "Método de monitoramento de enlace" #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:418 msgid "Method to determine link status" -msgstr "" +msgstr "Método para determinar a condição do enlace" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/routes.js:46 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/routes.js:165 @@ -3871,7 +3904,7 @@ msgstr "Métrica" #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:235 msgid "Minimum Number of Links" -msgstr "" +msgstr "Quantidade Mínima de Enlaces" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/switch.js:202 msgid "Mirror monitor port" @@ -3903,18 +3936,34 @@ msgstr "Modo" msgid "Model" msgstr "Modelo" +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:43 +msgid "Modem bearer teardown in progress." +msgstr "Desligamento do portador do modem em andamento." + +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:42 +msgid "" +"Modem connection in progress. Please wait. This process will timeout after 2 " +"minutes." +msgstr "" +"Conexão do modem em andamento. Por favor, espere. Este processo atingirá o " +"tempo limite depois de 2 minutos." + #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:72 msgid "Modem default" -msgstr "Padrão do modem" +msgstr "Predefinição do modem" #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:73 -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:76 +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:82 #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:61 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:73 #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:57 msgid "Modem device" msgstr "Aparelho do modem" +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:41 +msgid "Modem disconnection in progress. Please wait." +msgstr "Desconexão do modem em andamento. Por favor, espere." + #: modules/luci-compat/luasrc/model/network/proto_ncm.lua:66 #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:24 msgid "Modem information query failed" @@ -3926,7 +3975,11 @@ msgstr "A consulta das informações do modem falhou" msgid "Modem init timeout" msgstr "Estouro de tempo da iniciação do modem" -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:46 +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:44 +msgid "Modem is disabled." +msgstr "O modem está desativado." + +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:52 msgid "ModemManager" msgstr "ModemManager" @@ -4078,7 +4131,7 @@ msgstr "O aparelho de rede não está presente" #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:50 #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:55 msgid "Network interface" -msgstr "" +msgstr "Interfaces de rede" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:777 msgid "New interface for \"%s\" can not be created: %s" @@ -4140,7 +4193,7 @@ msgstr "Não foram encontrados ficheiros" #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:81 #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:86 msgid "No host route" -msgstr "" +msgstr "Nenhuma rota para o host" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:674 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:142 @@ -4157,11 +4210,11 @@ msgstr "Não casou com nenhum prefixo delegado" #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:140 #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:143 msgid "No more slaves available" -msgstr "" +msgstr "Não há mais escravos disponíveis" #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:187 msgid "No more slaves available, can not save interface" -msgstr "" +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:251 msgid "No negative cache" @@ -4190,7 +4243,7 @@ msgstr "Não há regras nesta cadeia." #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:384 msgid "No validation or filtering" -msgstr "" +msgstr "Sem validação ou filtragem" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:152 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:825 @@ -4227,7 +4280,7 @@ msgstr "Sem caracter curinga" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:159 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:183 -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:94 +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:100 msgid "None" msgstr "Nenhum" @@ -4273,7 +4326,7 @@ msgstr "Nslookup" #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:332 msgid "Number of IGMP membership reports" -msgstr "" +msgstr "Quantidade de relatórios associados ao IGMP" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:355 msgid "Number of cached DNS entries (max is 10000, 0 is no caching)" @@ -4286,7 +4339,7 @@ msgstr "Quantidade de threads paralelas utilizadas para compressão" #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:309 msgid "Number of peer notifications after failover event" -msgstr "" +msgstr "Quantidade de notificações por pares após o evento failover" #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:69 msgid "Obfuscated Group Password" @@ -4343,7 +4396,7 @@ msgstr "Um ou mais campos contêm valores inválidos!" #: modules/luci-compat/luasrc/view/cbi/map.htm:32 msgid "One or more invalid/required values on tab" -msgstr "Um ou mais valores inválidos/obrigatórios na aba" +msgstr "Um ou mais valores inválidos/obrigatórios na guia" #: modules/luci-compat/luasrc/view/cbi/nullsection.htm:19 #: modules/luci-compat/luasrc/view/cbi/ucisection.htm:24 @@ -4354,6 +4407,8 @@ msgstr "Um ou mais campos obrigatórios não têm valores!" msgid "" "Only if current active slave fails and the primary slave is up (failure, 2)" msgstr "" +"Somente caso o escravo ativo atual falhe e o escravo primário esteja ativo " +"(falha, 2)" #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:439 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua:19 @@ -4452,9 +4507,9 @@ msgid "" "Optional. Seconds between keep alive messages. Default is 0 (disabled). " "Recommended value if this device is behind a NAT is 25." msgstr "" -"Opcional. Segundos entre mensagens para manutenção da conexão. O padrão é 0 " -"(desativado). O valor recomendado caso este aparelho esteja atrás de uma NAT " -"é 25." +"Opcional. Segundos entre mensagens para manutenção da conexão. A " +"predefinição é 0 (desativado). O valor recomendado caso este aparelho esteja " +"atrás de uma NAT é 25." #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:58 msgid "Optional. UDP port used for outgoing and incoming packets." @@ -4481,21 +4536,21 @@ msgstr "Saída:" #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:93 #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:98 msgid "Outgoing checksum" -msgstr "" +msgstr "Checksum de saída" #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:86 #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:91 #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:88 #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:93 msgid "Outgoing key" -msgstr "" +msgstr "Chave de Saída" #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:93 #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:98 #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:95 #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:100 msgid "Outgoing serialization" -msgstr "" +msgstr "Serialização de saída" #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:50 msgid "Output Interface" @@ -4524,7 +4579,7 @@ msgstr "Sobrescrever o endereço MAC" #: protocols/luci-proto-hnet/htdocs/luci-static/resources/protocol/hnet.js:44 #: protocols/luci-proto-ipip/htdocs/luci-static/resources/protocol/ipip.js:53 #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dhcpv6.js:54 -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:114 +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:120 #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:158 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/l2tp.js:71 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:145 @@ -4564,7 +4619,7 @@ msgstr "Sobrescrever o nome da nova interface" #: protocols/luci-proto-relay/htdocs/luci-static/resources/protocol/relay.js:167 msgid "Override the gateway in DHCP responses" -msgstr "Sobrescrever o roteador padrão nas respostas do DHCP" +msgstr "Sobrescrever o gateway nas respostas do DHCP" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:603 msgid "" @@ -4591,12 +4646,12 @@ msgstr "Sustituir o ficheiro existente \"%s\" ?" msgid "Owner" msgstr "Dono" -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:91 +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:97 msgid "PAP/CHAP (both)" msgstr "PAP/CHAP (ambos)" #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:98 -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:102 +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:108 #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:90 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/l2tp.js:45 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:89 @@ -4609,7 +4664,7 @@ msgid "PAP/CHAP password" msgstr "Password PAP/CHAP" #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:96 -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:97 +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:103 #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:88 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/l2tp.js:43 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:87 @@ -4630,7 +4685,7 @@ msgid "PID" msgstr "PID" #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:95 -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:88 +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:94 #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:87 #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:68 msgid "PIN" @@ -4696,7 +4751,7 @@ msgstr "Pacotes" #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:275 msgid "Packets To Transmit Before Moving To Next Slave" -msgstr "" +msgstr "Pacotes para Serem Transmitidos Antes de Passar para o Próximo Escravo" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:152 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:825 @@ -4802,7 +4857,7 @@ msgstr "Sigilo Encaminhado Perfeito" #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:95 #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:100 msgid "Perform outgoing packets serialization (optional)." -msgstr "" +msgstr "Realizar a serialização dos pacotes na saída (opcional)." #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:28 msgid "Perform reboot" @@ -4915,17 +4970,19 @@ msgstr "Impede a comunicação cliente-a-cliente" #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:211 msgid "Primary Slave" -msgstr "" +msgstr "Escravo Primário" #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:228 msgid "" "Primary becomes active slave when it comes back up if speed and duplex " "better than current slave (better, 1)" msgstr "" +"O primário torna-se um escravo ativo quando ele retorna, caso a velocidade e " +"o duplex sejam melhores que o escravo atual (melhor, 1)" #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:227 msgid "Primary becomes active slave whenever it comes back up (always, 0)" -msgstr "" +msgstr "O primário torna-se um escravo ativo sempre que retornar (sempre, 0)" #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:53 msgid "Private Key" @@ -5158,12 +5215,12 @@ msgstr "Endereço IPv4 remoto ou FQDN" #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:40 msgid "Remote IPv6 address" -msgstr "" +msgstr "Endereço IPV6 remoto" #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:42 #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:42 msgid "Remote IPv6 address or FQDN" -msgstr "" +msgstr "Endereço IPv6 remoto ou FQDN" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:849 msgid "Remove" @@ -5190,14 +5247,14 @@ msgstr "Tempo limite do pedido" #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:92 #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:97 msgid "Require incoming checksum (optional)." -msgstr "" +msgstr "Exigir o checkum na entrada (opcional)." #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:92 #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:97 #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:94 #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:99 msgid "Require incoming packets serialization (optional)." -msgstr "" +msgstr "Exigir a serialização dos pacotes na entrada (opcional)." #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1610 msgid "Required" @@ -5253,7 +5310,7 @@ msgstr "Requer hostapd com suporte de SAE" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1237 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1238 msgid "Requires hostapd with WEP support" -msgstr "" +msgstr "Requer hostapd com suporte WEP" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1607 msgid "" @@ -5303,11 +5360,11 @@ msgstr "Requer wpa-supplicant com suporte de SAE" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1251 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1252 msgid "Requires wpa-supplicant with WEP support" -msgstr "" +msgstr "Requer wpa-supplicant com suporte WEP" #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:224 msgid "Reselection policy for primary slave" -msgstr "" +msgstr "Política de nova seleção para o escravo primário" #: modules/luci-base/htdocs/luci-static/resources/luci.js:2203 #: modules/luci-base/luasrc/view/sysauth.htm:39 @@ -5323,7 +5380,7 @@ msgstr "Limpar contadores" #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:376 msgid "Reset to defaults" -msgstr "Redefinir para os valores padrão" +msgstr "Redefinir para os valores predefinidos" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:162 msgid "Resolv and Hosts Files" @@ -5362,7 +5419,7 @@ msgstr "Restaurar backup" #: modules/luci-base/htdocs/luci-static/resources/ui.js:330 #: modules/luci-base/htdocs/luci-static/resources/ui.js:331 msgid "Reveal/hide password" -msgstr "Revelar/esconder password" +msgstr "Revelar/ocultar a palavra-passe" #: modules/luci-base/htdocs/luci-static/resources/ui.js:4012 msgid "Revert" @@ -5391,7 +5448,7 @@ msgstr "Prepação da raiz (/)" #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:202 msgid "Round-Robin policy (balance-rr, 0)" -msgstr "" +msgstr "Política Round-Robin (balanço-rr, 0)" #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:139 msgid "Route Allowed IPs" @@ -5485,11 +5542,11 @@ msgstr "SSID" #: protocols/luci-proto-sstp/htdocs/luci-static/resources/protocol/sstp.js:9 msgid "SSTP" -msgstr "" +msgstr "SSTP" #: protocols/luci-proto-sstp/htdocs/luci-static/resources/protocol/sstp.js:41 msgid "SSTP Server" -msgstr "" +msgstr "Servidor SSTP" #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:339 msgid "SWAP" @@ -5563,6 +5620,8 @@ msgstr "Selecione o ficheiro.…" #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:318 msgid "Selects the transmit hash policy to use for slave selection" msgstr "" +"Seleciona a política de transmissão do hash para utilizar com a seleção dos " +"escravos" #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:144 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:128 @@ -5613,7 +5672,7 @@ msgstr "" #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:300 msgid "Set same MAC Address to all slaves" -msgstr "" +msgstr "Defina o mesmo endereço MAC para todos os escravos" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:642 msgid "Set this interface as master for the dhcpv6 relay." @@ -5621,15 +5680,14 @@ msgstr "Defina esta interface como mestre para o relé dhcpv6." #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:304 msgid "Set to currently active slave (active, 1)" -msgstr "" +msgstr "Definido como um escravo atualmente ativo (ativo, 1)" #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:305 msgid "Set to first slave added to the bond (follow, 2)" -msgstr "" +msgstr "Definido como o primeiro escravo adicionado ao vínculo (seguir, 2)" #: modules/luci-compat/luasrc/model/network/proto_modemmanager.lua:55 #: modules/luci-compat/luasrc/model/network/proto_qmi.lua:55 -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:42 #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:23 msgid "Setting PLMN failed" msgstr "" @@ -5727,7 +5785,7 @@ msgstr "Ir para a navegação" #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:178 msgid "Slave Interfaces" -msgstr "" +msgstr "Interfaces dos Escravos" #: modules/luci-base/htdocs/luci-static/resources/network.js:2867 #: modules/luci-compat/luasrc/model/network.lua:1428 @@ -5769,29 +5827,34 @@ msgstr "Endereço de Origem" #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:50 #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:50 msgid "Source interface" -msgstr "" +msgstr "Interface de origem" #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:342 msgid "" "Specifies that duplicate frames (received on inactive ports) should be " "dropped or delivered" msgstr "" +"Especifica quais quadros duplicados (recebidos em portas inativas) devem ser " +"descartados ou entregues" #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:358 msgid "Specifies the ARP link monitoring frequency in milliseconds" msgstr "" +"Especifica a frequência de monitoramento do enlace ARP em milissegundos" #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:366 msgid "Specifies the IP addresses to use for ARP monitoring" msgstr "" +"Especifica quais os endereços IP que serão utilizados no monitoramento ARP" #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:395 msgid "Specifies the MII link monitoring frequency in milliseconds" msgstr "" +"Especifica a frequência de monitoramento do enlace MII em milissegundos" #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:259 msgid "Specifies the aggregation selection logic to use" -msgstr "" +msgstr "Especifica a lógica de seleção da agregação que será utilizada" #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:292 msgid "Specifies the directory the device is attached to" @@ -5802,6 +5865,9 @@ msgid "" "Specifies the mac-address for the actor in protocol packet exchanges " "(LACPDUs). If empty, masters' mac address defaults to system default" msgstr "" +"Especifica o endereço mac para o ator durante as trocas de pacotes do " +"protocolo (LACPDUs). Caso esteja vazio, o endereço mac dos mestres assume " +"como predefinido do sistema" #: protocols/luci-proto-relay/htdocs/luci-static/resources/protocol/relay.js:175 msgid "" @@ -5834,100 +5900,133 @@ msgid "" "Specifies the minimum number of links that must be active before asserting " "carrier" msgstr "" +"Determina a quantidade mínima de enlaces que devem estar ativos antes de " +"declarar a operadora" #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:200 msgid "Specifies the mode to be used for this bonding interface" -msgstr "" +msgstr "Especifica o modo de ligação que será utilizado por esta interface" #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:333 msgid "" "Specifies the number of IGMP membership reports to be issued after a " "failover event in 200ms intervals" msgstr "" +"Determina a quantidade de relatórios associados ao IGMP que serão emitidos " +"após um evento failover em intervalos de 200 ms" #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:276 msgid "" "Specifies the number of packets to transmit through a slave before moving to " "the next one" msgstr "" +"Determina a quantidade de pacotes que serão transmitidos por um escravo " +"antes de passar para o próximo" #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:310 msgid "" "Specifies the number of peer notifications (gratuitous ARPs and unsolicited " "IPv6 Neighbor Advertisements) to be issued after a failover event" msgstr "" +"Determina a quantidade de notificações dos pares (ARPs gratuitos e anúncios " +"dos vizinhos IPv6 não forem solicitados) que serão emitidos após um evento " +"failover" #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:284 msgid "" "Specifies the number of seconds between instances where the bonding driver " "sends learning packets to each slaves peer switch" msgstr "" +"Determina a quantidade de segundos entre as instâncias em que o driver de " +"ligação envia os pacotes de aprendizado para cada comutador dos pares " +"escravos" #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:374 msgid "Specifies the quantity of ARP IP targets that must be reachable" msgstr "" +"Determina a quantidade dos destinos IP do ARP que devem ser alcançáveis" #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:268 msgid "" "Specifies the rate in which the link partner will be asked to transmit " "LACPDU packets" msgstr "" +"Determina a taxa na qual o parceiro do enlace será solicitado para " +"transmitir os pacotes LACPDU" #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:225 msgid "" "Specifies the reselection policy for the primary slave when failure of the " "active slave or recovery of the primary slave occurs" msgstr "" +"Determina a política da nova seleção para o escravo primário quando ocorre " +"uma falha do escravo ativo ou durante a recuperação do escravo primário" #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:244 msgid "Specifies the system priority" -msgstr "" +msgstr "Determina a prioridade do sistema" #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:403 msgid "" "Specifies the time in milliseconds to wait before disabling a slave after a " "link failure detection" msgstr "" +"Determina o tempo em milissegundos da espera antes que um escravo seja " +"desativado após uma detecção de falha do enlace" #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:411 msgid "" "Specifies the time in milliseconds to wait before enabling a slave after a " "link recovery detection" msgstr "" +"Determina o tempo em milissegundos da espera antes que um escravo seja " +"ativado após a detecção de recuperação do enlace" #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:382 msgid "" "Specifies whether ARP probes and replies should be validated or non-ARP " "traffic should be filtered for link monitoring" msgstr "" +"Determina se as análises e respostas do ARP devem ser validadas ou o tráfego " +"não-ARP deve ser filtrado para o monitoramento do enlace" #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:301 msgid "" "Specifies whether active-backup mode should set all slaves to the same MAC " "address at enslavement" msgstr "" +"Determina se o modo do backup ativo deve definir que todos os escravos " +"tenham o mesmo endereço MAC durante a escravidão" #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:419 msgid "" "Specifies whether or not miimon should use MII or ETHTOOL ioctls vs. " "netif_carrier_ok()" msgstr "" +"Determina se o miimon deve ou não usar o MII ou ETHTOOL ioctls vs. " +"netif_carrier_ok()" #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:293 msgid "" "Specifies whether to shuffle active flows across slaves based on the load" msgstr "" +"Determina se é necessário embaralhar os fluxos ativos entre os escravos com " +"base na carga" #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:179 msgid "" "Specifies which slave interfaces should be attached to this bonding interface" msgstr "" +"Determina quais as interfaces escravas devem ser conectadas a esta interface " +"de ligação" #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:212 msgid "" "Specifies which slave is the primary device. It will always be the active " "slave while it is available" msgstr "" +"Determina qual escravo é o aparelho principal. Sempre será o escravo ativo " +"enquanto estiver disponível" #: protocols/luci-proto-ipip/htdocs/luci-static/resources/protocol/ipip.js:63 #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:72 @@ -5942,6 +6041,9 @@ msgid "" "outer header inherits the value of the inner header) or an hexadecimal value " "starting with <code>0x</code> (optional)." msgstr "" +"Especifique um TOS (Tipo de Serviço). Pode ser <code>inherit</code> (o " +"cabeçalho externo herda o valor do cabeçalho interno) ou um valor " +"hexadecimal começando com <code>0x</code> (opcional)." #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:62 #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:67 @@ -5951,6 +6053,8 @@ msgid "" "Specify a TTL (Time to Live) for the encapsulating packet other than the " "default (64) (optional)." msgstr "" +"Defina um TTL (Time to Live) para o pacote de encapsulamento diferente do " +"predefinido (64) (opcional)." #: protocols/luci-proto-ipip/htdocs/luci-static/resources/protocol/ipip.js:58 #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:67 @@ -5960,7 +6064,7 @@ msgid "" "default (64)." msgstr "" "Especifica o tempo de vida (<abbr title=\"Time to Live\">TTL</abbr>) para os " -"pacotes encapsulados ao invés do padrão (64)." +"pacotes encapsulados ao invés da predefinição (64)." #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:72 #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:77 @@ -5969,6 +6073,9 @@ msgid "" "header inherits the value of the inner header) or an hexadecimal value " "starting with <code>0x</code> (optional)." msgstr "" +"Defina uma Classe de Trânsito. Pode ser <code>inherit</code> (o cabeçalho " +"externo herda o valor do cabeçalho interno) ou um valor hexadecimal " +"começando com <code>0x</code> (opcional)." #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:57 #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:62 @@ -5978,6 +6085,8 @@ msgid "" "Specify an MTU (Maximum Transmission Unit) other than the default (1280 " "bytes) (optional)." msgstr "" +"Defina um MTU (Maximum Transmission Unit) diferente da predefinida (1280 " +"bytes) (opcional)." #: protocols/luci-proto-ipip/htdocs/luci-static/resources/protocol/ipip.js:53 #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:62 @@ -5987,7 +6096,7 @@ msgid "" "bytes)." msgstr "" "Especifica a unidade máxima de transmissão (<abbr title=\"Maximum " -"Transmission Unit\">MTU</abbr>) ao invés do valor padrão (1280 bytes)." +"Transmission Unit\">MTU</abbr>) ao invés do valor predefinido (1280 bytes)." #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1931 msgid "Specify the secret encryption key here." @@ -6084,7 +6193,7 @@ msgstr "Forte" #: modules/luci-compat/luasrc/view/cbi/simpleform.htm:61 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1956 msgid "Submit" -msgstr "Enviar" +msgstr "Submeter" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:203 msgid "Suppress logging" @@ -6155,7 +6264,7 @@ msgstr "Registo do Sistema" #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:243 msgid "System Priority" -msgstr "" +msgstr "Prioridade do Sistema" #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:104 msgid "System Properties" @@ -6221,7 +6330,7 @@ msgstr "" #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:40 msgid "The IPv4 address or the fully-qualified domain name of the remote end." -msgstr "" +msgstr "O endereço IPV4 remoto ou o seu FQDN." #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:42 #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:42 @@ -6232,13 +6341,15 @@ msgstr "O endereço IPv4 ou o nome completo (FQDN) da ponta remota do túnel." #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:40 msgid "The IPv6 address or the fully-qualified domain name of the remote end." -msgstr "" +msgstr "O endereço IPV6 remoto ou o seu FQDN." #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:42 #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:42 msgid "" "The IPv6 address or the fully-qualified domain name of the remote tunnel end." msgstr "" +"O endereço IPv6 ou o FQDN (nome de domínio totalmente qualificado) da " +"extremidade do túnel remoto." #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6rd.js:53 #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:59 @@ -6350,7 +6461,7 @@ msgstr "O comprimento do prefixo IPv6 em bits" #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:163 msgid "The local IPv4 address" -msgstr "" +msgstr "O endereço IPv4 local" #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:46 #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:46 @@ -6361,13 +6472,13 @@ msgstr "O endereço IPv4 local sobre o qual o túnel será criado (opcional)." #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:169 msgid "The local IPv4 netmask" -msgstr "" +msgstr "A máscara de rede do IPv4 local" #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:46 #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:46 #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:44 msgid "The local IPv6 address over which the tunnel is created (optional)." -msgstr "" +msgstr "O endereço IPv6 local sobre o qual o túnel será criado (opcional)." #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1922 msgid "The network name is already used" @@ -6384,9 +6495,9 @@ msgid "" 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 directamente entre eles. <abbr title=\"Rede de Área Local Virtual" +"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 Uplink para uma " +"diferentes. Muitas vezes existe por defeito uma porta de Uplink para uma " "ligação para a rede acima como a internet ou outras portas de uma rede local." #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:158 @@ -6649,7 +6760,7 @@ msgstr "Tráfego" #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:72 #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:77 msgid "Traffic Class" -msgstr "" +msgstr "Classe de tráfego" #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:385 msgid "Transfer" @@ -6661,7 +6772,7 @@ msgstr "Transmitir" #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:317 msgid "Transmit Hash Policy" -msgstr "" +msgstr "Política de Transmissão do Hash" #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/leds.js:74 msgid "Trigger" @@ -6742,7 +6853,6 @@ msgstr "Não foi possível carregar os dados do log:" #: modules/luci-compat/luasrc/model/network/proto_modemmanager.lua:54 #: modules/luci-compat/luasrc/model/network/proto_qmi.lua:54 -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:41 #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:22 msgid "Unable to obtain client ID" msgstr "Não foi possível obter o identificador do cliente" @@ -6794,6 +6904,10 @@ msgstr "Formato de dados de resposta inesperado" msgid "Unknown" msgstr "Desconhecido" +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:47 +msgid "Unknown and unsupported connection method." +msgstr "Método de ligação desconhecido e sem suporte." + #: modules/luci-base/htdocs/luci-static/resources/network.js:2276 #: modules/luci-compat/luasrc/model/network.lua:1138 msgid "Unknown error (%s)" @@ -6849,7 +6963,7 @@ msgstr "Acima" #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:410 msgid "Up Delay" -msgstr "" +msgstr "Atraso de Envio" #: modules/luci-base/htdocs/luci-static/resources/ui.js:3819 msgid "Upload" @@ -6951,17 +7065,19 @@ msgstr "Use TTL na interface do túnel" #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:320 msgid "Use XOR of hardware MAC addresses (layer2)" -msgstr "" +msgstr "Use o XOR do hardware nos endereços MAC (camada2)" #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:321 msgid "Use XOR of hardware MAC addresses and IP addresses (layer2+3)" -msgstr "" +msgstr "Use o XOR do hardware nos endereços MAC e endereços IP (camada2+3)" #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:323 msgid "" "Use XOR of hardware MAC addresses and IP addresses, rely on skb_flow_dissect " "(encap2+3)" msgstr "" +"Use o XOR do hardware nos endereços MAC e endereços IP, dependente do " +"skb_flow_dissect (encapsulamento2+3)" #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:294 msgid "Use as external overlay (/overlay)" @@ -7052,17 +7168,19 @@ msgstr "" "<em>Endereço MAC</em> identifica o host, o <em>Endereço IPv4</em> especifica " "o endereço fixo a ser usado, e o <em>Hostname</em> é atribuído como um nome " "simbólico ao host solicitante. O <em>Tempo de concessão</em> opcional pode " -"ser usado para definir o tempo de concessão não padrão específico do host, " -"por exemplo, 12h, 3d ou infinito." +"ser usado para definir o tempo de concessão não predefinido específico do " +"host, por exemplo, 12h, 3d ou infinito." #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:322 msgid "Use upper layer protocol information (layer3+4)" -msgstr "" +msgstr "Utilize as informações do protocolo da camada superior (camada3+4)" #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:324 msgid "" "Use upper layer protocol information, rely on skb_flow_dissect (encap3+4)" msgstr "" +"Utilize as informações do protocolo da camada superior, dependente do " +"skb_flow_dissect (encapsulamento3+4)" #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/20_memory.js:36 #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:194 @@ -7083,7 +7201,7 @@ msgstr "" #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:105 msgid "User Group" -msgstr "" +msgstr "Grupo do Utilizador" #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:114 msgid "User certificate (PEM encoded)" @@ -7144,16 +7262,16 @@ msgstr "VPNC (VPN do CISCO 3000 (e outros))" #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:10 msgid "VXLAN (RFC7348)" -msgstr "" +msgstr "VXLAN (RFC7348)" #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:53 #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:48 msgid "VXLAN network identifier" -msgstr "" +msgstr "Identificador de rede VXLAN" #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan6.js:10 msgid "VXLANv6 (RFC7348)" -msgstr "" +msgstr "VXLANv6 (RFC7348)" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1498 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1556 @@ -7166,19 +7284,19 @@ msgstr "" #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:387 msgid "Validation for all slaves" -msgstr "" +msgstr "Validação para todos os escravos" #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:385 msgid "Validation only for active slave" -msgstr "" +msgstr "Validação somente para o escravo ativo" #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:386 msgid "Validation only for backup slaves" -msgstr "" +msgstr "Validação apenas para os escravos backup" #: protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js:134 msgid "Value must not be empty" -msgstr "" +msgstr "O valor não pode ser vazio" #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:73 msgid "Vendor" @@ -7329,7 +7447,7 @@ msgstr "Escrever registro do sistema (log) no ficheiro" #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:204 msgid "XOR policy (balance-xor, 2)" -msgstr "" +msgstr "Política XOR (balanço-xor, 2)" #: modules/luci-base/htdocs/luci-static/resources/form.js:3472 #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:295 @@ -7340,7 +7458,7 @@ msgstr "Sim" #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:303 msgid "Yes (none, 0)" -msgstr "" +msgstr "Sim (nenhum, 0)" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:176 msgid "" @@ -7377,11 +7495,15 @@ msgid "" "You must select a primary interface which is included in selected slave " "interfaces!" msgstr "" +"Deve selecionar uma interface primária que esteja incluída nas interfaces " +"escravas selecionadas!" #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:96 msgid "" "You must select at least one ARP IP target if ARP monitoring is selected!" msgstr "" +"Deve selecionar pelo menos um destino IP ARP caso o monitoramento ARP esteja " +"selecionado!" #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:192 msgid "ZRam Compression Algorithm" @@ -7488,15 +7610,15 @@ msgstr "desativado" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:519 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:553 msgid "driver default" -msgstr "padrão do driver" +msgstr "predefinição do driver" #: protocols/luci-proto-sstp/htdocs/luci-static/resources/protocol/sstp.js:81 msgid "e.g: --proxy 10.10.10.10" -msgstr "" +msgstr "p. ex.: --proxy 10.10.10.10.10" #: protocols/luci-proto-sstp/htdocs/luci-static/resources/protocol/sstp.js:83 msgid "e.g: dump" -msgstr "" +msgstr "p.ex.: despejo" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:517 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:538 @@ -7578,7 +7700,7 @@ msgstr "minutos" #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:422 msgid "netif_carrier_ok()" -msgstr "" +msgstr "netif_carrier_ok()" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:46 msgid "no" @@ -7658,7 +7780,7 @@ msgstr "modo servidor" #: protocols/luci-proto-sstp/htdocs/luci-static/resources/protocol/sstp.js:53 msgid "sstpc Log-level" -msgstr "" +msgstr "Nível do registro log sstpc" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:649 msgid "stateful-only" diff --git a/modules/luci-base/po/pt_BR/base.po b/modules/luci-base/po/pt_BR/base.po index e51b092a03..6f03baea3e 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: 2020-07-10 10:41+0000\n" +"PO-Revision-Date: 2020-07-20 11:41+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" @@ -305,7 +305,7 @@ msgid "ANSI T1.413" msgstr "ANSI T1.413" #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:94 -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:87 +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:93 #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:86 #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:67 msgid "APN" @@ -843,7 +843,7 @@ msgstr "Grupo de Autenticação" msgid "Authentication" msgstr "Autenticação" -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:90 +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:96 #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:70 msgid "Authentication Type" msgstr "Tipo de Autenticação" @@ -1075,7 +1075,6 @@ msgstr "Em cache" #: modules/luci-compat/luasrc/model/network/proto_modemmanager.lua:53 #: modules/luci-compat/luasrc/model/network/proto_qmi.lua:53 -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:40 #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:21 msgid "Call failed" msgstr "A chamada falhou" @@ -1361,6 +1360,10 @@ msgstr "Conectado" msgid "Connection attempt failed" msgstr "A tentativa de conexão falhou" +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:40 +msgid "Connection attempt failed." +msgstr "A tentativa de conexão falhou." + #: modules/luci-base/htdocs/luci-static/resources/rpc.js:414 msgid "Connection lost" msgstr "Conexão perdida" @@ -1701,6 +1704,10 @@ msgstr "O dispositivo não está ativo" msgid "Device is restarting…" msgstr "O dispositivo está reiniciando…" +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:45 +msgid "Device not managed by ModemManager." +msgstr "Dispositivo não gerenciado pelo ModemManager." + #: modules/luci-base/htdocs/luci-static/resources/ui.js:4122 msgid "Device unreachable!" msgstr "Dispositivo não alcançável!" @@ -1785,6 +1792,10 @@ msgstr "Desconectar" msgid "Disconnection attempt failed" msgstr "A tentativa de desconexão falhou" +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:48 +msgid "Disconnection attempt failed." +msgstr "A tentativa de desconexão falhou." + #: modules/luci-base/htdocs/luci-static/resources/form.js:606 #: modules/luci-base/htdocs/luci-static/resources/form.js:2707 #: modules/luci-base/htdocs/luci-static/resources/ui.js:3268 @@ -2519,7 +2530,7 @@ msgstr "Acesso remoto a portas encaminhadas" msgid "Gateway address is invalid" msgstr "O endereço do roteador padrão é inválido" -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:118 +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:124 msgid "Gateway metric" msgstr "Métrica de gateway" @@ -2784,7 +2795,7 @@ msgstr "Endereços IP" msgid "IP Protocol" msgstr "Protocolo IP" -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:108 +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:114 msgid "IP Type" msgstr "Tipo de IP" @@ -2847,7 +2858,7 @@ msgstr "Máscara de rede IPv4" msgid "IPv4 network in address/netmask notation" msgstr "Rede IPv4 na notação de endereço/máscara de rede" -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:110 +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:116 msgid "IPv4 only" msgstr "Somente IPv4" @@ -2879,7 +2890,7 @@ msgstr "Gateway IPv4" msgid "IPv4-in-IPv4 (RFC2003)" msgstr "IPv4 e IPv4 (RFC2003)" -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:109 +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:115 msgid "IPv4/IPv6 (both - defaults to IPv4)" msgstr "IPv4/IPv6 (ambos - padrão é IPv4)" @@ -2943,7 +2954,7 @@ msgstr "Roteador padrão do IPv6" msgid "IPv6 network in address/netmask notation" msgstr "Rede IPv6 na notação de endereço/máscara de rede" -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:111 +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:117 msgid "IPv6 only" msgstr "Somente IPv6" @@ -3298,6 +3309,14 @@ msgstr "" msgid "Invalid argument" msgstr "Argumento inválido" +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:46 +msgid "" +"Invalid bearer list. Possibly too many bearers created. This protocol " +"supports one and only one bearer." +msgstr "" +"Lista de portadores inválidos. Possivelmente, portadores foram criados em " +"excesso. Este protocolo suporta apenas um portador." + #: modules/luci-base/htdocs/luci-static/resources/rpc.js:405 msgid "Invalid command" msgstr "Comando inválido" @@ -3959,18 +3978,34 @@ msgstr "Modo" msgid "Model" msgstr "Modelo" +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:43 +msgid "Modem bearer teardown in progress." +msgstr "Destruição do portador do modem em andamento." + +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:42 +msgid "" +"Modem connection in progress. Please wait. This process will timeout after 2 " +"minutes." +msgstr "" +"Conexão do modem em andamento. Aguarde. Este processo terminará após 2 " +"minutos." + #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:72 msgid "Modem default" msgstr "Padrão do modem" #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:73 -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:76 +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:82 #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:61 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:73 #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:57 msgid "Modem device" msgstr "Dispositivo do Modem" +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:41 +msgid "Modem disconnection in progress. Please wait." +msgstr "Desconexão do modem em andamento. Aguarde." + #: modules/luci-compat/luasrc/model/network/proto_ncm.lua:66 #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:24 msgid "Modem information query failed" @@ -3982,7 +4017,11 @@ msgstr "A consulta das informações do modem falhou" msgid "Modem init timeout" msgstr "Estouro de tempo da iniciação do modem" -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:46 +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:44 +msgid "Modem is disabled." +msgstr "O modem está desativado." + +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:52 msgid "ModemManager" msgstr "ModemManager" @@ -4283,7 +4322,7 @@ msgstr "Sem caracter curinga" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:159 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:183 -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:94 +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:100 msgid "None" msgstr "Nenhum" @@ -4582,7 +4621,7 @@ msgstr "Sobrescrever o endereço MAC" #: protocols/luci-proto-hnet/htdocs/luci-static/resources/protocol/hnet.js:44 #: protocols/luci-proto-ipip/htdocs/luci-static/resources/protocol/ipip.js:53 #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dhcpv6.js:54 -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:114 +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:120 #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:158 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/l2tp.js:71 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:145 @@ -4649,12 +4688,12 @@ msgstr "Sobrescrever o arquivo existente \"%s\" ?" msgid "Owner" msgstr "Dono" -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:91 +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:97 msgid "PAP/CHAP (both)" msgstr "PAP/CHAP (ambos)" #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:98 -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:102 +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:108 #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:90 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/l2tp.js:45 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:89 @@ -4667,7 +4706,7 @@ msgid "PAP/CHAP password" msgstr "Senha do PAP/CHAP" #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:96 -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:97 +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:103 #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:88 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/l2tp.js:43 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:87 @@ -4688,7 +4727,7 @@ msgid "PID" msgstr "PID" #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:95 -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:88 +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:94 #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:87 #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:68 msgid "PIN" @@ -5693,7 +5732,6 @@ msgstr "Definido como o primeiro escravo adicionado ao vínculo (seguir, 2)" #: modules/luci-compat/luasrc/model/network/proto_modemmanager.lua:55 #: modules/luci-compat/luasrc/model/network/proto_qmi.lua:55 -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:42 #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:23 msgid "Setting PLMN failed" msgstr "" @@ -6861,7 +6899,6 @@ msgstr "Não foi possível carregar os dados do registro log:" #: modules/luci-compat/luasrc/model/network/proto_modemmanager.lua:54 #: modules/luci-compat/luasrc/model/network/proto_qmi.lua:54 -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:41 #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:22 msgid "Unable to obtain client ID" msgstr "Não foi possível obter o identificador do cliente" @@ -6913,6 +6950,10 @@ msgstr "Formato de dados de resposta inesperado" msgid "Unknown" msgstr "Desconhecido" +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:47 +msgid "Unknown and unsupported connection method." +msgstr "Método de conexão desconhecido e sem suporte." + #: modules/luci-base/htdocs/luci-static/resources/network.js:2276 #: modules/luci-compat/luasrc/model/network.lua:1138 msgid "Unknown error (%s)" diff --git a/modules/luci-base/po/ro/base.po b/modules/luci-base/po/ro/base.po index ca9359fc19..528c4bcf7f 100644 --- a/modules/luci-base/po/ro/base.po +++ b/modules/luci-base/po/ro/base.po @@ -287,7 +287,7 @@ msgid "ANSI T1.413" msgstr "ANSI T1.413" #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:94 -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:87 +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:93 #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:86 #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:67 msgid "APN" @@ -795,7 +795,7 @@ msgstr "" msgid "Authentication" msgstr "Autentificare" -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:90 +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:96 #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:70 msgid "Authentication Type" msgstr "Tipul Autentificării" @@ -1017,7 +1017,6 @@ msgstr "" #: modules/luci-compat/luasrc/model/network/proto_modemmanager.lua:53 #: modules/luci-compat/luasrc/model/network/proto_qmi.lua:53 -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:40 #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:21 msgid "Call failed" msgstr "" @@ -1283,6 +1282,10 @@ msgstr "Conectat" msgid "Connection attempt failed" msgstr "" +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:40 +msgid "Connection attempt failed." +msgstr "" + #: modules/luci-base/htdocs/luci-static/resources/rpc.js:414 msgid "Connection lost" msgstr "Conexiunea s-a pierdut" @@ -1609,6 +1612,10 @@ msgstr "" msgid "Device is restarting…" msgstr "Dispozitivul repornește…" +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:45 +msgid "Device not managed by ModemManager." +msgstr "" + #: modules/luci-base/htdocs/luci-static/resources/ui.js:4122 msgid "Device unreachable!" msgstr "" @@ -1691,6 +1698,10 @@ msgstr "Deconectează" msgid "Disconnection attempt failed" msgstr "Încercarea deconectării a eșuat" +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:48 +msgid "Disconnection attempt failed." +msgstr "" + #: modules/luci-base/htdocs/luci-static/resources/form.js:606 #: modules/luci-base/htdocs/luci-static/resources/form.js:2707 #: modules/luci-base/htdocs/luci-static/resources/ui.js:3268 @@ -2378,7 +2389,7 @@ msgstr "Porturile gateway" msgid "Gateway address is invalid" msgstr "" -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:118 +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:124 msgid "Gateway metric" msgstr "" @@ -2635,7 +2646,7 @@ msgstr "Adrese IP" msgid "IP Protocol" msgstr "" -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:108 +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:114 msgid "IP Type" msgstr "" @@ -2698,7 +2709,7 @@ msgstr "" msgid "IPv4 network in address/netmask notation" msgstr "" -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:110 +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:116 msgid "IPv4 only" msgstr "Doar IPv4" @@ -2730,7 +2741,7 @@ msgstr "" msgid "IPv4-in-IPv4 (RFC2003)" msgstr "" -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:109 +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:115 msgid "IPv4/IPv6 (both - defaults to IPv4)" msgstr "" @@ -2792,7 +2803,7 @@ msgstr "" msgid "IPv6 network in address/netmask notation" msgstr "" -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:111 +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:117 msgid "IPv6 only" msgstr "Doar IPv6" @@ -3127,6 +3138,12 @@ msgstr "" msgid "Invalid argument" msgstr "" +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:46 +msgid "" +"Invalid bearer list. Possibly too many bearers created. This protocol " +"supports one and only one bearer." +msgstr "" + #: modules/luci-base/htdocs/luci-static/resources/rpc.js:405 msgid "Invalid command" msgstr "" @@ -3755,18 +3772,32 @@ msgstr "Mod" msgid "Model" msgstr "" +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:43 +msgid "Modem bearer teardown in progress." +msgstr "" + +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:42 +msgid "" +"Modem connection in progress. Please wait. This process will timeout after 2 " +"minutes." +msgstr "" + #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:72 msgid "Modem default" msgstr "" #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:73 -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:76 +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:82 #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:61 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:73 #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:57 msgid "Modem device" msgstr "" +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:41 +msgid "Modem disconnection in progress. Please wait." +msgstr "" + #: modules/luci-compat/luasrc/model/network/proto_ncm.lua:66 #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:24 msgid "Modem information query failed" @@ -3778,7 +3809,11 @@ msgstr "" msgid "Modem init timeout" msgstr "" -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:46 +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:44 +msgid "Modem is disabled." +msgstr "" + +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:52 msgid "ModemManager" msgstr "" @@ -4073,7 +4108,7 @@ msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:159 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:183 -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:94 +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:100 msgid "None" msgstr "" @@ -4356,7 +4391,7 @@ msgstr "" #: protocols/luci-proto-hnet/htdocs/luci-static/resources/protocol/hnet.js:44 #: protocols/luci-proto-ipip/htdocs/luci-static/resources/protocol/ipip.js:53 #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dhcpv6.js:54 -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:114 +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:120 #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:158 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/l2tp.js:71 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:145 @@ -4418,12 +4453,12 @@ msgstr "" msgid "Owner" msgstr "Proprietar" -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:91 +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:97 msgid "PAP/CHAP (both)" msgstr "" #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:98 -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:102 +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:108 #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:90 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/l2tp.js:45 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:89 @@ -4436,7 +4471,7 @@ msgid "PAP/CHAP password" msgstr "" #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:96 -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:97 +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:103 #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:88 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/l2tp.js:43 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:87 @@ -4457,7 +4492,7 @@ msgid "PID" msgstr "PID" #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:95 -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:88 +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:94 #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:87 #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:68 msgid "PIN" @@ -5425,7 +5460,6 @@ msgstr "" #: modules/luci-compat/luasrc/model/network/proto_modemmanager.lua:55 #: modules/luci-compat/luasrc/model/network/proto_qmi.lua:55 -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:42 #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:23 msgid "Setting PLMN failed" msgstr "" @@ -6446,7 +6480,6 @@ msgstr "" #: modules/luci-compat/luasrc/model/network/proto_modemmanager.lua:54 #: modules/luci-compat/luasrc/model/network/proto_qmi.lua:54 -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:41 #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:22 msgid "Unable to obtain client ID" msgstr "" @@ -6496,6 +6529,10 @@ msgstr "" msgid "Unknown" msgstr "Necunoscut" +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:47 +msgid "Unknown and unsupported connection method." +msgstr "" + #: modules/luci-base/htdocs/luci-static/resources/network.js:2276 #: modules/luci-compat/luasrc/model/network.lua:1138 msgid "Unknown error (%s)" diff --git a/modules/luci-base/po/ru/base.po b/modules/luci-base/po/ru/base.po index e44ad531f5..18ff198cc7 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: 2020-07-04 17:41+0000\n" -"Last-Translator: Artem <KovalevArtem.ru@gmail.com>\n" +"PO-Revision-Date: 2020-07-22 02:41+0000\n" +"Last-Translator: Anton Kikin <a.a.kikin@gmail.com>\n" "Language-Team: Russian <https://hosted.weblate.org/projects/openwrt/luci/ru/>" "\n" "Language: ru\n" @@ -97,7 +97,7 @@ msgstr "-- сделайте выбор --" #: protocols/luci-proto-sstp/htdocs/luci-static/resources/protocol/sstp.js:54 msgctxt "sstp log level value" msgid "0" -msgstr "" +msgstr "0" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:939 msgid "0 = not using RSSI threshold, 1 = do not change driver default" @@ -108,7 +108,7 @@ msgstr "" #: protocols/luci-proto-sstp/htdocs/luci-static/resources/protocol/sstp.js:55 msgctxt "sstp log level value" msgid "1" -msgstr "" +msgstr "1" #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/load.js:231 msgid "1 Minute Load:" @@ -121,17 +121,17 @@ msgstr "Загрузка за 15 минут:" #: protocols/luci-proto-sstp/htdocs/luci-static/resources/protocol/sstp.js:56 msgctxt "sstp log level value" msgid "2" -msgstr "" +msgstr "2" #: protocols/luci-proto-sstp/htdocs/luci-static/resources/protocol/sstp.js:57 msgctxt "sstp log level value" msgid "3" -msgstr "" +msgstr "3" #: protocols/luci-proto-sstp/htdocs/luci-static/resources/protocol/sstp.js:58 msgctxt "sstp log level value" msgid "4" -msgstr "" +msgstr "4" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1442 msgid "4-character hexadecimal ID" @@ -296,7 +296,7 @@ msgid "ANSI T1.413" msgstr "ANSI T1.413" #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:94 -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:87 +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:93 #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:86 #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:67 msgid "APN" @@ -829,7 +829,7 @@ msgstr "Группа аутентификации" msgid "Authentication" msgstr "Аутентификация" -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:90 +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:96 #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:70 msgid "Authentication Type" msgstr "Тип аутентификации" @@ -1063,7 +1063,6 @@ msgstr "Кешировано" #: modules/luci-compat/luasrc/model/network/proto_modemmanager.lua:53 #: modules/luci-compat/luasrc/model/network/proto_qmi.lua:53 -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:40 #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:21 msgid "Call failed" msgstr "Ошибка вызова" @@ -1310,7 +1309,7 @@ msgstr "" #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:93 #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:98 msgid "Compute outgoing checksum (optional)." -msgstr "" +msgstr "Вычислять исходящую контрольную сумму (опционально)." #: modules/luci-base/htdocs/luci-static/resources/ui.js:3987 #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js:421 @@ -1348,6 +1347,10 @@ msgstr "Подключен" msgid "Connection attempt failed" msgstr "Ошибка попытки соединения" +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:40 +msgid "Connection attempt failed." +msgstr "Ошибка попытки соединения." + #: modules/luci-base/htdocs/luci-static/resources/rpc.js:414 msgid "Connection lost" msgstr "Подключение потеряно" @@ -1685,6 +1688,10 @@ msgstr "Устройство не активно" msgid "Device is restarting…" msgstr "Устройство перезапускается…" +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:45 +msgid "Device not managed by ModemManager." +msgstr "Устройство не управляется ModemManager." + #: modules/luci-base/htdocs/luci-static/resources/ui.js:4122 msgid "Device unreachable!" msgstr "Устройство недоступно!" @@ -1767,6 +1774,10 @@ msgstr "Отключить" msgid "Disconnection attempt failed" msgstr "Ошибка попытки отключения" +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:48 +msgid "Disconnection attempt failed." +msgstr "Ошибка попытки отключения." + #: modules/luci-base/htdocs/luci-static/resources/form.js:606 #: modules/luci-base/htdocs/luci-static/resources/form.js:2707 #: modules/luci-base/htdocs/luci-static/resources/ui.js:3268 @@ -1806,7 +1817,7 @@ msgstr "Не кешировать отрицательные ответы, в т #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:81 #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:86 msgid "Do not create host route to peer (optional)." -msgstr "" +msgstr "Не создавать маршрут к узлу (опционально)." #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:219 msgid "Do not forward requests that cannot be answered by public name servers" @@ -2226,11 +2237,11 @@ msgstr "Дополнительные опции команды SSH" #: protocols/luci-proto-sstp/htdocs/luci-static/resources/protocol/sstp.js:83 msgid "Extra pppd options" -msgstr "" +msgstr "Дополнительные опции pppd" #: protocols/luci-proto-sstp/htdocs/luci-static/resources/protocol/sstp.js:81 msgid "Extra sstpc options" -msgstr "" +msgstr "Дополнительные опции sstpc" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1456 msgid "FT over DS" @@ -2454,19 +2465,19 @@ msgstr "Только GPRS" #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:10 msgid "GRE tunnel over IPv4" -msgstr "" +msgstr "GRE туннель через IPv4" #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:10 msgid "GRE tunnel over IPv6" -msgstr "" +msgstr "GRE туннель через IPv6" #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:10 msgid "GRETAP tunnel over IPv4" -msgstr "" +msgstr "GRETAP туннель через IPv4" #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:10 msgid "GRETAP tunnel over IPv6" -msgstr "" +msgstr "GRETAP туннель через IPv6" #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/30_network.js:44 msgid "Gateway" @@ -2481,7 +2492,7 @@ msgstr "Порты шлюза" msgid "Gateway address is invalid" msgstr "Неверный адрес шлюза" -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:118 +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:124 msgid "Gateway metric" msgstr "Метрика шлюза" @@ -2738,7 +2749,7 @@ msgstr "IP-адреса" msgid "IP Protocol" msgstr "IP-протокол" -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:108 +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:114 msgid "IP Type" msgstr "Тип IP" @@ -2801,7 +2812,7 @@ msgstr "Маска сети IPv4" msgid "IPv4 network in address/netmask notation" msgstr "Сеть IPv4 в формате адрес/маска подсети" -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:110 +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:116 msgid "IPv4 only" msgstr "Только IPv4" @@ -2833,7 +2844,7 @@ msgstr "IPv4-шлюз" msgid "IPv4-in-IPv4 (RFC2003)" msgstr "IPv4-в-IPv4 (RFC2003)" -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:109 +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:115 msgid "IPv4/IPv6 (both - defaults to IPv4)" msgstr "IPv4/IPv6 (оба, по умолчанию IPv4)" @@ -2895,7 +2906,7 @@ msgstr "IPv6-адрес шлюза" msgid "IPv6 network in address/netmask notation" msgstr "Сеть IPv6 в формате адрес/маска подсети" -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:111 +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:117 msgid "IPv6 only" msgstr "Только IPv6" @@ -2920,7 +2931,7 @@ msgstr "IPv6 суффикс" #: protocols/luci-proto-sstp/htdocs/luci-static/resources/protocol/sstp.js:51 msgid "IPv6 support" -msgstr "" +msgstr "Поддержка IPv6" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:56 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/include/40_dhcp.js:57 @@ -2957,7 +2968,7 @@ msgstr "Если выбрано, то 1DES включено" #: protocols/luci-proto-sstp/htdocs/luci-static/resources/protocol/sstp.js:51 msgid "If checked, adds \"+ipv6\" to the pppd options" -msgstr "" +msgstr "Если включено, к опциям pppd добавляется «+ipv6»" #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:93 msgid "If checked, encryption is disabled" @@ -3077,21 +3088,21 @@ msgstr "Входящий:" #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:92 #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:97 msgid "Incoming checksum" -msgstr "" +msgstr "Входящая контрольная сумма" #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:82 #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:87 #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:84 #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:89 msgid "Incoming key" -msgstr "" +msgstr "Входящий ключ" #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:92 #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:97 #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:94 #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:99 msgid "Incoming serialization" -msgstr "" +msgstr "Входящая сериализация" #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/system.js:166 msgid "Info" @@ -3247,6 +3258,14 @@ msgstr "Указан неверный VLAN ID! Доступны только у msgid "Invalid argument" msgstr "Неверный аргумент" +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:46 +msgid "" +"Invalid bearer list. Possibly too many bearers created. This protocol " +"supports one and only one bearer." +msgstr "" +"Недопустимый список каналов (bearer). Возможно, создано слишком много " +"каналов. Этот протокол поддерживает один и только один канал." + #: modules/luci-base/htdocs/luci-static/resources/rpc.js:405 msgid "Invalid command" msgstr "Неверная команда" @@ -3264,7 +3283,7 @@ msgstr "Неверный логин и/или пароль! Попробуйте #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:76 #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:81 msgid "Invalid value" -msgstr "" +msgstr "Неверное значение" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1075 msgid "Isolate Clients" @@ -3327,14 +3346,14 @@ msgstr "Ключ №%d" #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:84 #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:89 msgid "Key for incoming packets (optional)." -msgstr "" +msgstr "Ключ для входящих пакетов (опционально)." #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:86 #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:91 #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:88 #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:93 msgid "Key for outgoing packets (optinal)." -msgstr "" +msgstr "Ключ для исходящих пакетов (опционально)." #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/processes.js:54 msgid "Kill" @@ -3656,11 +3675,13 @@ msgid "" "Logical network from which to select the local endpoint if local IPv6 " "address is empty and no WAN IPv6 is available (optional)." msgstr "" +"Логическая сеть, из которой можно выбрать локальную конечную точку, если " +"локальный IPv6-адрес пуст и WAN IPv6 недоступен (опционально)." #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:50 #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:55 msgid "Logical network to which the tunnel will be added (bridged) (optional)." -msgstr "" +msgstr "Логическая сеть, к которой будет добавлен туннель (мост) (опционально)." #: modules/luci-base/luasrc/view/sysauth.htm:38 msgid "Login" @@ -3897,18 +3918,34 @@ msgstr "Режим" msgid "Model" msgstr "Модель" +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:43 +msgid "Modem bearer teardown in progress." +msgstr "Отключение канала модема в процессе." + +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:42 +msgid "" +"Modem connection in progress. Please wait. This process will timeout after 2 " +"minutes." +msgstr "" +"Подключение модема в процессе. Пожалуйста, подождите. Этот процесс " +"завершится по таймауту через 2 минуты." + #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:72 msgid "Modem default" msgstr "Настройки модема по умолчанию" #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:73 -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:76 +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:82 #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:61 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:73 #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:57 msgid "Modem device" msgstr "Модем" +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:41 +msgid "Modem disconnection in progress. Please wait." +msgstr "Отсоединение модема в процессе. Пожалуйста, подождите." + #: modules/luci-compat/luasrc/model/network/proto_ncm.lua:66 #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:24 msgid "Modem information query failed" @@ -3920,7 +3957,11 @@ msgstr "Ошибка запроса информации о модеме" msgid "Modem init timeout" msgstr "Время ожидания инициализации модема" -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:46 +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:44 +msgid "Modem is disabled." +msgstr "Модем отключен." + +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:52 msgid "ModemManager" msgstr "Менеджер модема" @@ -4072,7 +4113,7 @@ msgstr "Нет сетевого устройства" #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:50 #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:55 msgid "Network interface" -msgstr "" +msgstr "Сетевой интерфейс" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:777 msgid "New interface for \"%s\" can not be created: %s" @@ -4134,7 +4175,7 @@ msgstr "Файлы не найдены" #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:81 #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:86 msgid "No host route" -msgstr "" +msgstr "Нет маршрута" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:674 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:142 @@ -4217,7 +4258,7 @@ msgstr "Не использовать wildcard" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:159 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:183 -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:94 +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:100 msgid "None" msgstr "Ничего" @@ -4475,21 +4516,21 @@ msgstr "Исходящий:" #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:93 #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:98 msgid "Outgoing checksum" -msgstr "" +msgstr "Исходящая контрольная сумма" #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:86 #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:91 #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:88 #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:93 msgid "Outgoing key" -msgstr "" +msgstr "Исходящий ключ" #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:93 #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:98 #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:95 #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:100 msgid "Outgoing serialization" -msgstr "" +msgstr "Исходящая сериализация" #: protocols/luci-proto-vpnc/htdocs/luci-static/resources/protocol/vpnc.js:50 msgid "Output Interface" @@ -4518,7 +4559,7 @@ msgstr "Назначить MAC-адрес" #: protocols/luci-proto-hnet/htdocs/luci-static/resources/protocol/hnet.js:44 #: protocols/luci-proto-ipip/htdocs/luci-static/resources/protocol/ipip.js:53 #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dhcpv6.js:54 -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:114 +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:120 #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:158 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/l2tp.js:71 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:145 @@ -4582,12 +4623,12 @@ msgstr "Перезаписать существующий файл «%s»?" msgid "Owner" msgstr "Владелец" -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:91 +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:97 msgid "PAP/CHAP (both)" msgstr "PAP/CHAP (оба)" #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:98 -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:102 +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:108 #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:90 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/l2tp.js:45 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:89 @@ -4600,7 +4641,7 @@ msgid "PAP/CHAP password" msgstr "Пароль PAP/CHAP" #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:96 -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:97 +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:103 #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:88 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/l2tp.js:43 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:87 @@ -4621,7 +4662,7 @@ msgid "PID" msgstr "PID" #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:95 -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:88 +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:94 #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:87 #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:68 msgid "PIN" @@ -4793,7 +4834,7 @@ msgstr "Совершенная прямая секретность" #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:95 #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:100 msgid "Perform outgoing packets serialization (optional)." -msgstr "" +msgstr "Выполнять сериализацию исходящих пакетов (опционально)." #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/reboot.js:28 msgid "Perform reboot" @@ -5159,7 +5200,7 @@ msgstr "Удалённый IPv6-адрес" #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:42 #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:42 msgid "Remote IPv6 address or FQDN" -msgstr "" +msgstr "Удаленный IPv6-адрес или FQDN" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:849 msgid "Remove" @@ -5186,14 +5227,14 @@ msgstr "Таймаут запроса" #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:92 #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:97 msgid "Require incoming checksum (optional)." -msgstr "" +msgstr "Требуется входящая контрольная сумма (опционально)." #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:92 #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:97 #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:94 #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:99 msgid "Require incoming packets serialization (optional)." -msgstr "" +msgstr "Требуется сериализация входящих пакетов (опционально)." #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1610 msgid "Required" @@ -5249,7 +5290,7 @@ msgstr "Требуется hostapd с поддержкой SAE" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1237 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1238 msgid "Requires hostapd with WEP support" -msgstr "" +msgstr "Требуется hostapd с поддержкой WEP" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1607 msgid "" @@ -5299,7 +5340,7 @@ msgstr "Требуется wpa-supplicant с поддержкой SAE" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1251 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:1252 msgid "Requires wpa-supplicant with WEP support" -msgstr "" +msgstr "Требуется wpa-supplicant с поддержкой WEP" #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:224 msgid "Reselection policy for primary slave" @@ -5479,11 +5520,11 @@ msgstr "SSID" #: protocols/luci-proto-sstp/htdocs/luci-static/resources/protocol/sstp.js:9 msgid "SSTP" -msgstr "" +msgstr "SSTP" #: protocols/luci-proto-sstp/htdocs/luci-static/resources/protocol/sstp.js:41 msgid "SSTP Server" -msgstr "" +msgstr "Сервер SSTP" #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/mounts.js:339 msgid "SWAP" @@ -5625,7 +5666,6 @@ msgstr "" #: modules/luci-compat/luasrc/model/network/proto_modemmanager.lua:55 #: modules/luci-compat/luasrc/model/network/proto_qmi.lua:55 -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:42 #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:23 msgid "Setting PLMN failed" msgstr "Ошибка установки PLMN" @@ -5761,7 +5801,7 @@ msgstr "Адрес источника" #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:50 #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:50 msgid "Source interface" -msgstr "" +msgstr "Интерфейс источник" #: protocols/luci-proto-bonding/htdocs/luci-static/resources/protocol/bonding.js:342 msgid "" @@ -5974,6 +6014,9 @@ msgid "" "outer header inherits the value of the inner header) or an hexadecimal value " "starting with <code>0x</code> (optional)." msgstr "" +"Укажите TOS (Type of Service). Может быть как <code>inherit</code> (внешний " +"заголовок наследует значение внутреннего заголовка), так и шестнадцатеричное " +"значение, начинающееся с <code>0x</code> (опционально)." #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:62 #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:67 @@ -5983,6 +6026,8 @@ msgid "" "Specify a TTL (Time to Live) for the encapsulating packet other than the " "default (64) (optional)." msgstr "" +"Укажите TTL (Time to Live) для инкапсулирующего пакета, отличного от " +"стандартного (64) (опционально)." #: protocols/luci-proto-ipip/htdocs/luci-static/resources/protocol/ipip.js:58 #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:67 @@ -6001,6 +6046,9 @@ msgid "" "header inherits the value of the inner header) or an hexadecimal value " "starting with <code>0x</code> (optional)." msgstr "" +"Укажите TC (Traffic Class). Может быть как <code>inherit</code> (внешний " +"заголовок наследует значение внутреннего заголовка), так и шестнадцатеричное " +"значение, начинающееся с <code>0x</code> (опционально)." #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gre.js:57 #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/gretap.js:62 @@ -6010,6 +6058,8 @@ msgid "" "Specify an MTU (Maximum Transmission Unit) other than the default (1280 " "bytes) (optional)." msgstr "" +"Укажите MTU (Maximum Transmission Unit), отличный от стандартного (1280 байт)" +" (опционально)." #: protocols/luci-proto-ipip/htdocs/luci-static/resources/protocol/ipip.js:53 #: protocols/luci-proto-vxlan/htdocs/luci-static/resources/protocol/vxlan.js:62 @@ -6269,7 +6319,7 @@ msgstr "IPv6-адрес или полное доменное имя удален #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:42 msgid "" "The IPv6 address or the fully-qualified domain name of the remote tunnel end." -msgstr "" +msgstr "IPv6 адрес или полное доменное имя удаленного узла туннеля." #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/6rd.js:53 #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/map.js:59 @@ -6673,7 +6723,7 @@ msgstr "Трафик" #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6.js:72 #: protocols/luci-proto-gre/htdocs/luci-static/resources/protocol/grev6tap.js:77 msgid "Traffic Class" -msgstr "" +msgstr "Класс трафика (TC)" #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/connections.js:385 msgid "Transfer" @@ -6766,7 +6816,6 @@ msgstr "Невозможно загрузить данные журнала:" #: modules/luci-compat/luasrc/model/network/proto_modemmanager.lua:54 #: modules/luci-compat/luasrc/model/network/proto_qmi.lua:54 -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:41 #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:22 msgid "Unable to obtain client ID" msgstr "Невозможно получить идентификатор клиента" @@ -6816,6 +6865,10 @@ msgstr "Не ожидаемый формат данных ответа" msgid "Unknown" msgstr "Неизвестно" +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:47 +msgid "Unknown and unsupported connection method." +msgstr "Неизвестный и неподдерживаемый метод подключения." + #: modules/luci-base/htdocs/luci-static/resources/network.js:2276 #: modules/luci-compat/luasrc/model/network.lua:1138 msgid "Unknown error (%s)" @@ -7519,11 +7572,11 @@ msgstr "умолчания драйвера" #: protocols/luci-proto-sstp/htdocs/luci-static/resources/protocol/sstp.js:81 msgid "e.g: --proxy 10.10.10.10" -msgstr "" +msgstr "например: --proxy 10.10.10.10" #: protocols/luci-proto-sstp/htdocs/luci-static/resources/protocol/sstp.js:83 msgid "e.g: dump" -msgstr "" +msgstr "например: dump" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:517 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/dhcp.js:538 @@ -7684,7 +7737,7 @@ msgstr "режим сервера" #: protocols/luci-proto-sstp/htdocs/luci-static/resources/protocol/sstp.js:53 msgid "sstpc Log-level" -msgstr "" +msgstr "Уровень журналирования sstpc" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:649 msgid "stateful-only" diff --git a/modules/luci-base/po/sk/base.po b/modules/luci-base/po/sk/base.po index 599c238bba..b93b82985f 100644 --- a/modules/luci-base/po/sk/base.po +++ b/modules/luci-base/po/sk/base.po @@ -285,7 +285,7 @@ msgid "ANSI T1.413" msgstr "ANSI T1.413" #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:94 -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:87 +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:93 #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:86 #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:67 msgid "APN" @@ -791,7 +791,7 @@ msgstr "" msgid "Authentication" msgstr "Overenie totožnosti" -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:90 +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:96 #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:70 msgid "Authentication Type" msgstr "Typ overenia totožnosti" @@ -1013,7 +1013,6 @@ msgstr "Vo vyrovnávacej pamäti" #: modules/luci-compat/luasrc/model/network/proto_modemmanager.lua:53 #: modules/luci-compat/luasrc/model/network/proto_qmi.lua:53 -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:40 #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:21 msgid "Call failed" msgstr "Volanie zlyhalo" @@ -1277,6 +1276,10 @@ msgstr "Pripojené" msgid "Connection attempt failed" msgstr "Pokus o pripojenie zlyhal" +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:40 +msgid "Connection attempt failed." +msgstr "" + #: modules/luci-base/htdocs/luci-static/resources/rpc.js:414 msgid "Connection lost" msgstr "Pripojenie stratené" @@ -1605,6 +1608,10 @@ msgstr "Zariadenie nie je aktívne" msgid "Device is restarting…" msgstr "Zariadenie sa reštartuje…" +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:45 +msgid "Device not managed by ModemManager." +msgstr "" + #: modules/luci-base/htdocs/luci-static/resources/ui.js:4122 msgid "Device unreachable!" msgstr "Zariadenie neprístupné!" @@ -1686,6 +1693,10 @@ msgstr "Odpojiť" msgid "Disconnection attempt failed" msgstr "Pokus o odpojenie zlyhal" +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:48 +msgid "Disconnection attempt failed." +msgstr "" + #: modules/luci-base/htdocs/luci-static/resources/form.js:606 #: modules/luci-base/htdocs/luci-static/resources/form.js:2707 #: modules/luci-base/htdocs/luci-static/resources/ui.js:3268 @@ -2376,7 +2387,7 @@ msgstr "Porty brány" msgid "Gateway address is invalid" msgstr "" -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:118 +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:124 msgid "Gateway metric" msgstr "" @@ -2633,7 +2644,7 @@ msgstr "Adresy IP" msgid "IP Protocol" msgstr "Protokol IP" -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:108 +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:114 msgid "IP Type" msgstr "Typ IP" @@ -2696,7 +2707,7 @@ msgstr "" msgid "IPv4 network in address/netmask notation" msgstr "" -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:110 +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:116 msgid "IPv4 only" msgstr "Iba IPv4" @@ -2728,7 +2739,7 @@ msgstr "Brána IPv4" msgid "IPv4-in-IPv4 (RFC2003)" msgstr "" -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:109 +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:115 msgid "IPv4/IPv6 (both - defaults to IPv4)" msgstr "" @@ -2790,7 +2801,7 @@ msgstr "Brána IPv6" msgid "IPv6 network in address/netmask notation" msgstr "" -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:111 +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:117 msgid "IPv6 only" msgstr "" @@ -3125,6 +3136,12 @@ msgstr "" msgid "Invalid argument" msgstr "Neplatný parameter" +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:46 +msgid "" +"Invalid bearer list. Possibly too many bearers created. This protocol " +"supports one and only one bearer." +msgstr "" + #: modules/luci-base/htdocs/luci-static/resources/rpc.js:405 msgid "Invalid command" msgstr "Neplatný príkaz" @@ -3753,18 +3770,32 @@ msgstr "Režim" msgid "Model" msgstr "Model" +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:43 +msgid "Modem bearer teardown in progress." +msgstr "" + +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:42 +msgid "" +"Modem connection in progress. Please wait. This process will timeout after 2 " +"minutes." +msgstr "" + #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:72 msgid "Modem default" msgstr "" #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:73 -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:76 +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:82 #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:61 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:73 #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:57 msgid "Modem device" msgstr "" +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:41 +msgid "Modem disconnection in progress. Please wait." +msgstr "" + #: modules/luci-compat/luasrc/model/network/proto_ncm.lua:66 #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:24 msgid "Modem information query failed" @@ -3776,7 +3807,11 @@ msgstr "" msgid "Modem init timeout" msgstr "" -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:46 +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:44 +msgid "Modem is disabled." +msgstr "" + +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:52 msgid "ModemManager" msgstr "" @@ -4071,7 +4106,7 @@ msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:159 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:183 -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:94 +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:100 msgid "None" msgstr "" @@ -4354,7 +4389,7 @@ msgstr "Prepísať MAC adresu" #: protocols/luci-proto-hnet/htdocs/luci-static/resources/protocol/hnet.js:44 #: protocols/luci-proto-ipip/htdocs/luci-static/resources/protocol/ipip.js:53 #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dhcpv6.js:54 -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:114 +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:120 #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:158 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/l2tp.js:71 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:145 @@ -4416,12 +4451,12 @@ msgstr "" msgid "Owner" msgstr "Vlastník" -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:91 +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:97 msgid "PAP/CHAP (both)" msgstr "PAP/CHAP (oba)" #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:98 -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:102 +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:108 #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:90 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/l2tp.js:45 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:89 @@ -4434,7 +4469,7 @@ msgid "PAP/CHAP password" msgstr "Heslo PAP/CHAP" #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:96 -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:97 +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:103 #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:88 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/l2tp.js:43 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:87 @@ -4455,7 +4490,7 @@ msgid "PID" msgstr "PID" #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:95 -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:88 +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:94 #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:87 #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:68 msgid "PIN" @@ -5423,7 +5458,6 @@ msgstr "" #: modules/luci-compat/luasrc/model/network/proto_modemmanager.lua:55 #: modules/luci-compat/luasrc/model/network/proto_qmi.lua:55 -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:42 #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:23 msgid "Setting PLMN failed" msgstr "" @@ -6464,7 +6498,6 @@ msgstr "" #: modules/luci-compat/luasrc/model/network/proto_modemmanager.lua:54 #: modules/luci-compat/luasrc/model/network/proto_qmi.lua:54 -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:41 #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:22 msgid "Unable to obtain client ID" msgstr "" @@ -6514,6 +6547,10 @@ msgstr "" msgid "Unknown" msgstr "Neznáme" +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:47 +msgid "Unknown and unsupported connection method." +msgstr "" + #: modules/luci-base/htdocs/luci-static/resources/network.js:2276 #: modules/luci-compat/luasrc/model/network.lua:1138 msgid "Unknown error (%s)" diff --git a/modules/luci-base/po/sv/base.po b/modules/luci-base/po/sv/base.po index eb7f6cdf71..1811ae1e88 100644 --- a/modules/luci-base/po/sv/base.po +++ b/modules/luci-base/po/sv/base.po @@ -285,7 +285,7 @@ msgid "ANSI T1.413" msgstr "ANSI T1.413" #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:94 -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:87 +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:93 #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:86 #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:67 msgid "APN" @@ -791,7 +791,7 @@ msgstr "Autentiseringsgrupp" msgid "Authentication" msgstr "Autentisering" -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:90 +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:96 #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:70 msgid "Authentication Type" msgstr "Typ av autentisering" @@ -1014,7 +1014,6 @@ msgstr "" #: modules/luci-compat/luasrc/model/network/proto_modemmanager.lua:53 #: modules/luci-compat/luasrc/model/network/proto_qmi.lua:53 -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:40 #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:21 msgid "Call failed" msgstr "" @@ -1273,6 +1272,10 @@ msgstr "Ansluten" msgid "Connection attempt failed" msgstr "Anslutningsförsök misslyckades" +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:40 +msgid "Connection attempt failed." +msgstr "" + #: modules/luci-base/htdocs/luci-static/resources/rpc.js:414 msgid "Connection lost" msgstr "" @@ -1596,6 +1599,10 @@ msgstr "Enheten är ej aktiv" msgid "Device is restarting…" msgstr "Enheten startas om…" +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:45 +msgid "Device not managed by ModemManager." +msgstr "" + #: modules/luci-base/htdocs/luci-static/resources/ui.js:4122 msgid "Device unreachable!" msgstr "Enheten kan inte nås!" @@ -1678,6 +1685,10 @@ msgstr "" msgid "Disconnection attempt failed" msgstr "" +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:48 +msgid "Disconnection attempt failed." +msgstr "" + #: modules/luci-base/htdocs/luci-static/resources/form.js:606 #: modules/luci-base/htdocs/luci-static/resources/form.js:2707 #: modules/luci-base/htdocs/luci-static/resources/ui.js:3268 @@ -2369,7 +2380,7 @@ msgstr "Gateway-portar" msgid "Gateway address is invalid" msgstr "Ogiltig Gateway-adress" -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:118 +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:124 msgid "Gateway metric" msgstr "" @@ -2624,7 +2635,7 @@ msgstr "IP-adresser" msgid "IP Protocol" msgstr "" -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:108 +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:114 msgid "IP Type" msgstr "" @@ -2687,7 +2698,7 @@ msgstr "IPv4-nätmask" msgid "IPv4 network in address/netmask notation" msgstr "" -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:110 +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:116 msgid "IPv4 only" msgstr "Endast IPv4" @@ -2719,7 +2730,7 @@ msgstr "" msgid "IPv4-in-IPv4 (RFC2003)" msgstr "IPv4-i-IPv4 (RFC2003)" -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:109 +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:115 msgid "IPv4/IPv6 (both - defaults to IPv4)" msgstr "" @@ -2781,7 +2792,7 @@ msgstr "IPv6-gateway" msgid "IPv6 network in address/netmask notation" msgstr "" -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:111 +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:117 msgid "IPv6 only" msgstr "Endast IPv6" @@ -3116,6 +3127,12 @@ msgstr "" msgid "Invalid argument" msgstr "" +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:46 +msgid "" +"Invalid bearer list. Possibly too many bearers created. This protocol " +"supports one and only one bearer." +msgstr "" + #: modules/luci-base/htdocs/luci-static/resources/rpc.js:405 msgid "Invalid command" msgstr "" @@ -3742,18 +3759,32 @@ msgstr "Läge" msgid "Model" msgstr "Modell" +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:43 +msgid "Modem bearer teardown in progress." +msgstr "" + +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:42 +msgid "" +"Modem connection in progress. Please wait. This process will timeout after 2 " +"minutes." +msgstr "" + #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:72 msgid "Modem default" msgstr "" #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:73 -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:76 +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:82 #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:61 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:73 #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:57 msgid "Modem device" msgstr "Modem-enhet" +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:41 +msgid "Modem disconnection in progress. Please wait." +msgstr "" + #: modules/luci-compat/luasrc/model/network/proto_ncm.lua:66 #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:24 msgid "Modem information query failed" @@ -3765,7 +3796,11 @@ msgstr "" msgid "Modem init timeout" msgstr "" -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:46 +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:44 +msgid "Modem is disabled." +msgstr "" + +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:52 msgid "ModemManager" msgstr "" @@ -4060,7 +4095,7 @@ msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:159 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:183 -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:94 +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:100 msgid "None" msgstr "Ingen" @@ -4343,7 +4378,7 @@ msgstr "" #: protocols/luci-proto-hnet/htdocs/luci-static/resources/protocol/hnet.js:44 #: protocols/luci-proto-ipip/htdocs/luci-static/resources/protocol/ipip.js:53 #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dhcpv6.js:54 -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:114 +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:120 #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:158 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/l2tp.js:71 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:145 @@ -4405,12 +4440,12 @@ msgstr "" msgid "Owner" msgstr "Ägare" -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:91 +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:97 msgid "PAP/CHAP (both)" msgstr "" #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:98 -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:102 +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:108 #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:90 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/l2tp.js:45 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:89 @@ -4423,7 +4458,7 @@ msgid "PAP/CHAP password" msgstr "PAP/CHAP-lösenord" #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:96 -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:97 +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:103 #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:88 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/l2tp.js:43 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:87 @@ -4444,7 +4479,7 @@ msgid "PID" msgstr "PID" #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:95 -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:88 +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:94 #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:87 #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:68 msgid "PIN" @@ -5412,7 +5447,6 @@ msgstr "" #: modules/luci-compat/luasrc/model/network/proto_modemmanager.lua:55 #: modules/luci-compat/luasrc/model/network/proto_qmi.lua:55 -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:42 #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:23 msgid "Setting PLMN failed" msgstr "" @@ -6435,7 +6469,6 @@ msgstr "" #: modules/luci-compat/luasrc/model/network/proto_modemmanager.lua:54 #: modules/luci-compat/luasrc/model/network/proto_qmi.lua:54 -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:41 #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:22 msgid "Unable to obtain client ID" msgstr "" @@ -6485,6 +6518,10 @@ msgstr "" msgid "Unknown" msgstr "Okänd" +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:47 +msgid "Unknown and unsupported connection method." +msgstr "" + #: modules/luci-base/htdocs/luci-static/resources/network.js:2276 #: modules/luci-compat/luasrc/model/network.lua:1138 msgid "Unknown error (%s)" diff --git a/modules/luci-base/po/templates/base.pot b/modules/luci-base/po/templates/base.pot index bb0182b238..b507c1a3c5 100644 --- a/modules/luci-base/po/templates/base.pot +++ b/modules/luci-base/po/templates/base.pot @@ -269,7 +269,7 @@ msgid "ANSI T1.413" msgstr "" #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:94 -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:87 +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:93 #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:86 #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:67 msgid "APN" @@ -772,7 +772,7 @@ msgstr "" msgid "Authentication" msgstr "" -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:90 +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:96 #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:70 msgid "Authentication Type" msgstr "" @@ -994,7 +994,6 @@ msgstr "" #: modules/luci-compat/luasrc/model/network/proto_modemmanager.lua:53 #: modules/luci-compat/luasrc/model/network/proto_qmi.lua:53 -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:40 #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:21 msgid "Call failed" msgstr "" @@ -1251,6 +1250,10 @@ msgstr "" msgid "Connection attempt failed" msgstr "" +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:40 +msgid "Connection attempt failed." +msgstr "" + #: modules/luci-base/htdocs/luci-static/resources/rpc.js:414 msgid "Connection lost" msgstr "" @@ -1574,6 +1577,10 @@ msgstr "" msgid "Device is restarting…" msgstr "" +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:45 +msgid "Device not managed by ModemManager." +msgstr "" + #: modules/luci-base/htdocs/luci-static/resources/ui.js:4122 msgid "Device unreachable!" msgstr "" @@ -1654,6 +1661,10 @@ msgstr "" msgid "Disconnection attempt failed" msgstr "" +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:48 +msgid "Disconnection attempt failed." +msgstr "" + #: modules/luci-base/htdocs/luci-static/resources/form.js:606 #: modules/luci-base/htdocs/luci-static/resources/form.js:2707 #: modules/luci-base/htdocs/luci-static/resources/ui.js:3268 @@ -2340,7 +2351,7 @@ msgstr "" msgid "Gateway address is invalid" msgstr "" -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:118 +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:124 msgid "Gateway metric" msgstr "" @@ -2595,7 +2606,7 @@ msgstr "" msgid "IP Protocol" msgstr "" -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:108 +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:114 msgid "IP Type" msgstr "" @@ -2658,7 +2669,7 @@ msgstr "" msgid "IPv4 network in address/netmask notation" msgstr "" -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:110 +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:116 msgid "IPv4 only" msgstr "" @@ -2690,7 +2701,7 @@ msgstr "" msgid "IPv4-in-IPv4 (RFC2003)" msgstr "" -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:109 +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:115 msgid "IPv4/IPv6 (both - defaults to IPv4)" msgstr "" @@ -2752,7 +2763,7 @@ msgstr "" msgid "IPv6 network in address/netmask notation" msgstr "" -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:111 +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:117 msgid "IPv6 only" msgstr "" @@ -3087,6 +3098,12 @@ msgstr "" msgid "Invalid argument" msgstr "" +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:46 +msgid "" +"Invalid bearer list. Possibly too many bearers created. This protocol " +"supports one and only one bearer." +msgstr "" + #: modules/luci-base/htdocs/luci-static/resources/rpc.js:405 msgid "Invalid command" msgstr "" @@ -3712,18 +3729,32 @@ msgstr "" msgid "Model" msgstr "" +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:43 +msgid "Modem bearer teardown in progress." +msgstr "" + +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:42 +msgid "" +"Modem connection in progress. Please wait. This process will timeout after 2 " +"minutes." +msgstr "" + #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:72 msgid "Modem default" msgstr "" #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:73 -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:76 +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:82 #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:61 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:73 #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:57 msgid "Modem device" msgstr "" +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:41 +msgid "Modem disconnection in progress. Please wait." +msgstr "" + #: modules/luci-compat/luasrc/model/network/proto_ncm.lua:66 #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:24 msgid "Modem information query failed" @@ -3735,7 +3766,11 @@ msgstr "" msgid "Modem init timeout" msgstr "" -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:46 +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:44 +msgid "Modem is disabled." +msgstr "" + +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:52 msgid "ModemManager" msgstr "" @@ -4030,7 +4065,7 @@ msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:159 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:183 -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:94 +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:100 msgid "None" msgstr "" @@ -4313,7 +4348,7 @@ msgstr "" #: protocols/luci-proto-hnet/htdocs/luci-static/resources/protocol/hnet.js:44 #: protocols/luci-proto-ipip/htdocs/luci-static/resources/protocol/ipip.js:53 #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dhcpv6.js:54 -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:114 +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:120 #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:158 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/l2tp.js:71 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:145 @@ -4375,12 +4410,12 @@ msgstr "" msgid "Owner" msgstr "" -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:91 +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:97 msgid "PAP/CHAP (both)" msgstr "" #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:98 -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:102 +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:108 #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:90 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/l2tp.js:45 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:89 @@ -4393,7 +4428,7 @@ msgid "PAP/CHAP password" msgstr "" #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:96 -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:97 +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:103 #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:88 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/l2tp.js:43 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:87 @@ -4414,7 +4449,7 @@ msgid "PID" msgstr "" #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:95 -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:88 +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:94 #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:87 #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:68 msgid "PIN" @@ -5380,7 +5415,6 @@ msgstr "" #: modules/luci-compat/luasrc/model/network/proto_modemmanager.lua:55 #: modules/luci-compat/luasrc/model/network/proto_qmi.lua:55 -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:42 #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:23 msgid "Setting PLMN failed" msgstr "" @@ -6399,7 +6433,6 @@ msgstr "" #: modules/luci-compat/luasrc/model/network/proto_modemmanager.lua:54 #: modules/luci-compat/luasrc/model/network/proto_qmi.lua:54 -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:41 #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:22 msgid "Unable to obtain client ID" msgstr "" @@ -6449,6 +6482,10 @@ msgstr "" msgid "Unknown" msgstr "" +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:47 +msgid "Unknown and unsupported connection method." +msgstr "" + #: modules/luci-base/htdocs/luci-static/resources/network.js:2276 #: modules/luci-compat/luasrc/model/network.lua:1138 msgid "Unknown error (%s)" diff --git a/modules/luci-base/po/tr/base.po b/modules/luci-base/po/tr/base.po index 1d95c964f9..4841408245 100644 --- a/modules/luci-base/po/tr/base.po +++ b/modules/luci-base/po/tr/base.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: \n" "POT-Creation-Date: \n" -"PO-Revision-Date: 2020-01-14 15:21+0000\n" -"Last-Translator: Franco Castillo <castillofrancodamian@gmail.com>\n" +"PO-Revision-Date: 2020-07-22 02:41+0000\n" +"Last-Translator: tentena <thetentena@gmail.com>\n" "Language-Team: Turkish <https://hosted.weblate.org/projects/openwrt/luci/tr/>" "\n" "Language: tr\n" @@ -11,16 +11,14 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" -"X-Generator: Weblate 3.11-dev\n" +"X-Generator: Weblate 4.2-dev\n" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/interfaces.js:929 -#, fuzzy msgid "%.1f dB" msgstr "%.1f dB" #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:114 #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:261 -#, fuzzy msgid "%d Bit" msgstr "%d Bit" @@ -290,7 +288,7 @@ msgid "ANSI T1.413" msgstr "ANSI T1.413" #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:94 -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:87 +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:93 #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:86 #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:67 msgid "APN" @@ -802,7 +800,7 @@ msgstr "" msgid "Authentication" msgstr "Kimlik Doğrulama" -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:90 +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:96 #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:70 msgid "Authentication Type" msgstr "Kimlik doğrulama türü" @@ -1024,7 +1022,6 @@ msgstr "" #: modules/luci-compat/luasrc/model/network/proto_modemmanager.lua:53 #: modules/luci-compat/luasrc/model/network/proto_qmi.lua:53 -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:40 #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:21 msgid "Call failed" msgstr "" @@ -1283,6 +1280,10 @@ msgstr "Bağlandı" msgid "Connection attempt failed" msgstr "" +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:40 +msgid "Connection attempt failed." +msgstr "" + #: modules/luci-base/htdocs/luci-static/resources/rpc.js:414 msgid "Connection lost" msgstr "" @@ -1606,6 +1607,10 @@ msgstr "" msgid "Device is restarting…" msgstr "" +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:45 +msgid "Device not managed by ModemManager." +msgstr "" + #: modules/luci-base/htdocs/luci-static/resources/ui.js:4122 msgid "Device unreachable!" msgstr "Cihaz ulaşılamaz!" @@ -1688,6 +1693,10 @@ msgstr "" msgid "Disconnection attempt failed" msgstr "Bağlantı kesme girişimi başarısız oldu" +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:48 +msgid "Disconnection attempt failed." +msgstr "" + #: modules/luci-base/htdocs/luci-static/resources/form.js:606 #: modules/luci-base/htdocs/luci-static/resources/form.js:2707 #: modules/luci-base/htdocs/luci-static/resources/ui.js:3268 @@ -2374,7 +2383,7 @@ msgstr "" msgid "Gateway address is invalid" msgstr "" -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:118 +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:124 msgid "Gateway metric" msgstr "" @@ -2629,7 +2638,7 @@ msgstr "" msgid "IP Protocol" msgstr "" -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:108 +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:114 msgid "IP Type" msgstr "" @@ -2692,7 +2701,7 @@ msgstr "" msgid "IPv4 network in address/netmask notation" msgstr "" -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:110 +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:116 msgid "IPv4 only" msgstr "" @@ -2724,7 +2733,7 @@ msgstr "" msgid "IPv4-in-IPv4 (RFC2003)" msgstr "" -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:109 +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:115 msgid "IPv4/IPv6 (both - defaults to IPv4)" msgstr "" @@ -2786,7 +2795,7 @@ msgstr "" msgid "IPv6 network in address/netmask notation" msgstr "" -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:111 +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:117 msgid "IPv6 only" msgstr "" @@ -3121,6 +3130,12 @@ msgstr "" msgid "Invalid argument" msgstr "" +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:46 +msgid "" +"Invalid bearer list. Possibly too many bearers created. This protocol " +"supports one and only one bearer." +msgstr "" + #: modules/luci-base/htdocs/luci-static/resources/rpc.js:405 msgid "Invalid command" msgstr "" @@ -3746,18 +3761,32 @@ msgstr "" msgid "Model" msgstr "" +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:43 +msgid "Modem bearer teardown in progress." +msgstr "" + +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:42 +msgid "" +"Modem connection in progress. Please wait. This process will timeout after 2 " +"minutes." +msgstr "" + #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:72 msgid "Modem default" msgstr "" #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:73 -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:76 +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:82 #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:61 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:73 #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:57 msgid "Modem device" msgstr "" +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:41 +msgid "Modem disconnection in progress. Please wait." +msgstr "" + #: modules/luci-compat/luasrc/model/network/proto_ncm.lua:66 #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:24 msgid "Modem information query failed" @@ -3769,7 +3798,11 @@ msgstr "" msgid "Modem init timeout" msgstr "" -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:46 +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:44 +msgid "Modem is disabled." +msgstr "" + +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:52 msgid "ModemManager" msgstr "" @@ -4064,7 +4097,7 @@ msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:159 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:183 -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:94 +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:100 msgid "None" msgstr "" @@ -4347,7 +4380,7 @@ msgstr "" #: protocols/luci-proto-hnet/htdocs/luci-static/resources/protocol/hnet.js:44 #: protocols/luci-proto-ipip/htdocs/luci-static/resources/protocol/ipip.js:53 #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dhcpv6.js:54 -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:114 +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:120 #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:158 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/l2tp.js:71 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:145 @@ -4399,7 +4432,7 @@ msgstr "" #: modules/luci-mod-status/root/usr/share/luci/menu.d/luci-mod-status.json:3 msgid "Overview" -msgstr "Genel Bakış" +msgstr "Genel bakış" #: modules/luci-base/htdocs/luci-static/resources/ui.js:2680 msgid "Overwrite existing file \"%s\" ?" @@ -4409,12 +4442,12 @@ msgstr "" msgid "Owner" msgstr "" -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:91 +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:97 msgid "PAP/CHAP (both)" msgstr "" #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:98 -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:102 +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:108 #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:90 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/l2tp.js:45 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:89 @@ -4427,7 +4460,7 @@ msgid "PAP/CHAP password" msgstr "" #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:96 -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:97 +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:103 #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:88 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/l2tp.js:43 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:87 @@ -4448,7 +4481,7 @@ msgid "PID" msgstr "" #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:95 -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:88 +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:94 #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:87 #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:68 msgid "PIN" @@ -5415,7 +5448,6 @@ msgstr "" #: modules/luci-compat/luasrc/model/network/proto_modemmanager.lua:55 #: modules/luci-compat/luasrc/model/network/proto_qmi.lua:55 -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:42 #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:23 msgid "Setting PLMN failed" msgstr "" @@ -6434,7 +6466,6 @@ msgstr "" #: modules/luci-compat/luasrc/model/network/proto_modemmanager.lua:54 #: modules/luci-compat/luasrc/model/network/proto_qmi.lua:54 -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:41 #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:22 msgid "Unable to obtain client ID" msgstr "" @@ -6484,6 +6515,10 @@ msgstr "" msgid "Unknown" msgstr "" +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:47 +msgid "Unknown and unsupported connection method." +msgstr "" + #: modules/luci-base/htdocs/luci-static/resources/network.js:2276 #: modules/luci-compat/luasrc/model/network.lua:1138 msgid "Unknown error (%s)" diff --git a/modules/luci-base/po/uk/base.po b/modules/luci-base/po/uk/base.po index 944f4a98ce..4d73a7fe45 100644 --- a/modules/luci-base/po/uk/base.po +++ b/modules/luci-base/po/uk/base.po @@ -306,7 +306,7 @@ msgid "ANSI T1.413" msgstr "ANSI T1.413" #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:94 -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:87 +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:93 #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:86 #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:67 msgid "APN" @@ -838,7 +838,7 @@ msgstr "Група автентифікації" msgid "Authentication" msgstr "Автентифікація" -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:90 +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:96 #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:70 msgid "Authentication Type" msgstr "Тип автентифікації" @@ -1067,7 +1067,6 @@ msgstr "Кешовано" #: modules/luci-compat/luasrc/model/network/proto_modemmanager.lua:53 #: modules/luci-compat/luasrc/model/network/proto_qmi.lua:53 -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:40 #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:21 msgid "Call failed" msgstr "Не вдалося здійснити виклик" @@ -1348,6 +1347,10 @@ msgstr "Підключено" msgid "Connection attempt failed" msgstr "Невдала спроба підключення" +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:40 +msgid "Connection attempt failed." +msgstr "" + #: modules/luci-base/htdocs/luci-static/resources/rpc.js:414 msgid "Connection lost" msgstr "З'єднання втрачено" @@ -1685,6 +1688,10 @@ msgstr "Пристрій не є активним" msgid "Device is restarting…" msgstr "Пристрій перезавантажується…" +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:45 +msgid "Device not managed by ModemManager." +msgstr "" + #: modules/luci-base/htdocs/luci-static/resources/ui.js:4122 msgid "Device unreachable!" msgstr "Пристрій недосяжний!" @@ -1767,6 +1774,10 @@ msgstr "Від'єднати" msgid "Disconnection attempt failed" msgstr "Спроба від'єднання не вдалася" +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:48 +msgid "Disconnection attempt failed." +msgstr "" + #: modules/luci-base/htdocs/luci-static/resources/form.js:606 #: modules/luci-base/htdocs/luci-static/resources/form.js:2707 #: modules/luci-base/htdocs/luci-static/resources/ui.js:3268 @@ -2484,7 +2495,7 @@ msgstr "Порти шлюзу" msgid "Gateway address is invalid" msgstr "Неприпустима адреса шлюзу" -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:118 +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:124 msgid "Gateway metric" msgstr "Метрика шлюзу" @@ -2745,7 +2756,7 @@ msgstr "IP-адреси" msgid "IP Protocol" msgstr "IP-протокол" -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:108 +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:114 msgid "IP Type" msgstr "Тип IP" @@ -2808,7 +2819,7 @@ msgstr "Маска мережі IPv4" msgid "IPv4 network in address/netmask notation" msgstr "Мережа IPv4 у позначенні адреси / мережевої маски" -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:110 +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:116 msgid "IPv4 only" msgstr "Лише IPv4" @@ -2840,7 +2851,7 @@ msgstr "Шлюз IPv4" msgid "IPv4-in-IPv4 (RFC2003)" msgstr "IPv4 у IPv4 (RFC2003)" -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:109 +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:115 msgid "IPv4/IPv6 (both - defaults to IPv4)" msgstr "IPv4/IPv6 (обидва - типово для IPv4)" @@ -2904,7 +2915,7 @@ msgstr "Шлюз IPv6" msgid "IPv6 network in address/netmask notation" msgstr "Мережа IPv6 у позначенні адреси / мережевої маски" -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:111 +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:117 msgid "IPv6 only" msgstr "Лише IPv6" @@ -3257,6 +3268,12 @@ msgstr "" msgid "Invalid argument" msgstr "Неприпустимий аргумент" +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:46 +msgid "" +"Invalid bearer list. Possibly too many bearers created. This protocol " +"supports one and only one bearer." +msgstr "" + #: modules/luci-base/htdocs/luci-static/resources/rpc.js:405 msgid "Invalid command" msgstr "Неприпустима команда" @@ -3917,18 +3934,32 @@ msgstr "Режим" msgid "Model" msgstr "Модель" +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:43 +msgid "Modem bearer teardown in progress." +msgstr "" + +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:42 +msgid "" +"Modem connection in progress. Please wait. This process will timeout after 2 " +"minutes." +msgstr "" + #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:72 msgid "Modem default" msgstr "Типові налаштування модема" #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:73 -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:76 +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:82 #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:61 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:73 #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:57 msgid "Modem device" msgstr "Модем" +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:41 +msgid "Modem disconnection in progress. Please wait." +msgstr "" + #: modules/luci-compat/luasrc/model/network/proto_ncm.lua:66 #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:24 msgid "Modem information query failed" @@ -3940,7 +3971,11 @@ msgstr "Помилка запиту інформації про модем" msgid "Modem init timeout" msgstr "Тайм-аут ініціалізації модему" -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:46 +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:44 +msgid "Modem is disabled." +msgstr "" + +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:52 msgid "ModemManager" msgstr "Менеджер модему" @@ -4237,7 +4272,7 @@ msgstr "Без шаблону заміни" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:159 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:183 -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:94 +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:100 msgid "None" msgstr "Жоден" @@ -4536,7 +4571,7 @@ msgstr "Перевизначити MAC-адресу" #: protocols/luci-proto-hnet/htdocs/luci-static/resources/protocol/hnet.js:44 #: protocols/luci-proto-ipip/htdocs/luci-static/resources/protocol/ipip.js:53 #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dhcpv6.js:54 -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:114 +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:120 #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:158 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/l2tp.js:71 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:145 @@ -4601,12 +4636,12 @@ msgstr "Перезаписати існуючий файл \"%s\"?" msgid "Owner" msgstr "Власник" -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:91 +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:97 msgid "PAP/CHAP (both)" msgstr "PAP/CHAP (обидва)" #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:98 -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:102 +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:108 #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:90 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/l2tp.js:45 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:89 @@ -4619,7 +4654,7 @@ msgid "PAP/CHAP password" msgstr "Пароль PAP/CHAP" #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:96 -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:97 +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:103 #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:88 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/l2tp.js:43 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:87 @@ -4640,7 +4675,7 @@ msgid "PID" msgstr "<abbr title=\"Process Identifier — Ідентифікатор процесу\">PID</abbr>" #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:95 -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:88 +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:94 #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:87 #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:68 msgid "PIN" @@ -5637,7 +5672,6 @@ msgstr "" #: modules/luci-compat/luasrc/model/network/proto_modemmanager.lua:55 #: modules/luci-compat/luasrc/model/network/proto_qmi.lua:55 -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:42 #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:23 msgid "Setting PLMN failed" msgstr "Не вдалося налаштувати PLMN" @@ -6748,7 +6782,6 @@ msgstr "Не вдалося завантажити дані журналу:" #: modules/luci-compat/luasrc/model/network/proto_modemmanager.lua:54 #: modules/luci-compat/luasrc/model/network/proto_qmi.lua:54 -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:41 #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:22 msgid "Unable to obtain client ID" msgstr "Не вдалося отримати ідентифікатор клієнта" @@ -6798,6 +6831,10 @@ msgstr "Несподіваний формат даних відповіді" msgid "Unknown" msgstr "Невідомо" +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:47 +msgid "Unknown and unsupported connection method." +msgstr "" + #: modules/luci-base/htdocs/luci-static/resources/network.js:2276 #: modules/luci-compat/luasrc/model/network.lua:1138 msgid "Unknown error (%s)" diff --git a/modules/luci-base/po/vi/base.po b/modules/luci-base/po/vi/base.po index c26d96dabf..4541748dc2 100644 --- a/modules/luci-base/po/vi/base.po +++ b/modules/luci-base/po/vi/base.po @@ -298,7 +298,7 @@ msgid "ANSI T1.413" msgstr "ANSI T1.413" #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:94 -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:87 +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:93 #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:86 #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:67 msgid "APN" @@ -817,7 +817,7 @@ msgstr "Nhóm xác thực" msgid "Authentication" msgstr "Xác thực" -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:90 +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:96 #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:70 msgid "Authentication Type" msgstr "Kiểu xác thực" @@ -1044,7 +1044,6 @@ msgstr "" #: modules/luci-compat/luasrc/model/network/proto_modemmanager.lua:53 #: modules/luci-compat/luasrc/model/network/proto_qmi.lua:53 -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:40 #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:21 msgid "Call failed" msgstr "Liên lạc thất bại" @@ -1311,6 +1310,10 @@ msgstr "Đã kết nối" msgid "Connection attempt failed" msgstr "Kết nối thất bại" +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:40 +msgid "Connection attempt failed." +msgstr "" + #: modules/luci-base/htdocs/luci-static/resources/rpc.js:414 msgid "Connection lost" msgstr "Mất kết nối" @@ -1641,6 +1644,10 @@ msgstr "thiết bị chưa được kích hoạt" msgid "Device is restarting…" msgstr "Khởi động lại thiết bị ..." +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:45 +msgid "Device not managed by ModemManager." +msgstr "" + #: modules/luci-base/htdocs/luci-static/resources/ui.js:4122 msgid "Device unreachable!" msgstr "Thiết bị không thể truy cập! " @@ -1723,6 +1730,10 @@ msgstr "Ngắt kết nối" msgid "Disconnection attempt failed" msgstr "Kết nối thất bại" +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:48 +msgid "Disconnection attempt failed." +msgstr "" + #: modules/luci-base/htdocs/luci-static/resources/form.js:606 #: modules/luci-base/htdocs/luci-static/resources/form.js:2707 #: modules/luci-base/htdocs/luci-static/resources/ui.js:3268 @@ -2431,7 +2442,7 @@ msgstr "Cổng Gateway" msgid "Gateway address is invalid" msgstr "Địa chỉ Gateway không hợp lệ" -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:118 +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:124 msgid "Gateway metric" msgstr "" @@ -2688,7 +2699,7 @@ msgstr "Địa chỉ IP" msgid "IP Protocol" msgstr "Giao thức IP" -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:108 +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:114 msgid "IP Type" msgstr "" @@ -2751,7 +2762,7 @@ msgstr "" msgid "IPv4 network in address/netmask notation" msgstr "" -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:110 +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:116 msgid "IPv4 only" msgstr "" @@ -2783,7 +2794,7 @@ msgstr "" msgid "IPv4-in-IPv4 (RFC2003)" msgstr "" -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:109 +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:115 msgid "IPv4/IPv6 (both - defaults to IPv4)" msgstr "" @@ -2845,7 +2856,7 @@ msgstr "" msgid "IPv6 network in address/netmask notation" msgstr "" -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:111 +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:117 msgid "IPv6 only" msgstr "" @@ -3193,6 +3204,12 @@ msgstr "" msgid "Invalid argument" msgstr "" +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:46 +msgid "" +"Invalid bearer list. Possibly too many bearers created. This protocol " +"supports one and only one bearer." +msgstr "" + #: modules/luci-base/htdocs/luci-static/resources/rpc.js:405 msgid "Invalid command" msgstr "Lệnh ko hợp lệ" @@ -3838,18 +3855,32 @@ msgstr "Chế độ" msgid "Model" msgstr "Mô hình" +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:43 +msgid "Modem bearer teardown in progress." +msgstr "" + +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:42 +msgid "" +"Modem connection in progress. Please wait. This process will timeout after 2 " +"minutes." +msgstr "" + #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:72 msgid "Modem default" msgstr "Mô hình mặc định" #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:73 -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:76 +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:82 #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:61 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:73 #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:57 msgid "Modem device" msgstr "Thiết bị modem" +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:41 +msgid "Modem disconnection in progress. Please wait." +msgstr "" + #: modules/luci-compat/luasrc/model/network/proto_ncm.lua:66 #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:24 msgid "Modem information query failed" @@ -3861,7 +3892,11 @@ msgstr "Truy vấn thông tin modem không thành công" msgid "Modem init timeout" msgstr "Hết thời gian khởi động modem" -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:46 +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:44 +msgid "Modem is disabled." +msgstr "" + +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:52 msgid "ModemManager" msgstr "" @@ -4158,7 +4193,7 @@ msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:159 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:183 -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:94 +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:100 msgid "None" msgstr "Không" @@ -4456,7 +4491,7 @@ msgstr "Ghi đè địa chỉ MAC" #: protocols/luci-proto-hnet/htdocs/luci-static/resources/protocol/hnet.js:44 #: protocols/luci-proto-ipip/htdocs/luci-static/resources/protocol/ipip.js:53 #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dhcpv6.js:54 -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:114 +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:120 #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:158 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/l2tp.js:71 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:145 @@ -4520,12 +4555,12 @@ msgstr "Ghi đè tệp đã tồn tại \"%s\" ?" msgid "Owner" msgstr "Chủ sở hữu" -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:91 +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:97 msgid "PAP/CHAP (both)" msgstr "" #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:98 -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:102 +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:108 #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:90 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/l2tp.js:45 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:89 @@ -4538,7 +4573,7 @@ msgid "PAP/CHAP password" msgstr "Mật khẩu PAP/CHAP" #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:96 -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:97 +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:103 #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:88 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/l2tp.js:43 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:87 @@ -4559,7 +4594,7 @@ msgid "PID" msgstr "PID" #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:95 -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:88 +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:94 #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:87 #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:68 msgid "PIN" @@ -5555,7 +5590,6 @@ msgstr "" #: modules/luci-compat/luasrc/model/network/proto_modemmanager.lua:55 #: modules/luci-compat/luasrc/model/network/proto_qmi.lua:55 -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:42 #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:23 msgid "Setting PLMN failed" msgstr "Cài đặt PLMN không thành công" @@ -6644,7 +6678,6 @@ msgstr "" #: modules/luci-compat/luasrc/model/network/proto_modemmanager.lua:54 #: modules/luci-compat/luasrc/model/network/proto_qmi.lua:54 -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:41 #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:22 msgid "Unable to obtain client ID" msgstr "Không thể có được ID máy khách" @@ -6694,6 +6727,10 @@ msgstr "Định dạng dữ liệu trả lời bất ngờ" msgid "Unknown" msgstr "Không xác định" +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:47 +msgid "Unknown and unsupported connection method." +msgstr "" + #: modules/luci-base/htdocs/luci-static/resources/network.js:2276 #: modules/luci-compat/luasrc/model/network.lua:1138 msgid "Unknown error (%s)" diff --git a/modules/luci-base/po/zh_Hans/base.po b/modules/luci-base/po/zh_Hans/base.po index 60ad1a5af9..3a28f3eb8e 100644 --- a/modules/luci-base/po/zh_Hans/base.po +++ b/modules/luci-base/po/zh_Hans/base.po @@ -294,7 +294,7 @@ msgid "ANSI T1.413" msgstr "ANSI T1.413" #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:94 -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:87 +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:93 #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:86 #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:67 msgid "APN" @@ -802,7 +802,7 @@ msgstr "认证组" msgid "Authentication" msgstr "身份验证" -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:90 +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:96 #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:70 msgid "Authentication Type" msgstr "身份验证类型" @@ -1026,7 +1026,6 @@ msgstr "已缓存" #: modules/luci-compat/luasrc/model/network/proto_modemmanager.lua:53 #: modules/luci-compat/luasrc/model/network/proto_qmi.lua:53 -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:40 #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:21 msgid "Call failed" msgstr "调用失败" @@ -1294,6 +1293,10 @@ msgstr "已连接" msgid "Connection attempt failed" msgstr "尝试连接失败" +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:40 +msgid "Connection attempt failed." +msgstr "" + #: modules/luci-base/htdocs/luci-static/resources/rpc.js:414 msgid "Connection lost" msgstr "失去连接" @@ -1623,6 +1626,10 @@ msgstr "设备未激活" msgid "Device is restarting…" msgstr "设备正在重启…" +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:45 +msgid "Device not managed by ModemManager." +msgstr "" + #: modules/luci-base/htdocs/luci-static/resources/ui.js:4122 msgid "Device unreachable!" msgstr "无法连接到设备!" @@ -1705,6 +1712,10 @@ msgstr "断开连接" msgid "Disconnection attempt failed" msgstr "尝试断开连接失败" +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:48 +msgid "Disconnection attempt failed." +msgstr "" + #: modules/luci-base/htdocs/luci-static/resources/form.js:606 #: modules/luci-base/htdocs/luci-static/resources/form.js:2707 #: modules/luci-base/htdocs/luci-static/resources/ui.js:3268 @@ -2401,7 +2412,7 @@ msgstr "网关端口" msgid "Gateway address is invalid" msgstr "网关地址无效" -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:118 +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:124 msgid "Gateway metric" msgstr "网关跃点" @@ -2657,7 +2668,7 @@ msgstr "IP 地址" msgid "IP Protocol" msgstr "IP 协议" -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:108 +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:114 msgid "IP Type" msgstr "IP 类型" @@ -2720,7 +2731,7 @@ msgstr "IPv4 子网掩码" msgid "IPv4 network in address/netmask notation" msgstr "地址/网络掩码表示法中的 IPv4 网络" -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:110 +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:116 msgid "IPv4 only" msgstr "仅 IPv4" @@ -2752,7 +2763,7 @@ msgstr "IPv4 网关" msgid "IPv4-in-IPv4 (RFC2003)" msgstr "IPv4-in-IPv4 (RFC2003)" -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:109 +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:115 msgid "IPv4/IPv6 (both - defaults to IPv4)" msgstr "IPv4/IPv6 (双栈 - 默认 IPv4)" @@ -2814,7 +2825,7 @@ msgstr "IPv6 网关" msgid "IPv6 network in address/netmask notation" msgstr "地址/网络掩码表示法中的 IPv6 网络" -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:111 +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:117 msgid "IPv6 only" msgstr "仅 IPv6" @@ -3156,6 +3167,12 @@ msgstr "无效的 VLAN ID!只允许唯一的 ID" msgid "Invalid argument" msgstr "无效参数" +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:46 +msgid "" +"Invalid bearer list. Possibly too many bearers created. This protocol " +"supports one and only one bearer." +msgstr "" + #: modules/luci-base/htdocs/luci-static/resources/rpc.js:405 msgid "Invalid command" msgstr "无效命令" @@ -3789,18 +3806,32 @@ msgstr "模式" msgid "Model" msgstr "型号" +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:43 +msgid "Modem bearer teardown in progress." +msgstr "" + +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:42 +msgid "" +"Modem connection in progress. Please wait. This process will timeout after 2 " +"minutes." +msgstr "" + #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:72 msgid "Modem default" msgstr "调制解调器默认" #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:73 -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:76 +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:82 #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:61 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:73 #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:57 msgid "Modem device" msgstr "调制解调器设备" +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:41 +msgid "Modem disconnection in progress. Please wait." +msgstr "" + #: modules/luci-compat/luasrc/model/network/proto_ncm.lua:66 #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:24 msgid "Modem information query failed" @@ -3812,7 +3843,11 @@ msgstr "调制解调器信息查询失败" msgid "Modem init timeout" msgstr "调制解调器初始化超时" -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:46 +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:44 +msgid "Modem is disabled." +msgstr "" + +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:52 msgid "ModemManager" msgstr "调制解调器管理器" @@ -4108,7 +4143,7 @@ msgstr "非全部地址" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:159 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:183 -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:94 +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:100 msgid "None" msgstr "无" @@ -4397,7 +4432,7 @@ msgstr "重设 MAC 地址" #: protocols/luci-proto-hnet/htdocs/luci-static/resources/protocol/hnet.js:44 #: protocols/luci-proto-ipip/htdocs/luci-static/resources/protocol/ipip.js:53 #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dhcpv6.js:54 -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:114 +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:120 #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:158 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/l2tp.js:71 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:145 @@ -4459,12 +4494,12 @@ msgstr "覆盖已存在的文件“%s”吗?" msgid "Owner" msgstr "用户名" -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:91 +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:97 msgid "PAP/CHAP (both)" msgstr "PAP/CHAP (两者都)" #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:98 -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:102 +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:108 #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:90 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/l2tp.js:45 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:89 @@ -4477,7 +4512,7 @@ msgid "PAP/CHAP password" msgstr "PAP/CHAP 密码" #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:96 -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:97 +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:103 #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:88 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/l2tp.js:43 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:87 @@ -4498,7 +4533,7 @@ msgid "PID" msgstr "PID" #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:95 -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:88 +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:94 #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:87 #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:68 msgid "PIN" @@ -5477,7 +5512,6 @@ msgstr "" #: modules/luci-compat/luasrc/model/network/proto_modemmanager.lua:55 #: modules/luci-compat/luasrc/model/network/proto_qmi.lua:55 -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:42 #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:23 msgid "Setting PLMN failed" msgstr "设置 PLMN 失败" @@ -6531,7 +6565,6 @@ msgstr "无法读取日志数据:" #: modules/luci-compat/luasrc/model/network/proto_modemmanager.lua:54 #: modules/luci-compat/luasrc/model/network/proto_qmi.lua:54 -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:41 #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:22 msgid "Unable to obtain client ID" msgstr "无法获取客户端 ID" @@ -6581,6 +6614,10 @@ msgstr "错误的数据回复格式" msgid "Unknown" msgstr "未知" +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:47 +msgid "Unknown and unsupported connection method." +msgstr "" + #: modules/luci-base/htdocs/luci-static/resources/network.js:2276 #: modules/luci-compat/luasrc/model/network.lua:1138 msgid "Unknown error (%s)" diff --git a/modules/luci-base/po/zh_Hant/base.po b/modules/luci-base/po/zh_Hant/base.po index b0c10fdfca..7d8f5474f8 100644 --- a/modules/luci-base/po/zh_Hant/base.po +++ b/modules/luci-base/po/zh_Hant/base.po @@ -286,7 +286,7 @@ msgid "ANSI T1.413" msgstr "ANSI T1.413" #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:94 -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:87 +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:93 #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:86 #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:67 msgid "APN" @@ -793,7 +793,7 @@ msgstr "認證群組" msgid "Authentication" msgstr "認證" -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:90 +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:96 #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:70 msgid "Authentication Type" msgstr "認證類型" @@ -1017,7 +1017,6 @@ msgstr "已快取" #: modules/luci-compat/luasrc/model/network/proto_modemmanager.lua:53 #: modules/luci-compat/luasrc/model/network/proto_qmi.lua:53 -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:40 #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:21 msgid "Call failed" msgstr "呼叫失敗" @@ -1283,6 +1282,10 @@ msgstr "已連線" msgid "Connection attempt failed" msgstr "連線嘗試失敗" +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:40 +msgid "Connection attempt failed." +msgstr "" + #: modules/luci-base/htdocs/luci-static/resources/rpc.js:414 msgid "Connection lost" msgstr "失去連線" @@ -1612,6 +1615,10 @@ msgstr "裝置未啟用" msgid "Device is restarting…" msgstr "裝置重啟中…" +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:45 +msgid "Device not managed by ModemManager." +msgstr "" + #: modules/luci-base/htdocs/luci-static/resources/ui.js:4122 msgid "Device unreachable!" msgstr "無法連線到設備!" @@ -1694,6 +1701,10 @@ msgstr "中斷連線" msgid "Disconnection attempt failed" msgstr "" +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:48 +msgid "Disconnection attempt failed." +msgstr "" + #: modules/luci-base/htdocs/luci-static/resources/form.js:606 #: modules/luci-base/htdocs/luci-static/resources/form.js:2707 #: modules/luci-base/htdocs/luci-static/resources/ui.js:3268 @@ -2388,7 +2399,7 @@ msgstr "閘道埠號" msgid "Gateway address is invalid" msgstr "網關(Gateway)位址錯誤" -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:118 +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:124 msgid "Gateway metric" msgstr "" @@ -2643,7 +2654,7 @@ msgstr "IP 位址" msgid "IP Protocol" msgstr "IP 協定" -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:108 +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:114 msgid "IP Type" msgstr "IP 類型" @@ -2706,7 +2717,7 @@ msgstr "IPv4網路遮罩" msgid "IPv4 network in address/netmask notation" msgstr "" -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:110 +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:116 msgid "IPv4 only" msgstr "僅用IPv4" @@ -2738,7 +2749,7 @@ msgstr "IPV4 網關" msgid "IPv4-in-IPv4 (RFC2003)" msgstr "" -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:109 +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:115 msgid "IPv4/IPv6 (both - defaults to IPv4)" msgstr "" @@ -2800,7 +2811,7 @@ msgstr "IPv6閘道" msgid "IPv6 network in address/netmask notation" msgstr "" -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:111 +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:117 msgid "IPv6 only" msgstr "僅用IPv6" @@ -3139,6 +3150,12 @@ msgstr "輸入的是不正確的VLAN ID!僅允許獨一無二的IDs" msgid "Invalid argument" msgstr "" +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:46 +msgid "" +"Invalid bearer list. Possibly too many bearers created. This protocol " +"supports one and only one bearer." +msgstr "" + #: modules/luci-base/htdocs/luci-static/resources/rpc.js:405 msgid "Invalid command" msgstr "無效的指令" @@ -3764,18 +3781,32 @@ msgstr "模式" msgid "Model" msgstr "型號" +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:43 +msgid "Modem bearer teardown in progress." +msgstr "" + +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:42 +msgid "" +"Modem connection in progress. Please wait. This process will timeout after 2 " +"minutes." +msgstr "" + #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:72 msgid "Modem default" msgstr "" #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:73 -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:76 +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:82 #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:61 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:73 #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:57 msgid "Modem device" msgstr "數據機設備" +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:41 +msgid "Modem disconnection in progress. Please wait." +msgstr "" + #: modules/luci-compat/luasrc/model/network/proto_ncm.lua:66 #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:24 msgid "Modem information query failed" @@ -3787,7 +3818,11 @@ msgstr "" msgid "Modem init timeout" msgstr "數據機初始化終結時間" -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:46 +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:44 +msgid "Modem is disabled." +msgstr "" + +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:52 msgid "ModemManager" msgstr "" @@ -4082,7 +4117,7 @@ msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:159 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:183 -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:94 +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:100 msgid "None" msgstr "無" @@ -4365,7 +4400,7 @@ msgstr "覆蓋MAC位址" #: protocols/luci-proto-hnet/htdocs/luci-static/resources/protocol/hnet.js:44 #: protocols/luci-proto-ipip/htdocs/luci-static/resources/protocol/ipip.js:53 #: protocols/luci-proto-ipv6/htdocs/luci-static/resources/protocol/dhcpv6.js:54 -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:114 +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:120 #: protocols/luci-proto-openconnect/htdocs/luci-static/resources/protocol/openconnect.js:158 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/l2tp.js:71 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:145 @@ -4427,12 +4462,12 @@ msgstr "" msgid "Owner" msgstr "持有者" -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:91 +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:97 msgid "PAP/CHAP (both)" msgstr "" #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:98 -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:102 +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:108 #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:90 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/l2tp.js:45 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:89 @@ -4445,7 +4480,7 @@ msgid "PAP/CHAP password" msgstr "PAP/CHAP驗證密碼" #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:96 -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:97 +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:103 #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:88 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/l2tp.js:43 #: protocols/luci-proto-ppp/htdocs/luci-static/resources/protocol/ppp.js:87 @@ -4466,7 +4501,7 @@ msgid "PID" msgstr "PID碼" #: protocols/luci-proto-3g/htdocs/luci-static/resources/protocol/3g.js:95 -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:88 +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:94 #: protocols/luci-proto-ncm/htdocs/luci-static/resources/protocol/ncm.js:87 #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:68 msgid "PIN" @@ -5441,7 +5476,6 @@ msgstr "" #: modules/luci-compat/luasrc/model/network/proto_modemmanager.lua:55 #: modules/luci-compat/luasrc/model/network/proto_qmi.lua:55 -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:42 #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:23 msgid "Setting PLMN failed" msgstr "" @@ -6490,7 +6524,6 @@ msgstr "無法載入日誌檔:" #: modules/luci-compat/luasrc/model/network/proto_modemmanager.lua:54 #: modules/luci-compat/luasrc/model/network/proto_qmi.lua:54 -#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:41 #: protocols/luci-proto-qmi/htdocs/luci-static/resources/protocol/qmi.js:22 msgid "Unable to obtain client ID" msgstr "無法取得用戶端 ID" @@ -6540,6 +6573,10 @@ msgstr "" msgid "Unknown" msgstr "未知的" +#: protocols/luci-proto-modemmanager/htdocs/luci-static/resources/protocol/modemmanager.js:47 +msgid "Unknown and unsupported connection method." +msgstr "" + #: modules/luci-base/htdocs/luci-static/resources/network.js:2276 #: modules/luci-compat/luasrc/model/network.lua:1138 msgid "Unknown error (%s)" diff --git a/modules/luci-compat/luasrc/view/cbi/button.htm b/modules/luci-compat/luasrc/view/cbi/button.htm index 6ccba58f23..1f9d164240 100644 --- a/modules/luci-compat/luasrc/view/cbi/button.htm +++ b/modules/luci-compat/luasrc/view/cbi/button.htm @@ -1,6 +1,6 @@ <%+cbi/valueheader%> <% if self:cfgvalue(section) ~= false then %> - <input class="cbi-button cbi-button-<%=self.inputstyle or "button" %>" type="submit"<%= attr("name", cbid) .. attr("id", cbid) .. attr("value", self.inputtitle or self.title)%> /> + <input class="btn cbi-button cbi-button-<%=self.inputstyle or "button" %>" type="submit"<%= attr("name", cbid) .. attr("id", cbid) .. attr("value", self.inputtitle or self.title)%> /> <% else %> - <% end %> diff --git a/modules/luci-compat/luasrc/view/cbi/delegator.htm b/modules/luci-compat/luasrc/view/cbi/delegator.htm index 4fd19265d8..2606e7f6d7 100644 --- a/modules/luci-compat/luasrc/view/cbi/delegator.htm +++ b/modules/luci-compat/luasrc/view/cbi/delegator.htm @@ -6,18 +6,18 @@ <% end %> <% if not self.disallow_pageactions then %> <% if self.allow_finish and not self:get_next(self.current) then %> - <input class="cbi-button cbi-button-finish" type="submit" value="<%:Finish%>" /> + <input class="btn cbi-button cbi-button-finish" type="submit" value="<%:Finish%>" /> <% elseif self:get_next(self.current) then %> - <input class="cbi-button cbi-button-next" type="submit" value="<%:Next »%>" /> + <input class="btn cbi-button cbi-button-next" type="submit" value="<%:Next »%>" /> <% end %> <% if self.allow_cancel then %> - <input class="cbi-button cbi-button-cancel" type="submit" name="cbi.cancel" value="<%:Cancel%>" /> + <input class="btn cbi-button cbi-button-cancel" type="submit" name="cbi.cancel" value="<%:Cancel%>" /> <% end %> <% if self.allow_reset then %> - <input class="cbi-button cbi-button-reset" type="reset" value="<%:Reset%>" /> + <input class="btn cbi-button cbi-button-reset" type="reset" value="<%:Reset%>" /> <% end %> <% if self.allow_back and self:get_prev(self.current) then %> - <input class="cbi-button cbi-button-back" type="submit" name="cbi.delg.back" value="<%:« Back%>" /> + <input class="btn cbi-button cbi-button-back" type="submit" name="cbi.delg.back" value="<%:« Back%>" /> <% end %> <% end %> <script type="text/javascript">cbi_d_update();</script> diff --git a/modules/luci-compat/luasrc/view/cbi/error.htm b/modules/luci-compat/luasrc/view/cbi/error.htm index 75ec1082aa..9d63f66763 100644 --- a/modules/luci-compat/luasrc/view/cbi/error.htm +++ b/modules/luci-compat/luasrc/view/cbi/error.htm @@ -14,6 +14,6 @@ </p> <div class="cbi-page-actions"> - <input class="cbi-button cbi-button-apply" type="submit" name="cbi.save" value="<%:Save%>" /> + <input class="btn cbi-button cbi-button-apply" type="submit" name="cbi.save" value="<%:Save%>" /> </div> </div> diff --git a/modules/luci-compat/luasrc/view/cbi/ipaddr.htm b/modules/luci-compat/luasrc/view/cbi/ipaddr.htm index 1c924e1544..d34d8d9865 100644 --- a/modules/luci-compat/luasrc/view/cbi/ipaddr.htm +++ b/modules/luci-compat/luasrc/view/cbi/ipaddr.htm @@ -23,5 +23,5 @@ ifattr(self.combobox_manual, "data-manual", self.combobox_manual) .. ifattr(#self.keylist > 0, "data-choices", { self.keylist, self.vallist }) %> /><!-- - --><button class="cbi-button cbi-button-neutral" title="<%:Switch to CIDR list notation%>" aria-label="<%:Switch to CIDR list notation%>" onclick="switchToCIDRList(event)">…</button> + --><button class="btn cbi-button cbi-button-neutral" title="<%:Switch to CIDR list notation%>" aria-label="<%:Switch to CIDR list notation%>" onclick="switchToCIDRList(event)">…</button> <%+cbi/valuefooter%> diff --git a/modules/luci-compat/luasrc/view/cbi/nsection.htm b/modules/luci-compat/luasrc/view/cbi/nsection.htm index 14232e3d94..faceffeedf 100644 --- a/modules/luci-compat/luasrc/view/cbi/nsection.htm +++ b/modules/luci-compat/luasrc/view/cbi/nsection.htm @@ -8,7 +8,7 @@ <%- end %> <% if self.addremove then -%> <div class="cbi-section-remove right"> - <input type="submit" class="cbi-button" name="cbi.rns.<%=self.config%>.<%=section%>" value="<%:Delete%>" /> + <input type="submit" class="btn cbi-button" name="cbi.rns.<%=self.config%>.<%=section%>" value="<%:Delete%>" /> </div> <%- end %> <div class="cbi-section-node<% if self.tabs then %> cbi-section-node-tabbed<% end %>" id="cbi-<%=self.config%>-<%=section%>"> @@ -22,7 +22,7 @@ <legend><%=self.title%></legend> <%- end %> <div class="cbi-section-descr"><%=self.description%></div> - <input type="submit" class="cbi-button cbi-button-add" name="cbi.cns.<%=self.config%>.<%=self.section%>" value="<%:Add%>" /> + <input type="submit" class="btn cbi-button cbi-button-add" name="cbi.cns.<%=self.config%>.<%=self.section%>" value="<%:Add%>" /> </div> <%- end %> <% end %> diff --git a/modules/luci-compat/luasrc/view/cbi/simpleform.htm b/modules/luci-compat/luasrc/view/cbi/simpleform.htm index 3e10724ec5..9e1514546e 100644 --- a/modules/luci-compat/luasrc/view/cbi/simpleform.htm +++ b/modules/luci-compat/luasrc/view/cbi/simpleform.htm @@ -45,26 +45,26 @@ %><div class="cbi-page-actions"><% if display_back then - %><input class="cbi-button cbi-button-link" type="button" value="<%:Back to Overview%>" onclick="location.href='<%=pcdata(redirect)%>'" /> <% + %><input class="btn cbi-button cbi-button-link" type="button" value="<%:Back to Overview%>" onclick="location.href='<%=pcdata(redirect)%>'" /> <% end if display_cancel then local label = pcdata(self.cancel or translate("Cancel")) - %><input class="cbi-button cbi-button-link" type="button" value="<%=label%>" onclick="cbi_submit(this, 'cbi.cancel')" /> <% + %><input class="btn cbi-button cbi-button-link" type="button" value="<%=label%>" onclick="cbi_submit(this, 'cbi.cancel')" /> <% end if display_skip then - %><input class="cbi-button cbi-button-neutral" type="button" value="<%:Skip%>" onclick="cbi_submit(this, 'cbi.skip')" /> <% + %><input class="btn cbi-button cbi-button-neutral" type="button" value="<%:Skip%>" onclick="cbi_submit(this, 'cbi.skip')" /> <% end if display_submit then local label = pcdata(self.submit or translate("Submit")) - %><input class="cbi-button cbi-button-save" type="submit" value="<%=label%>" /> <% + %><input class="btn cbi-button cbi-button-save" type="submit" value="<%=label%>" /> <% end if display_reset then local label = pcdata(self.reset or translate("Reset")) - %><input class="cbi-button cbi-button-reset" type="reset" value="<%=label%>" /> <% + %><input class="btn cbi-button cbi-button-reset" type="reset" value="<%=label%>" /> <% end %></div><% diff --git a/modules/luci-compat/luasrc/view/cbi/tblsection.htm b/modules/luci-compat/luasrc/view/cbi/tblsection.htm index 1e067edf38..c60915a6a6 100644 --- a/modules/luci-compat/luasrc/view/cbi/tblsection.htm +++ b/modules/luci-compat/luasrc/view/cbi/tblsection.htm @@ -148,10 +148,10 @@ end <div class="td cbi-section-table-cell nowrap cbi-section-actions"> <div> <%- if self.sortable then -%> - <input class="cbi-button cbi-button-up" type="button" value="<%:Up%>" onclick="return cbi_row_swap(this, true, 'cbi.sts.<%=self.config%>.<%=self.sectiontype%>')" title="<%:Move up%>" /> - <input class="cbi-button cbi-button-down" type="button" value="<%:Down%>" onclick="return cbi_row_swap(this, false, 'cbi.sts.<%=self.config%>.<%=self.sectiontype%>')" title="<%:Move down%>" /> + <input class="btn cbi-button cbi-button-up" type="button" value="<%:Up%>" onclick="return cbi_row_swap(this, true, 'cbi.sts.<%=self.config%>.<%=self.sectiontype%>')" title="<%:Move up%>" /> + <input class="btn cbi-button cbi-button-down" type="button" value="<%:Down%>" onclick="return cbi_row_swap(this, false, 'cbi.sts.<%=self.config%>.<%=self.sectiontype%>')" title="<%:Move down%>" /> <% end; if self.extedit then -%> - <input class="cbi-button cbi-button-edit" type="button" value="<%:Edit%>" + <input class="btn cbi-button cbi-button-edit" type="button" value="<%:Edit%>" <%- if type(self.extedit) == "string" then %> onclick="location.href='<%=self.extedit:format(section)%>'" <%- elseif type(self.extedit) == "function" then @@ -159,7 +159,7 @@ end <%- end %> alt="<%:Edit%>" title="<%:Edit%>" /> <% end; if self.addremove then %> - <input class="cbi-button cbi-button-remove" type="submit" value="<%:Delete%>" onclick="this.form.cbi_state='del-section'; return true" name="cbi.rts.<%=self.config%>.<%=k%>" alt="<%:Delete%>" title="<%:Delete%>" /> + <input class="btn cbi-button cbi-button-remove" type="submit" value="<%:Delete%>" onclick="this.form.cbi_state='del-section'; return true" name="cbi.rts.<%=self.config%>.<%=k%>" alt="<%:Delete%>" title="<%:Delete%>" /> <%- end -%> </div> </div> @@ -186,7 +186,7 @@ end <% if self.template_addremove then include(self.template_addremove) else -%> <div class="cbi-section-create cbi-tblsection-create"> <% if self.anonymous then %> - <input class="cbi-button cbi-button-add" type="submit" value="<%:Add%>" name="cbi.cts.<%=self.config%>.<%=self.sectiontype%>.<%=section%>" title="<%:Add%>" /> + <input class="btn cbi-button cbi-button-add" type="submit" value="<%:Add%>" name="cbi.cts.<%=self.config%>.<%=self.sectiontype%>.<%=section%>" title="<%:Add%>" /> <% else %> <% if self.invalid_cts then -%> <div class="cbi-section-error"><%:Invalid%></div> @@ -194,7 +194,7 @@ end <div> <input type="text" class="cbi-section-create-name" id="cbi.cts.<%=self.config%>.<%=self.sectiontype%>.<%=section%>" name="cbi.cts.<%=self.config%>.<%=self.sectiontype%>.<%=section%>" data-type="uciname" data-optional="true" /> </div> - <input class="cbi-button cbi-button-add" type="submit" onclick="this.form.cbi_state='add-section'; return true" value="<%:Add%>" title="<%:Add%>" /> + <input class="btn cbi-button cbi-button-add" type="submit" onclick="this.form.cbi_state='add-section'; return true" value="<%:Add%>" title="<%:Add%>" /> <% end %> </div> <%- end %> diff --git a/modules/luci-compat/luasrc/view/cbi/tsection.htm b/modules/luci-compat/luasrc/view/cbi/tsection.htm index 8f3b7f0ffb..b7718fa0f3 100644 --- a/modules/luci-compat/luasrc/view/cbi/tsection.htm +++ b/modules/luci-compat/luasrc/view/cbi/tsection.htm @@ -13,7 +13,7 @@ <% local isempty = true for i, k in ipairs(self:cfgsections()) do -%> <% if self.addremove then -%> <div class="cbi-section-remove right"> - <input type="submit" name="cbi.rts.<%=self.config%>.<%=k%>" onclick="this.form.cbi_state='del-section'; return true" value="<%:Delete%>" class="cbi-button" /> + <input type="submit" name="cbi.rts.<%=self.config%>.<%=k%>" onclick="this.form.cbi_state='del-section'; return true" value="<%:Delete%>" class="btn cbi-button" /> </div> <%- end %> @@ -36,7 +36,7 @@ <% if self.template_addremove then include(self.template_addremove) else -%> <div class="cbi-section-create"> <% if self.anonymous then -%> - <input type="submit" class="cbi-button cbi-button-add" name="cbi.cts.<%=self.config%>.<%=self.sectiontype%>.<%=section%>" value="<%:Add%>" /> + <input type="submit" class="btn cbi-button cbi-button-add" name="cbi.cts.<%=self.config%>.<%=self.sectiontype%>.<%=section%>" value="<%:Add%>" /> <%- else -%> <% if self.invalid_cts then -%> <div class="cbi-section-error"><%:Invalid%></div> @@ -44,7 +44,7 @@ <div> <input type="text" class="cbi-section-create-name" id="cbi.cts.<%=self.config%>.<%=self.sectiontype%>." name="cbi.cts.<%=self.config%>.<%=self.sectiontype%>." data-type="uciname" data-optional="true" /> </div> - <input class="cbi-button cbi-button-add" type="submit" onclick="this.form.cbi_state='add-section'; return true" value="<%:Add%>" title="<%:Add%>" /> + <input class="btn cbi-button cbi-button-add" type="submit" onclick="this.form.cbi_state='add-section'; return true" value="<%:Add%>" title="<%:Add%>" /> <%- end %> </div> <%- end %> diff --git a/modules/luci-compat/luasrc/view/cbi/ucisection.htm b/modules/luci-compat/luasrc/view/cbi/ucisection.htm index 8fa11d68f8..930d41583e 100644 --- a/modules/luci-compat/luasrc/view/cbi/ucisection.htm +++ b/modules/luci-compat/luasrc/view/cbi/ucisection.htm @@ -51,6 +51,6 @@ <%- end %> </select> <%- end -%> - <input type="submit" class="cbi-button cbi-button-fieldadd" value="<%:Add%>" /> + <input type="submit" class="btn cbi-button cbi-button-fieldadd" value="<%:Add%>" /> </div> <% end %> diff --git a/modules/luci-mod-battstatus/Makefile b/modules/luci-mod-battstatus/Makefile new file mode 100644 index 0000000000..179ede9a6a --- /dev/null +++ b/modules/luci-mod-battstatus/Makefile @@ -0,0 +1,19 @@ +# +# Copyright (C) 2020 Russell Morris <rmorris@rkmorris.us> +# +# This is free software, licensed under the Apache License, Version 2.0 . +# + +include $(TOPDIR)/rules.mk + +LUCI_TITLE:=LuCI Battery Status +LUCI_DESCRIPTION:=Provides a battery charge indicator in LuCI. Currently only supports the HooToo HT-TM05 travel router. + +LUCI_DEPENDS:=+luci-base +libiwinfo-lua +rpcd-mod-iwinfo +libi2c +i2c-tools + +PKG_LICENSE:=Apache-2.0 + +include ../../luci.mk + +# call BuildPackage - OpenWrt buildroot signature + diff --git a/modules/luci-mod-battstatus/htdocs/luci-static/resources/preload/battstatus.js b/modules/luci-mod-battstatus/htdocs/luci-static/resources/preload/battstatus.js new file mode 100755 index 0000000000..d895c36bbd --- /dev/null +++ b/modules/luci-mod-battstatus/htdocs/luci-static/resources/preload/battstatus.js @@ -0,0 +1,55 @@ +'use strict'; +'require ui'; +'require rpc'; +'require poll'; +'require baseclass'; + +var callBatteryStatus = rpc.declare({ + object: 'luci.battstatus', + method: 'getBatteryStatus', + expect: { '': {} } +}); + +var devices = {}; + +return baseclass.extend({ + __init__: function() { + this.updateIndicator(); + poll.add(L.bind(this.updateIndicator, this), 5); + }, + + updateIndicator: function() { + return callBatteryStatus().then(L.bind(function(devs) { + for (var dev in devs) { + var info = devs[dev]; + if (info.valid) { + info.status = (info.charging ? _('Charging') : _('Not Charging')) + ": " + info.percentage + "%"; + info.state = "active"; + if (info.percentage <= 20) + info.color = "Red"; + else if (info.percentage <= 30) + info.color = "GoldenRod"; + } else { + info.status = info.message; + info.state = "inactive"; + } + + info.name = "battery-" + dev.replace(" ", "-"); + ui.showIndicator(info.name, info.status, null, info.state); + if (typeof info.color != 'undefined') { + info.element = document.querySelector(`[data-indicator="${info.name}"]`); + info.element.innerHTML = `<span style="color:${info.color}">${info.status}</span>`; + } + + devices[dev] = info; + } + + for (var dev in devices) { + if (!devs.hasOwnProperty(dev)) { + ui.hideIndicator('battery-%s'.format(dev)); + delete devices[dev]; + } + } + }, this)); + } +}); diff --git a/modules/luci-mod-battstatus/root/usr/libexec/rpcd/luci.battstatus b/modules/luci-mod-battstatus/root/usr/libexec/rpcd/luci.battstatus new file mode 100755 index 0000000000..d3534b4f35 --- /dev/null +++ b/modules/luci-mod-battstatus/root/usr/libexec/rpcd/luci.battstatus @@ -0,0 +1,39 @@ +#!/bin/sh + +. /usr/share/libubox/jshn.sh + +case "$1" in + list) + printf '{ "getBatteryStatus": {} }' + ;; + call) + case "$2" in + getBatteryStatus) + json_init + + eval $(/bin/ubus call system board 2>/dev/null | /usr/bin/jsonfilter -e 'MODEL=@.model') + json_add_object "$MODEL" + + if [ -f /usr/sbin/i2cset ] && [ -f /usr/sbin/i2cget ]; then + json_add_boolean valid 1 + if [ $(i2cset -y 0 0x0a 0x0a 0x01 && i2cget -y 0 0x0a 0x0a) = 0x40 ]; then + json_add_boolean charging 1 + else + json_add_boolean charging 0 + fi + json_add_int percentage $(i2cset -y 0 0x0a 0x0a 0x10 && i2cget -y 0 0x0a 0x0a | xargs printf %d) + else + json_add_boolean valid 0 + if [ ! -f /usr/sbin/i2cset ]; then + json_add_string message "Need i2cset" + else + json_add_string message "Need i2cget" + fi + fi + + json_close_object + json_dump + ;; + esac + ;; +esac diff --git a/modules/luci-mod-battstatus/root/usr/share/rpcd/acl.d/luci-mod-battstatus.json b/modules/luci-mod-battstatus/root/usr/share/rpcd/acl.d/luci-mod-battstatus.json new file mode 100755 index 0000000000..4babc31b94 --- /dev/null +++ b/modules/luci-mod-battstatus/root/usr/share/rpcd/acl.d/luci-mod-battstatus.json @@ -0,0 +1,10 @@ +{ + "luci-mod-battstatus": { + "description": "Grant access to battery status", + "read": { + "ubus": { + "luci.battstatus": [ "getBatteryStatus" ] + } + } + } +} diff --git a/modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js b/modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js index 4a1058d0d9..3f28680389 100644 --- a/modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js +++ b/modules/luci-mod-system/htdocs/luci-static/resources/view/system/flash.js @@ -385,16 +385,21 @@ return view.extend({ o.onclick = L.bind(this.handleRestore, this); - if (procmtd.length) { + var mtdblocks = []; + procmtd.split(/\n/).forEach(function(ln) { + var match = ln.match(/^mtd(\d+): .+ "(.+?)"$/); + if (match) + mtdblocks.push(match[1], match[2]); + }); + + if (mtdblocks.length) { o = s.option(form.SectionValue, 'actions', form.NamedSection, 'actions', 'actions', _('Save mtdblock contents'), _('Click "Save mtdblock" to download specified mtdblock file. (NOTE: THIS FEATURE IS FOR PROFESSIONALS! )')); ss = o.subsection; o = ss.option(form.ListValue, 'mtdselect', _('Choose mtdblock')); - procmtd.split(/\n/).forEach(function(ln) { - var match = ln.match(/^mtd(\d+): .+ "(.+?)"$/); - if (match) - o.value(match[1], match[2]); - }); + + for (var i = 0; i < mtdblocks.length; i += 2) + o.value(mtdblocks[i], mtdblocks[i+1]); o = ss.option(form.Button, 'mtddownload', _('Download mtdblock')); o.inputstyle = 'action important'; diff --git a/modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua b/modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua index c81466c874..91c6549163 100644 --- a/modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua +++ b/modules/luci-mod-system/luasrc/model/cbi/admin_system/backupfiles.lua @@ -68,7 +68,7 @@ else break else files[#files+1] = "<li>" - files[#files+1] = luci.util.pcdata(ln) + files[#files+1] = luci.xml.pcdata(ln) files[#files+1] = "</li>" end end |