From: Paul Spooren Date: Fri, 2 Jul 2021 19:38:21 +0000 (-1000) Subject: luci-app-attendedsysupgrade: sync with master branch X-Git-Url: http://git.openwrt.org/?a=commitdiff_plain;h=9eb2efd14177eb558d11c45201b4e0d784861fda;p=project%2Fluci.git luci-app-attendedsysupgrade: sync with master branch Upgrade the app to stay compatible with the running upgrade server. Signed-off-by: Paul Spooren --- diff --git a/applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/configuration.js b/applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/configuration.js new file mode 100644 index 0000000000..2ec486caf2 --- /dev/null +++ b/applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/configuration.js @@ -0,0 +1,34 @@ +'use strict'; +'require view'; +'require form'; + +return view.extend({ + render: function() { + var m, s, o; + + m = new form.Map('attendedsysupgrade', _('Attended Sysupgrade'), + _('Attendedsysupgrade Configuration.') + ); + + s = m.section(form.TypedSection, 'server', _('Server')); + s.anonymous = true; + + s.option(form.Value, 'url', _('Address'), + _('Address of the sysupgrade server')); + + s = m.section(form.TypedSection, 'client', _('Client')); + s.anonymous = true; + + o = s.option(form.Flag, 'auto_search', _('Search on opening'), + _('Search for new sysupgrades on opening the tab')); + o.default = '1'; + o.rmempty = false; + + o = s.option(form.Flag, 'advanced_mode', _('Advanced Mode'), + _('Show advanced options like packge list modification')); + o.default = '0'; + o.rmempty = false; + + return m.render(); + } +}); diff --git a/applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js b/applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js new file mode 100644 index 0000000000..f6d31a35be --- /dev/null +++ b/applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js @@ -0,0 +1,376 @@ +'use strict'; +'require view'; +'require form'; +'require uci'; +'require rpc'; +'require ui'; +'require poll'; +'require request'; +'require dom'; + +var callPackagelist = rpc.declare({ + object: 'rpc-sys', + method: 'packagelist', +}); + +var callSystemBoard = rpc.declare({ + object: 'system', + method: 'board' +}); + +var callUpgradeStart = rpc.declare({ + object: 'rpc-sys', + method: 'upgrade_start', + params: ["keep"] +}); + +function get_branch(version) { + // determine branch of a version + // SNAPSHOT -> SNAPSHOT + // 21.02-SNAPSHOT -> 21.02 + // 21.02.0-rc1 -> 21.02 + // 19.07.8 -> 19.07 + return version.replace("-SNAPSHOT", "").split(".").slice(0, 2).join("."); +} + +function install_sysupgrade(url, keep, sha256) { + displayStatus("notice spinning", E('p', _('Downloading firmware from server to browser'))); + request.get(url, { + headers: { + 'Content-Type': 'application/x-www-form-urlencoded' + }, + responseType: 'blob' + }) + .then(response => { + var form_data = new FormData(); + form_data.append("sessionid", rpc.getSessionID()); + form_data.append("filename", "/tmp/firmware.bin"); + form_data.append("filemode", 600); + form_data.append("filedata", response.blob()); + + displayStatus("notice spinning", E('p', _('Uploading firmware from browser to device'))); + request.get(L.env.cgi_base + "/cgi-upload", { + method: 'PUT', + content: form_data + }) + .then(response => response.json()) + .then(response => { + if (response.sha256sum != sha256) { + displayStatus("warning", [ + E('b', _('Wrong checksum')), + E('p', _('Error during download of firmware. Please try again')), + E('div', { + 'class': 'btn', + 'click': ui.hideModal + }, _('Close')) + ]); + } else { + displayStatus('warning spinning', E('p', _('Installing the sysupgrade. Do not unpower device!'))); + L.resolveDefault(callUpgradeStart(keep), {}).then(response => { + if (keep) { + ui.awaitReconnect(window.location.host); + } else { + ui.awaitReconnect('192.168.1.1', 'openwrt.lan'); + } + }); + } + }); + }); +} + +function request_sysupgrade(server_url, data) { + var res, req; + + if (data.request_hash) { + req = request.get(server_url + "/api/build/" + data.request_hash) + } else { + req = request.post(server_url + "/api/build", { + profile: data.board_name, + target: data.target, + version: data.version, + packages: data.packages, + diff_packages: true, + }) + } + + req.then(response => { + switch (response.status) { + case 200: + var res = response.json() + var image; + for (image of res.images) { + if (image.type == "sysupgrade") { + break; + } + } + if (image.name != undefined) { + var sysupgrade_url = server_url + "/store/" + res.bin_dir + "/" + image.name; + + var keep = E('input', { + type: 'checkbox' + }) + keep.checked = true; + + var fields = [ + _('Version'), res.version_number + ' ' + res.version_code, + _('File'), E('a', { + 'href': sysupgrade_url + }, image.name), + _('SHA256'), image.sha256, + _('Build Date'), res.build_at, + _('Target'), res.target, + ]; + + var table = E('div', { + 'class': 'table' + }); + + for (var i = 0; i < fields.length; i += 2) { + table.appendChild(E('div', { + 'class': 'tr' + }, [ + E('div', { + 'class': 'td left', + 'width': '33%' + }, [fields[i]]), + E('div', { + 'class': 'td left' + }, [(fields[i + 1] != null) ? fields[i + 1] : '?']) + ])); + } + + var modal_body = [ + table, + E('p', {}, E('label', { + 'class': 'btn' + }, [ + keep, ' ', _('Keep settings and retain the current configuration') + ])), + E('div', { + 'class': 'right' + }, [ + E('div', { + 'class': 'btn', + 'click': ui.hideModal + }, _('Cancel')), + ' ', + E('div', { + 'class': 'btn cbi-button-action', + 'click': function() { + install_sysupgrade(sysupgrade_url, keep.checked, image.sha256) + } + }, _('Install Sysupgrade')) + ]) + ] + + ui.showModal(_('Successfully created sysupgrade image'), modal_body); + } + + break; + case 202: + res = response.json() + data.request_hash = res.request_hash; + switch (res.status) { + case "queued": + displayStatus("notice spinning", E('p', _('Request in build queue'))); + break; + case "started": + displayStatus("notice spinning", E('p', _('Building the sysupgrade image'))); + break; + } + setTimeout(function() { + request_sysupgrade(server_url, data); + }, 5000); + break; + case 400: // bad request + case 422: // bad package + case 500: // build failed + res = response.json() + var body = [ + E('p', {}, _(res.message)), + E('p', {}, _("Please report the error message and request")), + E('b', {}, _("Request to server:")), + E('pre', {}, JSON.stringify(data, null, 4)), + + ] + + if (res.stdout) { + body.push(E('b', {}, "STDOUT:")) + body.push(E('pre', {}, res.stdout)) + + } + + if (res.stderr) { + body.push(E('b', {}, "STDERR:")) + body.push(E('pre', {}, res.stderr)) + + } + + body = body.concat([ + E('div', { + 'class': 'right' + }, [ + E('div', { + 'class': 'btn', + 'click': ui.hideModal + }, _('Close')) + ]) + ]); + ui.showModal(_('Error building the sysupgrade'), body); + break; + } + }); +} + +function check_sysupgrade(server_url, current_version, target, board_name, packages) { + displayStatus("notice spinning", E('p', _('Searching for an available sysupgrade'))); + var current_branch = get_branch(current_version); + var advanced_mode = uci.get_first('attendedsysupgrade', 'client', 'advanced_mode') || 0; + var candidates = []; + + fetch(server_url + "/api/latest") + .then(response => response.json()) + .then(response => { + if (current_version == "SNAPSHOT") { + candidates.push("SNAPSHOT"); + } else { + for (let version of response["latest"]) { + var branch = get_branch(version); + + // already latest version installed + if (current_version == version) { + break; + } + + // skip branch upgrades outside the advanced mode + if (current_branch != branch && advanced_mode == 0) { + continue; + } + + candidates.unshift(version); + + // don't offer branches older than the current + if (current_branch == branch) { + break; + } + } + } + if (candidates) { + var m, s, o; + + var mapdata = { + request: { + board_name: board_name, + target: target, + version: candidates[0], + packages: Object.keys(packages).sort(), + } + } + + m = new form.JSONMap(mapdata, ''); + + s = m.section(form.NamedSection, 'request', 'example', '', + 'Use defaults for the safest update'); + o = s.option(form.ListValue, 'version', 'Select firmware version'); + for (let candidate of candidates) { + o.value(candidate, candidate); + } + + if (advanced_mode == 1) { + o = s.option(form.Value, 'board_name', 'Board Name / Profile'); + o = s.option(form.DynamicList, 'packages', 'Packages'); + } + + + m.render() + .then(function(form_rendered) { + ui.showModal(_('New upgrade available'), [ + form_rendered, + E('div', { + 'class': 'right' + }, [ + E('div', { + 'class': 'btn', + 'click': ui.hideModal + }, _('Cancel')), + ' ', + E('div', { + 'class': 'btn cbi-button-action', + 'click': function() { + m.save().then(foo => { + request_sysupgrade( + server_url, mapdata.request + ) + }); + } + }, _('Request Sysupgrade')) + ]) + ]); + }); + } else { + ui.showModal(_('No upgrade available'), [ + E('p', {}, _("The device runs the latest firmware version")), + E('div', { + 'class': 'right' + }, [ + E('div', { + 'class': 'btn', + 'click': ui.hideModal + }, _('Close')) + ]) + ]); + } + }); +} + +function displayStatus(type, content) { + if (type) { + var message = ui.showModal('', ''); + + message.classList.add('alert-message'); + DOMTokenList.prototype.add.apply(message.classList, type.split(/\s+/)); + + if (content) + dom.content(message, content); + } else { + ui.hideModal(); + } +} + +return view.extend({ + load: function() { + return Promise.all([ + L.resolveDefault(callPackagelist(), {}), + L.resolveDefault(callSystemBoard(), {}), + uci.load('attendedsysupgrade') + ]); + }, + render: function(res) { + var packages = res[0].packages; + var current_version = res[1].release.version; + var target = res[1].release.target; + var board_name = res[1].board_name; + var auto_search = uci.get_first('attendedsysupgrade', 'client', 'auto_search') || 1; + var server_url = uci.get_first('attendedsysupgrade', 'server', 'url'); + + var view = [ + E('h2', _("Attended Sysupgrade")), + E('p', _('The attended sysupgrade service allows to easily upgrade vanilla and custom firmware images.')), + E('p', _('This is done by building a new firmware on demand via an online service.')) + ]; + + if (auto_search == 1) { + check_sysupgrade(server_url, current_version, target, board_name, packages) + } + + view.push(E('p', { + 'class': 'btn cbi-button-positive', + 'click': function() { + check_sysupgrade(server_url, current_version, target, board_name, packages) + } + }, _('Search for sysupgrade'))); + + return view; + }, + +}); diff --git a/applications/luci-app-attendedsysupgrade/luasrc/controller/attendedsysupgrade.lua b/applications/luci-app-attendedsysupgrade/luasrc/controller/attendedsysupgrade.lua deleted file mode 100644 index 1bd050af66..0000000000 --- a/applications/luci-app-attendedsysupgrade/luasrc/controller/attendedsysupgrade.lua +++ /dev/null @@ -1,5 +0,0 @@ -module("luci.controller.attendedsysupgrade", package.seeall) - -function index() - entry({"admin", "system", "attended_sysupgrade"}, template("attendedsysupgrade"), _("Attended Sysupgrade"), 1) -end diff --git a/applications/luci-app-attendedsysupgrade/luasrc/view/attendedsysupgrade.htm b/applications/luci-app-attendedsysupgrade/luasrc/view/attendedsysupgrade.htm deleted file mode 100644 index c9259559be..0000000000 --- a/applications/luci-app-attendedsysupgrade/luasrc/view/attendedsysupgrade.htm +++ /dev/null @@ -1,123 +0,0 @@ -<% --- all lua code provided by https://github.com/jow-/ --- thank you very much! - - function apply_acls(filename, session) - local json = require "luci.jsonc" - local util = require "luci.util" - local fs = require "nixio.fs" - - local grants = { } - - local acl = json.parse(fs.readfile(filename)) - if type(acl) ~= "table" then - return - end - - local group, perms - for group, perms in pairs(acl) do - local perm, scopes - for perm, scopes in pairs(perms) do - if type(scopes) == "table" then - local scope, objects - for scope, objects in pairs(scopes) do - if type(objects) == "table" then - if not grants[scope] then - grants[scope] = { } - end - - if next(objects) == 1 then - local _, object - for _, object in ipairs(objects) do - if not grants[scope][object] then - grants[scope][object] = { } - end - table.insert(grants[scope][object], perm) - end - else - local object, funcs - for object, funcs in pairs(objects) do - if type(funcs) == "table" then - local _, func - for _, func in ipairs(funcs) do - if not grants[scope][object] then - grants[scope][object] = { } - end - table.insert(grants[scope][object], func) - end - end - end - end - end - end - end - end - end - - local _, scope, object, func - for scope, _ in pairs(grants) do - local objects = { } - for object, _ in pairs(_) do - for _, func in ipairs(_) do - table.insert(objects, { object, func }) - end - end - - util.ubus("session", "grant", { - ubus_rpc_session = session, - scope = scope, objects = objects - }) - end - end - - apply_acls("/usr/share/rpcd/acl.d/attendedsysupgrade.json", luci.dispatcher.context.authsession) -%> -<%+header%> -

<%:Attended Sysupgrade%>

-
- Easily search and install new releases and package upgrades. Sysupgrade firmware are created on demand based on locally installed packages. -
- - -

- -

