mirror of
https://github.com/Telecominfraproject/wlan-ap.git
synced 2025-11-02 11:27:48 +00:00
ucentral: development update
* more updates to the maverick webui Signed-off-by: John Crispin <john@phrozen.org>
This commit is contained in:
@@ -0,0 +1,102 @@
|
|||||||
|
'use strict';
|
||||||
|
'require fs';
|
||||||
|
'require ui';
|
||||||
|
'require dom';
|
||||||
|
'require rpc';
|
||||||
|
'require session';
|
||||||
|
'require baseclass';
|
||||||
|
|
||||||
|
var callReboot = rpc.declare({
|
||||||
|
object: 'system',
|
||||||
|
method: 'reboot',
|
||||||
|
expect: { result: 0 }
|
||||||
|
});
|
||||||
|
|
||||||
|
callReboot = function() {
|
||||||
|
return Promise.resolve(0);
|
||||||
|
}
|
||||||
|
|
||||||
|
function handleReboot(ev) {
|
||||||
|
return callReboot().then(function(res) {
|
||||||
|
if (res != 0) {
|
||||||
|
showError(_('The reboot command failed with code %d').format(res));
|
||||||
|
L.raise('Error', 'Reboot failed');
|
||||||
|
}
|
||||||
|
|
||||||
|
showProgress(_('The system is rebooting in order to attempt applying the remote configuration profile now. If not successful, the device will revert back into the initial provisioning state.'));
|
||||||
|
|
||||||
|
ui.awaitReconnect();
|
||||||
|
}).catch(function(e) { showError(e.message) });
|
||||||
|
}
|
||||||
|
|
||||||
|
function setDirty(isDirty) {
|
||||||
|
if (isDirty) {
|
||||||
|
session.setLocalData('ucentral-dirty', true);
|
||||||
|
ui.showIndicator('ucentral-dirty', _('Reboot required'), showApplySettings);
|
||||||
|
}
|
||||||
|
else {
|
||||||
|
session.setLocalData('ucentral-dirty', null);
|
||||||
|
ui.hideIndicator('ucentral-dirty');
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
function handleContinue(ev) {
|
||||||
|
setDirty(true);
|
||||||
|
ui.hideModal();
|
||||||
|
}
|
||||||
|
|
||||||
|
function showApplySettings() {
|
||||||
|
ui.showModal(_('Apply Settings'), [
|
||||||
|
E('p', _('The device must be rebooted in order to apply the changed settings. Once the uCentral agent successfully connects to the controller, the remote configuration profile will be applied and the initial provisioning web interface is disabled.')),
|
||||||
|
E('div', { 'class': 'right' }, [
|
||||||
|
E('button', { 'click': handleReboot, 'class': 'btn primary' }, [ _('Apply settings and reboot device now') ]),
|
||||||
|
'\xa0',
|
||||||
|
E('button', { 'click': handleContinue, 'class': 'btn' }, [ _('Continue configuration') ])
|
||||||
|
])
|
||||||
|
]);
|
||||||
|
}
|
||||||
|
|
||||||
|
function showProgress(text, timeout) {
|
||||||
|
var dlg = ui.showModal(null, [
|
||||||
|
E('p', { 'class': (timeout > 0) ? null : 'spinning' }, text)
|
||||||
|
]);
|
||||||
|
|
||||||
|
dlg.removeChild(dlg.firstElementChild);
|
||||||
|
|
||||||
|
if (timeout > 0)
|
||||||
|
window.setTimeout(ui.hideModal, timeout);
|
||||||
|
|
||||||
|
return dlg;
|
||||||
|
}
|
||||||
|
|
||||||
|
function showError(text) {
|
||||||
|
ui.showModal(_('Error'), [
|
||||||
|
E('p', [ text ]),
|
||||||
|
E('div', { 'class': 'right' }, [
|
||||||
|
E('button', { 'class': 'btn', 'click': ui.hideModal }, _('OK'))
|
||||||
|
])
|
||||||
|
]);
|
||||||
|
}
|
||||||
|
|
||||||
|
if (session.getLocalData('ucentral-dirty'))
|
||||||
|
setDirty(true);
|
||||||
|
|
||||||
|
return baseclass.extend({
|
||||||
|
save: function(serializeFn, ev) {
|
||||||
|
var m = dom.findClassInstance(document.querySelector('.cbi-map'));
|
||||||
|
|
||||||
|
return m.save().then(function() {
|
||||||
|
return fs.write('/etc/ucentral/profile.json', serializeFn(m.data.data));
|
||||||
|
}).then(function() {
|
||||||
|
return fs.exec('/sbin/profileupdate');
|
||||||
|
}).then(function() {
|
||||||
|
showApplySettings();
|
||||||
|
}).catch(function(err) {
|
||||||
|
showError(_('Unable to save settings: %s').format(err));
|
||||||
|
});
|
||||||
|
},
|
||||||
|
|
||||||
|
setDirty: setDirty,
|
||||||
|
showError: showError,
|
||||||
|
showProgress: showProgress,
|
||||||
|
});
|
||||||
@@ -1,9 +1,9 @@
|
|||||||
'use strict';
|
'use strict';
|
||||||
'require view';
|
'require view';
|
||||||
'require form';
|
'require form';
|
||||||
'require dom';
|
|
||||||
'require fs';
|
'require fs';
|
||||||
'require ui';
|
'require ui';
|
||||||
|
'require tools.ucentral as uctool';
|
||||||
|
|
||||||
var profile = null;
|
var profile = null;
|
||||||
|
|
||||||
@@ -17,29 +17,6 @@ function serialize(data) {
|
|||||||
return JSON.stringify(profile, null, '\t');
|
return JSON.stringify(profile, null, '\t');
|
||||||
}
|
}
|
||||||
|
|
||||||
function showNotification(text, style, timeout) {
|
|
||||||
var node = ui.addNotification(null, E('p', text), style);
|
|
||||||
|
|
||||||
if (timeout) {
|
|
||||||
var btn = node.querySelector('input, button');
|
|
||||||
btn.parentNode.removeChild(btn);
|
|
||||||
window.setTimeout(function() { node.parentNode.removeChild(node) }, timeout);
|
|
||||||
}
|
|
||||||
|
|
||||||
return node;
|
|
||||||
}
|
|
||||||
|
|
||||||
function showProgress(text, ongoing) {
|
|
||||||
var dlg = ui.showModal(null, [
|
|
||||||
E('p', { 'class': ongoing ? 'spinning' : null }, [ text ])
|
|
||||||
]);
|
|
||||||
|
|
||||||
dlg.removeChild(dlg.firstElementChild);
|
|
||||||
|
|
||||||
if (!ongoing)
|
|
||||||
window.setTimeout(ui.hideModal, 750);
|
|
||||||
}
|
|
||||||
|
|
||||||
return view.extend({
|
return view.extend({
|
||||||
load: function() {
|
load: function() {
|
||||||
return L.resolveDefault(fs.read('/etc/ucentral/profile.json'), '').then(function(data) {
|
return L.resolveDefault(fs.read('/etc/ucentral/profile.json'), '').then(function(data) {
|
||||||
@@ -67,35 +44,26 @@ return view.extend({
|
|||||||
o.inputtitle = _('Upload certificate bundle…');
|
o.inputtitle = _('Upload certificate bundle…');
|
||||||
o.onclick = function(ev) {
|
o.onclick = function(ev) {
|
||||||
return ui.uploadFile('/tmp/certs.tar').then(function(res) {
|
return ui.uploadFile('/tmp/certs.tar').then(function(res) {
|
||||||
showProgress(_('Verifying certificates…'), true);
|
uctool.showProgress(_('Verifying certificates…'));
|
||||||
|
|
||||||
return fs.exec('/sbin/certupdate').then(function(res) {
|
return fs.exec('/sbin/certupdate').then(function(res) {
|
||||||
if (res.code)
|
if (res.code) {
|
||||||
showNotification(_('Certificate validation failed: %s').format(res.stderr || res.stdout), 'error');
|
uctool.showError(_('Certificate validation failed: %s').format(res.stderr || res.stdout));
|
||||||
else
|
}
|
||||||
showNotification(_('Certificates updated.'), null, 3000);
|
else {
|
||||||
}).catch(function(err) {
|
uctool.showProgress(_('Certificates updated.'), 1500);
|
||||||
showNotification(_('Unable to update certificates: %s').format(err), 'error');
|
uctool.setDirty(true);
|
||||||
|
}
|
||||||
|
}, function(err) {
|
||||||
|
uctool.showError(_('Unable to verify certificates: %s').format(err));
|
||||||
});
|
});
|
||||||
}).finally(ui.hideModal);
|
});
|
||||||
};
|
};
|
||||||
|
|
||||||
return m.render();
|
return m.render();
|
||||||
},
|
},
|
||||||
|
|
||||||
handleSave: function(ev) {
|
handleSave: uctool.save.bind(uctool, serialize),
|
||||||
var m = dom.findClassInstance(document.querySelector('.cbi-map'));
|
|
||||||
|
|
||||||
return m.save().then(function() {
|
|
||||||
return fs.write('/etc/ucentral/profile.json', serialize(m.data.data));
|
|
||||||
}).then(function() {
|
|
||||||
return fs.exec('/sbin/profileupdate');
|
|
||||||
}).then(function() {
|
|
||||||
showNotification(_('Connection settings have been saved'), null, 3000);
|
|
||||||
}).catch(function(err) {
|
|
||||||
showNotification(_('Unable to save connection settings: %s').format(err), 'error');
|
|
||||||
});
|
|
||||||
},
|
|
||||||
|
|
||||||
handleSaveApply: null,
|
handleSaveApply: null,
|
||||||
handleReset: null
|
handleReset: null
|
||||||
|
|||||||
@@ -1,6 +1,7 @@
|
|||||||
'use strict';
|
'use strict';
|
||||||
'require rpc';
|
'require rpc';
|
||||||
'require view';
|
'require view';
|
||||||
|
'require tools.ucentral as uctool';
|
||||||
|
|
||||||
var callSystemBoard = rpc.declare({
|
var callSystemBoard = rpc.declare({
|
||||||
object: 'system',
|
object: 'system',
|
||||||
|
|||||||
@@ -5,6 +5,7 @@
|
|||||||
'require rpc';
|
'require rpc';
|
||||||
'require fs';
|
'require fs';
|
||||||
'require ui';
|
'require ui';
|
||||||
|
'require tools.ucentral as uctool';
|
||||||
|
|
||||||
var callSystemValidateFirmwareImage = rpc.declare({
|
var callSystemValidateFirmwareImage = rpc.declare({
|
||||||
object: 'system',
|
object: 'system',
|
||||||
@@ -36,9 +37,7 @@ return view.extend({
|
|||||||
if (!confirm(_('Do you really want to erase all settings?')))
|
if (!confirm(_('Do you really want to erase all settings?')))
|
||||||
return;
|
return;
|
||||||
|
|
||||||
ui.showModal(_('Erasing...'), [
|
uctool.showProgress(_('The system is erasing the configuration partition now and will reboot itself when finished.'));
|
||||||
E('p', { 'class': 'spinning' }, _('The system is erasing the configuration partition now and will reboot itself when finished.'))
|
|
||||||
]);
|
|
||||||
|
|
||||||
/* Currently the sysupgrade rpc call will not return, hence no promise handling */
|
/* Currently the sysupgrade rpc call will not return, hence no promise handling */
|
||||||
fs.exec('/sbin/firstboot', [ '-r', '-y' ]);
|
fs.exec('/sbin/firstboot', [ '-r', '-y' ]);
|
||||||
@@ -50,10 +49,7 @@ return view.extend({
|
|||||||
return ui.uploadFile('/tmp/firmware.bin', ev.target.firstChild)
|
return ui.uploadFile('/tmp/firmware.bin', ev.target.firstChild)
|
||||||
.then(L.bind(function(btn, reply) {
|
.then(L.bind(function(btn, reply) {
|
||||||
btn.firstChild.data = _('Checking image…');
|
btn.firstChild.data = _('Checking image…');
|
||||||
|
uctool.showProgress(_('Verifying the uploaded image file.'));
|
||||||
ui.showModal(_('Checking image…'), [
|
|
||||||
E('span', { 'class': 'spinning' }, _('Verifying the uploaded image file.'))
|
|
||||||
]);
|
|
||||||
|
|
||||||
return callSystemValidateFirmwareImage('/tmp/firmware.bin')
|
return callSystemValidateFirmwareImage('/tmp/firmware.bin')
|
||||||
.then(function(res) { return [ reply, res ]; });
|
.then(function(res) { return [ reply, res ]; });
|
||||||
@@ -98,7 +94,7 @@ return view.extend({
|
|||||||
|
|
||||||
ui.showModal(is_valid ? _('Flash image?') : _('Invalid image'), body);
|
ui.showModal(is_valid ? _('Flash image?') : _('Invalid image'), body);
|
||||||
}, this, ev.target))
|
}, this, ev.target))
|
||||||
.catch(function(e) { ui.addNotification(null, E('p', e.message)) })
|
.catch(function(e) { uctool.showError(e.message) })
|
||||||
.finally(L.bind(function(btn) {
|
.finally(L.bind(function(btn) {
|
||||||
btn.firstChild.data = _('Flash image…');
|
btn.firstChild.data = _('Flash image…');
|
||||||
}, this, ev.target));
|
}, this, ev.target));
|
||||||
@@ -107,9 +103,7 @@ return view.extend({
|
|||||||
handleSysupgradeConfirm: function(btn, ev) {
|
handleSysupgradeConfirm: function(btn, ev) {
|
||||||
btn.firstChild.data = _('Flashing…');
|
btn.firstChild.data = _('Flashing…');
|
||||||
|
|
||||||
ui.showModal(_('Flashing…'), [
|
uctool.showProgress(_('The system is flashing now.<br /> DO NOT POWER OFF THE DEVICE!<br /> Wait a few minutes before you try to reconnect. It might be necessary to renew the address of your computer to reach the device again, depending on your settings.'));
|
||||||
E('p', { 'class': 'spinning' }, _('The system is flashing now.<br /> DO NOT POWER OFF THE DEVICE!<br /> Wait a few minutes before you try to reconnect. It might be necessary to renew the address of your computer to reach the device again, depending on your settings.'))
|
|
||||||
]);
|
|
||||||
|
|
||||||
/* Currently the sysupgrade rpc call will not return, hence no promise handling */
|
/* Currently the sysupgrade rpc call will not return, hence no promise handling */
|
||||||
fs.exec('/sbin/sysupgrade', [ '-n', '/tmp/firmware.bin' ]);
|
fs.exec('/sbin/sysupgrade', [ '-n', '/tmp/firmware.bin' ]);
|
||||||
@@ -120,17 +114,15 @@ return view.extend({
|
|||||||
handleReboot: function(ev) {
|
handleReboot: function(ev) {
|
||||||
return callReboot().then(function(res) {
|
return callReboot().then(function(res) {
|
||||||
if (res != 0) {
|
if (res != 0) {
|
||||||
L.ui.addNotification(null, E('p', _('The reboot command failed with code %d').format(res)));
|
uctool.showError(_('The reboot command failed with code %d').format(res));
|
||||||
L.raise('Error', 'Reboot failed');
|
L.raise('Error', 'Reboot failed');
|
||||||
}
|
}
|
||||||
|
|
||||||
L.ui.showModal(_('Rebooting…'), [
|
uctool.showProgress(_('The device is rebooting now. This page will try to reconnect automatically once the device is fully booted.'));
|
||||||
E('p', { 'class': 'spinning' }, _('The device is rebooting now. This page will try to reconnect automatically once the device is fully booted.'))
|
|
||||||
]);
|
|
||||||
|
|
||||||
L.ui.awaitReconnect();
|
ui.awaitReconnect();
|
||||||
})
|
})
|
||||||
.catch(function(e) { L.ui.addNotification(null, E('p', e.message)) });
|
.catch(function(e) { uctool.showError(e.message) });
|
||||||
},
|
},
|
||||||
|
|
||||||
render: function(rpc_replies) {
|
render: function(rpc_replies) {
|
||||||
|
|||||||
@@ -1,9 +1,8 @@
|
|||||||
'use strict';
|
'use strict';
|
||||||
'require view';
|
'require view';
|
||||||
'require form';
|
'require form';
|
||||||
'require dom';
|
|
||||||
'require fs';
|
'require fs';
|
||||||
'require ui';
|
'require tools.ucentral as uctool';
|
||||||
|
|
||||||
var profile = null;
|
var profile = null;
|
||||||
|
|
||||||
@@ -18,18 +17,6 @@ function serialize(data) {
|
|||||||
}, '\t');
|
}, '\t');
|
||||||
}
|
}
|
||||||
|
|
||||||
function showNotification(text, style, timeout) {
|
|
||||||
var node = ui.addNotification(null, E('p', text), style);
|
|
||||||
|
|
||||||
if (timeout) {
|
|
||||||
var btn = node.querySelector('input, button');
|
|
||||||
btn.parentNode.removeChild(btn);
|
|
||||||
window.setTimeout(function() { node.parentNode.removeChild(node) }, timeout);
|
|
||||||
}
|
|
||||||
|
|
||||||
return node;
|
|
||||||
}
|
|
||||||
|
|
||||||
return view.extend({
|
return view.extend({
|
||||||
load: function() {
|
load: function() {
|
||||||
return L.resolveDefault(fs.read('/etc/ucentral/profile.json'), '').then(function(data) {
|
return L.resolveDefault(fs.read('/etc/ucentral/profile.json'), '').then(function(data) {
|
||||||
@@ -57,6 +44,12 @@ return view.extend({
|
|||||||
o.value('pppoe', _('Address configuration via PPPoE'));
|
o.value('pppoe', _('Address configuration via PPPoE'));
|
||||||
o.value('wwan', _('Cellular network connection'));
|
o.value('wwan', _('Cellular network connection'));
|
||||||
|
|
||||||
|
o = s.option(form.ListValue, 'modem-type', _('Modem type'));
|
||||||
|
o.depends('protocol', 'wwan');
|
||||||
|
o.value('wwan', _('Automatic', 'Automatic modem type selection'));
|
||||||
|
o.value('mbim', 'MBIM');
|
||||||
|
o.value('qmi', 'QMI');
|
||||||
|
|
||||||
o = s.option(form.Value, 'access-point-name', _('APN', 'Cellular access point name'));
|
o = s.option(form.Value, 'access-point-name', _('APN', 'Cellular access point name'));
|
||||||
o.depends('protocol', 'wwan');
|
o.depends('protocol', 'wwan');
|
||||||
o.validate = function(section_id, value) {
|
o.validate = function(section_id, value) {
|
||||||
@@ -70,12 +63,6 @@ return view.extend({
|
|||||||
o.depends('protocol', 'wwan');
|
o.depends('protocol', 'wwan');
|
||||||
o.datatype = 'and(uinteger,minlength(4),maxlength(8))';
|
o.datatype = 'and(uinteger,minlength(4),maxlength(8))';
|
||||||
|
|
||||||
o = s.option(form.ListValue, 'modem-type', _('Modem Type'));
|
|
||||||
o.depends('protocol', 'wwan');
|
|
||||||
o.value('wwan', _('Automatic'));
|
|
||||||
o.value('mbim', 'MBIM');
|
|
||||||
o.value('qmi', 'QMI');
|
|
||||||
|
|
||||||
o = s.option(form.ListValue, 'authentication-type', _('Authentication'));
|
o = s.option(form.ListValue, 'authentication-type', _('Authentication'));
|
||||||
o.depends('protocol', 'wwan');
|
o.depends('protocol', 'wwan');
|
||||||
o.value('', _('No authentication'));
|
o.value('', _('No authentication'));
|
||||||
@@ -124,19 +111,7 @@ return view.extend({
|
|||||||
return m.render();
|
return m.render();
|
||||||
},
|
},
|
||||||
|
|
||||||
handleSave: function(ev) {
|
handleSave: uctool.save.bind(uctool, serialize),
|
||||||
var m = dom.findClassInstance(document.querySelector('.cbi-map'));
|
|
||||||
|
|
||||||
return m.save().then(function() {
|
|
||||||
return fs.write('/etc/ucentral/profile.json', serialize(m.data.data));
|
|
||||||
}).then(function() {
|
|
||||||
return fs.exec('/sbin/profileupdate');
|
|
||||||
}).then(function() {
|
|
||||||
showNotification(_('Connection settings have been saved'), null, 'error');
|
|
||||||
}).catch(function(err) {
|
|
||||||
showNotification(_('Unable to save connection settings: %s').format(err), 'error');
|
|
||||||
});
|
|
||||||
},
|
|
||||||
|
|
||||||
handleSaveApply: null,
|
handleSaveApply: null,
|
||||||
handleReset: null
|
handleReset: null
|
||||||
|
|||||||
@@ -10,111 +10,121 @@ msgstr ""
|
|||||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||||
"POT-Creation-Date: \n"
|
"POT-Creation-Date: \n"
|
||||||
"PO-Revision-Date: \n"
|
"PO-Revision-Date: \n"
|
||||||
"X-Generator: Poedit 2.2.1\n"
|
"X-Generator: Poedit 2.4.2\n"
|
||||||
|
|
||||||
#: modules/luci-mod-ucentral/htdocs/luci-static/resources/view/ucentral/uplink.js:59
|
#: modules/luci-mod-ucentral/htdocs/luci-static/resources/view/ucentral/uplink.js:53
|
||||||
msgctxt "Cellular access point name"
|
msgctxt "Cellular access point name"
|
||||||
msgid "APN"
|
msgid "APN"
|
||||||
msgstr "APN"
|
msgstr "APN"
|
||||||
|
|
||||||
#: modules/luci-mod-ucentral/htdocs/luci-static/resources/view/ucentral/uplink.js:92
|
#: modules/luci-mod-ucentral/htdocs/luci-static/resources/view/ucentral/uplink.js:86
|
||||||
#: modules/luci-mod-ucentral/htdocs/luci-static/resources/view/ucentral/uplink.js:102
|
#: modules/luci-mod-ucentral/htdocs/luci-static/resources/view/ucentral/uplink.js:96
|
||||||
msgid "Address and mask in CIDR notation."
|
msgid "Address and mask in CIDR notation."
|
||||||
msgstr "Adresse und Netzmaske in CIDR-Notation."
|
msgstr "Adresse und Netzmaske in CIDR-Notation."
|
||||||
|
|
||||||
#: modules/luci-mod-ucentral/htdocs/luci-static/resources/view/ucentral/uplink.js:55
|
#: modules/luci-mod-ucentral/htdocs/luci-static/resources/view/ucentral/uplink.js:43
|
||||||
msgid "Address configuration via DHCP"
|
msgid "Address configuration via DHCP"
|
||||||
msgstr "Adresskonfiguration mittels DHCP"
|
msgstr "Adresskonfiguration mittels DHCP"
|
||||||
|
|
||||||
#: modules/luci-mod-ucentral/htdocs/luci-static/resources/view/ucentral/uplink.js:56
|
#: modules/luci-mod-ucentral/htdocs/luci-static/resources/view/ucentral/uplink.js:44
|
||||||
msgid "Address configuration via PPPoE"
|
msgid "Address configuration via PPPoE"
|
||||||
msgstr "Adresskonfiguration mittels PPPoE"
|
msgstr "Adresskonfiguration mittels PPPoE"
|
||||||
|
|
||||||
#: modules/luci-mod-ucentral/htdocs/luci-static/resources/view/ucentral/status.js:3
|
#: modules/luci-mod-ucentral/htdocs/luci-static/resources/tools/ucentral.js:49
|
||||||
|
msgid "Apply Settings"
|
||||||
|
msgstr "Einstellungen anwenden"
|
||||||
|
|
||||||
|
#: modules/luci-mod-ucentral/htdocs/luci-static/resources/tools/ucentral.js:52
|
||||||
|
msgid "Apply settings and reboot device now"
|
||||||
|
msgstr "Anwenden und Gerät jetzt neu starten"
|
||||||
|
|
||||||
|
#: modules/luci-mod-ucentral/htdocs/luci-static/resources/view/ucentral/status.js:60
|
||||||
msgid "Architecture"
|
msgid "Architecture"
|
||||||
msgstr "Architektur"
|
msgstr "Architektur"
|
||||||
|
|
||||||
#: modules/luci-mod-ucentral/htdocs/luci-static/resources/view/ucentral/uplink.js:72
|
#: modules/luci-mod-ucentral/htdocs/luci-static/resources/view/ucentral/uplink.js:66
|
||||||
msgid "Authentication"
|
msgid "Authentication"
|
||||||
msgstr "Authentifizierung"
|
msgstr "Authentifizierung"
|
||||||
|
|
||||||
#: modules/luci-mod-ucentral/htdocs/luci-static/resources/view/ucentral/status.js:4
|
#: modules/luci-mod-ucentral/htdocs/luci-static/resources/view/ucentral/uplink.js:49
|
||||||
|
msgctxt "Automatic modem type selection"
|
||||||
|
msgid "Automatic"
|
||||||
|
msgstr "automatisch"
|
||||||
|
|
||||||
|
#: modules/luci-mod-ucentral/htdocs/luci-static/resources/view/ucentral/status.js:85
|
||||||
msgid "Buffered"
|
msgid "Buffered"
|
||||||
msgstr "Gepuffert"
|
msgstr "Gepuffert"
|
||||||
|
|
||||||
#: modules/luci-mod-ucentral/htdocs/luci-static/resources/view/ucentral/status.js:5
|
#: modules/luci-mod-ucentral/htdocs/luci-static/resources/view/ucentral/status.js:89
|
||||||
msgid "Cached"
|
msgid "Cached"
|
||||||
msgstr "Gecached"
|
msgstr "Gecached"
|
||||||
|
|
||||||
#: modules/luci-mod-ucentral/htdocs/luci-static/resources/view/ucentral/system.js:98
|
#: modules/luci-mod-ucentral/htdocs/luci-static/resources/view/ucentral/system.js:92
|
||||||
msgid "Cancel"
|
msgid "Cancel"
|
||||||
msgstr "Abbrechen"
|
msgstr "Abbrechen"
|
||||||
|
|
||||||
#: modules/luci-mod-ucentral/htdocs/luci-static/resources/view/ucentral/uplink.js:57
|
#: modules/luci-mod-ucentral/htdocs/luci-static/resources/view/ucentral/uplink.js:45
|
||||||
msgid "Cellular network connection"
|
msgid "Cellular network connection"
|
||||||
msgstr "Mobilfunkverbindung"
|
msgstr "Mobilfunkverbindung"
|
||||||
|
|
||||||
#: modules/luci-mod-ucentral/htdocs/luci-static/resources/view/ucentral/settings.js:73
|
#: modules/luci-mod-ucentral/htdocs/luci-static/resources/view/ucentral/settings.js:51
|
||||||
msgid "Certificate validation failed: %s"
|
msgid "Certificate validation failed: %s"
|
||||||
msgstr "Validierung der Zertifikate fehlgeschlagen: %s"
|
msgstr "Validierung der Zertifikate fehlgeschlagen: %s"
|
||||||
|
|
||||||
#: modules/luci-mod-ucentral/htdocs/luci-static/resources/view/ucentral/settings.js:65
|
#: modules/luci-mod-ucentral/htdocs/luci-static/resources/view/ucentral/settings.js:43
|
||||||
msgid "Certificates"
|
msgid "Certificates"
|
||||||
msgstr "Zertifikate"
|
msgstr "Zertifikate"
|
||||||
|
|
||||||
#: modules/luci-mod-ucentral/htdocs/luci-static/resources/view/ucentral/settings.js:75
|
#: modules/luci-mod-ucentral/htdocs/luci-static/resources/view/ucentral/settings.js:54
|
||||||
msgid "Certificates updated."
|
msgid "Certificates updated."
|
||||||
msgstr "Zertifikate aktualisiert."
|
msgstr "Zertifikate aktualisiert."
|
||||||
|
|
||||||
#: modules/luci-mod-ucentral/htdocs/luci-static/resources/view/ucentral/system.js:54
|
#: modules/luci-mod-ucentral/htdocs/luci-static/resources/view/ucentral/system.js:51
|
||||||
#: modules/luci-mod-ucentral/htdocs/luci-static/resources/view/ucentral/system.js:56
|
|
||||||
msgid "Checking image…"
|
msgid "Checking image…"
|
||||||
msgstr "Prüfe Imagedatei…"
|
msgstr "Prüfe Imagedatei…"
|
||||||
|
|
||||||
#: modules/luci-mod-ucentral/htdocs/luci-static/resources/view/ucentral/uplink.js:52
|
#: modules/luci-mod-ucentral/htdocs/luci-static/resources/view/ucentral/uplink.js:40
|
||||||
msgid "Connection"
|
msgid "Connection"
|
||||||
msgstr "Verbindung"
|
msgstr "Verbindung"
|
||||||
|
|
||||||
#: modules/luci-mod-ucentral/htdocs/luci-static/resources/view/ucentral/settings.js:93
|
#: modules/luci-mod-ucentral/htdocs/luci-static/resources/view/ucentral/system.js:84
|
||||||
#: modules/luci-mod-ucentral/htdocs/luci-static/resources/view/ucentral/uplink.js:128
|
|
||||||
msgid "Connection settings have been saved"
|
|
||||||
msgstr "Verbindungseinstellungen wurden gespeichert"
|
|
||||||
|
|
||||||
#: modules/luci-mod-ucentral/htdocs/luci-static/resources/view/ucentral/system.js:90
|
|
||||||
msgid "Continue"
|
msgid "Continue"
|
||||||
msgstr "Fortfahren"
|
msgstr "Fortfahren"
|
||||||
|
|
||||||
#: modules/luci-mod-ucentral/htdocs/luci-static/resources/view/ucentral/uplink.js:110
|
#: modules/luci-mod-ucentral/htdocs/luci-static/resources/tools/ucentral.js:54
|
||||||
|
msgid "Continue configuration"
|
||||||
|
msgstr "Konfiguration fortsetzen"
|
||||||
|
|
||||||
|
#: modules/luci-mod-ucentral/htdocs/luci-static/resources/view/ucentral/uplink.js:104
|
||||||
msgid "DNS Servers"
|
msgid "DNS Servers"
|
||||||
msgstr "DNS-Server"
|
msgstr "DNS-Server"
|
||||||
|
|
||||||
#: modules/luci-mod-ucentral/htdocs/luci-static/resources/view/ucentral/system.js:38
|
#: modules/luci-mod-ucentral/htdocs/luci-static/resources/view/ucentral/system.js:37
|
||||||
msgid "Do you really want to erase all settings?"
|
msgid "Do you really want to erase all settings?"
|
||||||
msgstr "Sollen wirklich alle Systemeinstellungen zurückgesetzt werden?"
|
msgstr "Sollen wirklich alle Systemeinstellungen zurückgesetzt werden?"
|
||||||
|
|
||||||
#: modules/luci-mod-ucentral/htdocs/luci-static/resources/view/ucentral/system.js:41
|
#: modules/luci-mod-ucentral/htdocs/luci-static/resources/tools/ucentral.js:73
|
||||||
msgid "Erasing..."
|
msgid "Error"
|
||||||
msgstr "Lösche…"
|
msgstr "Fehler"
|
||||||
|
|
||||||
#: modules/luci-mod-ucentral/htdocs/luci-static/resources/view/ucentral/status.js:3
|
#: modules/luci-mod-ucentral/htdocs/luci-static/resources/view/ucentral/status.js:61
|
||||||
msgid "Firmware Version"
|
msgid "Firmware Version"
|
||||||
msgstr "Firmware-Version"
|
msgstr "Firmware-Version"
|
||||||
|
|
||||||
#: modules/luci-mod-ucentral/htdocs/luci-static/resources/view/ucentral/system.js:173
|
#: modules/luci-mod-ucentral/htdocs/luci-static/resources/view/ucentral/system.js:163
|
||||||
msgid "Firmware upgrade"
|
msgid "Firmware upgrade"
|
||||||
msgstr "Firmware Update"
|
msgstr "Firmware Update"
|
||||||
|
|
||||||
#: modules/luci-mod-ucentral/htdocs/luci-static/resources/view/ucentral/system.js:101
|
#: modules/luci-mod-ucentral/htdocs/luci-static/resources/view/ucentral/system.js:95
|
||||||
msgid "Flash image?"
|
msgid "Flash image?"
|
||||||
msgstr "Image flashen?"
|
msgstr "Image flashen?"
|
||||||
|
|
||||||
#: modules/luci-mod-ucentral/htdocs/luci-static/resources/view/ucentral/system.js:105
|
#: modules/luci-mod-ucentral/htdocs/luci-static/resources/view/ucentral/system.js:99
|
||||||
#: modules/luci-mod-ucentral/htdocs/luci-static/resources/view/ucentral/system.js:180
|
#: modules/luci-mod-ucentral/htdocs/luci-static/resources/view/ucentral/system.js:170
|
||||||
msgid "Flash image…"
|
msgid "Flash image…"
|
||||||
msgstr "Image flashen…"
|
msgstr "Image flashen…"
|
||||||
|
|
||||||
#: modules/luci-mod-ucentral/htdocs/luci-static/resources/view/ucentral/system.js:110
|
#: modules/luci-mod-ucentral/htdocs/luci-static/resources/view/ucentral/system.js:104
|
||||||
#: modules/luci-mod-ucentral/htdocs/luci-static/resources/view/ucentral/system.js:112
|
|
||||||
msgid "Flashing…"
|
msgid "Flashing…"
|
||||||
msgstr "Schreibt…"
|
msgstr "Schreibt…"
|
||||||
|
|
||||||
@@ -122,110 +132,118 @@ msgstr "Schreibt…"
|
|||||||
msgid "Grant access to ucentral configuration"
|
msgid "Grant access to ucentral configuration"
|
||||||
msgstr "Zugriff auf uCentral-Konfigurationseinstellungen ermöglichen"
|
msgstr "Zugriff auf uCentral-Konfigurationseinstellungen ermöglichen"
|
||||||
|
|
||||||
#: modules/luci-mod-ucentral/htdocs/luci-static/resources/view/ucentral/status.js:3
|
#: modules/luci-mod-ucentral/htdocs/luci-static/resources/view/ucentral/status.js:58
|
||||||
msgid "Hostname"
|
msgid "Hostname"
|
||||||
msgstr "Hostname"
|
msgstr "Hostname"
|
||||||
|
|
||||||
#: modules/luci-mod-ucentral/htdocs/luci-static/resources/view/ucentral/uplink.js:92
|
#: modules/luci-mod-ucentral/htdocs/luci-static/resources/view/ucentral/uplink.js:86
|
||||||
msgid "IPv4 Address"
|
msgid "IPv4 Address"
|
||||||
msgstr "IPv4-Adresse"
|
msgstr "IPv4-Adresse"
|
||||||
|
|
||||||
#: modules/luci-mod-ucentral/htdocs/luci-static/resources/view/ucentral/uplink.js:97
|
#: modules/luci-mod-ucentral/htdocs/luci-static/resources/view/ucentral/uplink.js:91
|
||||||
msgid "IPv4 Gateway"
|
msgid "IPv4 Gateway"
|
||||||
msgstr "IPv4-Gateway"
|
msgstr "IPv4-Gateway"
|
||||||
|
|
||||||
#: modules/luci-mod-ucentral/htdocs/luci-static/resources/view/ucentral/uplink.js:102
|
#: modules/luci-mod-ucentral/htdocs/luci-static/resources/view/ucentral/uplink.js:96
|
||||||
msgid "IPv6 Address"
|
msgid "IPv6 Address"
|
||||||
msgstr "IPv6-Adresse"
|
msgstr "IPv6-Adresse"
|
||||||
|
|
||||||
#: modules/luci-mod-ucentral/htdocs/luci-static/resources/view/ucentral/uplink.js:106
|
#: modules/luci-mod-ucentral/htdocs/luci-static/resources/view/ucentral/uplink.js:100
|
||||||
msgid "IPv6 Gateway"
|
msgid "IPv6 Gateway"
|
||||||
msgstr "IPv6-Gateway"
|
msgstr "IPv6-Gateway"
|
||||||
|
|
||||||
#: modules/luci-mod-ucentral/htdocs/luci-static/resources/view/ucentral/uplink.js:63
|
#: modules/luci-mod-ucentral/htdocs/luci-static/resources/view/ucentral/uplink.js:57
|
||||||
msgid "Invalid APN provided"
|
msgid "Invalid APN provided"
|
||||||
msgstr "Ungültige APN angegeben"
|
msgstr "Ungültige APN angegeben"
|
||||||
|
|
||||||
#: modules/luci-mod-ucentral/htdocs/luci-static/resources/view/ucentral/system.js:101
|
#: modules/luci-mod-ucentral/htdocs/luci-static/resources/view/ucentral/system.js:95
|
||||||
msgid "Invalid image"
|
msgid "Invalid image"
|
||||||
msgstr "Ungültige Image-Datei"
|
msgstr "Ungültige Image-Datei"
|
||||||
|
|
||||||
#: modules/luci-mod-ucentral/htdocs/luci-static/resources/view/ucentral/system.js:151
|
#: modules/luci-mod-ucentral/htdocs/luci-static/resources/view/ucentral/system.js:141
|
||||||
msgid "Issue a reboot and restart the operating system on this device."
|
msgid "Issue a reboot and restart the operating system on this device."
|
||||||
msgstr "Einen Reboot auslösen und das Betriebssystem des Gerätes neu starten."
|
msgstr "Einen Reboot auslösen und das Betriebssystem des Gerätes neu starten."
|
||||||
|
|
||||||
#: modules/luci-mod-ucentral/htdocs/luci-static/resources/view/ucentral/status.js:3
|
#: modules/luci-mod-ucentral/htdocs/luci-static/resources/view/ucentral/status.js:62
|
||||||
msgid "Kernel Version"
|
msgid "Kernel Version"
|
||||||
msgstr "Kernel-Version"
|
msgstr "Kernel-Version"
|
||||||
|
|
||||||
#: modules/luci-mod-ucentral/htdocs/luci-static/resources/view/ucentral/status.js:3
|
#: modules/luci-mod-ucentral/htdocs/luci-static/resources/view/ucentral/status.js:65
|
||||||
msgid "Load Average"
|
msgid "Load Average"
|
||||||
msgstr "Systemlast"
|
msgstr "Systemlast"
|
||||||
|
|
||||||
#: modules/luci-mod-ucentral/htdocs/luci-static/resources/view/ucentral/status.js:3
|
#: modules/luci-mod-ucentral/htdocs/luci-static/resources/view/ucentral/status.js:63
|
||||||
msgid "Local Time"
|
msgid "Local Time"
|
||||||
msgstr "Lokalzeit"
|
msgstr "Lokalzeit"
|
||||||
|
|
||||||
#: modules/luci-mod-ucentral/htdocs/luci-static/resources/view/ucentral/settings.js:59
|
#: modules/luci-mod-ucentral/htdocs/luci-static/resources/view/ucentral/settings.js:37
|
||||||
msgid "Local settings"
|
msgid "Local settings"
|
||||||
msgstr "Lokale Einstellungen"
|
msgstr "Lokale Einstellungen"
|
||||||
|
|
||||||
#: modules/luci-mod-ucentral/htdocs/luci-static/resources/view/ucentral/system.js:75
|
#: modules/luci-mod-ucentral/htdocs/luci-static/resources/view/ucentral/system.js:69
|
||||||
msgid "MD5"
|
msgid "MD5"
|
||||||
msgstr "MD5"
|
msgstr "MD5"
|
||||||
|
|
||||||
#: modules/luci-mod-ucentral/htdocs/luci-static/resources/view/ucentral/status.js:7
|
#: modules/luci-mod-ucentral/htdocs/luci-static/resources/view/ucentral/status.js:112
|
||||||
msgid "Memory"
|
msgid "Memory"
|
||||||
msgstr "Arbeitsspeicher"
|
msgstr "Arbeitsspeicher"
|
||||||
|
|
||||||
#: modules/luci-mod-ucentral/htdocs/luci-static/resources/view/ucentral/status.js:3
|
#: modules/luci-mod-ucentral/htdocs/luci-static/resources/view/ucentral/status.js:59
|
||||||
msgid "Model"
|
msgid "Model"
|
||||||
msgstr "Modell"
|
msgstr "Modell"
|
||||||
|
|
||||||
#: modules/luci-mod-ucentral/htdocs/luci-static/resources/view/ucentral/uplink.js:74
|
#: modules/luci-mod-ucentral/htdocs/luci-static/resources/view/ucentral/uplink.js:47
|
||||||
|
msgid "Modem type"
|
||||||
|
msgstr "Modemtyp"
|
||||||
|
|
||||||
|
#: modules/luci-mod-ucentral/htdocs/luci-static/resources/view/ucentral/uplink.js:68
|
||||||
msgid "No authentication"
|
msgid "No authentication"
|
||||||
msgstr "keine Authentifizierung"
|
msgstr "keine Authentifizierung"
|
||||||
|
|
||||||
#: modules/luci-mod-ucentral/htdocs/luci-static/resources/view/ucentral/uplink.js:68
|
#: modules/luci-mod-ucentral/htdocs/luci-static/resources/tools/ucentral.js:76
|
||||||
|
msgid "OK"
|
||||||
|
msgstr "OK"
|
||||||
|
|
||||||
|
#: modules/luci-mod-ucentral/htdocs/luci-static/resources/view/ucentral/uplink.js:62
|
||||||
msgid "PIN"
|
msgid "PIN"
|
||||||
msgstr "OIN"
|
msgstr "OIN"
|
||||||
|
|
||||||
#: modules/luci-mod-ucentral/htdocs/luci-static/resources/view/ucentral/uplink.js:85
|
#: modules/luci-mod-ucentral/htdocs/luci-static/resources/view/ucentral/uplink.js:79
|
||||||
msgid "Password"
|
msgid "Password"
|
||||||
msgstr "Passwort"
|
msgstr "Passwort"
|
||||||
|
|
||||||
#: modules/luci-mod-ucentral/htdocs/luci-static/resources/view/ucentral/system.js:168
|
#: modules/luci-mod-ucentral/htdocs/luci-static/resources/view/ucentral/system.js:158
|
||||||
msgid "Perform reset"
|
msgid "Perform reset"
|
||||||
msgstr "System zurücksetzen"
|
msgstr "System zurücksetzen"
|
||||||
|
|
||||||
#: modules/luci-mod-ucentral/htdocs/luci-static/resources/view/ucentral/system.js:157
|
#: modules/luci-mod-ucentral/htdocs/luci-static/resources/view/ucentral/system.js:147
|
||||||
msgid "Reboot"
|
msgid "Reboot"
|
||||||
msgstr "Reboot"
|
msgstr "Reboot"
|
||||||
|
|
||||||
#: modules/luci-mod-ucentral/htdocs/luci-static/resources/view/ucentral/system.js:150
|
#: modules/luci-mod-ucentral/htdocs/luci-static/resources/view/ucentral/system.js:140
|
||||||
msgid "Reboot device"
|
msgid "Reboot device"
|
||||||
msgstr "Gerät neu starten"
|
msgstr "Gerät neu starten"
|
||||||
|
|
||||||
#: modules/luci-mod-ucentral/htdocs/luci-static/resources/view/ucentral/system.js:129
|
#: modules/luci-mod-ucentral/htdocs/luci-static/resources/tools/ucentral.js:35
|
||||||
msgid "Rebooting…"
|
msgid "Reboot required"
|
||||||
msgstr "Startet neu…"
|
msgstr "Neustart erforderlich"
|
||||||
|
|
||||||
#: modules/luci-mod-ucentral/htdocs/luci-static/resources/view/ucentral/settings.js:62
|
#: modules/luci-mod-ucentral/htdocs/luci-static/resources/view/ucentral/settings.js:40
|
||||||
msgid "Redirector URL"
|
msgid "Redirector URL"
|
||||||
msgstr "Redirector-URL"
|
msgstr "Redirector-URL"
|
||||||
|
|
||||||
#: modules/luci-mod-ucentral/htdocs/luci-static/resources/view/ucentral/system.js:162
|
#: modules/luci-mod-ucentral/htdocs/luci-static/resources/view/ucentral/system.js:152
|
||||||
msgid ""
|
msgid ""
|
||||||
"Reset the system to its initial state and discard any configuration changes."
|
"Reset the system to its initial state and discard any configuration changes."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Das System auf Grundeinstellungen zurücksetzen und sämtliche "
|
"Das System auf Grundeinstellungen zurücksetzen und sämtliche "
|
||||||
"Konfigurationsänderungen verwerfen."
|
"Konfigurationsänderungen verwerfen."
|
||||||
|
|
||||||
#: modules/luci-mod-ucentral/htdocs/luci-static/resources/view/ucentral/system.js:161
|
#: modules/luci-mod-ucentral/htdocs/luci-static/resources/view/ucentral/system.js:151
|
||||||
msgid "Reset to defaults"
|
msgid "Reset to defaults"
|
||||||
msgstr "Grundeinstellungen wiederherstellen"
|
msgstr "Grundeinstellungen wiederherstellen"
|
||||||
|
|
||||||
#: modules/luci-mod-ucentral/htdocs/luci-static/resources/view/ucentral/system.js:76
|
#: modules/luci-mod-ucentral/htdocs/luci-static/resources/view/ucentral/system.js:70
|
||||||
msgid "SHA256"
|
msgid "SHA256"
|
||||||
msgstr "SHA256"
|
msgstr "SHA256"
|
||||||
|
|
||||||
@@ -233,11 +251,11 @@ msgstr "SHA256"
|
|||||||
msgid "Settings"
|
msgid "Settings"
|
||||||
msgstr "Einstellungen"
|
msgstr "Einstellungen"
|
||||||
|
|
||||||
#: modules/luci-mod-ucentral/htdocs/luci-static/resources/view/ucentral/system.js:74
|
#: modules/luci-mod-ucentral/htdocs/luci-static/resources/view/ucentral/system.js:68
|
||||||
msgid "Size"
|
msgid "Size"
|
||||||
msgstr "Größe"
|
msgstr "Größe"
|
||||||
|
|
||||||
#: modules/luci-mod-ucentral/htdocs/luci-static/resources/view/ucentral/uplink.js:54
|
#: modules/luci-mod-ucentral/htdocs/luci-static/resources/view/ucentral/uplink.js:42
|
||||||
msgid "Static address configuration"
|
msgid "Static address configuration"
|
||||||
msgstr "Statische Adresskonfiguration"
|
msgstr "Statische Adresskonfiguration"
|
||||||
|
|
||||||
@@ -245,16 +263,16 @@ msgstr "Statische Adresskonfiguration"
|
|||||||
msgid "Status"
|
msgid "Status"
|
||||||
msgstr "Status"
|
msgstr "Status"
|
||||||
|
|
||||||
#: modules/luci-mod-ucentral/htdocs/luci-static/resources/view/ucentral/status.js:6
|
#: modules/luci-mod-ucentral/htdocs/luci-static/resources/view/ucentral/status.js:92
|
||||||
msgid "Swap free"
|
msgid "Swap free"
|
||||||
msgstr "Freier Auslagerungsspeicher"
|
msgstr "Freier Auslagerungsspeicher"
|
||||||
|
|
||||||
#: modules/luci-mod-ucentral/htdocs/luci-static/resources/view/ucentral/status.js:7
|
#: modules/luci-mod-ucentral/htdocs/luci-static/resources/view/ucentral/status.js:108
|
||||||
#: modules/luci-mod-ucentral/root/usr/share/luci/menu.d/luci-mod-ucentral.json:52
|
#: modules/luci-mod-ucentral/root/usr/share/luci/menu.d/luci-mod-ucentral.json:52
|
||||||
msgid "System"
|
msgid "System"
|
||||||
msgstr "System"
|
msgstr "System"
|
||||||
|
|
||||||
#: modules/luci-mod-ucentral/htdocs/luci-static/resources/view/ucentral/system.js:130
|
#: modules/luci-mod-ucentral/htdocs/luci-static/resources/view/ucentral/system.js:121
|
||||||
msgid ""
|
msgid ""
|
||||||
"The device is rebooting now. This page will try to reconnect automatically "
|
"The device is rebooting now. This page will try to reconnect automatically "
|
||||||
"once the device is fully booted."
|
"once the device is fully booted."
|
||||||
@@ -262,7 +280,20 @@ msgstr ""
|
|||||||
"Das Gerät startet jetzt neu. Diese Seite wird versuchen sich automatisch neu "
|
"Das Gerät startet jetzt neu. Diese Seite wird versuchen sich automatisch neu "
|
||||||
"zu verbinden sobald das Gerät wieder voll hochgefahren ist."
|
"zu verbinden sobald das Gerät wieder voll hochgefahren ist."
|
||||||
|
|
||||||
#: modules/luci-mod-ucentral/htdocs/luci-static/resources/view/ucentral/system.js:80
|
#: modules/luci-mod-ucentral/htdocs/luci-static/resources/tools/ucentral.js:50
|
||||||
|
msgid ""
|
||||||
|
"The device must be rebooted in order to apply the changed settings. Once the "
|
||||||
|
"uCentral agent successfully connects to the controller, the remote "
|
||||||
|
"configuration profile will be applied and the initial provisioning web "
|
||||||
|
"interface is disabled."
|
||||||
|
msgstr ""
|
||||||
|
"Das Gerät muss neu gestartet werden um die geänderten Einstellungen "
|
||||||
|
"anzuwenden. Sobald sich der uCentral-Client nach dem Neustart erfolgreich "
|
||||||
|
"mit dem Controller verbindet, wird das entfernte Konfigurationsprofil für "
|
||||||
|
"dieses Gerät angewendet und das initiale Provisionierungs-Webinterface "
|
||||||
|
"deaktiviert."
|
||||||
|
|
||||||
|
#: modules/luci-mod-ucentral/htdocs/luci-static/resources/view/ucentral/system.js:74
|
||||||
msgid ""
|
msgid ""
|
||||||
"The firmware image is invalid and cannot be flashed. Check the diagnostics "
|
"The firmware image is invalid and cannot be flashed. Check the diagnostics "
|
||||||
"below for further details."
|
"below for further details."
|
||||||
@@ -270,7 +301,7 @@ msgstr ""
|
|||||||
"Die Firmware-Datei ist ungültig und kann nicht geflasht werden. Die "
|
"Die Firmware-Datei ist ungültig und kann nicht geflasht werden. Die "
|
||||||
"nachfolgenden Diagnosemeldungen enthalten weitere Details."
|
"nachfolgenden Diagnosemeldungen enthalten weitere Details."
|
||||||
|
|
||||||
#: modules/luci-mod-ucentral/htdocs/luci-static/resources/view/ucentral/system.js:72
|
#: modules/luci-mod-ucentral/htdocs/luci-static/resources/view/ucentral/system.js:66
|
||||||
msgid ""
|
msgid ""
|
||||||
"The firmware image was uploaded. Compare the checksum and file size listed "
|
"The firmware image was uploaded. Compare the checksum and file size listed "
|
||||||
"below with the original file to ensure data integrity. <br /> Click "
|
"below with the original file to ensure data integrity. <br /> Click "
|
||||||
@@ -280,11 +311,12 @@ msgstr ""
|
|||||||
"Originaldatei vergleichen um die Integrität des Images sicherzustellen.<br /"
|
"Originaldatei vergleichen um die Integrität des Images sicherzustellen.<br /"
|
||||||
"> \"Fortfahren\" anklicken um die Upgrade-Prozedur zu starten."
|
"> \"Fortfahren\" anklicken um die Upgrade-Prozedur zu starten."
|
||||||
|
|
||||||
#: modules/luci-mod-ucentral/htdocs/luci-static/resources/view/ucentral/system.js:125
|
#: modules/luci-mod-ucentral/htdocs/luci-static/resources/tools/ucentral.js:22
|
||||||
|
#: modules/luci-mod-ucentral/htdocs/luci-static/resources/view/ucentral/system.js:117
|
||||||
msgid "The reboot command failed with code %d"
|
msgid "The reboot command failed with code %d"
|
||||||
msgstr "Das Reboot-Kommando wurde mit Fehlercode %d abgebrochen"
|
msgstr "Das Reboot-Kommando wurde mit Fehlercode %d abgebrochen"
|
||||||
|
|
||||||
#: modules/luci-mod-ucentral/htdocs/luci-static/resources/view/ucentral/settings.js:60
|
#: modules/luci-mod-ucentral/htdocs/luci-static/resources/view/ucentral/settings.js:38
|
||||||
msgid ""
|
msgid ""
|
||||||
"The settings on this page specify how the local uCentral client connects to "
|
"The settings on this page specify how the local uCentral client connects to "
|
||||||
"the controller server."
|
"the controller server."
|
||||||
@@ -292,7 +324,7 @@ msgstr ""
|
|||||||
"Die Einstellungen auf dieser Seite beeinflussen die Verbindung des uCentral "
|
"Die Einstellungen auf dieser Seite beeinflussen die Verbindung des uCentral "
|
||||||
"Clients zum Controller-Server."
|
"Clients zum Controller-Server."
|
||||||
|
|
||||||
#: modules/luci-mod-ucentral/htdocs/luci-static/resources/view/ucentral/system.js:42
|
#: modules/luci-mod-ucentral/htdocs/luci-static/resources/view/ucentral/system.js:40
|
||||||
msgid ""
|
msgid ""
|
||||||
"The system is erasing the configuration partition now and will reboot itself "
|
"The system is erasing the configuration partition now and will reboot itself "
|
||||||
"when finished."
|
"when finished."
|
||||||
@@ -300,7 +332,7 @@ msgstr ""
|
|||||||
"Das System löscht nun die Konfigurationspartition und startet das Gerät neu "
|
"Das System löscht nun die Konfigurationspartition und startet das Gerät neu "
|
||||||
"sobald die Prozedur abgeschlossen ist."
|
"sobald die Prozedur abgeschlossen ist."
|
||||||
|
|
||||||
#: modules/luci-mod-ucentral/htdocs/luci-static/resources/view/ucentral/system.js:113
|
#: modules/luci-mod-ucentral/htdocs/luci-static/resources/view/ucentral/system.js:106
|
||||||
msgid ""
|
msgid ""
|
||||||
"The system is flashing now.<br /> DO NOT POWER OFF THE DEVICE!<br /> Wait a "
|
"The system is flashing now.<br /> DO NOT POWER OFF THE DEVICE!<br /> Wait a "
|
||||||
"few minutes before you try to reconnect. It might be necessary to renew the "
|
"few minutes before you try to reconnect. It might be necessary to renew the "
|
||||||
@@ -313,7 +345,17 @@ msgstr ""
|
|||||||
"des Computers zu verändern bevor wieder eine Verbindung zum Gerät möglich "
|
"des Computers zu verändern bevor wieder eine Verbindung zum Gerät möglich "
|
||||||
"ist."
|
"ist."
|
||||||
|
|
||||||
#: modules/luci-mod-ucentral/htdocs/luci-static/resources/view/ucentral/uplink.js:50
|
#: modules/luci-mod-ucentral/htdocs/luci-static/resources/tools/ucentral.js:26
|
||||||
|
msgid ""
|
||||||
|
"The system is rebooting in order to attempt applying the remote "
|
||||||
|
"configuration profile now. If not successful, the device will revert back "
|
||||||
|
"into the initial provisioning state."
|
||||||
|
msgstr ""
|
||||||
|
"Das System startet jetzt neu um zu versuchen das entfernte "
|
||||||
|
"Konfigurationsprofil anzuwenden. Im Fehlerfall wird das Gerät in den "
|
||||||
|
"initialen Provisionierungs-Zustand zurückversetzt."
|
||||||
|
|
||||||
|
#: modules/luci-mod-ucentral/htdocs/luci-static/resources/view/ucentral/uplink.js:38
|
||||||
msgid ""
|
msgid ""
|
||||||
"The uplink settings allow overriding the WAN connection properties of the "
|
"The uplink settings allow overriding the WAN connection properties of the "
|
||||||
"local device."
|
"local device."
|
||||||
@@ -321,20 +363,19 @@ msgstr ""
|
|||||||
"Die Uplink-Einstellungen ermöglichen es die WAN-Verbindungseigenschaften des "
|
"Die Uplink-Einstellungen ermöglichen es die WAN-Verbindungseigenschaften des "
|
||||||
"lokalen Gerätes zu überschreiben."
|
"lokalen Gerätes zu überschreiben."
|
||||||
|
|
||||||
#: modules/luci-mod-ucentral/htdocs/luci-static/resources/view/ucentral/status.js:4
|
#: modules/luci-mod-ucentral/htdocs/luci-static/resources/view/ucentral/status.js:83
|
||||||
msgid "Total Available"
|
msgid "Total Available"
|
||||||
msgstr "Gesamt verfügbar"
|
msgstr "Gesamt verfügbar"
|
||||||
|
|
||||||
#: modules/luci-mod-ucentral/htdocs/luci-static/resources/view/ucentral/settings.js:95
|
#: modules/luci-mod-ucentral/htdocs/luci-static/resources/tools/ucentral.js:95
|
||||||
#: modules/luci-mod-ucentral/htdocs/luci-static/resources/view/ucentral/uplink.js:130
|
msgid "Unable to save settings: %s"
|
||||||
msgid "Unable to save connection settings: %s"
|
msgstr "Einstellungen konnten nicht gespeichert werden: %s"
|
||||||
msgstr "Verbindungseinstellungen können nicht gespeichert werden: %s"
|
|
||||||
|
|
||||||
#: modules/luci-mod-ucentral/htdocs/luci-static/resources/view/ucentral/settings.js:77
|
#: modules/luci-mod-ucentral/htdocs/luci-static/resources/view/ucentral/settings.js:58
|
||||||
msgid "Unable to update certificates: %s"
|
msgid "Unable to verify certificates: %s"
|
||||||
msgstr "Zertifikate können nicht aktualisiert werden: %s"
|
msgstr "Zertifikate konnten nicht verifiziert werden: %s"
|
||||||
|
|
||||||
#: modules/luci-mod-ucentral/htdocs/luci-static/resources/view/ucentral/settings.js:63
|
#: modules/luci-mod-ucentral/htdocs/luci-static/resources/view/ucentral/settings.js:41
|
||||||
msgid "Unit location"
|
msgid "Unit location"
|
||||||
msgstr "Gerätestandort"
|
msgstr "Gerätestandort"
|
||||||
|
|
||||||
@@ -342,41 +383,41 @@ msgstr "Gerätestandort"
|
|||||||
msgid "Uplink"
|
msgid "Uplink"
|
||||||
msgstr "Uplink"
|
msgstr "Uplink"
|
||||||
|
|
||||||
#: modules/luci-mod-ucentral/htdocs/luci-static/resources/view/ucentral/uplink.js:49
|
#: modules/luci-mod-ucentral/htdocs/luci-static/resources/view/ucentral/uplink.js:37
|
||||||
msgid "Uplink configuration"
|
msgid "Uplink configuration"
|
||||||
msgstr "Uplink-Einstellungen"
|
msgstr "Uplink-Einstellungen"
|
||||||
|
|
||||||
#: modules/luci-mod-ucentral/htdocs/luci-static/resources/view/ucentral/system.js:174
|
#: modules/luci-mod-ucentral/htdocs/luci-static/resources/view/ucentral/system.js:164
|
||||||
msgid "Upload a compatible firmware image here to upgrade the running system."
|
msgid "Upload a compatible firmware image here to upgrade the running system."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Kompatible Firmware-Datei hier hochladen um das laufende System zu "
|
"Kompatible Firmware-Datei hier hochladen um das laufende System zu "
|
||||||
"aktualisieren."
|
"aktualisieren."
|
||||||
|
|
||||||
#: modules/luci-mod-ucentral/htdocs/luci-static/resources/view/ucentral/settings.js:66
|
#: modules/luci-mod-ucentral/htdocs/luci-static/resources/view/ucentral/settings.js:44
|
||||||
msgid "Upload certificate bundle…"
|
msgid "Upload certificate bundle…"
|
||||||
msgstr "Zertifikatsarchiv hochladen…"
|
msgstr "Zertifikatsarchiv hochladen…"
|
||||||
|
|
||||||
#: modules/luci-mod-ucentral/htdocs/luci-static/resources/view/ucentral/status.js:3
|
#: modules/luci-mod-ucentral/htdocs/luci-static/resources/view/ucentral/status.js:64
|
||||||
msgid "Uptime"
|
msgid "Uptime"
|
||||||
msgstr "Laufzeit"
|
msgstr "Laufzeit"
|
||||||
|
|
||||||
#: modules/luci-mod-ucentral/htdocs/luci-static/resources/view/ucentral/uplink.js:53
|
#: modules/luci-mod-ucentral/htdocs/luci-static/resources/view/ucentral/uplink.js:41
|
||||||
msgid "Use default cloud settings"
|
msgid "Use default cloud settings"
|
||||||
msgstr "Cloud-Einstellungen nutzen"
|
msgstr "Cloud-Einstellungen nutzen"
|
||||||
|
|
||||||
#: modules/luci-mod-ucentral/htdocs/luci-static/resources/view/ucentral/status.js:4
|
#: modules/luci-mod-ucentral/htdocs/luci-static/resources/view/ucentral/status.js:84
|
||||||
msgid "Used"
|
msgid "Used"
|
||||||
msgstr "In Benutzung"
|
msgstr "In Benutzung"
|
||||||
|
|
||||||
#: modules/luci-mod-ucentral/htdocs/luci-static/resources/view/ucentral/uplink.js:79
|
#: modules/luci-mod-ucentral/htdocs/luci-static/resources/view/ucentral/uplink.js:73
|
||||||
msgid "Username"
|
msgid "Username"
|
||||||
msgstr "Benutzername"
|
msgstr "Benutzername"
|
||||||
|
|
||||||
#: modules/luci-mod-ucentral/htdocs/luci-static/resources/view/ucentral/settings.js:69
|
#: modules/luci-mod-ucentral/htdocs/luci-static/resources/view/ucentral/settings.js:47
|
||||||
msgid "Verifying certificates…"
|
msgid "Verifying certificates…"
|
||||||
msgstr "Überprüfe Zertifikate…"
|
msgstr "Überprüfe Zertifikate…"
|
||||||
|
|
||||||
#: modules/luci-mod-ucentral/htdocs/luci-static/resources/view/ucentral/system.js:57
|
#: modules/luci-mod-ucentral/htdocs/luci-static/resources/view/ucentral/system.js:52
|
||||||
msgid "Verifying the uploaded image file."
|
msgid "Verifying the uploaded image file."
|
||||||
msgstr "Überprüfe die hochgeladene Image-Datei."
|
msgstr "Überprüfe die hochgeladene Image-Datei."
|
||||||
|
|
||||||
|
|||||||
@@ -1,109 +1,119 @@
|
|||||||
msgid ""
|
msgid ""
|
||||||
msgstr "Content-Type: text/plain; charset=UTF-8"
|
msgstr "Content-Type: text/plain; charset=UTF-8"
|
||||||
|
|
||||||
#: modules/luci-mod-ucentral/htdocs/luci-static/resources/view/ucentral/uplink.js:60
|
#: modules/luci-mod-ucentral/htdocs/luci-static/resources/view/ucentral/uplink.js:53
|
||||||
msgctxt "Cellular access point name"
|
msgctxt "Cellular access point name"
|
||||||
msgid "APN"
|
msgid "APN"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: modules/luci-mod-ucentral/htdocs/luci-static/resources/view/ucentral/uplink.js:93
|
#: modules/luci-mod-ucentral/htdocs/luci-static/resources/view/ucentral/uplink.js:86
|
||||||
#: modules/luci-mod-ucentral/htdocs/luci-static/resources/view/ucentral/uplink.js:103
|
#: modules/luci-mod-ucentral/htdocs/luci-static/resources/view/ucentral/uplink.js:96
|
||||||
msgid "Address and mask in CIDR notation."
|
msgid "Address and mask in CIDR notation."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: modules/luci-mod-ucentral/htdocs/luci-static/resources/view/ucentral/uplink.js:56
|
#: modules/luci-mod-ucentral/htdocs/luci-static/resources/view/ucentral/uplink.js:43
|
||||||
msgid "Address configuration via DHCP"
|
msgid "Address configuration via DHCP"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: modules/luci-mod-ucentral/htdocs/luci-static/resources/view/ucentral/uplink.js:57
|
#: modules/luci-mod-ucentral/htdocs/luci-static/resources/view/ucentral/uplink.js:44
|
||||||
msgid "Address configuration via PPPoE"
|
msgid "Address configuration via PPPoE"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: modules/luci-mod-ucentral/htdocs/luci-static/resources/view/ucentral/status.js:59
|
#: modules/luci-mod-ucentral/htdocs/luci-static/resources/tools/ucentral.js:49
|
||||||
msgid "Architecture"
|
msgid "Apply Settings"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: modules/luci-mod-ucentral/htdocs/luci-static/resources/view/ucentral/uplink.js:73
|
#: modules/luci-mod-ucentral/htdocs/luci-static/resources/tools/ucentral.js:52
|
||||||
msgid "Authentication"
|
msgid "Apply settings and reboot device now"
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: modules/luci-mod-ucentral/htdocs/luci-static/resources/view/ucentral/status.js:84
|
|
||||||
msgid "Buffered"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: modules/luci-mod-ucentral/htdocs/luci-static/resources/view/ucentral/status.js:88
|
|
||||||
msgid "Cached"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: modules/luci-mod-ucentral/htdocs/luci-static/resources/view/ucentral/system.js:96
|
|
||||||
msgid "Cancel"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: modules/luci-mod-ucentral/htdocs/luci-static/resources/view/ucentral/uplink.js:58
|
|
||||||
msgid "Cellular network connection"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: modules/luci-mod-ucentral/htdocs/luci-static/resources/view/ucentral/settings.js:74
|
|
||||||
msgid "Certificate validation failed: %s"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: modules/luci-mod-ucentral/htdocs/luci-static/resources/view/ucentral/settings.js:66
|
|
||||||
msgid "Certificates"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: modules/luci-mod-ucentral/htdocs/luci-static/resources/view/ucentral/settings.js:76
|
|
||||||
msgid "Certificates updated."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: modules/luci-mod-ucentral/htdocs/luci-static/resources/view/ucentral/system.js:52
|
|
||||||
#: modules/luci-mod-ucentral/htdocs/luci-static/resources/view/ucentral/system.js:54
|
|
||||||
msgid "Checking image…"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: modules/luci-mod-ucentral/htdocs/luci-static/resources/view/ucentral/uplink.js:53
|
|
||||||
msgid "Connection"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: modules/luci-mod-ucentral/htdocs/luci-static/resources/view/ucentral/settings.js:94
|
|
||||||
#: modules/luci-mod-ucentral/htdocs/luci-static/resources/view/ucentral/uplink.js:129
|
|
||||||
msgid "Connection settings have been saved"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: modules/luci-mod-ucentral/htdocs/luci-static/resources/view/ucentral/system.js:88
|
|
||||||
msgid "Continue"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: modules/luci-mod-ucentral/htdocs/luci-static/resources/view/ucentral/uplink.js:111
|
|
||||||
msgid "DNS Servers"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: modules/luci-mod-ucentral/htdocs/luci-static/resources/view/ucentral/system.js:36
|
|
||||||
msgid "Do you really want to erase all settings?"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: modules/luci-mod-ucentral/htdocs/luci-static/resources/view/ucentral/system.js:39
|
|
||||||
msgid "Erasing..."
|
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: modules/luci-mod-ucentral/htdocs/luci-static/resources/view/ucentral/status.js:60
|
#: modules/luci-mod-ucentral/htdocs/luci-static/resources/view/ucentral/status.js:60
|
||||||
|
msgid "Architecture"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: modules/luci-mod-ucentral/htdocs/luci-static/resources/view/ucentral/uplink.js:66
|
||||||
|
msgid "Authentication"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: modules/luci-mod-ucentral/htdocs/luci-static/resources/view/ucentral/uplink.js:49
|
||||||
|
msgctxt "Automatic modem type selection"
|
||||||
|
msgid "Automatic"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: modules/luci-mod-ucentral/htdocs/luci-static/resources/view/ucentral/status.js:85
|
||||||
|
msgid "Buffered"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: modules/luci-mod-ucentral/htdocs/luci-static/resources/view/ucentral/status.js:89
|
||||||
|
msgid "Cached"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: modules/luci-mod-ucentral/htdocs/luci-static/resources/view/ucentral/system.js:92
|
||||||
|
msgid "Cancel"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: modules/luci-mod-ucentral/htdocs/luci-static/resources/view/ucentral/uplink.js:45
|
||||||
|
msgid "Cellular network connection"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: modules/luci-mod-ucentral/htdocs/luci-static/resources/view/ucentral/settings.js:51
|
||||||
|
msgid "Certificate validation failed: %s"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: modules/luci-mod-ucentral/htdocs/luci-static/resources/view/ucentral/settings.js:43
|
||||||
|
msgid "Certificates"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: modules/luci-mod-ucentral/htdocs/luci-static/resources/view/ucentral/settings.js:54
|
||||||
|
msgid "Certificates updated."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: modules/luci-mod-ucentral/htdocs/luci-static/resources/view/ucentral/system.js:51
|
||||||
|
msgid "Checking image…"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: modules/luci-mod-ucentral/htdocs/luci-static/resources/view/ucentral/uplink.js:40
|
||||||
|
msgid "Connection"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: modules/luci-mod-ucentral/htdocs/luci-static/resources/view/ucentral/system.js:84
|
||||||
|
msgid "Continue"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: modules/luci-mod-ucentral/htdocs/luci-static/resources/tools/ucentral.js:54
|
||||||
|
msgid "Continue configuration"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: modules/luci-mod-ucentral/htdocs/luci-static/resources/view/ucentral/uplink.js:104
|
||||||
|
msgid "DNS Servers"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: modules/luci-mod-ucentral/htdocs/luci-static/resources/view/ucentral/system.js:37
|
||||||
|
msgid "Do you really want to erase all settings?"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: modules/luci-mod-ucentral/htdocs/luci-static/resources/tools/ucentral.js:73
|
||||||
|
msgid "Error"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: modules/luci-mod-ucentral/htdocs/luci-static/resources/view/ucentral/status.js:61
|
||||||
msgid "Firmware Version"
|
msgid "Firmware Version"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: modules/luci-mod-ucentral/htdocs/luci-static/resources/view/ucentral/system.js:171
|
#: modules/luci-mod-ucentral/htdocs/luci-static/resources/view/ucentral/system.js:163
|
||||||
msgid "Firmware upgrade"
|
msgid "Firmware upgrade"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: modules/luci-mod-ucentral/htdocs/luci-static/resources/view/ucentral/system.js:99
|
#: modules/luci-mod-ucentral/htdocs/luci-static/resources/view/ucentral/system.js:95
|
||||||
msgid "Flash image?"
|
msgid "Flash image?"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: modules/luci-mod-ucentral/htdocs/luci-static/resources/view/ucentral/system.js:103
|
#: modules/luci-mod-ucentral/htdocs/luci-static/resources/view/ucentral/system.js:99
|
||||||
#: modules/luci-mod-ucentral/htdocs/luci-static/resources/view/ucentral/system.js:178
|
#: modules/luci-mod-ucentral/htdocs/luci-static/resources/view/ucentral/system.js:170
|
||||||
msgid "Flash image…"
|
msgid "Flash image…"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: modules/luci-mod-ucentral/htdocs/luci-static/resources/view/ucentral/system.js:108
|
#: modules/luci-mod-ucentral/htdocs/luci-static/resources/view/ucentral/system.js:104
|
||||||
#: modules/luci-mod-ucentral/htdocs/luci-static/resources/view/ucentral/system.js:110
|
|
||||||
msgid "Flashing…"
|
msgid "Flashing…"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@@ -111,108 +121,116 @@ msgstr ""
|
|||||||
msgid "Grant access to ucentral configuration"
|
msgid "Grant access to ucentral configuration"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: modules/luci-mod-ucentral/htdocs/luci-static/resources/view/ucentral/status.js:57
|
#: modules/luci-mod-ucentral/htdocs/luci-static/resources/view/ucentral/status.js:58
|
||||||
msgid "Hostname"
|
msgid "Hostname"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: modules/luci-mod-ucentral/htdocs/luci-static/resources/view/ucentral/uplink.js:93
|
#: modules/luci-mod-ucentral/htdocs/luci-static/resources/view/ucentral/uplink.js:86
|
||||||
msgid "IPv4 Address"
|
msgid "IPv4 Address"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: modules/luci-mod-ucentral/htdocs/luci-static/resources/view/ucentral/uplink.js:98
|
#: modules/luci-mod-ucentral/htdocs/luci-static/resources/view/ucentral/uplink.js:91
|
||||||
msgid "IPv4 Gateway"
|
msgid "IPv4 Gateway"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: modules/luci-mod-ucentral/htdocs/luci-static/resources/view/ucentral/uplink.js:103
|
#: modules/luci-mod-ucentral/htdocs/luci-static/resources/view/ucentral/uplink.js:96
|
||||||
msgid "IPv6 Address"
|
msgid "IPv6 Address"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: modules/luci-mod-ucentral/htdocs/luci-static/resources/view/ucentral/uplink.js:107
|
#: modules/luci-mod-ucentral/htdocs/luci-static/resources/view/ucentral/uplink.js:100
|
||||||
msgid "IPv6 Gateway"
|
msgid "IPv6 Gateway"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: modules/luci-mod-ucentral/htdocs/luci-static/resources/view/ucentral/uplink.js:64
|
#: modules/luci-mod-ucentral/htdocs/luci-static/resources/view/ucentral/uplink.js:57
|
||||||
msgid "Invalid APN provided"
|
msgid "Invalid APN provided"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: modules/luci-mod-ucentral/htdocs/luci-static/resources/view/ucentral/system.js:99
|
#: modules/luci-mod-ucentral/htdocs/luci-static/resources/view/ucentral/system.js:95
|
||||||
msgid "Invalid image"
|
msgid "Invalid image"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: modules/luci-mod-ucentral/htdocs/luci-static/resources/view/ucentral/system.js:149
|
#: modules/luci-mod-ucentral/htdocs/luci-static/resources/view/ucentral/system.js:141
|
||||||
msgid "Issue a reboot and restart the operating system on this device."
|
msgid "Issue a reboot and restart the operating system on this device."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: modules/luci-mod-ucentral/htdocs/luci-static/resources/view/ucentral/status.js:61
|
#: modules/luci-mod-ucentral/htdocs/luci-static/resources/view/ucentral/status.js:62
|
||||||
msgid "Kernel Version"
|
msgid "Kernel Version"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: modules/luci-mod-ucentral/htdocs/luci-static/resources/view/ucentral/status.js:64
|
#: modules/luci-mod-ucentral/htdocs/luci-static/resources/view/ucentral/status.js:65
|
||||||
msgid "Load Average"
|
msgid "Load Average"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: modules/luci-mod-ucentral/htdocs/luci-static/resources/view/ucentral/status.js:62
|
#: modules/luci-mod-ucentral/htdocs/luci-static/resources/view/ucentral/status.js:63
|
||||||
msgid "Local Time"
|
msgid "Local Time"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: modules/luci-mod-ucentral/htdocs/luci-static/resources/view/ucentral/settings.js:60
|
#: modules/luci-mod-ucentral/htdocs/luci-static/resources/view/ucentral/settings.js:37
|
||||||
msgid "Local settings"
|
msgid "Local settings"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: modules/luci-mod-ucentral/htdocs/luci-static/resources/view/ucentral/system.js:73
|
#: modules/luci-mod-ucentral/htdocs/luci-static/resources/view/ucentral/system.js:69
|
||||||
msgid "MD5"
|
msgid "MD5"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: modules/luci-mod-ucentral/htdocs/luci-static/resources/view/ucentral/status.js:111
|
#: modules/luci-mod-ucentral/htdocs/luci-static/resources/view/ucentral/status.js:112
|
||||||
msgid "Memory"
|
msgid "Memory"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: modules/luci-mod-ucentral/htdocs/luci-static/resources/view/ucentral/status.js:58
|
#: modules/luci-mod-ucentral/htdocs/luci-static/resources/view/ucentral/status.js:59
|
||||||
msgid "Model"
|
msgid "Model"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: modules/luci-mod-ucentral/htdocs/luci-static/resources/view/ucentral/uplink.js:75
|
#: modules/luci-mod-ucentral/htdocs/luci-static/resources/view/ucentral/uplink.js:47
|
||||||
|
msgid "Modem type"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: modules/luci-mod-ucentral/htdocs/luci-static/resources/view/ucentral/uplink.js:68
|
||||||
msgid "No authentication"
|
msgid "No authentication"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: modules/luci-mod-ucentral/htdocs/luci-static/resources/view/ucentral/uplink.js:69
|
#: modules/luci-mod-ucentral/htdocs/luci-static/resources/tools/ucentral.js:76
|
||||||
|
msgid "OK"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: modules/luci-mod-ucentral/htdocs/luci-static/resources/view/ucentral/uplink.js:62
|
||||||
msgid "PIN"
|
msgid "PIN"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: modules/luci-mod-ucentral/htdocs/luci-static/resources/view/ucentral/uplink.js:86
|
#: modules/luci-mod-ucentral/htdocs/luci-static/resources/view/ucentral/uplink.js:79
|
||||||
msgid "Password"
|
msgid "Password"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: modules/luci-mod-ucentral/htdocs/luci-static/resources/view/ucentral/system.js:166
|
#: modules/luci-mod-ucentral/htdocs/luci-static/resources/view/ucentral/system.js:158
|
||||||
msgid "Perform reset"
|
msgid "Perform reset"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: modules/luci-mod-ucentral/htdocs/luci-static/resources/view/ucentral/system.js:155
|
#: modules/luci-mod-ucentral/htdocs/luci-static/resources/view/ucentral/system.js:147
|
||||||
msgid "Reboot"
|
msgid "Reboot"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: modules/luci-mod-ucentral/htdocs/luci-static/resources/view/ucentral/system.js:148
|
#: modules/luci-mod-ucentral/htdocs/luci-static/resources/view/ucentral/system.js:140
|
||||||
msgid "Reboot device"
|
msgid "Reboot device"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: modules/luci-mod-ucentral/htdocs/luci-static/resources/view/ucentral/system.js:127
|
#: modules/luci-mod-ucentral/htdocs/luci-static/resources/tools/ucentral.js:35
|
||||||
msgid "Rebooting…"
|
msgid "Reboot required"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: modules/luci-mod-ucentral/htdocs/luci-static/resources/view/ucentral/settings.js:63
|
#: modules/luci-mod-ucentral/htdocs/luci-static/resources/view/ucentral/settings.js:40
|
||||||
msgid "Redirector URL"
|
msgid "Redirector URL"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: modules/luci-mod-ucentral/htdocs/luci-static/resources/view/ucentral/system.js:160
|
#: modules/luci-mod-ucentral/htdocs/luci-static/resources/view/ucentral/system.js:152
|
||||||
msgid ""
|
msgid ""
|
||||||
"Reset the system to its initial state and discard any configuration changes."
|
"Reset the system to its initial state and discard any configuration changes."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: modules/luci-mod-ucentral/htdocs/luci-static/resources/view/ucentral/system.js:159
|
#: modules/luci-mod-ucentral/htdocs/luci-static/resources/view/ucentral/system.js:151
|
||||||
msgid "Reset to defaults"
|
msgid "Reset to defaults"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: modules/luci-mod-ucentral/htdocs/luci-static/resources/view/ucentral/system.js:74
|
#: modules/luci-mod-ucentral/htdocs/luci-static/resources/view/ucentral/system.js:70
|
||||||
msgid "SHA256"
|
msgid "SHA256"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@@ -220,11 +238,11 @@ msgstr ""
|
|||||||
msgid "Settings"
|
msgid "Settings"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: modules/luci-mod-ucentral/htdocs/luci-static/resources/view/ucentral/system.js:72
|
#: modules/luci-mod-ucentral/htdocs/luci-static/resources/view/ucentral/system.js:68
|
||||||
msgid "Size"
|
msgid "Size"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: modules/luci-mod-ucentral/htdocs/luci-static/resources/view/ucentral/uplink.js:55
|
#: modules/luci-mod-ucentral/htdocs/luci-static/resources/view/ucentral/uplink.js:42
|
||||||
msgid "Static address configuration"
|
msgid "Static address configuration"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@@ -232,39 +250,48 @@ msgstr ""
|
|||||||
msgid "Status"
|
msgid "Status"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: modules/luci-mod-ucentral/htdocs/luci-static/resources/view/ucentral/status.js:91
|
#: modules/luci-mod-ucentral/htdocs/luci-static/resources/view/ucentral/status.js:92
|
||||||
msgid "Swap free"
|
msgid "Swap free"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: modules/luci-mod-ucentral/htdocs/luci-static/resources/view/ucentral/status.js:107
|
#: modules/luci-mod-ucentral/htdocs/luci-static/resources/view/ucentral/status.js:108
|
||||||
#: modules/luci-mod-ucentral/root/usr/share/luci/menu.d/luci-mod-ucentral.json:52
|
#: modules/luci-mod-ucentral/root/usr/share/luci/menu.d/luci-mod-ucentral.json:52
|
||||||
msgid "System"
|
msgid "System"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: modules/luci-mod-ucentral/htdocs/luci-static/resources/view/ucentral/system.js:128
|
#: modules/luci-mod-ucentral/htdocs/luci-static/resources/view/ucentral/system.js:121
|
||||||
msgid ""
|
msgid ""
|
||||||
"The device is rebooting now. This page will try to reconnect automatically "
|
"The device is rebooting now. This page will try to reconnect automatically "
|
||||||
"once the device is fully booted."
|
"once the device is fully booted."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: modules/luci-mod-ucentral/htdocs/luci-static/resources/view/ucentral/system.js:78
|
#: modules/luci-mod-ucentral/htdocs/luci-static/resources/tools/ucentral.js:50
|
||||||
|
msgid ""
|
||||||
|
"The device must be rebooted in order to apply the changed settings. Once the "
|
||||||
|
"uCentral agent successfully connects to the controller, the remote "
|
||||||
|
"configuration profile will be applied and the initial provisioning web "
|
||||||
|
"interface is disabled."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: modules/luci-mod-ucentral/htdocs/luci-static/resources/view/ucentral/system.js:74
|
||||||
msgid ""
|
msgid ""
|
||||||
"The firmware image is invalid and cannot be flashed. Check the diagnostics "
|
"The firmware image is invalid and cannot be flashed. Check the diagnostics "
|
||||||
"below for further details."
|
"below for further details."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: modules/luci-mod-ucentral/htdocs/luci-static/resources/view/ucentral/system.js:70
|
#: modules/luci-mod-ucentral/htdocs/luci-static/resources/view/ucentral/system.js:66
|
||||||
msgid ""
|
msgid ""
|
||||||
"The firmware image was uploaded. Compare the checksum and file size listed "
|
"The firmware image was uploaded. Compare the checksum and file size listed "
|
||||||
"below with the original file to ensure data integrity. <br /> Click "
|
"below with the original file to ensure data integrity. <br /> Click "
|
||||||
"'Continue' below to start the flash procedure."
|
"'Continue' below to start the flash procedure."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: modules/luci-mod-ucentral/htdocs/luci-static/resources/view/ucentral/system.js:123
|
#: modules/luci-mod-ucentral/htdocs/luci-static/resources/tools/ucentral.js:22
|
||||||
|
#: modules/luci-mod-ucentral/htdocs/luci-static/resources/view/ucentral/system.js:117
|
||||||
msgid "The reboot command failed with code %d"
|
msgid "The reboot command failed with code %d"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: modules/luci-mod-ucentral/htdocs/luci-static/resources/view/ucentral/settings.js:61
|
#: modules/luci-mod-ucentral/htdocs/luci-static/resources/view/ucentral/settings.js:38
|
||||||
msgid ""
|
msgid ""
|
||||||
"The settings on this page specify how the local uCentral client connects to "
|
"The settings on this page specify how the local uCentral client connects to "
|
||||||
"the controller server."
|
"the controller server."
|
||||||
@@ -276,7 +303,7 @@ msgid ""
|
|||||||
"when finished."
|
"when finished."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: modules/luci-mod-ucentral/htdocs/luci-static/resources/view/ucentral/system.js:111
|
#: modules/luci-mod-ucentral/htdocs/luci-static/resources/view/ucentral/system.js:106
|
||||||
msgid ""
|
msgid ""
|
||||||
"The system is flashing now.<br /> DO NOT POWER OFF THE DEVICE!<br /> Wait a "
|
"The system is flashing now.<br /> DO NOT POWER OFF THE DEVICE!<br /> Wait a "
|
||||||
"few minutes before you try to reconnect. It might be necessary to renew the "
|
"few minutes before you try to reconnect. It might be necessary to renew the "
|
||||||
@@ -284,26 +311,32 @@ msgid ""
|
|||||||
"settings."
|
"settings."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: modules/luci-mod-ucentral/htdocs/luci-static/resources/view/ucentral/uplink.js:51
|
#: modules/luci-mod-ucentral/htdocs/luci-static/resources/tools/ucentral.js:26
|
||||||
|
msgid ""
|
||||||
|
"The system is rebooting in order to attempt applying the remote "
|
||||||
|
"configuration profile now. If not successful, the device will revert back "
|
||||||
|
"into the initial provisioning state."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: modules/luci-mod-ucentral/htdocs/luci-static/resources/view/ucentral/uplink.js:38
|
||||||
msgid ""
|
msgid ""
|
||||||
"The uplink settings allow overriding the WAN connection properties of the "
|
"The uplink settings allow overriding the WAN connection properties of the "
|
||||||
"local device."
|
"local device."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: modules/luci-mod-ucentral/htdocs/luci-static/resources/view/ucentral/status.js:82
|
#: modules/luci-mod-ucentral/htdocs/luci-static/resources/view/ucentral/status.js:83
|
||||||
msgid "Total Available"
|
msgid "Total Available"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: modules/luci-mod-ucentral/htdocs/luci-static/resources/view/ucentral/settings.js:96
|
#: modules/luci-mod-ucentral/htdocs/luci-static/resources/tools/ucentral.js:95
|
||||||
#: modules/luci-mod-ucentral/htdocs/luci-static/resources/view/ucentral/uplink.js:131
|
msgid "Unable to save settings: %s"
|
||||||
msgid "Unable to save connection settings: %s"
|
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: modules/luci-mod-ucentral/htdocs/luci-static/resources/view/ucentral/settings.js:78
|
#: modules/luci-mod-ucentral/htdocs/luci-static/resources/view/ucentral/settings.js:58
|
||||||
msgid "Unable to update certificates: %s"
|
msgid "Unable to verify certificates: %s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: modules/luci-mod-ucentral/htdocs/luci-static/resources/view/ucentral/settings.js:64
|
#: modules/luci-mod-ucentral/htdocs/luci-static/resources/view/ucentral/settings.js:41
|
||||||
msgid "Unit location"
|
msgid "Unit location"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@@ -311,39 +344,39 @@ msgstr ""
|
|||||||
msgid "Uplink"
|
msgid "Uplink"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: modules/luci-mod-ucentral/htdocs/luci-static/resources/view/ucentral/uplink.js:50
|
#: modules/luci-mod-ucentral/htdocs/luci-static/resources/view/ucentral/uplink.js:37
|
||||||
msgid "Uplink configuration"
|
msgid "Uplink configuration"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: modules/luci-mod-ucentral/htdocs/luci-static/resources/view/ucentral/system.js:172
|
#: modules/luci-mod-ucentral/htdocs/luci-static/resources/view/ucentral/system.js:164
|
||||||
msgid "Upload a compatible firmware image here to upgrade the running system."
|
msgid "Upload a compatible firmware image here to upgrade the running system."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: modules/luci-mod-ucentral/htdocs/luci-static/resources/view/ucentral/settings.js:67
|
#: modules/luci-mod-ucentral/htdocs/luci-static/resources/view/ucentral/settings.js:44
|
||||||
msgid "Upload certificate bundle…"
|
msgid "Upload certificate bundle…"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: modules/luci-mod-ucentral/htdocs/luci-static/resources/view/ucentral/status.js:63
|
#: modules/luci-mod-ucentral/htdocs/luci-static/resources/view/ucentral/status.js:64
|
||||||
msgid "Uptime"
|
msgid "Uptime"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: modules/luci-mod-ucentral/htdocs/luci-static/resources/view/ucentral/uplink.js:54
|
#: modules/luci-mod-ucentral/htdocs/luci-static/resources/view/ucentral/uplink.js:41
|
||||||
msgid "Use default cloud settings"
|
msgid "Use default cloud settings"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: modules/luci-mod-ucentral/htdocs/luci-static/resources/view/ucentral/status.js:83
|
#: modules/luci-mod-ucentral/htdocs/luci-static/resources/view/ucentral/status.js:84
|
||||||
msgid "Used"
|
msgid "Used"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: modules/luci-mod-ucentral/htdocs/luci-static/resources/view/ucentral/uplink.js:80
|
#: modules/luci-mod-ucentral/htdocs/luci-static/resources/view/ucentral/uplink.js:73
|
||||||
msgid "Username"
|
msgid "Username"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: modules/luci-mod-ucentral/htdocs/luci-static/resources/view/ucentral/settings.js:70
|
#: modules/luci-mod-ucentral/htdocs/luci-static/resources/view/ucentral/settings.js:47
|
||||||
msgid "Verifying certificates…"
|
msgid "Verifying certificates…"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: modules/luci-mod-ucentral/htdocs/luci-static/resources/view/ucentral/system.js:55
|
#: modules/luci-mod-ucentral/htdocs/luci-static/resources/view/ucentral/system.js:52
|
||||||
msgid "Verifying the uploaded image file."
|
msgid "Verifying the uploaded image file."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user