diff options
Diffstat (limited to 'applications/luci-app-attendedsysupgrade')
42 files changed, 6284 insertions, 710 deletions
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..a99e646064 --- /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', _('Advances 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/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%> -<h2 name="content"><%:Attended Sysupgrade%></h2> -<div class="cbi-map-descr"> - Easily search and install new releases and package upgrades. Sysupgrade firmware are created on demand based on locally installed packages. -</div> -<div style="display: none" id="status_box" class="alert-message info"></div> -<div style="display: none" id="packages" class="alert-message success"></div> -<p> -<textarea style="display: none; width: 100%;" id="edit_packages" rows="15"></textarea> -</p> -<fieldset class="cbi-section"> - <form method="post" action=""> - <div class="cbi-selection-node"> - <div class="cbi-value" id="keep_container" style="display: none"> - <div class="cbi-section-descr"> - Check "Keep settings" to retain the current configuration (requires a compatible firmware). - </div> - <label class="cbi-value-title" for="keep">Keep settings:</label> - <div class="cbi-value-field"> - <input name="keep" id="keep" checked="checked" type="checkbox"> - </div> - </div> - <div class="cbi-value" id="edit_button" style="display: none"> - <div class="cbi-value-field"> - <input class="cbi-button" value="Edit installed packages" onclick="edit_packages()" type="button"> - </div> - </div> - <div class="cbi-value cbi-value" id="server_div" style="display:none"> - <label class="cbi-value-title" for="server">Server:</label> - <div class="cbi-value-field"> - <input onclick="edit_server()" class="cbi-button cbi-button-edit" value="" type="button" id="server" name="server"> - </div> - </div> - <div class="cbi-value cbi-value-last"> - <div class="cbi-value-field"> - <input class="cbi-button cbi-button-apply" value="Search for upgrades" style="display: none" onclick="upgrade_check()" type="button" id="upgrade_button"> - </div> - </div> - </div> - </form> -</fieldset> -<script type="text/javascript"> - data = {}; - data["ubus_rpc_session"] = "<%=luci.dispatcher.context.authsession%>" - origin = document.location.href.replace(location.pathname, "") - ubus_url = origin + "/ubus/" -</script> -<script type="text/javascript" src="<%=resource%>/attendedsysupgrade.js"></script> -<%+footer%> diff --git a/applications/luci-app-attendedsysupgrade/po/ar/attendedsysupgrade.po b/applications/luci-app-attendedsysupgrade/po/ar/attendedsysupgrade.po index d63160800d..2451709129 100644 --- a/applications/luci-app-attendedsysupgrade/po/ar/attendedsysupgrade.po +++ b/applications/luci-app-attendedsysupgrade/po/ar/attendedsysupgrade.po @@ -4,11 +4,174 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -#: 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/root/usr/share/rpcd/acl.d/attendedsysupgrade.json:3 -msgid "attended sysupgrade via rpcd and luci" +#: 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 c117f28993..3737505efd 100644 --- a/applications/luci-app-attendedsysupgrade/po/bg/attendedsysupgrade.po +++ b/applications/luci-app-attendedsysupgrade/po/bg/attendedsysupgrade.po @@ -4,11 +4,174 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -#: 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/root/usr/share/rpcd/acl.d/attendedsysupgrade.json:3 -msgid "attended sysupgrade via rpcd and luci" +#: 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 index aab64005d5..80ab3cae8f 100644 --- a/applications/luci-app-attendedsysupgrade/po/bn_BD/attendedsysupgrade.po +++ b/applications/luci-app-attendedsysupgrade/po/bn_BD/attendedsysupgrade.po @@ -4,11 +4,174 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -#: 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/root/usr/share/rpcd/acl.d/attendedsysupgrade.json:3 -msgid "attended sysupgrade via rpcd and luci" +#: 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 37744c5542..71996ee3d7 100644 --- a/applications/luci-app-attendedsysupgrade/po/ca/attendedsysupgrade.po +++ b/applications/luci-app-attendedsysupgrade/po/ca/attendedsysupgrade.po @@ -10,11 +10,174 @@ msgstr "" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Generator: Weblate 3.10-dev\n" -#: 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/root/usr/share/rpcd/acl.d/attendedsysupgrade.json:3 -msgid "attended sysupgrade via rpcd and luci" +#: 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 e81079fb4d..e68da3349b 100644 --- a/applications/luci-app-attendedsysupgrade/po/cs/attendedsysupgrade.po +++ b/applications/luci-app-attendedsysupgrade/po/cs/attendedsysupgrade.po @@ -1,20 +1,183 @@ msgid "" msgstr "" -"PO-Revision-Date: 2020-02-02 09:02+0000\n" -"Last-Translator: Pavel Borecki <pavel.borecki@gmail.com>\n" +"PO-Revision-Date: 2021-05-07 11:32+0000\n" +"Last-Translator: Adam Salač <adam@salac.me>\n" "Language-Team: Czech <https://hosted.weblate.org/projects/openwrt/" "luciapplicationsattendedsysupgrade/cs/>\n" "Language: cs\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" -"X-Generator: Weblate 3.11-dev\n" +"X-Generator: Weblate 4.7-dev\n" -#: 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/root/usr/share/rpcd/acl.d/attendedsysupgrade.json:3 -msgid "attended sysupgrade via rpcd and luci" +#: 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 8d428a2820..98da9431f5 100644 --- a/applications/luci-app-attendedsysupgrade/po/de/attendedsysupgrade.po +++ b/applications/luci-app-attendedsysupgrade/po/de/attendedsysupgrade.po @@ -1,20 +1,186 @@ msgid "" msgstr "" -"PO-Revision-Date: 2020-07-11 21:29+0000\n" -"Last-Translator: ssantos <ssantos@web.de>\n" +"PO-Revision-Date: 2021-05-17 07:42+0000\n" +"Last-Translator: Zocker1012 <julian.schoemer.1997@gmail.com>\n" "Language-Team: German <https://hosted.weblate.org/projects/openwrt/" "luciapplicationsattendedsysupgrade/de/>\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.2-dev\n" +"X-Generator: Weblate 4.7-dev\n" -#: 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" -#: applications/luci-app-attendedsysupgrade/root/usr/share/rpcd/acl.d/attendedsysupgrade.json:3 -msgid "attended sysupgrade via rpcd and luci" -msgstr "beaufsichtigtes System-Upgrade mittels rpcd und luci" +#: 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 "Build-Datum" + +#: 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 "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 "" + +#: 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 "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 "" + +#: 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 "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 "" + +#: 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 "Übersicht" + +#: 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 "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 c7c601187c..c7bfdd2c2c 100644 --- a/applications/luci-app-attendedsysupgrade/po/el/attendedsysupgrade.po +++ b/applications/luci-app-attendedsysupgrade/po/el/attendedsysupgrade.po @@ -1,20 +1,183 @@ msgid "" msgstr "" -"PO-Revision-Date: 2020-04-25 16:36+0000\n" -"Last-Translator: george k <norhorn@gmail.com>\n" +"PO-Revision-Date: 2021-04-17 10:26+0000\n" +"Last-Translator: MarioK239 <marios.k239@gmail.com>\n" "Language-Team: Greek <https://hosted.weblate.org/projects/openwrt/" "luciapplicationsattendedsysupgrade/el/>\n" "Language: el\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.0.2-dev\n" +"X-Generator: Weblate 4.6-dev\n" -#: 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/root/usr/share/rpcd/acl.d/attendedsysupgrade.json:3 -msgid "attended sysupgrade via rpcd and luci" +#: 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 7383f882b6..655acd3402 100644 --- a/applications/luci-app-attendedsysupgrade/po/en/attendedsysupgrade.po +++ b/applications/luci-app-attendedsysupgrade/po/en/attendedsysupgrade.po @@ -1,14 +1,186 @@ msgid "" msgstr "" +"PO-Revision-Date: 2020-11-04 00:27+0000\n" +"Last-Translator: Igor Benek-Lins <beneklins@protonmail.ch>\n" +"Language-Team: English <https://hosted.weblate.org/projects/openwrt/" +"luciapplicationsattendedsysupgrade/en/>\n" "Language: en\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.3.2-dev\n" -#: 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/root/usr/share/rpcd/acl.d/attendedsysupgrade.json:3 -msgid "attended sysupgrade via rpcd and luci" +#: 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 fc7ee5649f..39f58914a5 100644 --- a/applications/luci-app-attendedsysupgrade/po/es/attendedsysupgrade.po +++ b/applications/luci-app-attendedsysupgrade/po/es/attendedsysupgrade.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: \n" "POT-Creation-Date: 2019-07-22 17:43-0300\n" -"PO-Revision-Date: 2020-05-02 15:56+0000\n" +"PO-Revision-Date: 2021-03-19 04:16+0000\n" "Last-Translator: Franco Castillo <castillofrancodamian@gmail.com>\n" "Language-Team: Spanish <https://hosted.weblate.org/projects/openwrt/" "luciapplicationsattendedsysupgrade/es/>\n" @@ -11,13 +11,184 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Weblate 4.1-dev\n" +"X-Generator: Weblate 4.5.2-dev\n" -#: 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 "Sysupgrade asistido" +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" -#: applications/luci-app-attendedsysupgrade/root/usr/share/rpcd/acl.d/attendedsysupgrade.json:3 -msgid "attended sysupgrade via rpcd and luci" -msgstr "sysupgrade asistido vía rpcd y luci" +#~ 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 <eh.cyber@yahoo.com>\n" +"Language-Team: Persian <https://hosted.weblate.org/projects/openwrt/" +"luciapplicationsattendedsysupgrade/fa/>\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 index 2f2228aada..146a5bd140 100644 --- a/applications/luci-app-attendedsysupgrade/po/fi/attendedsysupgrade.po +++ b/applications/luci-app-attendedsysupgrade/po/fi/attendedsysupgrade.po @@ -10,11 +10,177 @@ msgstr "" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Generator: Weblate 4.1-dev\n" -#: 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 "Järjestelmän valvottu päivitys" -#: applications/luci-app-attendedsysupgrade/root/usr/share/rpcd/acl.d/attendedsysupgrade.json:3 -msgid "attended sysupgrade via rpcd and luci" -msgstr "järjestelmän valvottu päivitys rcpd:n ja luci:n kautta" +#: 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 "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 5b6ee0ae9b..d0070532fe 100644 --- a/applications/luci-app-attendedsysupgrade/po/fr/attendedsysupgrade.po +++ b/applications/luci-app-attendedsysupgrade/po/fr/attendedsysupgrade.po @@ -1,20 +1,186 @@ msgid "" msgstr "" -"PO-Revision-Date: 2020-06-02 06:41+0000\n" -"Last-Translator: Christophe CHAUVET <christophe.chauvet@gmail.com>\n" +"PO-Revision-Date: 2021-04-25 02:37+0000\n" +"Last-Translator: localhost61 <xmh.rpi+weblate@free.fr>\n" "Language-Team: French <https://hosted.weblate.org/projects/openwrt/" "luciapplicationsattendedsysupgrade/fr/>\n" "Language: fr\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.1-dev\n" +"X-Generator: Weblate 4.7-dev\n" -#: 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/root/usr/share/rpcd/acl.d/attendedsysupgrade.json:3 -msgid "attended sysupgrade via rpcd and luci" -msgstr "Mise à niveau système via rpcd et luci" +#: 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 c9d04cd5d1..9a319e8264 100644 --- a/applications/luci-app-attendedsysupgrade/po/he/attendedsysupgrade.po +++ b/applications/luci-app-attendedsysupgrade/po/he/attendedsysupgrade.po @@ -4,11 +4,174 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -#: 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/root/usr/share/rpcd/acl.d/attendedsysupgrade.json:3 -msgid "attended sysupgrade via rpcd and luci" +#: 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 c2d0b115d5..74207ac03d 100644 --- a/applications/luci-app-attendedsysupgrade/po/hi/attendedsysupgrade.po +++ b/applications/luci-app-attendedsysupgrade/po/hi/attendedsysupgrade.po @@ -4,11 +4,174 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -#: 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/root/usr/share/rpcd/acl.d/attendedsysupgrade.json:3 -msgid "attended sysupgrade via rpcd and luci" +#: 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 838d0ab493..146950133b 100644 --- a/applications/luci-app-attendedsysupgrade/po/hu/attendedsysupgrade.po +++ b/applications/luci-app-attendedsysupgrade/po/hu/attendedsysupgrade.po @@ -10,11 +10,174 @@ msgstr "" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Generator: Weblate 3.10-dev\n" -#: 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/root/usr/share/rpcd/acl.d/attendedsysupgrade.json:3 -msgid "attended sysupgrade via rpcd and luci" +#: 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 607ad4bb46..29c71cf2b2 100644 --- a/applications/luci-app-attendedsysupgrade/po/it/attendedsysupgrade.po +++ b/applications/luci-app-attendedsysupgrade/po/it/attendedsysupgrade.po @@ -1,20 +1,186 @@ msgid "" msgstr "" -"PO-Revision-Date: 2020-02-27 00:01+0000\n" -"Last-Translator: TuxAlex0 <alex.skatingcassano@gmail.com>\n" +"PO-Revision-Date: 2021-05-07 11:32+0000\n" +"Last-Translator: Omar Destefani <omar.destefani@gmail.com>\n" "Language-Team: Italian <https://hosted.weblate.org/projects/openwrt/" "luciapplicationsattendedsysupgrade/it/>\n" "Language: it\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.0-dev\n" +"X-Generator: Weblate 4.7-dev\n" -#: 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/root/usr/share/rpcd/acl.d/attendedsysupgrade.json:3 -msgid "attended sysupgrade via rpcd and luci" +#: 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 db93721516..3cd0ef9839 100644 --- a/applications/luci-app-attendedsysupgrade/po/ja/attendedsysupgrade.po +++ b/applications/luci-app-attendedsysupgrade/po/ja/attendedsysupgrade.po @@ -1,6 +1,6 @@ msgid "" msgstr "" -"PO-Revision-Date: 2020-06-14 14:42+0000\n" +"PO-Revision-Date: 2021-03-31 12:26+0000\n" "Last-Translator: Satoru Yoshida <ramat@ram.ne.jp>\n" "Language-Team: Japanese <https://hosted.weblate.org/projects/openwrt/" "luciapplicationsattendedsysupgrade/ja/>\n" @@ -8,13 +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.1-dev\n" +"X-Generator: Weblate 4.6-dev\n" -#: 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を手伝った" +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 "" -#: applications/luci-app-attendedsysupgrade/root/usr/share/rpcd/acl.d/attendedsysupgrade.json:3 -msgid "attended sysupgrade via rpcd and luci" -msgstr "rpcd と luci を介して sysupgrade に参加" +#~ 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 8f5dce40f2..85e181d262 100644 --- a/applications/luci-app-attendedsysupgrade/po/ko/attendedsysupgrade.po +++ b/applications/luci-app-attendedsysupgrade/po/ko/attendedsysupgrade.po @@ -4,11 +4,174 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -#: 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/root/usr/share/rpcd/acl.d/attendedsysupgrade.json:3 -msgid "attended sysupgrade via rpcd and luci" +#: 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 c4b514d88e..5101a074bc 100644 --- a/applications/luci-app-attendedsysupgrade/po/mr/attendedsysupgrade.po +++ b/applications/luci-app-attendedsysupgrade/po/mr/attendedsysupgrade.po @@ -1,6 +1,6 @@ msgid "" msgstr "" -"PO-Revision-Date: 2019-12-15 21:22+0000\n" +"PO-Revision-Date: 2020-10-15 00:31+0000\n" "Last-Translator: Prachi Joshi <josprachi@yahoo.com>\n" "Language-Team: Marathi <https://hosted.weblate.org/projects/openwrt/" "luciapplicationsattendedsysupgrade/mr/>\n" @@ -8,13 +8,179 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n > 1;\n" -"X-Generator: Weblate 3.10-dev\n" +"X-Generator: Weblate 4.3-dev\n" -#: 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/root/usr/share/rpcd/acl.d/attendedsysupgrade.json:3 -msgid "attended sysupgrade via rpcd and luci" +#: 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 875018b79d..9a0b7fe2fc 100644 --- a/applications/luci-app-attendedsysupgrade/po/ms/attendedsysupgrade.po +++ b/applications/luci-app-attendedsysupgrade/po/ms/attendedsysupgrade.po @@ -1,14 +1,183 @@ msgid "" msgstr "" +"PO-Revision-Date: 2021-03-31 12:26+0000\n" +"Last-Translator: Faruki Ramly <farukiramly45@gmail.com>\n" +"Language-Team: Malay <https://hosted.weblate.org/projects/openwrt/" +"luciapplicationsattendedsysupgrade/ms/>\n" "Language: ms\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: Weblate 4.6-dev\n" -#: 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/root/usr/share/rpcd/acl.d/attendedsysupgrade.json:3 -msgid "attended sysupgrade via rpcd and luci" +#: 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 1392abe50f..e452197961 100644 --- a/applications/luci-app-attendedsysupgrade/po/nb_NO/attendedsysupgrade.po +++ b/applications/luci-app-attendedsysupgrade/po/nb_NO/attendedsysupgrade.po @@ -1,14 +1,187 @@ msgid "" msgstr "" +"PO-Revision-Date: 2021-03-27 15:30+0000\n" +"Last-Translator: Allan Nordhøy <epost@anotheragency.no>\n" +"Language-Team: Norwegian Bokmål <https://hosted.weblate.org/projects/openwrt/" +"luciapplicationsattendedsysupgrade/nb_NO/>\n" "Language: nb_NO\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.6-dev\n" -#: 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/root/usr/share/rpcd/acl.d/attendedsysupgrade.json:3 -msgid "attended sysupgrade via rpcd and luci" +#: 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 9cb662ef7f..bd4edebff4 100644 --- a/applications/luci-app-attendedsysupgrade/po/pl/attendedsysupgrade.po +++ b/applications/luci-app-attendedsysupgrade/po/pl/attendedsysupgrade.po @@ -1,6 +1,6 @@ msgid "" msgstr "" -"PO-Revision-Date: 2020-05-02 15:56+0000\n" +"PO-Revision-Date: 2021-03-14 05:18+0000\n" "Last-Translator: Marcin Net <marcin.net@linux.pl>\n" "Language-Team: Polish <https://hosted.weblate.org/projects/openwrt/" "luciapplicationsattendedsysupgrade/pl/>\n" @@ -9,13 +9,183 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 " "|| n%100>=20) ? 1 : 2;\n" -"X-Generator: Weblate 4.1-dev\n" +"X-Generator: Weblate 4.5.2-dev\n" -#: 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/root/usr/share/rpcd/acl.d/attendedsysupgrade.json:3 -msgid "attended sysupgrade via rpcd and luci" -msgstr "uczestniczyłem w sysupgrade przez rpcd i luci" +#: 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 c7c151c740..110602fe51 100644 --- a/applications/luci-app-attendedsysupgrade/po/pt/attendedsysupgrade.po +++ b/applications/luci-app-attendedsysupgrade/po/pt/attendedsysupgrade.po @@ -1,6 +1,6 @@ msgid "" msgstr "" -"PO-Revision-Date: 2020-05-03 15:02+0000\n" +"PO-Revision-Date: 2021-03-14 05:18+0000\n" "Last-Translator: ssantos <ssantos@web.de>\n" "Language-Team: Portuguese <https://hosted.weblate.org/projects/openwrt/" "luciapplicationsattendedsysupgrade/pt/>\n" @@ -8,13 +8,183 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n > 1;\n" -"X-Generator: Weblate 4.1-dev\n" +"X-Generator: Weblate 4.5.2-dev\n" -#: 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/root/usr/share/rpcd/acl.d/attendedsysupgrade.json:3 -msgid "attended sysupgrade via rpcd and luci" -msgstr "sysupgrade assistido via rpcd e luci" +#: 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 ddcdb1165e..82e771ecb3 100644 --- a/applications/luci-app-attendedsysupgrade/po/pt_BR/attendedsysupgrade.po +++ b/applications/luci-app-attendedsysupgrade/po/pt_BR/attendedsysupgrade.po @@ -1,6 +1,6 @@ msgid "" msgstr "" -"PO-Revision-Date: 2020-05-02 15:56+0000\n" +"PO-Revision-Date: 2021-03-15 10:03+0000\n" "Last-Translator: Wellington Terumi Uemura <wellingtonuemura@gmail.com>\n" "Language-Team: Portuguese (Brazil) <https://hosted.weblate.org/projects/" "openwrt/luciapplicationsattendedsysupgrade/pt_BR/>\n" @@ -8,13 +8,183 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n > 1;\n" -"X-Generator: Weblate 4.1-dev\n" +"X-Generator: Weblate 4.5.2-dev\n" -#: 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/root/usr/share/rpcd/acl.d/attendedsysupgrade.json:3 -msgid "attended sysupgrade via rpcd and luci" -msgstr "sysupgrade assistido via rpcd e luci" +#: 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 2388f3c48e..a8d45655fd 100644 --- a/applications/luci-app-attendedsysupgrade/po/ro/attendedsysupgrade.po +++ b/applications/luci-app-attendedsysupgrade/po/ro/attendedsysupgrade.po @@ -11,11 +11,174 @@ msgstr "" "20)) ? 1 : 2;\n" "X-Generator: Weblate 4.0-dev\n" -#: 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/root/usr/share/rpcd/acl.d/attendedsysupgrade.json:3 -msgid "attended sysupgrade via rpcd and luci" +#: 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 97b58904de..a9b021222e 100644 --- a/applications/luci-app-attendedsysupgrade/po/ru/attendedsysupgrade.po +++ b/applications/luci-app-attendedsysupgrade/po/ru/attendedsysupgrade.po @@ -1,21 +1,190 @@ msgid "" msgstr "" -"PO-Revision-Date: 2019-11-15 03:05+0000\n" -"Last-Translator: Alex Vinnick <alexv10@gmail.com>\n" +"PO-Revision-Date: 2021-04-09 12:29+0000\n" +"Last-Translator: masta0f1eave <lomskoff.dima@gmail.com>\n" "Language-Team: Russian <https://hosted.weblate.org/projects/openwrt/" "luciapplicationsattendedsysupgrade/ru/>\n" "Language: ru\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=" -"4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" -"X-Generator: Weblate 3.10-dev\n" +"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" +"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" +"X-Generator: Weblate 4.6-dev\n" -#: 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/root/usr/share/rpcd/acl.d/attendedsysupgrade.json:3 -msgid "attended sysupgrade via rpcd and luci" +#: 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 f9e2a5d2cf..53b69f170e 100644 --- a/applications/luci-app-attendedsysupgrade/po/sk/attendedsysupgrade.po +++ b/applications/luci-app-attendedsysupgrade/po/sk/attendedsysupgrade.po @@ -4,11 +4,174 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -#: 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/root/usr/share/rpcd/acl.d/attendedsysupgrade.json:3 -msgid "attended sysupgrade via rpcd and luci" +#: 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 33e4385793..adc894528f 100644 --- a/applications/luci-app-attendedsysupgrade/po/sv/attendedsysupgrade.po +++ b/applications/luci-app-attendedsysupgrade/po/sv/attendedsysupgrade.po @@ -1,14 +1,189 @@ msgid "" msgstr "" +"PO-Revision-Date: 2021-04-07 17:42+0000\n" +"Last-Translator: Kristoffer Grundström <swedishsailfishosuser@tutanota.com>\n" +"Language-Team: Swedish <https://hosted.weblate.org/projects/openwrt/" +"luciapplicationsattendedsysupgrade/sv/>\n" "Language: sv\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.6-dev\n" -#: 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/root/usr/share/rpcd/acl.d/attendedsysupgrade.json:3 -msgid "attended sysupgrade via rpcd and luci" +#: 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 c14f0951ee..1fb0dc6136 100644 --- a/applications/luci-app-attendedsysupgrade/po/templates/attendedsysupgrade.pot +++ b/applications/luci-app-attendedsysupgrade/po/templates/attendedsysupgrade.pot @@ -1,11 +1,174 @@ msgid "" msgstr "Content-Type: text/plain; charset=UTF-8" -#: 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/root/usr/share/rpcd/acl.d/attendedsysupgrade.json:3 -msgid "attended sysupgrade via rpcd and luci" +#: 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 7fae2224d6..635f101073 100644 --- a/applications/luci-app-attendedsysupgrade/po/tr/attendedsysupgrade.po +++ b/applications/luci-app-attendedsysupgrade/po/tr/attendedsysupgrade.po @@ -1,20 +1,190 @@ msgid "" msgstr "" -"PO-Revision-Date: 2019-11-13 13:07+0000\n" -"Last-Translator: Yunus BAYRAK <yunus@baygunelektronik.com>\n" +"PO-Revision-Date: 2021-05-11 11:34+0000\n" +"Last-Translator: semih <semiht@gmail.com>\n" "Language-Team: Turkish <https://hosted.weblate.org/projects/openwrt/" "luciapplicationsattendedsysupgrade/tr/>\n" "Language: tr\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 3.10-dev\n" +"X-Generator: Weblate 4.7-dev\n" -#: 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 "Güncelleme Kontrol" +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/root/usr/share/rpcd/acl.d/attendedsysupgrade.json:3 -msgid "attended sysupgrade via rpcd and luci" +#: 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 bfdec7288c..3730456cd9 100644 --- a/applications/luci-app-attendedsysupgrade/po/uk/attendedsysupgrade.po +++ b/applications/luci-app-attendedsysupgrade/po/uk/attendedsysupgrade.po @@ -1,21 +1,187 @@ msgid "" msgstr "" -"PO-Revision-Date: 2020-02-18 11:31+0000\n" -"Last-Translator: Olexandr Nesterenko <olexn@ukr.net>\n" +"PO-Revision-Date: 2021-05-14 02:32+0000\n" +"Last-Translator: Никита Сластихин <slastikhin.nikita@gmail.com>\n" "Language-Team: Ukrainian <https://hosted.weblate.org/projects/openwrt/" "luciapplicationsattendedsysupgrade/uk/>\n" "Language: uk\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=" -"4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" -"X-Generator: Weblate 3.11\n" +"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" +"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" +"X-Generator: Weblate 4.7-dev\n" -#: 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/root/usr/share/rpcd/acl.d/attendedsysupgrade.json:3 -msgid "attended sysupgrade via rpcd and luci" +#: 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 e9ac586977..e3b32aed52 100644 --- a/applications/luci-app-attendedsysupgrade/po/vi/attendedsysupgrade.po +++ b/applications/luci-app-attendedsysupgrade/po/vi/attendedsysupgrade.po @@ -4,11 +4,174 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -#: 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/root/usr/share/rpcd/acl.d/attendedsysupgrade.json:3 -msgid "attended sysupgrade via rpcd and luci" +#: 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 2eef2d2e0e..1e0b616eaa 100644 --- a/applications/luci-app-attendedsysupgrade/po/zh_Hans/attendedsysupgrade.po +++ b/applications/luci-app-attendedsysupgrade/po/zh_Hans/attendedsysupgrade.po @@ -1,20 +1,186 @@ msgid "" msgstr "" -"PO-Revision-Date: 2019-12-07 10:45+0000\n" -"Last-Translator: Zheng Qian <sotux82@gmail.com>\n" +"PO-Revision-Date: 2021-04-12 08:24+0000\n" +"Last-Translator: xiazhang <xz@xia.plus>\n" "Language-Team: Chinese (Simplified) <https://hosted.weblate.org/projects/" "openwrt/luciapplicationsattendedsysupgrade/zh_Hans/>\n" -"Language: zh-cn\n" +"Language: zh_Hans\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" -"X-Generator: Weblate 3.10-dev\n" +"X-Generator: Weblate 4.6-dev\n" -#: 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 "参与系统升级" +msgstr "参与式系统升级" -#: applications/luci-app-attendedsysupgrade/root/usr/share/rpcd/acl.d/attendedsysupgrade.json:3 -msgid "attended sysupgrade via rpcd and luci" -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 c8ab7a5bd7..da8f1075e6 100644 --- a/applications/luci-app-attendedsysupgrade/po/zh_Hant/attendedsysupgrade.po +++ b/applications/luci-app-attendedsysupgrade/po/zh_Hant/attendedsysupgrade.po @@ -1,20 +1,188 @@ msgid "" msgstr "" -"PO-Revision-Date: 2020-01-23 19:18+0000\n" -"Last-Translator: Andy Yang <a962702@yahoo.com>\n" +"PO-Revision-Date: 2021-03-15 10:03+0000\n" +"Last-Translator: ifurther <i.further.5.4@gmail.com>\n" "Language-Team: Chinese (Traditional) <https://hosted.weblate.org/projects/" "openwrt/luciapplicationsattendedsysupgrade/zh_Hant/>\n" -"Language: zh-tw\n" +"Language: zh_Hant\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" -"X-Generator: Weblate 3.11-dev\n" +"X-Generator: Weblate 4.5.2-dev\n" -#: 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/root/usr/share/rpcd/acl.d/attendedsysupgrade.json:3 -msgid "attended sysupgrade via rpcd and luci" -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 48ae4cc54d..0000000000 --- a/applications/luci-app-attendedsysupgrade/root/etc/uci-defaults/40_luci-attendedsysupgrade +++ /dev/null @@ -1,6 +0,0 @@ -#!/bin/sh - -/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 index 79d82a828f..33d7019fa3 100644 --- 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 @@ -1,13 +1,31 @@ { - "admin/system/attended_sysupgrade": { + "admin/system/attendedsysupgrade": { "title": "Attended Sysupgrade", - "order": 1, + "order": 60, "action": { - "type": "template", - "path": "attendedsysupgrade" + "type": "firstchild" }, "depends": { - "acl": [ "attendedsysupgrade" ] + "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..e3ceeaa35d --- /dev/null +++ b/applications/luci-app-attendedsysupgrade/root/usr/share/rpcd/acl.d/luci-app-attendedsysupgrade.json @@ -0,0 +1,17 @@ +{ + "luci-app-attendedsysupgrade": { + "description": "Grant UCI access to LuCI app attendedsysupgrade", + "read": { + "uci": ["attendedsysupgrade"], + "ubus": { + "rpc-sys": ["upgrade_start", "packagelist"] + } + }, + "write": { + "uci": ["attendedsysupgrade"], + "ubus": { + "rpc-sys": ["upgrade_start"] + } + } + } +} 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 b75e90d9a7..0000000000 --- a/applications/luci-app-attendedsysupgrade/root/www/luci-static/resources/attendedsysupgrade.js +++ /dev/null @@ -1,384 +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"); -} - -// 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", "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.<option> - ubus_call("uci", "get", option, option["option"]) -} - -ubus_counter = 0; -ubus_closed = 0; - -function ubus_call(command, argument, params, variable) { - var request_data = {}; - request_data.jsonrpc = "2.0"; - request_data.id = ubus_counter; - request_data.method = "call"; - request_data.params = [data.ubus_rpc_session, command, argument, params] - var request_json = JSON.stringify(request_data) - ubus_counter++; - var request = new XMLHttpRequest(); - request.open("POST", ubus_url, true); - request.setRequestHeader("Content-type", "application/json"); - request.onload = function(event) { - if (request.status === 200) { - var response = JSON.parse(request.responseText) - if (!("error" in response) && "result" in response) { - if (response.result.length === 2) { - if (command === "uci") { - data[variable] = response.result[1].value - } else { - data[variable] = response.result[1][variable] - } - } - } else { - set_status("danger", "<b>Ubus call failed:</b><br />Request: " + request_json + "<br />Response: " + JSON.stringify(response)) - } - ubus_closed++; - } - } - request.send(request_json); -} - -function set_status(type, message, loading, show_log) { - $("#status_box").className = "alert-message " + type; - var loading_image = ''; - if (loading) { - loading_image = '<img src="/luci-static/resources/icons/loading.gif" alt="Loading" style="vertical-align:middle"> '; - } - if (data.buildlog_url && show_log) { - message += ' <p><a target="_blank" href="' + data.buildlog_url + '">Build log</a></p>' - } - $("#status_box").innerHTML = loading_image + message; - show("#status_box") -} - -function upgrade_check() { - var current_version = data.release.version.toLowerCase(); - var current_branch = current_version.split('.').slice(0, 2).join('.') - var candidates = [] - hide("#status_box"); - hide("#server_div"); - set_status("info", "Searching for upgrades", true); - fetch(data.url + "/api/versions") - .then(response => response.json()) - .then(response => { - var branches = response["branches"] - for (i in branches) { - // handle snapshots in a special way - as always - if (current_version == "snapshot" && branches[i]["latest"] == "snapshot") { - candidates.unshift(branches[i]) - break - } - - if (current_version == branches[i]["latest"]) { - break - } - if (current_branch != branches[i]["name"]) { - branches[i]["warn_branch_jump"] = true - } - candidates.unshift(branches[i]) - if (current_branch == branches[i]["name"]) { - // don't offer branches older than the current - break - } - } - - if (candidates.length > 0) { - var info_output = "<h3>New release <b>" + candidates[0].latest + "</b> available</h3>" - info_output += "Installed version: " + data.release.version - - // tell server the currently installed version - request_dict.current_version = request_dict.version; - // tell server what version to install - request_dict.version = candidates[0].latest; - // tell server to diff the requested packages with the default packages - // this allows to not automatically re-install default packages which - // where dropped in later releases - request_dict.diff_packages = true; - - set_status("success", info_output) - - if (data.advanced_mode == 1) { - show("#edit_button"); - } - var upgrade_button = $("#upgrade_button") - upgrade_button.value = "Request firmware"; - upgrade_button.style.display = "block"; - upgrade_button.disabled = false; - upgrade_button.onclick = upgrade_request; - - } else { - set_status("success", "No upgrades available") - - } - }); - -} - -function upgrade_request() { - // Request firmware using the following parameters - // distro, version, target, board_name, packages - $("#upgrade_button").disabled = true; - hide("#edit_packages"); - hide("#edit_button"); - hide("#keep_container"); - - // add board info to let server determine profile - request_dict.target = data.release.target - request_dict.profile = data.board_name - - if (data.edit_packages == true) { - request_dict.packages = $("#edit_packages").value.split("\n") - } else { - request_dict.packages = Object.keys(data.packages); - } - server_request() -} - -function upgrade_request_callback(response) { - var sysupgrade_file = ""; - console.log(response) - for (i in response.images) { - if (response.images[i].type == "sysupgrade") { - sysupgrade_file = response.images[i].name; - } - } - if (sysupgrade_file != "") { - data.sysupgrade_url = data.url + '/store/' + response.bin_dir + '/' + sysupgrade_file - var info_output = '<h3>Firmware created</h3><p>Created file: <a href="' + data.sysupgrade_url + '">' + sysupgrade_file + '</p></a>' - set_status("success", info_output, false, true); - - show("#keep_container"); - var upgrade_button = $("#upgrade_button") - upgrade_button.disabled = false; - upgrade_button.style.display = "block"; - upgrade_button.value = "Flash firmware"; - upgrade_button.onclick = download_image; - } else { - set_status("danger", "Firmware build successfull but device not sysupgrade compatible!") - } -} - -function flash_image() { - // Flash image via rpc-sys upgrade_start - set_status("warning", "Flashing firmware. Don't unpower device", true) - ubus_call("rpc-sys", "upgrade_start", { - "keep": $("#keep").checked - }, 'message'); - ping_max = 3600; // in seconds - setTimeout(ping_ubus, 10000) -} - -function ping_ubus() { - // Tries to connect to ubus. If the connection fails the device is likely still rebooting. - // If more time than ping_max passes update may failed - if (ping_max > 0) { - ping_max--; - var request = new XMLHttpRequest(); - request.open("GET", ubus_url, true); - request.addEventListener('error', function(event) { - set_status("warning", "Rebooting device - please wait!", true); - setTimeout(ping_ubus, 5000) - }); - request.addEventListener('load', function(event) { - set_status("success", "Success! Please reload web interface"); - $("#upgrade_button").value = "Reload page"; - show("#upgrade_button"); - $("#upgrade_button").disabled = false; - $("#upgrade_button").onclick = function() { - location.reload(); - } - }); - request.send(); - } else { - set_status("danger", "Web interface could not reconnect to your device. Please reload web interface or check device manually") - } -} - -function upload_image(blob) { - // Uploads received blob data to the server using cgi-io - set_status("info", "Uploading firmware to device", true); - var request = new XMLHttpRequest(); - var form_data = new FormData(); - - form_data.append("sessionid", data.ubus_rpc_session) - form_data.append("filename", "/tmp/firmware.bin") - form_data.append("filemode", 755) // insecure? - form_data.append("filedata", blob) - - request.addEventListener('load', function(event) { - request_json = JSON.parse(request.responseText) - flash_image(); - }); - - request.addEventListener('error', function(event) { - set_status("danger", "Upload of firmware failed, please retry by reloading web interface") - }); - - request.open('POST', origin + '/cgi-bin/cgi-upload'); - request.send(form_data); -} - - -function download_image() { - // Download image from server once the url was received by upgrade_request - hide("#keep_container"); - hide("#upgrade_button"); - var download_request = new XMLHttpRequest(); - download_request.open("GET", data.sysupgrade_url); - download_request.responseType = "arraybuffer"; - - download_request.onload = function() { - if (this.status === 200) { - var blob = new Blob([download_request.response], { - type: "application/octet-stream" - }); - upload_image(blob) - } - }; - set_status("info", "Downloading firmware to web browser memory", true); - download_request.send(); -} - -function server_request() { - fetch(data.url + "/api/build", { - method: 'POST', - headers: { - 'Content-Type': 'application/json' - }, - body: JSON.stringify(request_dict) - }) - .then(response => { - switch (response.status) { - case 200: - response.json() - .then(response => { - upgrade_request_callback(response) - }); - break; - case 202: - set_status("info", "Processing request", true); - setTimeout(function() { - server_request() - }, 5000) - break; - case 400: // bad request - case 422: // bad package - case 500: // build failed - console.log('error (' + response.status + ')'); - response.json() - .then(response => { - if (response.buildlog) { - data.buildlog_url = data.url + '/' + response.bin_dir + '/buildlog.txt'; - } - set_status("danger", response.message); - }); - break; - } - }); -} - -request_dict = {} -document.onload = setup() |