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