-
-
-
- - - -
-
- -
-
-
-
-
- - -<%+footer%> diff --git a/applications/luci-app-attendedsysupgrade/po/ar/attendedsysupgrade.po b/applications/luci-app-attendedsysupgrade/po/ar/attendedsysupgrade.po new file mode 100644 index 0000000000..2451709129 --- /dev/null +++ b/applications/luci-app-attendedsysupgrade/po/ar/attendedsysupgrade.po @@ -0,0 +1,177 @@ +msgid "" +msgstr "" +"Language: ar\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/configuration.js:16 +msgid "Address" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/configuration.js:17 +msgid "Address of the sysupgrade server" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/configuration.js:27 +msgid "Advances Mode" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/configuration.js:9 +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:357 +#: applications/luci-app-attendedsysupgrade/root/usr/share/luci/menu.d/luci-app-attendedsysupgrade.json:3 +msgid "Attended Sysupgrade" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/configuration.js:10 +msgid "Attendedsysupgrade Configuration." +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:120 +msgid "Build Date" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:178 +msgid "Building the sysupgrade image" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:155 +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:295 +msgid "Cancel" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/configuration.js:19 +msgid "Client" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:65 +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:216 +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:319 +msgid "Close" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/root/usr/share/luci/menu.d/luci-app-attendedsysupgrade.json:24 +msgid "Configuration" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:37 +msgid "Downloading firmware from server to browser" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:219 +msgid "Error building the sysupgrade" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:61 +msgid "Error during download of firmware. Please try again" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:116 +msgid "File" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/root/usr/share/rpcd/acl.d/luci-app-attendedsysupgrade.json:3 +msgid "Grant UCI access to LuCI app attendedsysupgrade" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:162 +msgid "Install Sysupgrade" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:68 +msgid "Installing the sysupgrade. Do not unpower device!" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:147 +msgid "Keep settings and retain the current configuration" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:287 +msgid "New upgrade available" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:311 +msgid "No upgrade available" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/root/usr/share/luci/menu.d/luci-app-attendedsysupgrade.json:15 +msgid "Overview" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:191 +msgid "Please report the error message and request" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:306 +msgid "Request Sysupgrade" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:175 +msgid "Request in build queue" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:192 +msgid "Request to server:" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:119 +msgid "SHA256" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/configuration.js:23 +msgid "Search for new sysupgrades on opening the tab" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:371 +msgid "Search for sysupgrade" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/configuration.js:22 +msgid "Search on opening" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:226 +msgid "Searching for an available sysupgrade" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/configuration.js:13 +msgid "Server" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/configuration.js:28 +msgid "Show advanced options like packge list modification" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:166 +msgid "Successfully created sysupgrade image" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:121 +msgid "Target" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:358 +msgid "" +"The attended sysupgrade service allows to easily upgrade vanilla and custom " +"firmware images." +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:312 +msgid "The device runs the latest firmware version" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:359 +msgid "" +"This is done by building a new firmware on demand via an online service." +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:51 +msgid "Uploading firmware from browser to device" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:115 +msgid "Version" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:60 +msgid "Wrong checksum" +msgstr "" diff --git a/applications/luci-app-attendedsysupgrade/po/bg/attendedsysupgrade.po b/applications/luci-app-attendedsysupgrade/po/bg/attendedsysupgrade.po index 7085324000..5785a47d1f 100644 --- a/applications/luci-app-attendedsysupgrade/po/bg/attendedsysupgrade.po +++ b/applications/luci-app-attendedsysupgrade/po/bg/attendedsysupgrade.po @@ -10,7 +10,174 @@ msgstr "" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Generator: Weblate 4.7-dev\n" -#: applications/luci-app-attendedsysupgrade/luasrc/controller/attendedsysupgrade.lua:4 -#: applications/luci-app-attendedsysupgrade/luasrc/view/attendedsysupgrade.htm:76 +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/configuration.js:16 +msgid "Address" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/configuration.js:17 +msgid "Address of the sysupgrade server" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/configuration.js:27 +msgid "Advances Mode" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/configuration.js:9 +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:357 +#: applications/luci-app-attendedsysupgrade/root/usr/share/luci/menu.d/luci-app-attendedsysupgrade.json:3 msgid "Attended Sysupgrade" msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/configuration.js:10 +msgid "Attendedsysupgrade Configuration." +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:120 +msgid "Build Date" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:178 +msgid "Building the sysupgrade image" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:155 +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:295 +msgid "Cancel" +msgstr "Отмени" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/configuration.js:19 +msgid "Client" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:65 +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:216 +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:319 +msgid "Close" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/root/usr/share/luci/menu.d/luci-app-attendedsysupgrade.json:24 +msgid "Configuration" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:37 +msgid "Downloading firmware from server to browser" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:219 +msgid "Error building the sysupgrade" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:61 +msgid "Error during download of firmware. Please try again" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:116 +msgid "File" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/root/usr/share/rpcd/acl.d/luci-app-attendedsysupgrade.json:3 +msgid "Grant UCI access to LuCI app attendedsysupgrade" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:162 +msgid "Install Sysupgrade" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:68 +msgid "Installing the sysupgrade. Do not unpower device!" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:147 +msgid "Keep settings and retain the current configuration" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:287 +msgid "New upgrade available" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:311 +msgid "No upgrade available" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/root/usr/share/luci/menu.d/luci-app-attendedsysupgrade.json:15 +msgid "Overview" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:191 +msgid "Please report the error message and request" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:306 +msgid "Request Sysupgrade" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:175 +msgid "Request in build queue" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:192 +msgid "Request to server:" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:119 +msgid "SHA256" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/configuration.js:23 +msgid "Search for new sysupgrades on opening the tab" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:371 +msgid "Search for sysupgrade" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/configuration.js:22 +msgid "Search on opening" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:226 +msgid "Searching for an available sysupgrade" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/configuration.js:13 +msgid "Server" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/configuration.js:28 +msgid "Show advanced options like packge list modification" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:166 +msgid "Successfully created sysupgrade image" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:121 +msgid "Target" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:358 +msgid "" +"The attended sysupgrade service allows to easily upgrade vanilla and custom " +"firmware images." +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:312 +msgid "The device runs the latest firmware version" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:359 +msgid "" +"This is done by building a new firmware on demand via an online service." +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:51 +msgid "Uploading firmware from browser to device" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:115 +msgid "Version" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:60 +msgid "Wrong checksum" +msgstr "" diff --git a/applications/luci-app-attendedsysupgrade/po/bn_BD/attendedsysupgrade.po b/applications/luci-app-attendedsysupgrade/po/bn_BD/attendedsysupgrade.po new file mode 100644 index 0000000000..80ab3cae8f --- /dev/null +++ b/applications/luci-app-attendedsysupgrade/po/bn_BD/attendedsysupgrade.po @@ -0,0 +1,177 @@ +msgid "" +msgstr "" +"Language: bn_BD\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/configuration.js:16 +msgid "Address" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/configuration.js:17 +msgid "Address of the sysupgrade server" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/configuration.js:27 +msgid "Advances Mode" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/configuration.js:9 +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:357 +#: applications/luci-app-attendedsysupgrade/root/usr/share/luci/menu.d/luci-app-attendedsysupgrade.json:3 +msgid "Attended Sysupgrade" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/configuration.js:10 +msgid "Attendedsysupgrade Configuration." +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:120 +msgid "Build Date" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:178 +msgid "Building the sysupgrade image" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:155 +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:295 +msgid "Cancel" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/configuration.js:19 +msgid "Client" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:65 +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:216 +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:319 +msgid "Close" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/root/usr/share/luci/menu.d/luci-app-attendedsysupgrade.json:24 +msgid "Configuration" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:37 +msgid "Downloading firmware from server to browser" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:219 +msgid "Error building the sysupgrade" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:61 +msgid "Error during download of firmware. Please try again" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:116 +msgid "File" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/root/usr/share/rpcd/acl.d/luci-app-attendedsysupgrade.json:3 +msgid "Grant UCI access to LuCI app attendedsysupgrade" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:162 +msgid "Install Sysupgrade" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:68 +msgid "Installing the sysupgrade. Do not unpower device!" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:147 +msgid "Keep settings and retain the current configuration" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:287 +msgid "New upgrade available" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:311 +msgid "No upgrade available" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/root/usr/share/luci/menu.d/luci-app-attendedsysupgrade.json:15 +msgid "Overview" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:191 +msgid "Please report the error message and request" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:306 +msgid "Request Sysupgrade" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:175 +msgid "Request in build queue" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:192 +msgid "Request to server:" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:119 +msgid "SHA256" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/configuration.js:23 +msgid "Search for new sysupgrades on opening the tab" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:371 +msgid "Search for sysupgrade" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/configuration.js:22 +msgid "Search on opening" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:226 +msgid "Searching for an available sysupgrade" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/configuration.js:13 +msgid "Server" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/configuration.js:28 +msgid "Show advanced options like packge list modification" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:166 +msgid "Successfully created sysupgrade image" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:121 +msgid "Target" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:358 +msgid "" +"The attended sysupgrade service allows to easily upgrade vanilla and custom " +"firmware images." +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:312 +msgid "The device runs the latest firmware version" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:359 +msgid "" +"This is done by building a new firmware on demand via an online service." +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:51 +msgid "Uploading firmware from browser to device" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:115 +msgid "Version" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:60 +msgid "Wrong checksum" +msgstr "" diff --git a/applications/luci-app-attendedsysupgrade/po/ca/attendedsysupgrade.po b/applications/luci-app-attendedsysupgrade/po/ca/attendedsysupgrade.po index 7db98be15c..71996ee3d7 100644 --- a/applications/luci-app-attendedsysupgrade/po/ca/attendedsysupgrade.po +++ b/applications/luci-app-attendedsysupgrade/po/ca/attendedsysupgrade.po @@ -10,7 +10,174 @@ msgstr "" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Generator: Weblate 3.10-dev\n" -#: applications/luci-app-attendedsysupgrade/luasrc/controller/attendedsysupgrade.lua:4 -#: applications/luci-app-attendedsysupgrade/luasrc/view/attendedsysupgrade.htm:76 +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/configuration.js:16 +msgid "Address" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/configuration.js:17 +msgid "Address of the sysupgrade server" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/configuration.js:27 +msgid "Advances Mode" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/configuration.js:9 +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:357 +#: applications/luci-app-attendedsysupgrade/root/usr/share/luci/menu.d/luci-app-attendedsysupgrade.json:3 msgid "Attended Sysupgrade" msgstr "Actualització Assistida" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/configuration.js:10 +msgid "Attendedsysupgrade Configuration." +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:120 +msgid "Build Date" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:178 +msgid "Building the sysupgrade image" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:155 +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:295 +msgid "Cancel" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/configuration.js:19 +msgid "Client" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:65 +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:216 +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:319 +msgid "Close" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/root/usr/share/luci/menu.d/luci-app-attendedsysupgrade.json:24 +msgid "Configuration" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:37 +msgid "Downloading firmware from server to browser" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:219 +msgid "Error building the sysupgrade" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:61 +msgid "Error during download of firmware. Please try again" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:116 +msgid "File" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/root/usr/share/rpcd/acl.d/luci-app-attendedsysupgrade.json:3 +msgid "Grant UCI access to LuCI app attendedsysupgrade" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:162 +msgid "Install Sysupgrade" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:68 +msgid "Installing the sysupgrade. Do not unpower device!" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:147 +msgid "Keep settings and retain the current configuration" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:287 +msgid "New upgrade available" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:311 +msgid "No upgrade available" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/root/usr/share/luci/menu.d/luci-app-attendedsysupgrade.json:15 +msgid "Overview" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:191 +msgid "Please report the error message and request" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:306 +msgid "Request Sysupgrade" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:175 +msgid "Request in build queue" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:192 +msgid "Request to server:" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:119 +msgid "SHA256" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/configuration.js:23 +msgid "Search for new sysupgrades on opening the tab" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:371 +msgid "Search for sysupgrade" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/configuration.js:22 +msgid "Search on opening" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:226 +msgid "Searching for an available sysupgrade" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/configuration.js:13 +msgid "Server" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/configuration.js:28 +msgid "Show advanced options like packge list modification" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:166 +msgid "Successfully created sysupgrade image" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:121 +msgid "Target" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:358 +msgid "" +"The attended sysupgrade service allows to easily upgrade vanilla and custom " +"firmware images." +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:312 +msgid "The device runs the latest firmware version" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:359 +msgid "" +"This is done by building a new firmware on demand via an online service." +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:51 +msgid "Uploading firmware from browser to device" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:115 +msgid "Version" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:60 +msgid "Wrong checksum" +msgstr "" diff --git a/applications/luci-app-attendedsysupgrade/po/cs/attendedsysupgrade.po b/applications/luci-app-attendedsysupgrade/po/cs/attendedsysupgrade.po index 8bc2f81e70..e68da3349b 100644 --- a/applications/luci-app-attendedsysupgrade/po/cs/attendedsysupgrade.po +++ b/applications/luci-app-attendedsysupgrade/po/cs/attendedsysupgrade.po @@ -10,7 +10,174 @@ msgstr "" "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" "X-Generator: Weblate 4.7-dev\n" -#: applications/luci-app-attendedsysupgrade/luasrc/controller/attendedsysupgrade.lua:4 -#: applications/luci-app-attendedsysupgrade/luasrc/view/attendedsysupgrade.htm:76 +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/configuration.js:16 +msgid "Address" +msgstr "Adresa" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/configuration.js:17 +msgid "Address of the sysupgrade server" +msgstr "Adresa serveru pro sysupgrade" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/configuration.js:27 +msgid "Advances Mode" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/configuration.js:9 +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:357 +#: applications/luci-app-attendedsysupgrade/root/usr/share/luci/menu.d/luci-app-attendedsysupgrade.json:3 msgid "Attended Sysupgrade" msgstr "Interaktivně provedený přechod na novější verzi systému" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/configuration.js:10 +msgid "Attendedsysupgrade Configuration." +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:120 +msgid "Build Date" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:178 +msgid "Building the sysupgrade image" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:155 +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:295 +msgid "Cancel" +msgstr "Storno" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/configuration.js:19 +msgid "Client" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:65 +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:216 +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:319 +msgid "Close" +msgstr "Zavřít" + +#: applications/luci-app-attendedsysupgrade/root/usr/share/luci/menu.d/luci-app-attendedsysupgrade.json:24 +msgid "Configuration" +msgstr "Nastavení" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:37 +msgid "Downloading firmware from server to browser" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:219 +msgid "Error building the sysupgrade" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:61 +msgid "Error during download of firmware. Please try again" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:116 +msgid "File" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/root/usr/share/rpcd/acl.d/luci-app-attendedsysupgrade.json:3 +msgid "Grant UCI access to LuCI app attendedsysupgrade" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:162 +msgid "Install Sysupgrade" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:68 +msgid "Installing the sysupgrade. Do not unpower device!" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:147 +msgid "Keep settings and retain the current configuration" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:287 +msgid "New upgrade available" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:311 +msgid "No upgrade available" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/root/usr/share/luci/menu.d/luci-app-attendedsysupgrade.json:15 +msgid "Overview" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:191 +msgid "Please report the error message and request" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:306 +msgid "Request Sysupgrade" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:175 +msgid "Request in build queue" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:192 +msgid "Request to server:" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:119 +msgid "SHA256" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/configuration.js:23 +msgid "Search for new sysupgrades on opening the tab" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:371 +msgid "Search for sysupgrade" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/configuration.js:22 +msgid "Search on opening" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:226 +msgid "Searching for an available sysupgrade" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/configuration.js:13 +msgid "Server" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/configuration.js:28 +msgid "Show advanced options like packge list modification" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:166 +msgid "Successfully created sysupgrade image" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:121 +msgid "Target" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:358 +msgid "" +"The attended sysupgrade service allows to easily upgrade vanilla and custom " +"firmware images." +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:312 +msgid "The device runs the latest firmware version" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:359 +msgid "" +"This is done by building a new firmware on demand via an online service." +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:51 +msgid "Uploading firmware from browser to device" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:115 +msgid "Version" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:60 +msgid "Wrong checksum" +msgstr "" diff --git a/applications/luci-app-attendedsysupgrade/po/de/attendedsysupgrade.po b/applications/luci-app-attendedsysupgrade/po/de/attendedsysupgrade.po index c2643feb0d..035e514add 100644 --- a/applications/luci-app-attendedsysupgrade/po/de/attendedsysupgrade.po +++ b/applications/luci-app-attendedsysupgrade/po/de/attendedsysupgrade.po @@ -1,16 +1,189 @@ msgid "" msgstr "" -"PO-Revision-Date: 2021-05-17 07:42+0000\n" -"Last-Translator: Zocker1012 \n" +"PO-Revision-Date: 2021-06-18 19:32+0000\n" +"Last-Translator: Martin \n" "Language-Team: German \n" "Language: de\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Weblate 4.7-dev\n" +"X-Generator: Weblate 4.7\n" -#: applications/luci-app-attendedsysupgrade/luasrc/controller/attendedsysupgrade.lua:4 -#: applications/luci-app-attendedsysupgrade/luasrc/view/attendedsysupgrade.htm:76 +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/configuration.js:16 +msgid "Address" +msgstr "Adresse" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/configuration.js:17 +msgid "Address of the sysupgrade server" +msgstr "Adresse des Sysupgrade-Servers" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/configuration.js:27 +msgid "Advances Mode" +msgstr "Erweiterter Modus" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/configuration.js:9 +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:357 +#: applications/luci-app-attendedsysupgrade/root/usr/share/luci/menu.d/luci-app-attendedsysupgrade.json:3 msgid "Attended Sysupgrade" -msgstr "Begleitetes Sysupgrade" +msgstr "Begleitetes System-Upgrade" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/configuration.js:10 +msgid "Attendedsysupgrade Configuration." +msgstr "Einstellungen für Begleitetes System-Upgrade." + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:120 +msgid "Build Date" +msgstr "Build-Datum" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:178 +msgid "Building the sysupgrade image" +msgstr "Sysupgrade-Image wird gebaut" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:155 +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:295 +msgid "Cancel" +msgstr "Abbrechen" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/configuration.js:19 +msgid "Client" +msgstr "Client" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:65 +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:216 +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:319 +msgid "Close" +msgstr "Schließen" + +#: applications/luci-app-attendedsysupgrade/root/usr/share/luci/menu.d/luci-app-attendedsysupgrade.json:24 +msgid "Configuration" +msgstr "Konfiguration" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:37 +msgid "Downloading firmware from server to browser" +msgstr "Firmware vom Server zum Browser herunterladen" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:219 +msgid "Error building the sysupgrade" +msgstr "Fehler beim Aufbau des System-Upgrades" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:61 +msgid "Error during download of firmware. Please try again" +msgstr "Fehler beim Firmware-Download. Bitte erneut versuchen" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:116 +msgid "File" +msgstr "Datei" + +#: applications/luci-app-attendedsysupgrade/root/usr/share/rpcd/acl.d/luci-app-attendedsysupgrade.json:3 +msgid "Grant UCI access to LuCI app attendedsysupgrade" +msgstr "LuCI-App für begleitetes System-Upgrade UCI-Zugriff gewähren" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:162 +msgid "Install Sysupgrade" +msgstr "System-Upgrade installieren" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:68 +msgid "Installing the sysupgrade. Do not unpower device!" +msgstr "Installiere System-Upgrade. Gerät nicht ausschalten!" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:147 +msgid "Keep settings and retain the current configuration" +msgstr "Einstellungen beibehalten und die aktuelle Konfiguration sichern" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:287 +msgid "New upgrade available" +msgstr "Neues Upgrade verfügbar" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:311 +msgid "No upgrade available" +msgstr "Kein Upgrade verfügbar" + +#: applications/luci-app-attendedsysupgrade/root/usr/share/luci/menu.d/luci-app-attendedsysupgrade.json:15 +msgid "Overview" +msgstr "Übersicht" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:191 +msgid "Please report the error message and request" +msgstr "Bitte Fehlermeldung melden und Anforderung" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:306 +msgid "Request Sysupgrade" +msgstr "Auf System-Upgrade prüfen" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:175 +msgid "Request in build queue" +msgstr "Anfrage in Build-Warteschlange" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:192 +msgid "Request to server:" +msgstr "Anfrage an den Server:" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:119 +msgid "SHA256" +msgstr "SHA256" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/configuration.js:23 +msgid "Search for new sysupgrades on opening the tab" +msgstr "Suche beim Öffnen des Tabs nach neuen System-Upgrades" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:371 +msgid "Search for sysupgrade" +msgstr "Suche nach System-Upgrades" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/configuration.js:22 +msgid "Search on opening" +msgstr "Suche beim Öffnen" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:226 +msgid "Searching for an available sysupgrade" +msgstr "Suche nach verfügbaren System-Upgrades" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/configuration.js:13 +msgid "Server" +msgstr "Server" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/configuration.js:28 +msgid "Show advanced options like packge list modification" +msgstr "Fortgeschrittene Einstellungen anzeigen, z.B. Paketlistenmodifizierung" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:166 +msgid "Successfully created sysupgrade image" +msgstr "Sysupgrade-Image erfolgreich erzeugt" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:121 +msgid "Target" +msgstr "Zielplatform" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:358 +msgid "" +"The attended sysupgrade service allows to easily upgrade vanilla and custom " +"firmware images." +msgstr "" +"Begleitetes Sysupgrade erlaubt es, Upgrades für Vanilla- und Custom-" +"Installationen einzuspielen." + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:312 +msgid "The device runs the latest firmware version" +msgstr "Dieses Gerät läuft mit der neuesten Firmware-Version" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:359 +msgid "" +"This is done by building a new firmware on demand via an online service." +msgstr "" +"Dafür wird auf Anfrage eine neue Firmware bei einem Online-Service gebaut." + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:51 +msgid "Uploading firmware from browser to device" +msgstr "Firmware vom Browser zum Gerät laden" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:115 +msgid "Version" +msgstr "Version" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:60 +msgid "Wrong checksum" +msgstr "Falsche Prüfsumme" + +#~ msgid "attended sysupgrade via rpcd and luci" +#~ msgstr "beaufsichtigtes System-Upgrade mittels rpcd und luci" diff --git a/applications/luci-app-attendedsysupgrade/po/el/attendedsysupgrade.po b/applications/luci-app-attendedsysupgrade/po/el/attendedsysupgrade.po index 2ff09c641c..c7bfdd2c2c 100644 --- a/applications/luci-app-attendedsysupgrade/po/el/attendedsysupgrade.po +++ b/applications/luci-app-attendedsysupgrade/po/el/attendedsysupgrade.po @@ -10,7 +10,174 @@ msgstr "" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Generator: Weblate 4.6-dev\n" -#: applications/luci-app-attendedsysupgrade/luasrc/controller/attendedsysupgrade.lua:4 -#: applications/luci-app-attendedsysupgrade/luasrc/view/attendedsysupgrade.htm:76 +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/configuration.js:16 +msgid "Address" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/configuration.js:17 +msgid "Address of the sysupgrade server" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/configuration.js:27 +msgid "Advances Mode" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/configuration.js:9 +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:357 +#: applications/luci-app-attendedsysupgrade/root/usr/share/luci/menu.d/luci-app-attendedsysupgrade.json:3 msgid "Attended Sysupgrade" msgstr "Υποβοήθηση Sysupgrade" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/configuration.js:10 +msgid "Attendedsysupgrade Configuration." +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:120 +msgid "Build Date" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:178 +msgid "Building the sysupgrade image" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:155 +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:295 +msgid "Cancel" +msgstr "Ακύρωση" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/configuration.js:19 +msgid "Client" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:65 +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:216 +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:319 +msgid "Close" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/root/usr/share/luci/menu.d/luci-app-attendedsysupgrade.json:24 +msgid "Configuration" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:37 +msgid "Downloading firmware from server to browser" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:219 +msgid "Error building the sysupgrade" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:61 +msgid "Error during download of firmware. Please try again" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:116 +msgid "File" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/root/usr/share/rpcd/acl.d/luci-app-attendedsysupgrade.json:3 +msgid "Grant UCI access to LuCI app attendedsysupgrade" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:162 +msgid "Install Sysupgrade" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:68 +msgid "Installing the sysupgrade. Do not unpower device!" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:147 +msgid "Keep settings and retain the current configuration" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:287 +msgid "New upgrade available" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:311 +msgid "No upgrade available" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/root/usr/share/luci/menu.d/luci-app-attendedsysupgrade.json:15 +msgid "Overview" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:191 +msgid "Please report the error message and request" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:306 +msgid "Request Sysupgrade" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:175 +msgid "Request in build queue" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:192 +msgid "Request to server:" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:119 +msgid "SHA256" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/configuration.js:23 +msgid "Search for new sysupgrades on opening the tab" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:371 +msgid "Search for sysupgrade" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/configuration.js:22 +msgid "Search on opening" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:226 +msgid "Searching for an available sysupgrade" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/configuration.js:13 +msgid "Server" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/configuration.js:28 +msgid "Show advanced options like packge list modification" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:166 +msgid "Successfully created sysupgrade image" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:121 +msgid "Target" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:358 +msgid "" +"The attended sysupgrade service allows to easily upgrade vanilla and custom " +"firmware images." +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:312 +msgid "The device runs the latest firmware version" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:359 +msgid "" +"This is done by building a new firmware on demand via an online service." +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:51 +msgid "Uploading firmware from browser to device" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:115 +msgid "Version" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:60 +msgid "Wrong checksum" +msgstr "" diff --git a/applications/luci-app-attendedsysupgrade/po/en/attendedsysupgrade.po b/applications/luci-app-attendedsysupgrade/po/en/attendedsysupgrade.po index c4e6d51d6d..655acd3402 100644 --- a/applications/luci-app-attendedsysupgrade/po/en/attendedsysupgrade.po +++ b/applications/luci-app-attendedsysupgrade/po/en/attendedsysupgrade.po @@ -10,7 +10,177 @@ msgstr "" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Generator: Weblate 4.3.2-dev\n" -#: applications/luci-app-attendedsysupgrade/luasrc/controller/attendedsysupgrade.lua:4 -#: applications/luci-app-attendedsysupgrade/luasrc/view/attendedsysupgrade.htm:76 +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/configuration.js:16 +msgid "Address" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/configuration.js:17 +msgid "Address of the sysupgrade server" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/configuration.js:27 +msgid "Advances Mode" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/configuration.js:9 +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:357 +#: applications/luci-app-attendedsysupgrade/root/usr/share/luci/menu.d/luci-app-attendedsysupgrade.json:3 msgid "Attended Sysupgrade" msgstr "Attended system upgrade" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/configuration.js:10 +msgid "Attendedsysupgrade Configuration." +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:120 +msgid "Build Date" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:178 +msgid "Building the sysupgrade image" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:155 +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:295 +msgid "Cancel" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/configuration.js:19 +msgid "Client" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:65 +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:216 +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:319 +msgid "Close" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/root/usr/share/luci/menu.d/luci-app-attendedsysupgrade.json:24 +msgid "Configuration" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:37 +msgid "Downloading firmware from server to browser" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:219 +msgid "Error building the sysupgrade" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:61 +msgid "Error during download of firmware. Please try again" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:116 +msgid "File" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/root/usr/share/rpcd/acl.d/luci-app-attendedsysupgrade.json:3 +msgid "Grant UCI access to LuCI app attendedsysupgrade" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:162 +msgid "Install Sysupgrade" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:68 +msgid "Installing the sysupgrade. Do not unpower device!" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:147 +msgid "Keep settings and retain the current configuration" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:287 +msgid "New upgrade available" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:311 +msgid "No upgrade available" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/root/usr/share/luci/menu.d/luci-app-attendedsysupgrade.json:15 +msgid "Overview" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:191 +msgid "Please report the error message and request" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:306 +msgid "Request Sysupgrade" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:175 +msgid "Request in build queue" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:192 +msgid "Request to server:" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:119 +msgid "SHA256" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/configuration.js:23 +msgid "Search for new sysupgrades on opening the tab" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:371 +msgid "Search for sysupgrade" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/configuration.js:22 +msgid "Search on opening" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:226 +msgid "Searching for an available sysupgrade" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/configuration.js:13 +msgid "Server" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/configuration.js:28 +msgid "Show advanced options like packge list modification" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:166 +msgid "Successfully created sysupgrade image" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:121 +msgid "Target" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:358 +msgid "" +"The attended sysupgrade service allows to easily upgrade vanilla and custom " +"firmware images." +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:312 +msgid "The device runs the latest firmware version" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:359 +msgid "" +"This is done by building a new firmware on demand via an online service." +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:51 +msgid "Uploading firmware from browser to device" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:115 +msgid "Version" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:60 +msgid "Wrong checksum" +msgstr "" + +#~ msgid "attended sysupgrade via rpcd and luci" +#~ msgstr "attended system upgrade via rpcd and luci" diff --git a/applications/luci-app-attendedsysupgrade/po/es/attendedsysupgrade.po b/applications/luci-app-attendedsysupgrade/po/es/attendedsysupgrade.po index b2e3c229ed..39f58914a5 100644 --- a/applications/luci-app-attendedsysupgrade/po/es/attendedsysupgrade.po +++ b/applications/luci-app-attendedsysupgrade/po/es/attendedsysupgrade.po @@ -13,7 +13,182 @@ msgstr "" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Generator: Weblate 4.5.2-dev\n" -#: applications/luci-app-attendedsysupgrade/luasrc/controller/attendedsysupgrade.lua:4 -#: applications/luci-app-attendedsysupgrade/luasrc/view/attendedsysupgrade.htm:76 +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/configuration.js:16 +msgid "Address" +msgstr "Dirección" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/configuration.js:17 +msgid "Address of the sysupgrade server" +msgstr "Dirección del servidor sysupgrade" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/configuration.js:27 +msgid "Advances Mode" +msgstr "Modo avanzado" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/configuration.js:9 +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:357 +#: applications/luci-app-attendedsysupgrade/root/usr/share/luci/menu.d/luci-app-attendedsysupgrade.json:3 msgid "Attended Sysupgrade" msgstr "Actualización asistida" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/configuration.js:10 +msgid "Attendedsysupgrade Configuration." +msgstr "Configuración de actualización asistida." + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:120 +msgid "Build Date" +msgstr "Fecha de compilación" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:178 +msgid "Building the sysupgrade image" +msgstr "Compilando la imagen de sysupgrade" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:155 +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:295 +msgid "Cancel" +msgstr "Cancelar" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/configuration.js:19 +msgid "Client" +msgstr "Cliente" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:65 +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:216 +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:319 +msgid "Close" +msgstr "Cerrar" + +#: applications/luci-app-attendedsysupgrade/root/usr/share/luci/menu.d/luci-app-attendedsysupgrade.json:24 +msgid "Configuration" +msgstr "Configuración" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:37 +msgid "Downloading firmware from server to browser" +msgstr "Descargando firmware del servidor al navegador" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:219 +msgid "Error building the sysupgrade" +msgstr "Error al compilar el sysupgrade" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:61 +msgid "Error during download of firmware. Please try again" +msgstr "Error durante la descarga del firmware. Inténtalo de nuevo" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:116 +msgid "File" +msgstr "Archivo" + +#: applications/luci-app-attendedsysupgrade/root/usr/share/rpcd/acl.d/luci-app-attendedsysupgrade.json:3 +msgid "Grant UCI access to LuCI app attendedsysupgrade" +msgstr "Otorgar acceso UCI a la aplicación LuCI actualización asistida" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:162 +msgid "Install Sysupgrade" +msgstr "Instalar Sysupgrade" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:68 +msgid "Installing the sysupgrade. Do not unpower device!" +msgstr "Instalando el archivo sysupgrade. ¡No apague el dispositivo!" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:147 +msgid "Keep settings and retain the current configuration" +msgstr "Mantener los ajustes y conservar la configuración actual" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:287 +msgid "New upgrade available" +msgstr "Nueva actualización disponible" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:311 +msgid "No upgrade available" +msgstr "No hay actualización disponible" + +#: applications/luci-app-attendedsysupgrade/root/usr/share/luci/menu.d/luci-app-attendedsysupgrade.json:15 +msgid "Overview" +msgstr "Vista general" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:191 +msgid "Please report the error message and request" +msgstr "Por favor informe el mensaje de error y solicite" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:306 +msgid "Request Sysupgrade" +msgstr "Solicitar Sysupgrade" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:175 +msgid "Request in build queue" +msgstr "Solicitud en cola de compilación" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:192 +msgid "Request to server:" +msgstr "Solicitud al servidor:" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:119 +msgid "SHA256" +msgstr "SHA256" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/configuration.js:23 +msgid "Search for new sysupgrades on opening the tab" +msgstr "Busque nuevas actualizaciones del sistema al abrir la pestaña" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:371 +msgid "Search for sysupgrade" +msgstr "Buscar sysupgrade" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/configuration.js:22 +msgid "Search on opening" +msgstr "Buscar al abrir" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:226 +msgid "Searching for an available sysupgrade" +msgstr "Buscando una actualización del sistema disponible" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/configuration.js:13 +msgid "Server" +msgstr "Servidor" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/configuration.js:28 +msgid "Show advanced options like packge list modification" +msgstr "" +"Mostrar opciones avanzadas como la modificación de la lista de paquetes" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:166 +msgid "Successfully created sysupgrade image" +msgstr "Imagen de actualización del sistema creada con éxito" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:121 +msgid "Target" +msgstr "Objetivo" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:358 +msgid "" +"The attended sysupgrade service allows to easily upgrade vanilla and custom " +"firmware images." +msgstr "" +"El servicio de actualización asistida permite actualizar fácilmente las " +"imágenes de firmware personalizadas y/o limpias." + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:312 +msgid "The device runs the latest firmware version" +msgstr "El dispositivo ejecuta la última versión de firmware" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:359 +msgid "" +"This is done by building a new firmware on demand via an online service." +msgstr "" +"Esto se hace creando un nuevo firmware bajo demanda a través de un servicio " +"en línea." + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:51 +msgid "Uploading firmware from browser to device" +msgstr "Cargando firmware desde el navegador al dispositivo" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:115 +msgid "Version" +msgstr "Versión" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:60 +msgid "Wrong checksum" +msgstr "Suma de comprobación incorrecta" + +#~ msgid "attended sysupgrade via rpcd and luci" +#~ msgstr "sysupgrade asistido vía rpcd y luci" diff --git a/applications/luci-app-attendedsysupgrade/po/fa/attendedsysupgrade.po b/applications/luci-app-attendedsysupgrade/po/fa/attendedsysupgrade.po new file mode 100644 index 0000000000..8b458ebcfd --- /dev/null +++ b/applications/luci-app-attendedsysupgrade/po/fa/attendedsysupgrade.po @@ -0,0 +1,186 @@ +msgid "" +msgstr "" +"PO-Revision-Date: 2021-02-21 14:50+0000\n" +"Last-Translator: robin98 \n" +"Language-Team: Persian \n" +"Language: fa\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=n > 1;\n" +"X-Generator: Weblate 4.5\n" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/configuration.js:16 +msgid "Address" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/configuration.js:17 +msgid "Address of the sysupgrade server" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/configuration.js:27 +msgid "Advances Mode" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/configuration.js:9 +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:357 +#: applications/luci-app-attendedsysupgrade/root/usr/share/luci/menu.d/luci-app-attendedsysupgrade.json:3 +msgid "Attended Sysupgrade" +msgstr "در Sysupgrade ثبت شد" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/configuration.js:10 +msgid "Attendedsysupgrade Configuration." +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:120 +msgid "Build Date" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:178 +msgid "Building the sysupgrade image" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:155 +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:295 +msgid "Cancel" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/configuration.js:19 +msgid "Client" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:65 +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:216 +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:319 +msgid "Close" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/root/usr/share/luci/menu.d/luci-app-attendedsysupgrade.json:24 +msgid "Configuration" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:37 +msgid "Downloading firmware from server to browser" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:219 +msgid "Error building the sysupgrade" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:61 +msgid "Error during download of firmware. Please try again" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:116 +msgid "File" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/root/usr/share/rpcd/acl.d/luci-app-attendedsysupgrade.json:3 +msgid "Grant UCI access to LuCI app attendedsysupgrade" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:162 +msgid "Install Sysupgrade" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:68 +msgid "Installing the sysupgrade. Do not unpower device!" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:147 +msgid "Keep settings and retain the current configuration" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:287 +msgid "New upgrade available" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:311 +msgid "No upgrade available" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/root/usr/share/luci/menu.d/luci-app-attendedsysupgrade.json:15 +msgid "Overview" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:191 +msgid "Please report the error message and request" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:306 +msgid "Request Sysupgrade" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:175 +msgid "Request in build queue" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:192 +msgid "Request to server:" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:119 +msgid "SHA256" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/configuration.js:23 +msgid "Search for new sysupgrades on opening the tab" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:371 +msgid "Search for sysupgrade" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/configuration.js:22 +msgid "Search on opening" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:226 +msgid "Searching for an available sysupgrade" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/configuration.js:13 +msgid "Server" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/configuration.js:28 +msgid "Show advanced options like packge list modification" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:166 +msgid "Successfully created sysupgrade image" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:121 +msgid "Target" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:358 +msgid "" +"The attended sysupgrade service allows to easily upgrade vanilla and custom " +"firmware images." +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:312 +msgid "The device runs the latest firmware version" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:359 +msgid "" +"This is done by building a new firmware on demand via an online service." +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:51 +msgid "Uploading firmware from browser to device" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:115 +msgid "Version" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:60 +msgid "Wrong checksum" +msgstr "" + +#~ msgid "attended sysupgrade via rpcd and luci" +#~ msgstr "در sysupgrade از طریق rpcd و luci ثبت شد" diff --git a/applications/luci-app-attendedsysupgrade/po/fi/attendedsysupgrade.po b/applications/luci-app-attendedsysupgrade/po/fi/attendedsysupgrade.po new file mode 100644 index 0000000000..603fbcd4e8 --- /dev/null +++ b/applications/luci-app-attendedsysupgrade/po/fi/attendedsysupgrade.po @@ -0,0 +1,186 @@ +msgid "" +msgstr "" +"PO-Revision-Date: 2021-06-18 19:32+0000\n" +"Last-Translator: Demian Wright \n" +"Language-Team: Finnish \n" +"Language: fi\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" +"X-Generator: Weblate 4.7\n" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/configuration.js:16 +msgid "Address" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/configuration.js:17 +msgid "Address of the sysupgrade server" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/configuration.js:27 +msgid "Advances Mode" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/configuration.js:9 +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:357 +#: applications/luci-app-attendedsysupgrade/root/usr/share/luci/menu.d/luci-app-attendedsysupgrade.json:3 +msgid "Attended Sysupgrade" +msgstr "Järjestelmän valvottu päivitys" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/configuration.js:10 +msgid "Attendedsysupgrade Configuration." +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:120 +msgid "Build Date" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:178 +msgid "Building the sysupgrade image" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:155 +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:295 +msgid "Cancel" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/configuration.js:19 +msgid "Client" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:65 +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:216 +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:319 +msgid "Close" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/root/usr/share/luci/menu.d/luci-app-attendedsysupgrade.json:24 +msgid "Configuration" +msgstr "Kokoonpano" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:37 +msgid "Downloading firmware from server to browser" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:219 +msgid "Error building the sysupgrade" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:61 +msgid "Error during download of firmware. Please try again" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:116 +msgid "File" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/root/usr/share/rpcd/acl.d/luci-app-attendedsysupgrade.json:3 +msgid "Grant UCI access to LuCI app attendedsysupgrade" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:162 +msgid "Install Sysupgrade" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:68 +msgid "Installing the sysupgrade. Do not unpower device!" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:147 +msgid "Keep settings and retain the current configuration" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:287 +msgid "New upgrade available" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:311 +msgid "No upgrade available" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/root/usr/share/luci/menu.d/luci-app-attendedsysupgrade.json:15 +msgid "Overview" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:191 +msgid "Please report the error message and request" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:306 +msgid "Request Sysupgrade" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:175 +msgid "Request in build queue" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:192 +msgid "Request to server:" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:119 +msgid "SHA256" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/configuration.js:23 +msgid "Search for new sysupgrades on opening the tab" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:371 +msgid "Search for sysupgrade" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/configuration.js:22 +msgid "Search on opening" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:226 +msgid "Searching for an available sysupgrade" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/configuration.js:13 +msgid "Server" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/configuration.js:28 +msgid "Show advanced options like packge list modification" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:166 +msgid "Successfully created sysupgrade image" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:121 +msgid "Target" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:358 +msgid "" +"The attended sysupgrade service allows to easily upgrade vanilla and custom " +"firmware images." +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:312 +msgid "The device runs the latest firmware version" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:359 +msgid "" +"This is done by building a new firmware on demand via an online service." +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:51 +msgid "Uploading firmware from browser to device" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:115 +msgid "Version" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:60 +msgid "Wrong checksum" +msgstr "" + +#~ msgid "attended sysupgrade via rpcd and luci" +#~ msgstr "järjestelmän valvottu päivitys rcpd:n ja luci:n kautta" diff --git a/applications/luci-app-attendedsysupgrade/po/fr/attendedsysupgrade.po b/applications/luci-app-attendedsysupgrade/po/fr/attendedsysupgrade.po index 78d0ceab65..d0070532fe 100644 --- a/applications/luci-app-attendedsysupgrade/po/fr/attendedsysupgrade.po +++ b/applications/luci-app-attendedsysupgrade/po/fr/attendedsysupgrade.po @@ -10,7 +10,177 @@ msgstr "" "Plural-Forms: nplurals=2; plural=n > 1;\n" "X-Generator: Weblate 4.7-dev\n" -#: applications/luci-app-attendedsysupgrade/luasrc/controller/attendedsysupgrade.lua:4 -#: applications/luci-app-attendedsysupgrade/luasrc/view/attendedsysupgrade.htm:76 +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/configuration.js:16 +msgid "Address" +msgstr "Adresse" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/configuration.js:17 +msgid "Address of the sysupgrade server" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/configuration.js:27 +msgid "Advances Mode" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/configuration.js:9 +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:357 +#: applications/luci-app-attendedsysupgrade/root/usr/share/luci/menu.d/luci-app-attendedsysupgrade.json:3 msgid "Attended Sysupgrade" msgstr "Mise à niveau du système" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/configuration.js:10 +msgid "Attendedsysupgrade Configuration." +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:120 +msgid "Build Date" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:178 +msgid "Building the sysupgrade image" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:155 +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:295 +msgid "Cancel" +msgstr "Annuler" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/configuration.js:19 +msgid "Client" +msgstr "Client" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:65 +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:216 +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:319 +msgid "Close" +msgstr "Fermer" + +#: applications/luci-app-attendedsysupgrade/root/usr/share/luci/menu.d/luci-app-attendedsysupgrade.json:24 +msgid "Configuration" +msgstr "Configuration" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:37 +msgid "Downloading firmware from server to browser" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:219 +msgid "Error building the sysupgrade" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:61 +msgid "Error during download of firmware. Please try again" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:116 +msgid "File" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/root/usr/share/rpcd/acl.d/luci-app-attendedsysupgrade.json:3 +msgid "Grant UCI access to LuCI app attendedsysupgrade" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:162 +msgid "Install Sysupgrade" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:68 +msgid "Installing the sysupgrade. Do not unpower device!" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:147 +msgid "Keep settings and retain the current configuration" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:287 +msgid "New upgrade available" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:311 +msgid "No upgrade available" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/root/usr/share/luci/menu.d/luci-app-attendedsysupgrade.json:15 +msgid "Overview" +msgstr "Aperçu" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:191 +msgid "Please report the error message and request" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:306 +msgid "Request Sysupgrade" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:175 +msgid "Request in build queue" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:192 +msgid "Request to server:" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:119 +msgid "SHA256" +msgstr "SHA256" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/configuration.js:23 +msgid "Search for new sysupgrades on opening the tab" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:371 +msgid "Search for sysupgrade" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/configuration.js:22 +msgid "Search on opening" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:226 +msgid "Searching for an available sysupgrade" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/configuration.js:13 +msgid "Server" +msgstr "Serveur" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/configuration.js:28 +msgid "Show advanced options like packge list modification" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:166 +msgid "Successfully created sysupgrade image" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:121 +msgid "Target" +msgstr "Cible" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:358 +msgid "" +"The attended sysupgrade service allows to easily upgrade vanilla and custom " +"firmware images." +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:312 +msgid "The device runs the latest firmware version" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:359 +msgid "" +"This is done by building a new firmware on demand via an online service." +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:51 +msgid "Uploading firmware from browser to device" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:115 +msgid "Version" +msgstr "Version" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:60 +msgid "Wrong checksum" +msgstr "" + +#~ msgid "attended sysupgrade via rpcd and luci" +#~ msgstr "Mise à niveau système via rpcd et luci" diff --git a/applications/luci-app-attendedsysupgrade/po/he/attendedsysupgrade.po b/applications/luci-app-attendedsysupgrade/po/he/attendedsysupgrade.po index 8437e7accd..9a319e8264 100644 --- a/applications/luci-app-attendedsysupgrade/po/he/attendedsysupgrade.po +++ b/applications/luci-app-attendedsysupgrade/po/he/attendedsysupgrade.po @@ -4,7 +4,174 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -#: applications/luci-app-attendedsysupgrade/luasrc/controller/attendedsysupgrade.lua:4 -#: applications/luci-app-attendedsysupgrade/luasrc/view/attendedsysupgrade.htm:76 +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/configuration.js:16 +msgid "Address" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/configuration.js:17 +msgid "Address of the sysupgrade server" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/configuration.js:27 +msgid "Advances Mode" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/configuration.js:9 +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:357 +#: applications/luci-app-attendedsysupgrade/root/usr/share/luci/menu.d/luci-app-attendedsysupgrade.json:3 msgid "Attended Sysupgrade" msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/configuration.js:10 +msgid "Attendedsysupgrade Configuration." +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:120 +msgid "Build Date" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:178 +msgid "Building the sysupgrade image" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:155 +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:295 +msgid "Cancel" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/configuration.js:19 +msgid "Client" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:65 +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:216 +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:319 +msgid "Close" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/root/usr/share/luci/menu.d/luci-app-attendedsysupgrade.json:24 +msgid "Configuration" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:37 +msgid "Downloading firmware from server to browser" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:219 +msgid "Error building the sysupgrade" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:61 +msgid "Error during download of firmware. Please try again" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:116 +msgid "File" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/root/usr/share/rpcd/acl.d/luci-app-attendedsysupgrade.json:3 +msgid "Grant UCI access to LuCI app attendedsysupgrade" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:162 +msgid "Install Sysupgrade" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:68 +msgid "Installing the sysupgrade. Do not unpower device!" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:147 +msgid "Keep settings and retain the current configuration" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:287 +msgid "New upgrade available" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:311 +msgid "No upgrade available" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/root/usr/share/luci/menu.d/luci-app-attendedsysupgrade.json:15 +msgid "Overview" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:191 +msgid "Please report the error message and request" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:306 +msgid "Request Sysupgrade" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:175 +msgid "Request in build queue" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:192 +msgid "Request to server:" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:119 +msgid "SHA256" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/configuration.js:23 +msgid "Search for new sysupgrades on opening the tab" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:371 +msgid "Search for sysupgrade" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/configuration.js:22 +msgid "Search on opening" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:226 +msgid "Searching for an available sysupgrade" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/configuration.js:13 +msgid "Server" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/configuration.js:28 +msgid "Show advanced options like packge list modification" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:166 +msgid "Successfully created sysupgrade image" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:121 +msgid "Target" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:358 +msgid "" +"The attended sysupgrade service allows to easily upgrade vanilla and custom " +"firmware images." +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:312 +msgid "The device runs the latest firmware version" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:359 +msgid "" +"This is done by building a new firmware on demand via an online service." +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:51 +msgid "Uploading firmware from browser to device" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:115 +msgid "Version" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:60 +msgid "Wrong checksum" +msgstr "" diff --git a/applications/luci-app-attendedsysupgrade/po/hi/attendedsysupgrade.po b/applications/luci-app-attendedsysupgrade/po/hi/attendedsysupgrade.po index 07cd3fef80..74207ac03d 100644 --- a/applications/luci-app-attendedsysupgrade/po/hi/attendedsysupgrade.po +++ b/applications/luci-app-attendedsysupgrade/po/hi/attendedsysupgrade.po @@ -4,7 +4,174 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -#: applications/luci-app-attendedsysupgrade/luasrc/controller/attendedsysupgrade.lua:4 -#: applications/luci-app-attendedsysupgrade/luasrc/view/attendedsysupgrade.htm:76 +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/configuration.js:16 +msgid "Address" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/configuration.js:17 +msgid "Address of the sysupgrade server" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/configuration.js:27 +msgid "Advances Mode" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/configuration.js:9 +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:357 +#: applications/luci-app-attendedsysupgrade/root/usr/share/luci/menu.d/luci-app-attendedsysupgrade.json:3 msgid "Attended Sysupgrade" msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/configuration.js:10 +msgid "Attendedsysupgrade Configuration." +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:120 +msgid "Build Date" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:178 +msgid "Building the sysupgrade image" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:155 +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:295 +msgid "Cancel" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/configuration.js:19 +msgid "Client" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:65 +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:216 +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:319 +msgid "Close" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/root/usr/share/luci/menu.d/luci-app-attendedsysupgrade.json:24 +msgid "Configuration" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:37 +msgid "Downloading firmware from server to browser" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:219 +msgid "Error building the sysupgrade" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:61 +msgid "Error during download of firmware. Please try again" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:116 +msgid "File" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/root/usr/share/rpcd/acl.d/luci-app-attendedsysupgrade.json:3 +msgid "Grant UCI access to LuCI app attendedsysupgrade" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:162 +msgid "Install Sysupgrade" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:68 +msgid "Installing the sysupgrade. Do not unpower device!" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:147 +msgid "Keep settings and retain the current configuration" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:287 +msgid "New upgrade available" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:311 +msgid "No upgrade available" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/root/usr/share/luci/menu.d/luci-app-attendedsysupgrade.json:15 +msgid "Overview" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:191 +msgid "Please report the error message and request" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:306 +msgid "Request Sysupgrade" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:175 +msgid "Request in build queue" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:192 +msgid "Request to server:" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:119 +msgid "SHA256" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/configuration.js:23 +msgid "Search for new sysupgrades on opening the tab" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:371 +msgid "Search for sysupgrade" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/configuration.js:22 +msgid "Search on opening" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:226 +msgid "Searching for an available sysupgrade" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/configuration.js:13 +msgid "Server" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/configuration.js:28 +msgid "Show advanced options like packge list modification" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:166 +msgid "Successfully created sysupgrade image" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:121 +msgid "Target" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:358 +msgid "" +"The attended sysupgrade service allows to easily upgrade vanilla and custom " +"firmware images." +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:312 +msgid "The device runs the latest firmware version" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:359 +msgid "" +"This is done by building a new firmware on demand via an online service." +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:51 +msgid "Uploading firmware from browser to device" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:115 +msgid "Version" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:60 +msgid "Wrong checksum" +msgstr "" diff --git a/applications/luci-app-attendedsysupgrade/po/hu/attendedsysupgrade.po b/applications/luci-app-attendedsysupgrade/po/hu/attendedsysupgrade.po index b18c77d23b..146950133b 100644 --- a/applications/luci-app-attendedsysupgrade/po/hu/attendedsysupgrade.po +++ b/applications/luci-app-attendedsysupgrade/po/hu/attendedsysupgrade.po @@ -10,7 +10,174 @@ msgstr "" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Generator: Weblate 3.10-dev\n" -#: applications/luci-app-attendedsysupgrade/luasrc/controller/attendedsysupgrade.lua:4 -#: applications/luci-app-attendedsysupgrade/luasrc/view/attendedsysupgrade.htm:76 +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/configuration.js:16 +msgid "Address" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/configuration.js:17 +msgid "Address of the sysupgrade server" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/configuration.js:27 +msgid "Advances Mode" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/configuration.js:9 +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:357 +#: applications/luci-app-attendedsysupgrade/root/usr/share/luci/menu.d/luci-app-attendedsysupgrade.json:3 msgid "Attended Sysupgrade" msgstr "Felügyelt rendszerfrissítés" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/configuration.js:10 +msgid "Attendedsysupgrade Configuration." +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:120 +msgid "Build Date" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:178 +msgid "Building the sysupgrade image" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:155 +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:295 +msgid "Cancel" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/configuration.js:19 +msgid "Client" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:65 +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:216 +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:319 +msgid "Close" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/root/usr/share/luci/menu.d/luci-app-attendedsysupgrade.json:24 +msgid "Configuration" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:37 +msgid "Downloading firmware from server to browser" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:219 +msgid "Error building the sysupgrade" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:61 +msgid "Error during download of firmware. Please try again" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:116 +msgid "File" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/root/usr/share/rpcd/acl.d/luci-app-attendedsysupgrade.json:3 +msgid "Grant UCI access to LuCI app attendedsysupgrade" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:162 +msgid "Install Sysupgrade" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:68 +msgid "Installing the sysupgrade. Do not unpower device!" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:147 +msgid "Keep settings and retain the current configuration" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:287 +msgid "New upgrade available" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:311 +msgid "No upgrade available" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/root/usr/share/luci/menu.d/luci-app-attendedsysupgrade.json:15 +msgid "Overview" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:191 +msgid "Please report the error message and request" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:306 +msgid "Request Sysupgrade" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:175 +msgid "Request in build queue" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:192 +msgid "Request to server:" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:119 +msgid "SHA256" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/configuration.js:23 +msgid "Search for new sysupgrades on opening the tab" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:371 +msgid "Search for sysupgrade" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/configuration.js:22 +msgid "Search on opening" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:226 +msgid "Searching for an available sysupgrade" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/configuration.js:13 +msgid "Server" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/configuration.js:28 +msgid "Show advanced options like packge list modification" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:166 +msgid "Successfully created sysupgrade image" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:121 +msgid "Target" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:358 +msgid "" +"The attended sysupgrade service allows to easily upgrade vanilla and custom " +"firmware images." +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:312 +msgid "The device runs the latest firmware version" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:359 +msgid "" +"This is done by building a new firmware on demand via an online service." +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:51 +msgid "Uploading firmware from browser to device" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:115 +msgid "Version" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:60 +msgid "Wrong checksum" +msgstr "" diff --git a/applications/luci-app-attendedsysupgrade/po/it/attendedsysupgrade.po b/applications/luci-app-attendedsysupgrade/po/it/attendedsysupgrade.po index 132b1d9ee7..29c71cf2b2 100644 --- a/applications/luci-app-attendedsysupgrade/po/it/attendedsysupgrade.po +++ b/applications/luci-app-attendedsysupgrade/po/it/attendedsysupgrade.po @@ -10,7 +10,177 @@ msgstr "" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Generator: Weblate 4.7-dev\n" -#: applications/luci-app-attendedsysupgrade/luasrc/controller/attendedsysupgrade.lua:4 -#: applications/luci-app-attendedsysupgrade/luasrc/view/attendedsysupgrade.htm:76 +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/configuration.js:16 +msgid "Address" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/configuration.js:17 +msgid "Address of the sysupgrade server" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/configuration.js:27 +msgid "Advances Mode" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/configuration.js:9 +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:357 +#: applications/luci-app-attendedsysupgrade/root/usr/share/luci/menu.d/luci-app-attendedsysupgrade.json:3 msgid "Attended Sysupgrade" msgstr "Sysupgrade Assistito" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/configuration.js:10 +msgid "Attendedsysupgrade Configuration." +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:120 +msgid "Build Date" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:178 +msgid "Building the sysupgrade image" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:155 +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:295 +msgid "Cancel" +msgstr "Annulla" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/configuration.js:19 +msgid "Client" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:65 +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:216 +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:319 +msgid "Close" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/root/usr/share/luci/menu.d/luci-app-attendedsysupgrade.json:24 +msgid "Configuration" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:37 +msgid "Downloading firmware from server to browser" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:219 +msgid "Error building the sysupgrade" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:61 +msgid "Error during download of firmware. Please try again" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:116 +msgid "File" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/root/usr/share/rpcd/acl.d/luci-app-attendedsysupgrade.json:3 +msgid "Grant UCI access to LuCI app attendedsysupgrade" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:162 +msgid "Install Sysupgrade" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:68 +msgid "Installing the sysupgrade. Do not unpower device!" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:147 +msgid "Keep settings and retain the current configuration" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:287 +msgid "New upgrade available" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:311 +msgid "No upgrade available" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/root/usr/share/luci/menu.d/luci-app-attendedsysupgrade.json:15 +msgid "Overview" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:191 +msgid "Please report the error message and request" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:306 +msgid "Request Sysupgrade" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:175 +msgid "Request in build queue" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:192 +msgid "Request to server:" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:119 +msgid "SHA256" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/configuration.js:23 +msgid "Search for new sysupgrades on opening the tab" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:371 +msgid "Search for sysupgrade" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/configuration.js:22 +msgid "Search on opening" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:226 +msgid "Searching for an available sysupgrade" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/configuration.js:13 +msgid "Server" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/configuration.js:28 +msgid "Show advanced options like packge list modification" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:166 +msgid "Successfully created sysupgrade image" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:121 +msgid "Target" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:358 +msgid "" +"The attended sysupgrade service allows to easily upgrade vanilla and custom " +"firmware images." +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:312 +msgid "The device runs the latest firmware version" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:359 +msgid "" +"This is done by building a new firmware on demand via an online service." +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:51 +msgid "Uploading firmware from browser to device" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:115 +msgid "Version" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:60 +msgid "Wrong checksum" +msgstr "" + +#~ msgid "attended sysupgrade via rpcd and luci" +#~ msgstr "attesa sysupgrade via rpdcd e luci" diff --git a/applications/luci-app-attendedsysupgrade/po/ja/attendedsysupgrade.po b/applications/luci-app-attendedsysupgrade/po/ja/attendedsysupgrade.po index 7317eb2f2b..3cd0ef9839 100644 --- a/applications/luci-app-attendedsysupgrade/po/ja/attendedsysupgrade.po +++ b/applications/luci-app-attendedsysupgrade/po/ja/attendedsysupgrade.po @@ -10,7 +10,177 @@ msgstr "" "Plural-Forms: nplurals=1; plural=0;\n" "X-Generator: Weblate 4.6-dev\n" -#: applications/luci-app-attendedsysupgrade/luasrc/controller/attendedsysupgrade.lua:4 -#: applications/luci-app-attendedsysupgrade/luasrc/view/attendedsysupgrade.htm:76 +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/configuration.js:16 +msgid "Address" +msgstr "アドレス" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/configuration.js:17 +msgid "Address of the sysupgrade server" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/configuration.js:27 +msgid "Advances Mode" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/configuration.js:9 +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:357 +#: applications/luci-app-attendedsysupgrade/root/usr/share/luci/menu.d/luci-app-attendedsysupgrade.json:3 msgid "Attended Sysupgrade" msgstr "Sysupgradeに参加済み" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/configuration.js:10 +msgid "Attendedsysupgrade Configuration." +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:120 +msgid "Build Date" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:178 +msgid "Building the sysupgrade image" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:155 +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:295 +msgid "Cancel" +msgstr "キャンセル" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/configuration.js:19 +msgid "Client" +msgstr "クライアント" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:65 +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:216 +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:319 +msgid "Close" +msgstr "閉じる" + +#: applications/luci-app-attendedsysupgrade/root/usr/share/luci/menu.d/luci-app-attendedsysupgrade.json:24 +msgid "Configuration" +msgstr "設定" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:37 +msgid "Downloading firmware from server to browser" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:219 +msgid "Error building the sysupgrade" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:61 +msgid "Error during download of firmware. Please try again" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:116 +msgid "File" +msgstr "ファイル" + +#: applications/luci-app-attendedsysupgrade/root/usr/share/rpcd/acl.d/luci-app-attendedsysupgrade.json:3 +msgid "Grant UCI access to LuCI app attendedsysupgrade" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:162 +msgid "Install Sysupgrade" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:68 +msgid "Installing the sysupgrade. Do not unpower device!" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:147 +msgid "Keep settings and retain the current configuration" +msgstr "現在の設定を残す" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:287 +msgid "New upgrade available" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:311 +msgid "No upgrade available" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/root/usr/share/luci/menu.d/luci-app-attendedsysupgrade.json:15 +msgid "Overview" +msgstr "概要" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:191 +msgid "Please report the error message and request" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:306 +msgid "Request Sysupgrade" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:175 +msgid "Request in build queue" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:192 +msgid "Request to server:" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:119 +msgid "SHA256" +msgstr "SHA256" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/configuration.js:23 +msgid "Search for new sysupgrades on opening the tab" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:371 +msgid "Search for sysupgrade" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/configuration.js:22 +msgid "Search on opening" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:226 +msgid "Searching for an available sysupgrade" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/configuration.js:13 +msgid "Server" +msgstr "サーバー" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/configuration.js:28 +msgid "Show advanced options like packge list modification" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:166 +msgid "Successfully created sysupgrade image" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:121 +msgid "Target" +msgstr "ターゲット" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:358 +msgid "" +"The attended sysupgrade service allows to easily upgrade vanilla and custom " +"firmware images." +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:312 +msgid "The device runs the latest firmware version" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:359 +msgid "" +"This is done by building a new firmware on demand via an online service." +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:51 +msgid "Uploading firmware from browser to device" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:115 +msgid "Version" +msgstr "バージョン" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:60 +msgid "Wrong checksum" +msgstr "" + +#~ msgid "attended sysupgrade via rpcd and luci" +#~ msgstr "rpcdとluciを介してsysupgradeに参加" diff --git a/applications/luci-app-attendedsysupgrade/po/ko/attendedsysupgrade.po b/applications/luci-app-attendedsysupgrade/po/ko/attendedsysupgrade.po index 25ffc18fa5..e22de564a8 100644 --- a/applications/luci-app-attendedsysupgrade/po/ko/attendedsysupgrade.po +++ b/applications/luci-app-attendedsysupgrade/po/ko/attendedsysupgrade.po @@ -10,7 +10,174 @@ msgstr "" "Plural-Forms: nplurals=1; plural=0;\n" "X-Generator: Weblate 4.7-dev\n" -#: applications/luci-app-attendedsysupgrade/luasrc/controller/attendedsysupgrade.lua:4 -#: applications/luci-app-attendedsysupgrade/luasrc/view/attendedsysupgrade.htm:76 +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/configuration.js:16 +msgid "Address" +msgstr "주소" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/configuration.js:17 +msgid "Address of the sysupgrade server" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/configuration.js:27 +msgid "Advances Mode" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/configuration.js:9 +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:357 +#: applications/luci-app-attendedsysupgrade/root/usr/share/luci/menu.d/luci-app-attendedsysupgrade.json:3 msgid "Attended Sysupgrade" msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/configuration.js:10 +msgid "Attendedsysupgrade Configuration." +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:120 +msgid "Build Date" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:178 +msgid "Building the sysupgrade image" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:155 +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:295 +msgid "Cancel" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/configuration.js:19 +msgid "Client" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:65 +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:216 +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:319 +msgid "Close" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/root/usr/share/luci/menu.d/luci-app-attendedsysupgrade.json:24 +msgid "Configuration" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:37 +msgid "Downloading firmware from server to browser" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:219 +msgid "Error building the sysupgrade" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:61 +msgid "Error during download of firmware. Please try again" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:116 +msgid "File" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/root/usr/share/rpcd/acl.d/luci-app-attendedsysupgrade.json:3 +msgid "Grant UCI access to LuCI app attendedsysupgrade" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:162 +msgid "Install Sysupgrade" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:68 +msgid "Installing the sysupgrade. Do not unpower device!" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:147 +msgid "Keep settings and retain the current configuration" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:287 +msgid "New upgrade available" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:311 +msgid "No upgrade available" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/root/usr/share/luci/menu.d/luci-app-attendedsysupgrade.json:15 +msgid "Overview" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:191 +msgid "Please report the error message and request" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:306 +msgid "Request Sysupgrade" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:175 +msgid "Request in build queue" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:192 +msgid "Request to server:" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:119 +msgid "SHA256" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/configuration.js:23 +msgid "Search for new sysupgrades on opening the tab" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:371 +msgid "Search for sysupgrade" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/configuration.js:22 +msgid "Search on opening" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:226 +msgid "Searching for an available sysupgrade" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/configuration.js:13 +msgid "Server" +msgstr "서버" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/configuration.js:28 +msgid "Show advanced options like packge list modification" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:166 +msgid "Successfully created sysupgrade image" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:121 +msgid "Target" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:358 +msgid "" +"The attended sysupgrade service allows to easily upgrade vanilla and custom " +"firmware images." +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:312 +msgid "The device runs the latest firmware version" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:359 +msgid "" +"This is done by building a new firmware on demand via an online service." +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:51 +msgid "Uploading firmware from browser to device" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:115 +msgid "Version" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:60 +msgid "Wrong checksum" +msgstr "" diff --git a/applications/luci-app-attendedsysupgrade/po/mr/attendedsysupgrade.po b/applications/luci-app-attendedsysupgrade/po/mr/attendedsysupgrade.po index ee3bc476fe..5101a074bc 100644 --- a/applications/luci-app-attendedsysupgrade/po/mr/attendedsysupgrade.po +++ b/applications/luci-app-attendedsysupgrade/po/mr/attendedsysupgrade.po @@ -10,7 +10,177 @@ msgstr "" "Plural-Forms: nplurals=2; plural=n > 1;\n" "X-Generator: Weblate 4.3-dev\n" -#: applications/luci-app-attendedsysupgrade/luasrc/controller/attendedsysupgrade.lua:4 -#: applications/luci-app-attendedsysupgrade/luasrc/view/attendedsysupgrade.htm:76 +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/configuration.js:16 +msgid "Address" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/configuration.js:17 +msgid "Address of the sysupgrade server" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/configuration.js:27 +msgid "Advances Mode" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/configuration.js:9 +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:357 +#: applications/luci-app-attendedsysupgrade/root/usr/share/luci/menu.d/luci-app-attendedsysupgrade.json:3 msgid "Attended Sysupgrade" msgstr "उपस्थित Sysupgrade" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/configuration.js:10 +msgid "Attendedsysupgrade Configuration." +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:120 +msgid "Build Date" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:178 +msgid "Building the sysupgrade image" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:155 +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:295 +msgid "Cancel" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/configuration.js:19 +msgid "Client" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:65 +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:216 +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:319 +msgid "Close" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/root/usr/share/luci/menu.d/luci-app-attendedsysupgrade.json:24 +msgid "Configuration" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:37 +msgid "Downloading firmware from server to browser" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:219 +msgid "Error building the sysupgrade" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:61 +msgid "Error during download of firmware. Please try again" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:116 +msgid "File" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/root/usr/share/rpcd/acl.d/luci-app-attendedsysupgrade.json:3 +msgid "Grant UCI access to LuCI app attendedsysupgrade" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:162 +msgid "Install Sysupgrade" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:68 +msgid "Installing the sysupgrade. Do not unpower device!" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:147 +msgid "Keep settings and retain the current configuration" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:287 +msgid "New upgrade available" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:311 +msgid "No upgrade available" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/root/usr/share/luci/menu.d/luci-app-attendedsysupgrade.json:15 +msgid "Overview" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:191 +msgid "Please report the error message and request" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:306 +msgid "Request Sysupgrade" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:175 +msgid "Request in build queue" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:192 +msgid "Request to server:" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:119 +msgid "SHA256" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/configuration.js:23 +msgid "Search for new sysupgrades on opening the tab" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:371 +msgid "Search for sysupgrade" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/configuration.js:22 +msgid "Search on opening" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:226 +msgid "Searching for an available sysupgrade" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/configuration.js:13 +msgid "Server" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/configuration.js:28 +msgid "Show advanced options like packge list modification" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:166 +msgid "Successfully created sysupgrade image" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:121 +msgid "Target" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:358 +msgid "" +"The attended sysupgrade service allows to easily upgrade vanilla and custom " +"firmware images." +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:312 +msgid "The device runs the latest firmware version" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:359 +msgid "" +"This is done by building a new firmware on demand via an online service." +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:51 +msgid "Uploading firmware from browser to device" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:115 +msgid "Version" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:60 +msgid "Wrong checksum" +msgstr "" + +#~ msgid "attended sysupgrade via rpcd and luci" +#~ msgstr "rpcd व luci मार्गे sysupgrade ला हजेरी लावली" diff --git a/applications/luci-app-attendedsysupgrade/po/ms/attendedsysupgrade.po b/applications/luci-app-attendedsysupgrade/po/ms/attendedsysupgrade.po index 867d779031..9a0b7fe2fc 100644 --- a/applications/luci-app-attendedsysupgrade/po/ms/attendedsysupgrade.po +++ b/applications/luci-app-attendedsysupgrade/po/ms/attendedsysupgrade.po @@ -10,7 +10,174 @@ msgstr "" "Plural-Forms: nplurals=1; plural=0;\n" "X-Generator: Weblate 4.6-dev\n" -#: applications/luci-app-attendedsysupgrade/luasrc/controller/attendedsysupgrade.lua:4 -#: applications/luci-app-attendedsysupgrade/luasrc/view/attendedsysupgrade.htm:76 +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/configuration.js:16 +msgid "Address" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/configuration.js:17 +msgid "Address of the sysupgrade server" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/configuration.js:27 +msgid "Advances Mode" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/configuration.js:9 +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:357 +#: applications/luci-app-attendedsysupgrade/root/usr/share/luci/menu.d/luci-app-attendedsysupgrade.json:3 msgid "Attended Sysupgrade" msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/configuration.js:10 +msgid "Attendedsysupgrade Configuration." +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:120 +msgid "Build Date" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:178 +msgid "Building the sysupgrade image" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:155 +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:295 +msgid "Cancel" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/configuration.js:19 +msgid "Client" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:65 +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:216 +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:319 +msgid "Close" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/root/usr/share/luci/menu.d/luci-app-attendedsysupgrade.json:24 +msgid "Configuration" +msgstr "Konfigurasi" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:37 +msgid "Downloading firmware from server to browser" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:219 +msgid "Error building the sysupgrade" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:61 +msgid "Error during download of firmware. Please try again" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:116 +msgid "File" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/root/usr/share/rpcd/acl.d/luci-app-attendedsysupgrade.json:3 +msgid "Grant UCI access to LuCI app attendedsysupgrade" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:162 +msgid "Install Sysupgrade" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:68 +msgid "Installing the sysupgrade. Do not unpower device!" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:147 +msgid "Keep settings and retain the current configuration" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:287 +msgid "New upgrade available" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:311 +msgid "No upgrade available" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/root/usr/share/luci/menu.d/luci-app-attendedsysupgrade.json:15 +msgid "Overview" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:191 +msgid "Please report the error message and request" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:306 +msgid "Request Sysupgrade" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:175 +msgid "Request in build queue" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:192 +msgid "Request to server:" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:119 +msgid "SHA256" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/configuration.js:23 +msgid "Search for new sysupgrades on opening the tab" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:371 +msgid "Search for sysupgrade" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/configuration.js:22 +msgid "Search on opening" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:226 +msgid "Searching for an available sysupgrade" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/configuration.js:13 +msgid "Server" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/configuration.js:28 +msgid "Show advanced options like packge list modification" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:166 +msgid "Successfully created sysupgrade image" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:121 +msgid "Target" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:358 +msgid "" +"The attended sysupgrade service allows to easily upgrade vanilla and custom " +"firmware images." +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:312 +msgid "The device runs the latest firmware version" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:359 +msgid "" +"This is done by building a new firmware on demand via an online service." +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:51 +msgid "Uploading firmware from browser to device" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:115 +msgid "Version" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:60 +msgid "Wrong checksum" +msgstr "" diff --git a/applications/luci-app-attendedsysupgrade/po/nb_NO/attendedsysupgrade.po b/applications/luci-app-attendedsysupgrade/po/nb_NO/attendedsysupgrade.po index d6aa22d912..e452197961 100644 --- a/applications/luci-app-attendedsysupgrade/po/nb_NO/attendedsysupgrade.po +++ b/applications/luci-app-attendedsysupgrade/po/nb_NO/attendedsysupgrade.po @@ -10,7 +10,178 @@ msgstr "" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Generator: Weblate 4.6-dev\n" -#: applications/luci-app-attendedsysupgrade/luasrc/controller/attendedsysupgrade.lua:4 -#: applications/luci-app-attendedsysupgrade/luasrc/view/attendedsysupgrade.htm:76 +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/configuration.js:16 +msgid "Address" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/configuration.js:17 +msgid "Address of the sysupgrade server" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/configuration.js:27 +msgid "Advances Mode" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/configuration.js:9 +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:357 +#: applications/luci-app-attendedsysupgrade/root/usr/share/luci/menu.d/luci-app-attendedsysupgrade.json:3 msgid "Attended Sysupgrade" msgstr "Bivånet systemoppgradering" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/configuration.js:10 +msgid "Attendedsysupgrade Configuration." +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:120 +msgid "Build Date" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:178 +msgid "Building the sysupgrade image" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:155 +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:295 +msgid "Cancel" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/configuration.js:19 +msgid "Client" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:65 +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:216 +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:319 +msgid "Close" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/root/usr/share/luci/menu.d/luci-app-attendedsysupgrade.json:24 +msgid "Configuration" +msgstr "Oppsett" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:37 +msgid "Downloading firmware from server to browser" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:219 +msgid "Error building the sysupgrade" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:61 +msgid "Error during download of firmware. Please try again" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:116 +msgid "File" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/root/usr/share/rpcd/acl.d/luci-app-attendedsysupgrade.json:3 +msgid "Grant UCI access to LuCI app attendedsysupgrade" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:162 +msgid "Install Sysupgrade" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:68 +msgid "Installing the sysupgrade. Do not unpower device!" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:147 +msgid "Keep settings and retain the current configuration" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:287 +msgid "New upgrade available" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:311 +msgid "No upgrade available" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/root/usr/share/luci/menu.d/luci-app-attendedsysupgrade.json:15 +msgid "Overview" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:191 +msgid "Please report the error message and request" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:306 +msgid "Request Sysupgrade" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:175 +msgid "Request in build queue" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:192 +msgid "Request to server:" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:119 +msgid "SHA256" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/configuration.js:23 +msgid "Search for new sysupgrades on opening the tab" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:371 +msgid "Search for sysupgrade" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/configuration.js:22 +msgid "Search on opening" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:226 +msgid "Searching for an available sysupgrade" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/configuration.js:13 +msgid "Server" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/configuration.js:28 +msgid "Show advanced options like packge list modification" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:166 +msgid "Successfully created sysupgrade image" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:121 +msgid "Target" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:358 +msgid "" +"The attended sysupgrade service allows to easily upgrade vanilla and custom " +"firmware images." +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:312 +msgid "The device runs the latest firmware version" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:359 +msgid "" +"This is done by building a new firmware on demand via an online service." +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:51 +msgid "Uploading firmware from browser to device" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:115 +msgid "Version" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:60 +msgid "Wrong checksum" +msgstr "" + +#, fuzzy +#~ msgid "attended sysupgrade via rpcd and luci" +#~ msgstr "bivånet systemoppgraderingn via rpcd og LuCI" diff --git a/applications/luci-app-attendedsysupgrade/po/pl/attendedsysupgrade.po b/applications/luci-app-attendedsysupgrade/po/pl/attendedsysupgrade.po index 8bbf3cb1ef..bd4edebff4 100644 --- a/applications/luci-app-attendedsysupgrade/po/pl/attendedsysupgrade.po +++ b/applications/luci-app-attendedsysupgrade/po/pl/attendedsysupgrade.po @@ -11,7 +11,181 @@ msgstr "" "|| n%100>=20) ? 1 : 2;\n" "X-Generator: Weblate 4.5.2-dev\n" -#: applications/luci-app-attendedsysupgrade/luasrc/controller/attendedsysupgrade.lua:4 -#: applications/luci-app-attendedsysupgrade/luasrc/view/attendedsysupgrade.htm:76 +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/configuration.js:16 +msgid "Address" +msgstr "Adres" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/configuration.js:17 +msgid "Address of the sysupgrade server" +msgstr "Adres serwera sysupgrade" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/configuration.js:27 +msgid "Advances Mode" +msgstr "Tryb zaawansowany" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/configuration.js:9 +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:357 +#: applications/luci-app-attendedsysupgrade/root/usr/share/luci/menu.d/luci-app-attendedsysupgrade.json:3 msgid "Attended Sysupgrade" msgstr "Nadzorowany Sysupgrade" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/configuration.js:10 +msgid "Attendedsysupgrade Configuration." +msgstr "Konfiguracja Attendedsysupgrade." + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:120 +msgid "Build Date" +msgstr "Data wydania" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:178 +msgid "Building the sysupgrade image" +msgstr "Budowanie obrazu sysupgrade" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:155 +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:295 +msgid "Cancel" +msgstr "Anuluj" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/configuration.js:19 +msgid "Client" +msgstr "Klient" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:65 +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:216 +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:319 +msgid "Close" +msgstr "Zamknij" + +#: applications/luci-app-attendedsysupgrade/root/usr/share/luci/menu.d/luci-app-attendedsysupgrade.json:24 +msgid "Configuration" +msgstr "Konfiguracja" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:37 +msgid "Downloading firmware from server to browser" +msgstr "Pobieranie firmware z serwera do przeglądarki" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:219 +msgid "Error building the sysupgrade" +msgstr "Błąd podczas tworzenia sysupgrade" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:61 +msgid "Error during download of firmware. Please try again" +msgstr "Błąd podczas pobierania firmware. Proszę spróbować ponownie" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:116 +msgid "File" +msgstr "Plik" + +#: applications/luci-app-attendedsysupgrade/root/usr/share/rpcd/acl.d/luci-app-attendedsysupgrade.json:3 +msgid "Grant UCI access to LuCI app attendedsysupgrade" +msgstr "Udziel dostępu LuCI do aplikacji attendedsysupgrade" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:162 +msgid "Install Sysupgrade" +msgstr "Zainstaluj Sysupgrade" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:68 +msgid "Installing the sysupgrade. Do not unpower device!" +msgstr "Instalacja sysupgrade. Nie odłączaj urządzenia od zasilania!" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:147 +msgid "Keep settings and retain the current configuration" +msgstr "Zachowaj ustawienia i bieżącą konfigurację" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:287 +msgid "New upgrade available" +msgstr "Dostępna nowa aktualizacja" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:311 +msgid "No upgrade available" +msgstr "Brak dostępnej aktualizacji" + +#: applications/luci-app-attendedsysupgrade/root/usr/share/luci/menu.d/luci-app-attendedsysupgrade.json:15 +msgid "Overview" +msgstr "Przegląd" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:191 +msgid "Please report the error message and request" +msgstr "Proszę zgłosić komunikat o błędzie i prośbę" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:306 +msgid "Request Sysupgrade" +msgstr "Poproś o Sysupgrade" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:175 +msgid "Request in build queue" +msgstr "Żądanie w kolejce budowy" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:192 +msgid "Request to server:" +msgstr "Żądanie do serwera:" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:119 +msgid "SHA256" +msgstr "SHA256" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/configuration.js:23 +msgid "Search for new sysupgrades on opening the tab" +msgstr "Wyszukaj nowe sysupgrades przy otwieraniu karty" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:371 +msgid "Search for sysupgrade" +msgstr "Szukaj sysupgrade" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/configuration.js:22 +msgid "Search on opening" +msgstr "Szukaj po otwarciu" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:226 +msgid "Searching for an available sysupgrade" +msgstr "Szukanie dostępnego sysupgrade" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/configuration.js:13 +msgid "Server" +msgstr "Serwer" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/configuration.js:28 +msgid "Show advanced options like packge list modification" +msgstr "Pokaż zaawansowane opcje, takie jak modyfikacja listy pakietów" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:166 +msgid "Successfully created sysupgrade image" +msgstr "Pomyślnie utworzono obraz sysupgrade" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:121 +msgid "Target" +msgstr "Cel" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:358 +msgid "" +"The attended sysupgrade service allows to easily upgrade vanilla and custom " +"firmware images." +msgstr "" +"Usługa sysupgrade umożliwia łatwą aktualizację oryginalnych i " +"niestandardowych obrazów firmware." + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:312 +msgid "The device runs the latest firmware version" +msgstr "Urządzenie posiada najnowszą wersję firmware" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:359 +msgid "" +"This is done by building a new firmware on demand via an online service." +msgstr "" +"Odbywa się to poprzez tworzenie nowego firmware na żądanie za pośrednictwem " +"usługi online." + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:51 +msgid "Uploading firmware from browser to device" +msgstr "Wgrywanie firmware z przeglądarki do urządzenia" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:115 +msgid "Version" +msgstr "Wersja" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:60 +msgid "Wrong checksum" +msgstr "Błędna suma kontrolna" + +#~ msgid "attended sysupgrade via rpcd and luci" +#~ msgstr "uczestniczyłem w sysupgrade przez rpcd i luci" diff --git a/applications/luci-app-attendedsysupgrade/po/pt/attendedsysupgrade.po b/applications/luci-app-attendedsysupgrade/po/pt/attendedsysupgrade.po index 7c0787ed17..110602fe51 100644 --- a/applications/luci-app-attendedsysupgrade/po/pt/attendedsysupgrade.po +++ b/applications/luci-app-attendedsysupgrade/po/pt/attendedsysupgrade.po @@ -10,7 +10,181 @@ msgstr "" "Plural-Forms: nplurals=2; plural=n > 1;\n" "X-Generator: Weblate 4.5.2-dev\n" -#: applications/luci-app-attendedsysupgrade/luasrc/controller/attendedsysupgrade.lua:4 -#: applications/luci-app-attendedsysupgrade/luasrc/view/attendedsysupgrade.htm:76 +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/configuration.js:16 +msgid "Address" +msgstr "Endereço" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/configuration.js:17 +msgid "Address of the sysupgrade server" +msgstr "Endereço do servidor sysupgrade" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/configuration.js:27 +msgid "Advances Mode" +msgstr "Modo avançado" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/configuration.js:9 +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:357 +#: applications/luci-app-attendedsysupgrade/root/usr/share/luci/menu.d/luci-app-attendedsysupgrade.json:3 msgid "Attended Sysupgrade" msgstr "Sysupgrade assistido" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/configuration.js:10 +msgid "Attendedsysupgrade Configuration." +msgstr "Configuração do attendedsysupgrade." + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:120 +msgid "Build Date" +msgstr "Data da compilação" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:178 +msgid "Building the sysupgrade image" +msgstr "Compilar a imagem de sysupgrade" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:155 +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:295 +msgid "Cancel" +msgstr "Cancelar" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/configuration.js:19 +msgid "Client" +msgstr "Cliente" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:65 +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:216 +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:319 +msgid "Close" +msgstr "Fechar" + +#: applications/luci-app-attendedsysupgrade/root/usr/share/luci/menu.d/luci-app-attendedsysupgrade.json:24 +msgid "Configuration" +msgstr "Configuração" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:37 +msgid "Downloading firmware from server to browser" +msgstr "Descarregar firmware do servidor para o navegador" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:219 +msgid "Error building the sysupgrade" +msgstr "Erro ao compilar o sysupgrade" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:61 +msgid "Error during download of firmware. Please try again" +msgstr "Erro durante a descarrega do firmware. Por favor, tente de novo" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:116 +msgid "File" +msgstr "Ficheiro" + +#: applications/luci-app-attendedsysupgrade/root/usr/share/rpcd/acl.d/luci-app-attendedsysupgrade.json:3 +msgid "Grant UCI access to LuCI app attendedsysupgrade" +msgstr "Conceder acesso para UCI à app LuCI attendedsysupgrade" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:162 +msgid "Install Sysupgrade" +msgstr "Instalar o sysupgrade" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:68 +msgid "Installing the sysupgrade. Do not unpower device!" +msgstr "A instalar o sysupgrade. Não desligue o aparelho!" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:147 +msgid "Keep settings and retain the current configuration" +msgstr "Manter as definições e manter a configuração atual" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:287 +msgid "New upgrade available" +msgstr "Nova atualização disponível" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:311 +msgid "No upgrade available" +msgstr "Não há atualização disponível" + +#: applications/luci-app-attendedsysupgrade/root/usr/share/luci/menu.d/luci-app-attendedsysupgrade.json:15 +msgid "Overview" +msgstr "Visão Geral" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:191 +msgid "Please report the error message and request" +msgstr "Por favor, relate a mensagem do erro e a solicitação" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:306 +msgid "Request Sysupgrade" +msgstr "Solicitar sysupgrade" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:175 +msgid "Request in build queue" +msgstr "Solicitação na fila de compilação" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:192 +msgid "Request to server:" +msgstr "Solicitação ao servidor:" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:119 +msgid "SHA256" +msgstr "SHA256" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/configuration.js:23 +msgid "Search for new sysupgrades on opening the tab" +msgstr "Procurar novos sysupgrades ao abrir a guia" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:371 +msgid "Search for sysupgrade" +msgstr "Procurar sysupgrade" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/configuration.js:22 +msgid "Search on opening" +msgstr "Pesquisar na abertura" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:226 +msgid "Searching for an available sysupgrade" +msgstr "A procurar um sysupgrade disponível" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/configuration.js:13 +msgid "Server" +msgstr "Servidor" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/configuration.js:28 +msgid "Show advanced options like packge list modification" +msgstr "Mostrar opções avançadas como modificação da lista de pacotes" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:166 +msgid "Successfully created sysupgrade image" +msgstr "Imagem de sysupgrade criada com sucesso" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:121 +msgid "Target" +msgstr "Destino" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:358 +msgid "" +"The attended sysupgrade service allows to easily upgrade vanilla and custom " +"firmware images." +msgstr "" +"O serviço de sysupgrade atendido permite atualizar facilmente imagens de " +"firmware padrão e personalizados." + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:312 +msgid "The device runs the latest firmware version" +msgstr "O aparelho executa a última versão de firmware" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:359 +msgid "" +"This is done by building a new firmware on demand via an online service." +msgstr "" +"Isto é feito através da construção de um novo firmware sob demanda através " +"de um serviço online." + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:51 +msgid "Uploading firmware from browser to device" +msgstr "A enviar o firmware do navegador ao aparelho" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:115 +msgid "Version" +msgstr "Versão" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:60 +msgid "Wrong checksum" +msgstr "Checksum errado" + +#~ msgid "attended sysupgrade via rpcd and luci" +#~ msgstr "sysupgrade assistido via rpcd e luci" diff --git a/applications/luci-app-attendedsysupgrade/po/pt_BR/attendedsysupgrade.po b/applications/luci-app-attendedsysupgrade/po/pt_BR/attendedsysupgrade.po index 35139fc995..82e771ecb3 100644 --- a/applications/luci-app-attendedsysupgrade/po/pt_BR/attendedsysupgrade.po +++ b/applications/luci-app-attendedsysupgrade/po/pt_BR/attendedsysupgrade.po @@ -10,7 +10,181 @@ msgstr "" "Plural-Forms: nplurals=2; plural=n > 1;\n" "X-Generator: Weblate 4.5.2-dev\n" -#: applications/luci-app-attendedsysupgrade/luasrc/controller/attendedsysupgrade.lua:4 -#: applications/luci-app-attendedsysupgrade/luasrc/view/attendedsysupgrade.htm:76 +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/configuration.js:16 +msgid "Address" +msgstr "Endereço" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/configuration.js:17 +msgid "Address of the sysupgrade server" +msgstr "Endereço do servidor sysupgrade" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/configuration.js:27 +msgid "Advances Mode" +msgstr "Modo Avançado" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/configuration.js:9 +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:357 +#: applications/luci-app-attendedsysupgrade/root/usr/share/luci/menu.d/luci-app-attendedsysupgrade.json:3 msgid "Attended Sysupgrade" msgstr "Sysupgrade Assistido" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/configuration.js:10 +msgid "Attendedsysupgrade Configuration." +msgstr "Configuração do attendedsysupgrade." + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:120 +msgid "Build Date" +msgstr "Data da Build" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:178 +msgid "Building the sysupgrade image" +msgstr "Criando a imagem sysupgrade" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:155 +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:295 +msgid "Cancel" +msgstr "Cancelar" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/configuration.js:19 +msgid "Client" +msgstr "Cliente" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:65 +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:216 +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:319 +msgid "Close" +msgstr "Fechar" + +#: applications/luci-app-attendedsysupgrade/root/usr/share/luci/menu.d/luci-app-attendedsysupgrade.json:24 +msgid "Configuration" +msgstr "Configuração" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:37 +msgid "Downloading firmware from server to browser" +msgstr "Baixando firmware do servidor para o navegador" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:219 +msgid "Error building the sysupgrade" +msgstr "Erro ao criar sysupgrade" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:61 +msgid "Error during download of firmware. Please try again" +msgstr "Erro no download do firmware. Por favor, tente novamente" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:116 +msgid "File" +msgstr "Arquivo" + +#: applications/luci-app-attendedsysupgrade/root/usr/share/rpcd/acl.d/luci-app-attendedsysupgrade.json:3 +msgid "Grant UCI access to LuCI app attendedsysupgrade" +msgstr "Garantir acesso UCI para app attendedsysupgrade do LuCI" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:162 +msgid "Install Sysupgrade" +msgstr "Instalar Sysupgrade" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:68 +msgid "Installing the sysupgrade. Do not unpower device!" +msgstr "Instalando o sysupgrade. Não desligue o dispositivo!" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:147 +msgid "Keep settings and retain the current configuration" +msgstr "Mantenha as configurações e preserve a configuração atual" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:287 +msgid "New upgrade available" +msgstr "Novo upgrade disponível" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:311 +msgid "No upgrade available" +msgstr "Nenhum upgrade disponível" + +#: applications/luci-app-attendedsysupgrade/root/usr/share/luci/menu.d/luci-app-attendedsysupgrade.json:15 +msgid "Overview" +msgstr "Visão geral" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:191 +msgid "Please report the error message and request" +msgstr "Por favor, relate a mensagem de erro e a solicitação" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:306 +msgid "Request Sysupgrade" +msgstr "Solicitar Sysupgrade" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:175 +msgid "Request in build queue" +msgstr "Solicitação na fila de criação" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:192 +msgid "Request to server:" +msgstr "Solicitar ao servidor:" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:119 +msgid "SHA256" +msgstr "SHA256" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/configuration.js:23 +msgid "Search for new sysupgrades on opening the tab" +msgstr "Pesquisar por novos sysupgrades ao abrir a aba" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:371 +msgid "Search for sysupgrade" +msgstr "Pesquisar por sysupgrade" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/configuration.js:22 +msgid "Search on opening" +msgstr "Pesquisar ao abrir" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:226 +msgid "Searching for an available sysupgrade" +msgstr "Pesquisando por sysupgrade disponível" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/configuration.js:13 +msgid "Server" +msgstr "Servidor" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/configuration.js:28 +msgid "Show advanced options like packge list modification" +msgstr "Mostrar opções avançadas como modificações da lista de pacotes" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:166 +msgid "Successfully created sysupgrade image" +msgstr "Imagem sysupgrade criada com sucesso" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:121 +msgid "Target" +msgstr "Destino" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:358 +msgid "" +"The attended sysupgrade service allows to easily upgrade vanilla and custom " +"firmware images." +msgstr "" +"O serviço autônomo sysupgrade permite facilmente realizar o upgrade de " +"imagens de firmware vanilla e personalizadas." + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:312 +msgid "The device runs the latest firmware version" +msgstr "O dispositivo está executando o firmware mais recente" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:359 +msgid "" +"This is done by building a new firmware on demand via an online service." +msgstr "" +"Isto é feito criando um novo firmware sob demanda por meio de um serviço " +"online." + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:51 +msgid "Uploading firmware from browser to device" +msgstr "Fazendo o upload do firmware do navegador para o dispositivo" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:115 +msgid "Version" +msgstr "Versão" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:60 +msgid "Wrong checksum" +msgstr "Checksum incorreto" + +#~ msgid "attended sysupgrade via rpcd and luci" +#~ msgstr "sysupgrade assistido via rpcd e luci" diff --git a/applications/luci-app-attendedsysupgrade/po/ro/attendedsysupgrade.po b/applications/luci-app-attendedsysupgrade/po/ro/attendedsysupgrade.po index ba78467e08..a8d45655fd 100644 --- a/applications/luci-app-attendedsysupgrade/po/ro/attendedsysupgrade.po +++ b/applications/luci-app-attendedsysupgrade/po/ro/attendedsysupgrade.po @@ -11,7 +11,174 @@ msgstr "" "20)) ? 1 : 2;\n" "X-Generator: Weblate 4.0-dev\n" -#: applications/luci-app-attendedsysupgrade/luasrc/controller/attendedsysupgrade.lua:4 -#: applications/luci-app-attendedsysupgrade/luasrc/view/attendedsysupgrade.htm:76 +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/configuration.js:16 +msgid "Address" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/configuration.js:17 +msgid "Address of the sysupgrade server" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/configuration.js:27 +msgid "Advances Mode" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/configuration.js:9 +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:357 +#: applications/luci-app-attendedsysupgrade/root/usr/share/luci/menu.d/luci-app-attendedsysupgrade.json:3 msgid "Attended Sysupgrade" msgstr "a participat Sysupgrade" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/configuration.js:10 +msgid "Attendedsysupgrade Configuration." +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:120 +msgid "Build Date" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:178 +msgid "Building the sysupgrade image" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:155 +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:295 +msgid "Cancel" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/configuration.js:19 +msgid "Client" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:65 +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:216 +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:319 +msgid "Close" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/root/usr/share/luci/menu.d/luci-app-attendedsysupgrade.json:24 +msgid "Configuration" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:37 +msgid "Downloading firmware from server to browser" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:219 +msgid "Error building the sysupgrade" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:61 +msgid "Error during download of firmware. Please try again" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:116 +msgid "File" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/root/usr/share/rpcd/acl.d/luci-app-attendedsysupgrade.json:3 +msgid "Grant UCI access to LuCI app attendedsysupgrade" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:162 +msgid "Install Sysupgrade" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:68 +msgid "Installing the sysupgrade. Do not unpower device!" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:147 +msgid "Keep settings and retain the current configuration" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:287 +msgid "New upgrade available" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:311 +msgid "No upgrade available" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/root/usr/share/luci/menu.d/luci-app-attendedsysupgrade.json:15 +msgid "Overview" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:191 +msgid "Please report the error message and request" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:306 +msgid "Request Sysupgrade" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:175 +msgid "Request in build queue" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:192 +msgid "Request to server:" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:119 +msgid "SHA256" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/configuration.js:23 +msgid "Search for new sysupgrades on opening the tab" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:371 +msgid "Search for sysupgrade" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/configuration.js:22 +msgid "Search on opening" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:226 +msgid "Searching for an available sysupgrade" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/configuration.js:13 +msgid "Server" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/configuration.js:28 +msgid "Show advanced options like packge list modification" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:166 +msgid "Successfully created sysupgrade image" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:121 +msgid "Target" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:358 +msgid "" +"The attended sysupgrade service allows to easily upgrade vanilla and custom " +"firmware images." +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:312 +msgid "The device runs the latest firmware version" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:359 +msgid "" +"This is done by building a new firmware on demand via an online service." +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:51 +msgid "Uploading firmware from browser to device" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:115 +msgid "Version" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:60 +msgid "Wrong checksum" +msgstr "" diff --git a/applications/luci-app-attendedsysupgrade/po/ru/attendedsysupgrade.po b/applications/luci-app-attendedsysupgrade/po/ru/attendedsysupgrade.po index 59fbf8f63e..a9b021222e 100644 --- a/applications/luci-app-attendedsysupgrade/po/ru/attendedsysupgrade.po +++ b/applications/luci-app-attendedsysupgrade/po/ru/attendedsysupgrade.po @@ -11,7 +11,180 @@ msgstr "" "%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" "X-Generator: Weblate 4.6-dev\n" -#: applications/luci-app-attendedsysupgrade/luasrc/controller/attendedsysupgrade.lua:4 -#: applications/luci-app-attendedsysupgrade/luasrc/view/attendedsysupgrade.htm:76 +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/configuration.js:16 +msgid "Address" +msgstr "Адрес" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/configuration.js:17 +msgid "Address of the sysupgrade server" +msgstr "Адрес сервера обновления системы" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/configuration.js:27 +msgid "Advances Mode" +msgstr "Расширенный режим" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/configuration.js:9 +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:357 +#: applications/luci-app-attendedsysupgrade/root/usr/share/luci/menu.d/luci-app-attendedsysupgrade.json:3 msgid "Attended Sysupgrade" msgstr "Обновление Системы с участием" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/configuration.js:10 +msgid "Attendedsysupgrade Configuration." +msgstr "Конфигурация Attendedsysupgrade." + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:120 +msgid "Build Date" +msgstr "Дата сборки" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:178 +msgid "Building the sysupgrade image" +msgstr "Создание образа обновления системы" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:155 +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:295 +msgid "Cancel" +msgstr "Отмена" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/configuration.js:19 +msgid "Client" +msgstr "Клиент" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:65 +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:216 +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:319 +msgid "Close" +msgstr "Закрыть" + +#: applications/luci-app-attendedsysupgrade/root/usr/share/luci/menu.d/luci-app-attendedsysupgrade.json:24 +msgid "Configuration" +msgstr "Конфигурация" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:37 +msgid "Downloading firmware from server to browser" +msgstr "Скачивание прошивки с сервера через браузер" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:219 +msgid "Error building the sysupgrade" +msgstr "Ошибка при создании обновления системы" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:61 +msgid "Error during download of firmware. Please try again" +msgstr "Ошибка при скачивании прошивки. Пожалуйста, попробуйте ещё раз" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:116 +msgid "File" +msgstr "Файл" + +#: applications/luci-app-attendedsysupgrade/root/usr/share/rpcd/acl.d/luci-app-attendedsysupgrade.json:3 +msgid "Grant UCI access to LuCI app attendedsysupgrade" +msgstr "Предоставить UCI доступ к приложению LuCI attendedsysupgrade" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:162 +msgid "Install Sysupgrade" +msgstr "Установить обновление системы" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:68 +msgid "Installing the sysupgrade. Do not unpower device!" +msgstr "Установка обновления системы. Не выключайте устройство!" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:147 +msgid "Keep settings and retain the current configuration" +msgstr "Сохранить настройки и оставить текущую конфигурацию" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:287 +msgid "New upgrade available" +msgstr "Доступно новое обновление" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:311 +msgid "No upgrade available" +msgstr "Нет доступных обновлений" + +#: applications/luci-app-attendedsysupgrade/root/usr/share/luci/menu.d/luci-app-attendedsysupgrade.json:15 +msgid "Overview" +msgstr "Обзор" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:191 +msgid "Please report the error message and request" +msgstr "Сообщите об ошибке и запросите" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:306 +msgid "Request Sysupgrade" +msgstr "Запросить обновление системы" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:175 +msgid "Request in build queue" +msgstr "Запрос в очереди на сборку" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:192 +msgid "Request to server:" +msgstr "Запрос к серверу:" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:119 +msgid "SHA256" +msgstr "SHA256" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/configuration.js:23 +msgid "Search for new sysupgrades on opening the tab" +msgstr "Искать новые системные обновления при открытии новой вкладки" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:371 +msgid "Search for sysupgrade" +msgstr "Искать обновление системы" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/configuration.js:22 +msgid "Search on opening" +msgstr "Искать при открытии" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:226 +msgid "Searching for an available sysupgrade" +msgstr "Поиск доступного обновления системы" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/configuration.js:13 +msgid "Server" +msgstr "Сервер" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/configuration.js:28 +msgid "Show advanced options like packge list modification" +msgstr "Показать расширенные параметры, такие как модификация списка пакетов" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:166 +msgid "Successfully created sysupgrade image" +msgstr "Образ обновления системы успешно создан" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:121 +msgid "Target" +msgstr "Назначение" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:358 +msgid "" +"The attended sysupgrade service allows to easily upgrade vanilla and custom " +"firmware images." +msgstr "" +"Служба the attended sysupgrade, позволяет легко обновлять ванильные и " +"пользовательские образы прошивки." + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:312 +msgid "The device runs the latest firmware version" +msgstr "Устройство работает на последней версии прошивки" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:359 +msgid "" +"This is done by building a new firmware on demand via an online service." +msgstr "" +"Это делается путём создания новой прошивки по требованию через онлайн-сервис." + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:51 +msgid "Uploading firmware from browser to device" +msgstr "Загрузка прошивки из браузера на устройство" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:115 +msgid "Version" +msgstr "Версия" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:60 +msgid "Wrong checksum" +msgstr "Неверная контрольная сумма" + +#~ msgid "attended sysupgrade via rpcd and luci" +#~ msgstr "выполните sysupgrade через rpcd и luci" diff --git a/applications/luci-app-attendedsysupgrade/po/sk/attendedsysupgrade.po b/applications/luci-app-attendedsysupgrade/po/sk/attendedsysupgrade.po index a62f95399d..53b69f170e 100644 --- a/applications/luci-app-attendedsysupgrade/po/sk/attendedsysupgrade.po +++ b/applications/luci-app-attendedsysupgrade/po/sk/attendedsysupgrade.po @@ -4,7 +4,174 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -#: applications/luci-app-attendedsysupgrade/luasrc/controller/attendedsysupgrade.lua:4 -#: applications/luci-app-attendedsysupgrade/luasrc/view/attendedsysupgrade.htm:76 +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/configuration.js:16 +msgid "Address" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/configuration.js:17 +msgid "Address of the sysupgrade server" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/configuration.js:27 +msgid "Advances Mode" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/configuration.js:9 +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:357 +#: applications/luci-app-attendedsysupgrade/root/usr/share/luci/menu.d/luci-app-attendedsysupgrade.json:3 msgid "Attended Sysupgrade" msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/configuration.js:10 +msgid "Attendedsysupgrade Configuration." +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:120 +msgid "Build Date" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:178 +msgid "Building the sysupgrade image" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:155 +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:295 +msgid "Cancel" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/configuration.js:19 +msgid "Client" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:65 +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:216 +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:319 +msgid "Close" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/root/usr/share/luci/menu.d/luci-app-attendedsysupgrade.json:24 +msgid "Configuration" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:37 +msgid "Downloading firmware from server to browser" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:219 +msgid "Error building the sysupgrade" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:61 +msgid "Error during download of firmware. Please try again" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:116 +msgid "File" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/root/usr/share/rpcd/acl.d/luci-app-attendedsysupgrade.json:3 +msgid "Grant UCI access to LuCI app attendedsysupgrade" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:162 +msgid "Install Sysupgrade" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:68 +msgid "Installing the sysupgrade. Do not unpower device!" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:147 +msgid "Keep settings and retain the current configuration" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:287 +msgid "New upgrade available" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:311 +msgid "No upgrade available" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/root/usr/share/luci/menu.d/luci-app-attendedsysupgrade.json:15 +msgid "Overview" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:191 +msgid "Please report the error message and request" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:306 +msgid "Request Sysupgrade" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:175 +msgid "Request in build queue" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:192 +msgid "Request to server:" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:119 +msgid "SHA256" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/configuration.js:23 +msgid "Search for new sysupgrades on opening the tab" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:371 +msgid "Search for sysupgrade" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/configuration.js:22 +msgid "Search on opening" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:226 +msgid "Searching for an available sysupgrade" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/configuration.js:13 +msgid "Server" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/configuration.js:28 +msgid "Show advanced options like packge list modification" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:166 +msgid "Successfully created sysupgrade image" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:121 +msgid "Target" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:358 +msgid "" +"The attended sysupgrade service allows to easily upgrade vanilla and custom " +"firmware images." +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:312 +msgid "The device runs the latest firmware version" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:359 +msgid "" +"This is done by building a new firmware on demand via an online service." +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:51 +msgid "Uploading firmware from browser to device" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:115 +msgid "Version" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:60 +msgid "Wrong checksum" +msgstr "" diff --git a/applications/luci-app-attendedsysupgrade/po/sv/attendedsysupgrade.po b/applications/luci-app-attendedsysupgrade/po/sv/attendedsysupgrade.po index b6b5db865b..adc894528f 100644 --- a/applications/luci-app-attendedsysupgrade/po/sv/attendedsysupgrade.po +++ b/applications/luci-app-attendedsysupgrade/po/sv/attendedsysupgrade.po @@ -10,7 +10,180 @@ msgstr "" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Generator: Weblate 4.6-dev\n" -#: applications/luci-app-attendedsysupgrade/luasrc/controller/attendedsysupgrade.lua:4 -#: applications/luci-app-attendedsysupgrade/luasrc/view/attendedsysupgrade.htm:76 +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/configuration.js:16 +msgid "Address" +msgstr "Adress" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/configuration.js:17 +msgid "Address of the sysupgrade server" +msgstr "Adress till uppgraderingsservern för systemet" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/configuration.js:27 +msgid "Advances Mode" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/configuration.js:9 +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:357 +#: applications/luci-app-attendedsysupgrade/root/usr/share/luci/menu.d/luci-app-attendedsysupgrade.json:3 msgid "Attended Sysupgrade" msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/configuration.js:10 +msgid "Attendedsysupgrade Configuration." +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:120 +msgid "Build Date" +msgstr "Byggnationsdatum" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:178 +msgid "Building the sysupgrade image" +msgstr "Bygger uppgraderingsavbilden för systemet" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:155 +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:295 +msgid "Cancel" +msgstr "Avbryt" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/configuration.js:19 +msgid "Client" +msgstr "Klient" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:65 +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:216 +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:319 +msgid "Close" +msgstr "Stäng" + +#: applications/luci-app-attendedsysupgrade/root/usr/share/luci/menu.d/luci-app-attendedsysupgrade.json:24 +msgid "Configuration" +msgstr "Konfiguration" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:37 +msgid "Downloading firmware from server to browser" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:219 +msgid "Error building the sysupgrade" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:61 +msgid "Error during download of firmware. Please try again" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:116 +msgid "File" +msgstr "Fil" + +#: applications/luci-app-attendedsysupgrade/root/usr/share/rpcd/acl.d/luci-app-attendedsysupgrade.json:3 +msgid "Grant UCI access to LuCI app attendedsysupgrade" +msgstr "Ge UCI tillgång till LuCI-appen attendedsysupgrade" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:162 +msgid "Install Sysupgrade" +msgstr "Installera Sysupgrade" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:68 +msgid "Installing the sysupgrade. Do not unpower device!" +msgstr "" +"Installerar uppgraderingen av systemet. Koppla inte ur strömmen från enheten!" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:147 +msgid "Keep settings and retain the current configuration" +msgstr "Behåll inställningarna och behåll den nuvarande konfigurationen" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:287 +msgid "New upgrade available" +msgstr "Ny uppgradering tillgänglig" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:311 +msgid "No upgrade available" +msgstr "Ingen uppgradering tillgänglig" + +#: applications/luci-app-attendedsysupgrade/root/usr/share/luci/menu.d/luci-app-attendedsysupgrade.json:15 +msgid "Overview" +msgstr "Överblick" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:191 +msgid "Please report the error message and request" +msgstr "Vänligen rapportera fel-meddelandet och förfrågningen" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:306 +msgid "Request Sysupgrade" +msgstr "Begär uppgradering av systemet" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:175 +msgid "Request in build queue" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:192 +msgid "Request to server:" +msgstr "Begäran till servern:" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:119 +msgid "SHA256" +msgstr "SHA256" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/configuration.js:23 +msgid "Search for new sysupgrades on opening the tab" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:371 +msgid "Search for sysupgrade" +msgstr "Sök efter uppgradering för systemet" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/configuration.js:22 +msgid "Search on opening" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:226 +msgid "Searching for an available sysupgrade" +msgstr "Söker efter en tillgänglig uppgradering för systemet" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/configuration.js:13 +msgid "Server" +msgstr "Server" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/configuration.js:28 +msgid "Show advanced options like packge list modification" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:166 +msgid "Successfully created sysupgrade image" +msgstr "Skapandet av avbilden för uppgradering av systemet lyckades" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:121 +msgid "Target" +msgstr "Mål" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:358 +msgid "" +"The attended sysupgrade service allows to easily upgrade vanilla and custom " +"firmware images." +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:312 +msgid "The device runs the latest firmware version" +msgstr "Enheten kör den senaste versionen av den inre mjukvaran" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:359 +msgid "" +"This is done by building a new firmware on demand via an online service." +msgstr "" +"Det här gjordes genom att bygga en ny inre mjukvara efter begäran via en " +"online-tjänst." + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:51 +msgid "Uploading firmware from browser to device" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:115 +msgid "Version" +msgstr "Version" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:60 +msgid "Wrong checksum" +msgstr "Fel kontrollsumma" + +#~ msgid "attended sysupgrade via rpcd and luci" +#~ msgstr "deltog i sysupgrade via rpcd och luci" diff --git a/applications/luci-app-attendedsysupgrade/po/templates/attendedsysupgrade.pot b/applications/luci-app-attendedsysupgrade/po/templates/attendedsysupgrade.pot index f5f87dd317..1fb0dc6136 100644 --- a/applications/luci-app-attendedsysupgrade/po/templates/attendedsysupgrade.pot +++ b/applications/luci-app-attendedsysupgrade/po/templates/attendedsysupgrade.pot @@ -1,7 +1,174 @@ msgid "" msgstr "Content-Type: text/plain; charset=UTF-8" -#: applications/luci-app-attendedsysupgrade/luasrc/controller/attendedsysupgrade.lua:4 -#: applications/luci-app-attendedsysupgrade/luasrc/view/attendedsysupgrade.htm:76 +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/configuration.js:16 +msgid "Address" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/configuration.js:17 +msgid "Address of the sysupgrade server" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/configuration.js:27 +msgid "Advances Mode" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/configuration.js:9 +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:357 +#: applications/luci-app-attendedsysupgrade/root/usr/share/luci/menu.d/luci-app-attendedsysupgrade.json:3 msgid "Attended Sysupgrade" msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/configuration.js:10 +msgid "Attendedsysupgrade Configuration." +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:120 +msgid "Build Date" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:178 +msgid "Building the sysupgrade image" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:155 +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:295 +msgid "Cancel" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/configuration.js:19 +msgid "Client" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:65 +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:216 +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:319 +msgid "Close" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/root/usr/share/luci/menu.d/luci-app-attendedsysupgrade.json:24 +msgid "Configuration" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:37 +msgid "Downloading firmware from server to browser" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:219 +msgid "Error building the sysupgrade" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:61 +msgid "Error during download of firmware. Please try again" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:116 +msgid "File" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/root/usr/share/rpcd/acl.d/luci-app-attendedsysupgrade.json:3 +msgid "Grant UCI access to LuCI app attendedsysupgrade" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:162 +msgid "Install Sysupgrade" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:68 +msgid "Installing the sysupgrade. Do not unpower device!" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:147 +msgid "Keep settings and retain the current configuration" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:287 +msgid "New upgrade available" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:311 +msgid "No upgrade available" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/root/usr/share/luci/menu.d/luci-app-attendedsysupgrade.json:15 +msgid "Overview" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:191 +msgid "Please report the error message and request" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:306 +msgid "Request Sysupgrade" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:175 +msgid "Request in build queue" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:192 +msgid "Request to server:" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:119 +msgid "SHA256" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/configuration.js:23 +msgid "Search for new sysupgrades on opening the tab" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:371 +msgid "Search for sysupgrade" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/configuration.js:22 +msgid "Search on opening" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:226 +msgid "Searching for an available sysupgrade" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/configuration.js:13 +msgid "Server" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/configuration.js:28 +msgid "Show advanced options like packge list modification" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:166 +msgid "Successfully created sysupgrade image" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:121 +msgid "Target" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:358 +msgid "" +"The attended sysupgrade service allows to easily upgrade vanilla and custom " +"firmware images." +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:312 +msgid "The device runs the latest firmware version" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:359 +msgid "" +"This is done by building a new firmware on demand via an online service." +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:51 +msgid "Uploading firmware from browser to device" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:115 +msgid "Version" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:60 +msgid "Wrong checksum" +msgstr "" diff --git a/applications/luci-app-attendedsysupgrade/po/tr/attendedsysupgrade.po b/applications/luci-app-attendedsysupgrade/po/tr/attendedsysupgrade.po index ef4f06e79a..635f101073 100644 --- a/applications/luci-app-attendedsysupgrade/po/tr/attendedsysupgrade.po +++ b/applications/luci-app-attendedsysupgrade/po/tr/attendedsysupgrade.po @@ -10,7 +10,181 @@ msgstr "" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Generator: Weblate 4.7-dev\n" -#: applications/luci-app-attendedsysupgrade/luasrc/controller/attendedsysupgrade.lua:4 -#: applications/luci-app-attendedsysupgrade/luasrc/view/attendedsysupgrade.htm:76 +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/configuration.js:16 +msgid "Address" +msgstr "Adres" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/configuration.js:17 +msgid "Address of the sysupgrade server" +msgstr "Sysupgrade sunucusunun adresi" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/configuration.js:27 +msgid "Advances Mode" +msgstr "Gelişmiş Modu" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/configuration.js:9 +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:357 +#: applications/luci-app-attendedsysupgrade/root/usr/share/luci/menu.d/luci-app-attendedsysupgrade.json:3 msgid "Attended Sysupgrade" msgstr "Katılımlı Sysupgrade" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/configuration.js:10 +msgid "Attendedsysupgrade Configuration." +msgstr "Attendedsysupgrade Yapılandırması." + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:120 +msgid "Build Date" +msgstr "Sürüm tarihi" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:178 +msgid "Building the sysupgrade image" +msgstr "Sistem yükseltme görüntüsünü oluşturma" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:155 +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:295 +msgid "Cancel" +msgstr "İptal" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/configuration.js:19 +msgid "Client" +msgstr "İstemci" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:65 +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:216 +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:319 +msgid "Close" +msgstr "Kapat" + +#: applications/luci-app-attendedsysupgrade/root/usr/share/luci/menu.d/luci-app-attendedsysupgrade.json:24 +msgid "Configuration" +msgstr "Yapılandırma" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:37 +msgid "Downloading firmware from server to browser" +msgstr "Bellenim sunucudan tarayıcıya indiriliyor" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:219 +msgid "Error building the sysupgrade" +msgstr "sysupgrade oluşturulurken hata meydana geldi" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:61 +msgid "Error during download of firmware. Please try again" +msgstr "Donanım yazılımının indirilmesi sırasında hata. Lütfen tekrar deneyin" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:116 +msgid "File" +msgstr "Dosya" + +#: applications/luci-app-attendedsysupgrade/root/usr/share/rpcd/acl.d/luci-app-attendedsysupgrade.json:3 +msgid "Grant UCI access to LuCI app attendedsysupgrade" +msgstr "attendedsysupgrade LuCI uygulamasına UCI erişimi verin" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:162 +msgid "Install Sysupgrade" +msgstr "Sysupgrade'i yükleyin" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:68 +msgid "Installing the sysupgrade. Do not unpower device!" +msgstr "Sistem yükseltmesini yükleniyor. Cihazın gücünü kesmeyin!" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:147 +msgid "Keep settings and retain the current configuration" +msgstr "Ayarları koruyun ve mevcut yapılandırmayı koruyun" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:287 +msgid "New upgrade available" +msgstr "Yeni yükseltme mevcut" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:311 +msgid "No upgrade available" +msgstr "Yeni yükseltme mevcut değil" + +#: applications/luci-app-attendedsysupgrade/root/usr/share/luci/menu.d/luci-app-attendedsysupgrade.json:15 +msgid "Overview" +msgstr "Genel bakış" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:191 +msgid "Please report the error message and request" +msgstr "Lütfen hata mesajını ve isteği bildirin" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:306 +msgid "Request Sysupgrade" +msgstr "Sistem Yükseltmesi İste" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:175 +msgid "Request in build queue" +msgstr "Derleme kuyruğundaki istek" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:192 +msgid "Request to server:" +msgstr "Sunucuya istek:" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:119 +msgid "SHA256" +msgstr "SHA256" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/configuration.js:23 +msgid "Search for new sysupgrades on opening the tab" +msgstr "Sekmeyi açarken yeni sistem yükseltmelerini arayın" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:371 +msgid "Search for sysupgrade" +msgstr "Sysupgrade ara" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/configuration.js:22 +msgid "Search on opening" +msgstr "Açılışta ara" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:226 +msgid "Searching for an available sysupgrade" +msgstr "Kullanılabilir bir sistem yükseltmesi aranıyor" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/configuration.js:13 +msgid "Server" +msgstr "Sunucu" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/configuration.js:28 +msgid "Show advanced options like packge list modification" +msgstr "Paket listesi değişikliği gibi gelişmiş seçenekleri göster" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:166 +msgid "Successfully created sysupgrade image" +msgstr "Sysupgrade görüntüsü başarıyla oluşturulmuştur" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:121 +msgid "Target" +msgstr "Hedef" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:358 +msgid "" +"The attended sysupgrade service allows to easily upgrade vanilla and custom " +"firmware images." +msgstr "" +"Katılımlı sysupgrade hizmeti, vanilya ve özel aygıt yazılımı görüntülerini " +"kolayca yükseltmenize olanak tanır." + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:312 +msgid "The device runs the latest firmware version" +msgstr "Cihaz en son firmware sürümünü çalıştırıyor" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:359 +msgid "" +"This is done by building a new firmware on demand via an online service." +msgstr "" +"Bu, çevrimiçi bir hizmet aracılığıyla talep üzerine yeni bir ürün yazılımı " +"oluşturarak yapılır." + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:51 +msgid "Uploading firmware from browser to device" +msgstr "Donanım yazılımı tarayıcıdan cihaza yükleniyor" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:115 +msgid "Version" +msgstr "Sürüm" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:60 +msgid "Wrong checksum" +msgstr "Yanlış sağlama toplamı" + +#~ msgid "attended sysupgrade via rpcd and luci" +#~ msgstr "rpcd ve luci ile etkileşimli sistem yükseltme" diff --git a/applications/luci-app-attendedsysupgrade/po/uk/attendedsysupgrade.po b/applications/luci-app-attendedsysupgrade/po/uk/attendedsysupgrade.po index ef3697d68d..3730456cd9 100644 --- a/applications/luci-app-attendedsysupgrade/po/uk/attendedsysupgrade.po +++ b/applications/luci-app-attendedsysupgrade/po/uk/attendedsysupgrade.po @@ -11,7 +11,177 @@ msgstr "" "%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" "X-Generator: Weblate 4.7-dev\n" -#: applications/luci-app-attendedsysupgrade/luasrc/controller/attendedsysupgrade.lua:4 -#: applications/luci-app-attendedsysupgrade/luasrc/view/attendedsysupgrade.htm:76 +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/configuration.js:16 +msgid "Address" +msgstr "Адреса" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/configuration.js:17 +msgid "Address of the sysupgrade server" +msgstr "Адреса сервера sysupgrade" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/configuration.js:27 +msgid "Advances Mode" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/configuration.js:9 +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:357 +#: applications/luci-app-attendedsysupgrade/root/usr/share/luci/menu.d/luci-app-attendedsysupgrade.json:3 msgid "Attended Sysupgrade" msgstr "Сервісне оновлення системи" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/configuration.js:10 +msgid "Attendedsysupgrade Configuration." +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:120 +msgid "Build Date" +msgstr "Дата збірки" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:178 +msgid "Building the sysupgrade image" +msgstr "Створення іміджу оновлення" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:155 +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:295 +msgid "Cancel" +msgstr "Скасувати" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/configuration.js:19 +msgid "Client" +msgstr "Клієнт" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:65 +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:216 +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:319 +msgid "Close" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/root/usr/share/luci/menu.d/luci-app-attendedsysupgrade.json:24 +msgid "Configuration" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:37 +msgid "Downloading firmware from server to browser" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:219 +msgid "Error building the sysupgrade" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:61 +msgid "Error during download of firmware. Please try again" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:116 +msgid "File" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/root/usr/share/rpcd/acl.d/luci-app-attendedsysupgrade.json:3 +msgid "Grant UCI access to LuCI app attendedsysupgrade" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:162 +msgid "Install Sysupgrade" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:68 +msgid "Installing the sysupgrade. Do not unpower device!" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:147 +msgid "Keep settings and retain the current configuration" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:287 +msgid "New upgrade available" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:311 +msgid "No upgrade available" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/root/usr/share/luci/menu.d/luci-app-attendedsysupgrade.json:15 +msgid "Overview" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:191 +msgid "Please report the error message and request" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:306 +msgid "Request Sysupgrade" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:175 +msgid "Request in build queue" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:192 +msgid "Request to server:" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:119 +msgid "SHA256" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/configuration.js:23 +msgid "Search for new sysupgrades on opening the tab" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:371 +msgid "Search for sysupgrade" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/configuration.js:22 +msgid "Search on opening" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:226 +msgid "Searching for an available sysupgrade" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/configuration.js:13 +msgid "Server" +msgstr "Сервер" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/configuration.js:28 +msgid "Show advanced options like packge list modification" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:166 +msgid "Successfully created sysupgrade image" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:121 +msgid "Target" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:358 +msgid "" +"The attended sysupgrade service allows to easily upgrade vanilla and custom " +"firmware images." +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:312 +msgid "The device runs the latest firmware version" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:359 +msgid "" +"This is done by building a new firmware on demand via an online service." +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:51 +msgid "Uploading firmware from browser to device" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:115 +msgid "Version" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:60 +msgid "Wrong checksum" +msgstr "" + +#~ msgid "attended sysupgrade via rpcd and luci" +#~ msgstr "виконайте sysupgrade через rpcd та luci" diff --git a/applications/luci-app-attendedsysupgrade/po/vi/attendedsysupgrade.po b/applications/luci-app-attendedsysupgrade/po/vi/attendedsysupgrade.po index 8497ee402e..e3b32aed52 100644 --- a/applications/luci-app-attendedsysupgrade/po/vi/attendedsysupgrade.po +++ b/applications/luci-app-attendedsysupgrade/po/vi/attendedsysupgrade.po @@ -4,7 +4,174 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -#: applications/luci-app-attendedsysupgrade/luasrc/controller/attendedsysupgrade.lua:4 -#: applications/luci-app-attendedsysupgrade/luasrc/view/attendedsysupgrade.htm:76 +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/configuration.js:16 +msgid "Address" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/configuration.js:17 +msgid "Address of the sysupgrade server" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/configuration.js:27 +msgid "Advances Mode" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/configuration.js:9 +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:357 +#: applications/luci-app-attendedsysupgrade/root/usr/share/luci/menu.d/luci-app-attendedsysupgrade.json:3 msgid "Attended Sysupgrade" msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/configuration.js:10 +msgid "Attendedsysupgrade Configuration." +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:120 +msgid "Build Date" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:178 +msgid "Building the sysupgrade image" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:155 +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:295 +msgid "Cancel" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/configuration.js:19 +msgid "Client" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:65 +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:216 +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:319 +msgid "Close" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/root/usr/share/luci/menu.d/luci-app-attendedsysupgrade.json:24 +msgid "Configuration" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:37 +msgid "Downloading firmware from server to browser" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:219 +msgid "Error building the sysupgrade" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:61 +msgid "Error during download of firmware. Please try again" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:116 +msgid "File" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/root/usr/share/rpcd/acl.d/luci-app-attendedsysupgrade.json:3 +msgid "Grant UCI access to LuCI app attendedsysupgrade" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:162 +msgid "Install Sysupgrade" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:68 +msgid "Installing the sysupgrade. Do not unpower device!" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:147 +msgid "Keep settings and retain the current configuration" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:287 +msgid "New upgrade available" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:311 +msgid "No upgrade available" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/root/usr/share/luci/menu.d/luci-app-attendedsysupgrade.json:15 +msgid "Overview" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:191 +msgid "Please report the error message and request" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:306 +msgid "Request Sysupgrade" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:175 +msgid "Request in build queue" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:192 +msgid "Request to server:" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:119 +msgid "SHA256" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/configuration.js:23 +msgid "Search for new sysupgrades on opening the tab" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:371 +msgid "Search for sysupgrade" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/configuration.js:22 +msgid "Search on opening" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:226 +msgid "Searching for an available sysupgrade" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/configuration.js:13 +msgid "Server" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/configuration.js:28 +msgid "Show advanced options like packge list modification" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:166 +msgid "Successfully created sysupgrade image" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:121 +msgid "Target" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:358 +msgid "" +"The attended sysupgrade service allows to easily upgrade vanilla and custom " +"firmware images." +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:312 +msgid "The device runs the latest firmware version" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:359 +msgid "" +"This is done by building a new firmware on demand via an online service." +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:51 +msgid "Uploading firmware from browser to device" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:115 +msgid "Version" +msgstr "" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:60 +msgid "Wrong checksum" +msgstr "" diff --git a/applications/luci-app-attendedsysupgrade/po/zh_Hans/attendedsysupgrade.po b/applications/luci-app-attendedsysupgrade/po/zh_Hans/attendedsysupgrade.po index 56c2e876cf..8ee6d73c75 100644 --- a/applications/luci-app-attendedsysupgrade/po/zh_Hans/attendedsysupgrade.po +++ b/applications/luci-app-attendedsysupgrade/po/zh_Hans/attendedsysupgrade.po @@ -1,6 +1,6 @@ msgid "" msgstr "" -"PO-Revision-Date: 2021-04-12 08:24+0000\n" +"PO-Revision-Date: 2021-06-29 18:07+0000\n" "Last-Translator: xiazhang \n" "Language-Team: Chinese (Simplified) \n" @@ -8,9 +8,179 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" -"X-Generator: Weblate 4.6-dev\n" +"X-Generator: Weblate 4.7.1-dev\n" -#: applications/luci-app-attendedsysupgrade/luasrc/controller/attendedsysupgrade.lua:4 -#: applications/luci-app-attendedsysupgrade/luasrc/view/attendedsysupgrade.htm:76 +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/configuration.js:16 +msgid "Address" +msgstr "地址" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/configuration.js:17 +msgid "Address of the sysupgrade server" +msgstr "系统升级服务器的地址" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/configuration.js:27 +msgid "Advances Mode" +msgstr "高级模式" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/configuration.js:9 +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:357 +#: applications/luci-app-attendedsysupgrade/root/usr/share/luci/menu.d/luci-app-attendedsysupgrade.json:3 msgid "Attended Sysupgrade" msgstr "参与式系统升级" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/configuration.js:10 +msgid "Attendedsysupgrade Configuration." +msgstr "Attended系统升级 配置。" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:120 +msgid "Build Date" +msgstr "构建日期" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:178 +msgid "Building the sysupgrade image" +msgstr "正在构建系统升级镜像" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:155 +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:295 +msgid "Cancel" +msgstr "取消" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/configuration.js:19 +msgid "Client" +msgstr "客户端" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:65 +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:216 +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:319 +msgid "Close" +msgstr "关闭" + +#: applications/luci-app-attendedsysupgrade/root/usr/share/luci/menu.d/luci-app-attendedsysupgrade.json:24 +msgid "Configuration" +msgstr "配置" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:37 +msgid "Downloading firmware from server to browser" +msgstr "正从服务器下载固件到浏览器" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:219 +msgid "Error building the sysupgrade" +msgstr "构建 sysupgrade 时出错" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:61 +msgid "Error during download of firmware. Please try again" +msgstr "固件下载出错。请重试" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:116 +msgid "File" +msgstr "文件" + +#: applications/luci-app-attendedsysupgrade/root/usr/share/rpcd/acl.d/luci-app-attendedsysupgrade.json:3 +msgid "Grant UCI access to LuCI app attendedsysupgrade" +msgstr "授予访问 LuCI 应用 attendedsysupgrade 的权限" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:162 +msgid "Install Sysupgrade" +msgstr "安装系统升级" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:68 +msgid "Installing the sysupgrade. Do not unpower device!" +msgstr "正在安装 sysupgrade。不要切断电源!" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:147 +msgid "Keep settings and retain the current configuration" +msgstr "保持设置并保留当前配置" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:287 +msgid "New upgrade available" +msgstr "有新升级可用" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:311 +msgid "No upgrade available" +msgstr "无升级可用" + +#: applications/luci-app-attendedsysupgrade/root/usr/share/luci/menu.d/luci-app-attendedsysupgrade.json:15 +msgid "Overview" +msgstr "概览" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:191 +msgid "Please report the error message and request" +msgstr "请报告错误信息和请求" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:306 +msgid "Request Sysupgrade" +msgstr "请求进行系统升级" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:175 +msgid "Request in build queue" +msgstr "请求位于构建队列中" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:192 +msgid "Request to server:" +msgstr "向服务器发出的请求:" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:119 +msgid "SHA256" +msgstr "SHA256" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/configuration.js:23 +msgid "Search for new sysupgrades on opening the tab" +msgstr "打开标签页时搜索新的系统升级" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:371 +msgid "Search for sysupgrade" +msgstr "搜索系统升级" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/configuration.js:22 +msgid "Search on opening" +msgstr "打开时进行搜索" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:226 +msgid "Searching for an available sysupgrade" +msgstr "正搜索可用的系统升级" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/configuration.js:13 +msgid "Server" +msgstr "服务器" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/configuration.js:28 +msgid "Show advanced options like packge list modification" +msgstr "显示高级选项,如包列表修改" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:166 +msgid "Successfully created sysupgrade image" +msgstr "成功创建了系统升级镜像" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:121 +msgid "Target" +msgstr "目标" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:358 +msgid "" +"The attended sysupgrade service allows to easily upgrade vanilla and custom " +"firmware images." +msgstr "attended 系统升级服务允许轻松升级 vanilla 和自定义固件镜像。" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:312 +msgid "The device runs the latest firmware version" +msgstr "设备运行最新的固件版本" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:359 +msgid "" +"This is done by building a new firmware on demand via an online service." +msgstr "这是通过在线服务按需构建新的固件来实现的。" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:51 +msgid "Uploading firmware from browser to device" +msgstr "正将固件从浏览器上传到设备" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:115 +msgid "Version" +msgstr "版本" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:60 +msgid "Wrong checksum" +msgstr "错误的校验和" + +#~ msgid "attended sysupgrade via rpcd and luci" +#~ msgstr "通过 rpcd 和 luci 参与系统升级" diff --git a/applications/luci-app-attendedsysupgrade/po/zh_Hant/attendedsysupgrade.po b/applications/luci-app-attendedsysupgrade/po/zh_Hant/attendedsysupgrade.po index 2091a3a49a..da8f1075e6 100644 --- a/applications/luci-app-attendedsysupgrade/po/zh_Hant/attendedsysupgrade.po +++ b/applications/luci-app-attendedsysupgrade/po/zh_Hant/attendedsysupgrade.po @@ -10,8 +10,179 @@ msgstr "" "Plural-Forms: nplurals=1; plural=0;\n" "X-Generator: Weblate 4.5.2-dev\n" -#: applications/luci-app-attendedsysupgrade/luasrc/controller/attendedsysupgrade.lua:4 -#: applications/luci-app-attendedsysupgrade/luasrc/view/attendedsysupgrade.htm:76 +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/configuration.js:16 +msgid "Address" +msgstr "位址" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/configuration.js:17 +msgid "Address of the sysupgrade server" +msgstr "系統升級伺服器的位址" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/configuration.js:27 +msgid "Advances Mode" +msgstr "進階模式" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/configuration.js:9 +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:357 +#: applications/luci-app-attendedsysupgrade/root/usr/share/luci/menu.d/luci-app-attendedsysupgrade.json:3 #, fuzzy msgid "Attended Sysupgrade" msgstr "參與式系統升級" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/configuration.js:10 +msgid "Attendedsysupgrade Configuration." +msgstr "Attendedsysupgrade 設定。" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:120 +msgid "Build Date" +msgstr "建置日期" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:178 +msgid "Building the sysupgrade image" +msgstr "正在建置系統升級映像" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:155 +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:295 +msgid "Cancel" +msgstr "取消" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/configuration.js:19 +msgid "Client" +msgstr "客户端" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:65 +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:216 +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:319 +msgid "Close" +msgstr "關閉" + +#: applications/luci-app-attendedsysupgrade/root/usr/share/luci/menu.d/luci-app-attendedsysupgrade.json:24 +msgid "Configuration" +msgstr "組態" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:37 +msgid "Downloading firmware from server to browser" +msgstr "正從伺服器下載韌體到瀏覽器" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:219 +msgid "Error building the sysupgrade" +msgstr "建置 sysupgrade 時發生錯誤" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:61 +msgid "Error during download of firmware. Please try again" +msgstr "韌體下載發生錯誤。請再試一次" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:116 +msgid "File" +msgstr "檔案" + +#: applications/luci-app-attendedsysupgrade/root/usr/share/rpcd/acl.d/luci-app-attendedsysupgrade.json:3 +msgid "Grant UCI access to LuCI app attendedsysupgrade" +msgstr "授予 LuCI 應用 attendedsysupgrade UCI 存取權限" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:162 +msgid "Install Sysupgrade" +msgstr "安裝系統升級" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:68 +msgid "Installing the sysupgrade. Do not unpower device!" +msgstr "正在安裝 sysupgrade。不要切斷電源!" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:147 +msgid "Keep settings and retain the current configuration" +msgstr "保留目前設定" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:287 +msgid "New upgrade available" +msgstr "有新升級可用" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:311 +msgid "No upgrade available" +msgstr "無升級可用" + +#: applications/luci-app-attendedsysupgrade/root/usr/share/luci/menu.d/luci-app-attendedsysupgrade.json:15 +msgid "Overview" +msgstr "概覽" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:191 +msgid "Please report the error message and request" +msgstr "請報告錯誤資訊和請求" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:306 +msgid "Request Sysupgrade" +msgstr "請求進行系統升級" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:175 +msgid "Request in build queue" +msgstr "請求位於建置佇列中" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:192 +msgid "Request to server:" +msgstr "向伺服器發出的請求:" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:119 +msgid "SHA256" +msgstr "SHA256" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/configuration.js:23 +msgid "Search for new sysupgrades on opening the tab" +msgstr "開啟標籤頁時搜尋新的系統升級" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:371 +msgid "Search for sysupgrade" +msgstr "搜尋系統升級" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/configuration.js:22 +msgid "Search on opening" +msgstr "開啟時進行搜尋" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:226 +msgid "Searching for an available sysupgrade" +msgstr "正在搜尋可用的系統升級" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/configuration.js:13 +msgid "Server" +msgstr "伺服器" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/configuration.js:28 +msgid "Show advanced options like packge list modification" +msgstr "顯示進階選項,例如軟體包清單修改" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:166 +msgid "Successfully created sysupgrade image" +msgstr "成功建立了系統升級映像" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:121 +msgid "Target" +msgstr "目標" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:358 +#, fuzzy +msgid "" +"The attended sysupgrade service allows to easily upgrade vanilla and custom " +"firmware images." +msgstr "attended 系統升級服務允許輕鬆升級原始和第三方韌體映像。" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:312 +msgid "The device runs the latest firmware version" +msgstr "裝置執行最新的韌體版本" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:359 +msgid "" +"This is done by building a new firmware on demand via an online service." +msgstr "這是透過線上服務依需求建置新的韌體來實現的。" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:51 +msgid "Uploading firmware from browser to device" +msgstr "正將韌體從瀏覽器上傳到裝置" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:115 +msgid "Version" +msgstr "版本" + +#: applications/luci-app-attendedsysupgrade/htdocs/luci-static/resources/view/attendedsysupgrade/overview.js:60 +msgid "Wrong checksum" +msgstr "錯誤的總和檢查碼" + +#~ msgid "attended sysupgrade via rpcd and luci" +#~ msgstr "透過 rpcd 和 luci 參與系統升級" diff --git a/applications/luci-app-attendedsysupgrade/root/etc/uci-defaults/40_luci-attendedsysupgrade b/applications/luci-app-attendedsysupgrade/root/etc/uci-defaults/40_luci-attendedsysupgrade deleted file mode 100755 index 1b890c0cbb..0000000000 --- a/applications/luci-app-attendedsysupgrade/root/etc/uci-defaults/40_luci-attendedsysupgrade +++ /dev/null @@ -1,7 +0,0 @@ -#!/bin/sh - -rm -rf /tmp/luci-indexcache /tmp/luci-modulecache/ -/etc/init.d/uhttpd restart -/etc/init.d/rpcd reload - -return 0 diff --git a/applications/luci-app-attendedsysupgrade/root/usr/share/luci/menu.d/luci-app-attendedsysupgrade.json b/applications/luci-app-attendedsysupgrade/root/usr/share/luci/menu.d/luci-app-attendedsysupgrade.json new file mode 100644 index 0000000000..33d7019fa3 --- /dev/null +++ b/applications/luci-app-attendedsysupgrade/root/usr/share/luci/menu.d/luci-app-attendedsysupgrade.json @@ -0,0 +1,31 @@ +{ + "admin/system/attendedsysupgrade": { + "title": "Attended Sysupgrade", + "order": 60, + "action": { + "type": "firstchild" + }, + "depends": { + "acl": [ "luci-app-attendedsysupgrade" ], + "uci": { "attendedsysupgrade": true } + } + }, + + "admin/system/attendedsysupgrade/overview": { + "title": "Overview", + "order": 1, + "action": { + "type": "view", + "path": "attendedsysupgrade/overview" + } + }, + + "admin/system/attendedsysupgrade/configuration": { + "title": "Configuration", + "order": 2, + "action": { + "type": "view", + "path": "attendedsysupgrade/configuration" + } + } +} diff --git a/applications/luci-app-attendedsysupgrade/root/usr/share/rpcd/acl.d/attendedsysupgrade.json b/applications/luci-app-attendedsysupgrade/root/usr/share/rpcd/acl.d/attendedsysupgrade.json deleted file mode 100644 index 7549319260..0000000000 --- a/applications/luci-app-attendedsysupgrade/root/usr/share/rpcd/acl.d/attendedsysupgrade.json +++ /dev/null @@ -1,31 +0,0 @@ -{ - "attendedsysupgrade": { - "description": "attended sysupgrade via rpcd and luci", - "read": { - "ubus": { - "rpc-sys": [ - "upgrade_start", - "packagelist" - ], - "system": [ - "board", - "info" - ], - "uci": [ - "get", "set", "commit" - ] - }, - "uci": [ - "attendedsysupgrade" - ] - }, - "write": { - "cgi-io": [ - "upload" - ], - "uci": [ - "attendedsysupgrade" - ] - } - } -} diff --git a/applications/luci-app-attendedsysupgrade/root/usr/share/rpcd/acl.d/luci-app-attendedsysupgrade.json b/applications/luci-app-attendedsysupgrade/root/usr/share/rpcd/acl.d/luci-app-attendedsysupgrade.json new file mode 100644 index 0000000000..ec102e3dad --- /dev/null +++ b/applications/luci-app-attendedsysupgrade/root/usr/share/rpcd/acl.d/luci-app-attendedsysupgrade.json @@ -0,0 +1,36 @@ +{ + "luci-app-attendedsysupgrade": { + "description": "Grant UCI access to LuCI app attendedsysupgrade", + "read": { + "ubus": { + "rpc-sys": [ + "upgrade_start", + "packagelist" + ], + "system": [ + "board", + "info" + ], + "uci": [ + "get" + ] + }, + "uci": [ + "attendedsysupgrade" + ] + }, + "write": { + "cgi-io": [ + "upload" + ], + "ubus": { + "uci": [ + "set", "commit" + ] + }, + "uci": [ + "attendedsysupgrade" + ] + } + } +} diff --git a/applications/luci-app-attendedsysupgrade/root/www/luci-static/resources/attendedsysupgrade.js b/applications/luci-app-attendedsysupgrade/root/www/luci-static/resources/attendedsysupgrade.js deleted file mode 100644 index 2cf5cc6e1b..0000000000 --- a/applications/luci-app-attendedsysupgrade/root/www/luci-static/resources/attendedsysupgrade.js +++ /dev/null @@ -1,427 +0,0 @@ -function $(s) { - return document.getElementById(s.substring(1)); -} - -function show(s) { - $(s).style.display = 'block'; -} - -function hide(s) { - $(s).style.display = 'none'; -} - -function set_server() { - hide("#status_box"); - data.url = $("#server").value; - ubus_call("uci", "set", { - "config": "attendedsysupgrade", - "section": "server", - values: { - "url": data.url - } - }) - ubus_call("uci", "commit", { - "config": "attendedsysupgrade" - }) - var server_button = $("#server") - server_button.type = 'button'; - server_button.className = 'cbi-button cbi-button-edit'; - server_button.parentElement.removeChild($("#button_set")); - server_button.onclick = edit_server; -} - -function edit_server() { - $("#server").type = 'text'; - $("#server").onkeydown = function(event) { - if (event.key === 'Enter') { - set_server(); - return false; - } - } - $("#server").className = ''; - $("#server").onclick = null; - - var button_set = document.createElement("input"); - button_set.type = "button"; - button_set.value = "Save"; - button_set.name = "button_set"; - button_set.id = "button_set"; - button_set.className = 'cbi-button cbi-button-save'; - button_set.onclick = set_server - $("#server").parentElement.appendChild(button_set); -} - -function edit_packages() { - data.edit_packages = true - hide("#edit_button"); - $("#edit_packages").value = data.packages.join("\n"); - show("#edit_packages"); -} - -// requests to the upgrade server -function server_request(path, callback) { - var request = new XMLHttpRequest(); - request.open("POST", data.url + "/" + path, true); - request.setRequestHeader("Content-type", "application/json"); - request.send(JSON.stringify(request_dict)); - request.onerror = function(e) { - set_status("danger", "upgrade server down") - show("#server_div"); - } - request.addEventListener('load', function(event) { - callback(request) - }); -} - -// initial setup, get system information -function setup() { - ubus_call("rpc-sys", "packagelist", {}, "packages"); - ubus_call("system", "board", {}, "release"); - ubus_call("system", "board", {}, "board_name"); - ubus_call("system", "board", {}, "model"); - ubus_call("system", "info", {}, "memory"); - uci_get({ - "config": "attendedsysupgrade", - "section": "server", - "option": "url" - }) - uci_get({ - "config": "attendedsysupgrade", - "section": "client", - "option": "upgrade_packages" - }) - uci_get({ - "config": "attendedsysupgrade", - "section": "client", - "option": "advanced_mode" - }) - uci_get({ - "config": "attendedsysupgrade", - "section": "client", - "option": "auto_search" - }) - setup_ready(); -} - -function setup_ready() { - // checks if a async ubus calls have finished - if (ubus_counter != ubus_closed) { - setTimeout(setup_ready, 300) - } else { - if (data.auto_search == 1) { - upgrade_check(); - } else { - show("#upgrade_button"); - show("#server_div"); - $("#server").value = data.url; - } - } -} - -function uci_get(option) { - // simple wrapper to get a uci value store in data.