mirror of
https://github.com/openwrt/luci.git
synced 2026-07-12 20:34:31 +04:00
luci-app-nut: only allow admin write access and limit read access
In order to mitigate GHSA-4f29-2ff2-6hqf: 'authenticated luci-app-nut configuration user can execute NUT monitor notify commands as root', we write access to the nut UCI configuration only for admin user, and also limit some additional read access for non-admin users. Remove unneeded permissions in luci-app-nut* ACLs Signed-off-by: Daniel F. Dickinson <dfdpublic@wildtechgarden.ca>
This commit is contained in:
committed by
Hannu Nyman
parent
239c5ec57e
commit
5cf20c5741
@@ -33,15 +33,6 @@ return view.extend({
|
||||
o = s.option(form.Value, 'displayname', _('Display name'));
|
||||
o.optional = false;
|
||||
|
||||
s = m.section(form.TypedSection, 'upsset', _('Control UPS via CGI'));
|
||||
s.addremove = false;
|
||||
s.anonymous = true;
|
||||
s.optional = false;
|
||||
|
||||
o = s.option(form.Flag, 'enable', _('Enable'));
|
||||
o.optional = false;
|
||||
o.default = false;
|
||||
|
||||
return m.render();
|
||||
}
|
||||
});
|
||||
|
||||
@@ -0,0 +1,28 @@
|
||||
'use strict';
|
||||
'require form';
|
||||
'require view';
|
||||
|
||||
return view.extend({
|
||||
load: function() {
|
||||
|
||||
},
|
||||
|
||||
render: function() {
|
||||
let m, s, o;
|
||||
|
||||
m = new form.Map('nut_cgi', _('NUT CGI'),
|
||||
_('Network UPS Tools CGI Configuration') + '<br />' +
|
||||
'%s'.format('<a href="/nut">%s</a>'.format(_('Go to NUT CGI'))));
|
||||
|
||||
s = m.section(form.TypedSection, 'upsset', _('Control UPS via CGI'));
|
||||
s.addremove = false;
|
||||
s.anonymous = true;
|
||||
s.optional = false;
|
||||
|
||||
o = s.option(form.Flag, 'enable', _('Enable'));
|
||||
o.optional = false;
|
||||
o.default = false;
|
||||
|
||||
return m.render();
|
||||
}
|
||||
});
|
||||
@@ -15,7 +15,6 @@ function ESIFlags(o) {
|
||||
return o;
|
||||
}
|
||||
|
||||
|
||||
function MonitorUserOptions(s) {
|
||||
let o
|
||||
|
||||
@@ -72,21 +71,11 @@ return view.extend({
|
||||
s.addremove = true;
|
||||
s.optional = true;
|
||||
|
||||
o = s.option(form.Value, 'runas', _('RunAs User'), _('upsmon drops privileges to this user'));
|
||||
o.placeholder = 'nutmon'
|
||||
|
||||
o = s.option(form.Value, 'minsupplies', _('Minimum required number or power supplies'));
|
||||
o.datatype = 'uinteger'
|
||||
o.placeholder = 1;
|
||||
o.optional = true;
|
||||
|
||||
o = s.option(form.Value, 'shutdowncmd', _('Shutdown command'));
|
||||
o.optional = true;
|
||||
o.placeholder = '/sbin/halt'
|
||||
|
||||
o = s.option(form.Value, 'notifycmd', _('Notify command'));
|
||||
o.optional = true;
|
||||
|
||||
o = s.option(form.Value, 'pollfreq', _('Poll frequency'));
|
||||
o.datatype = 'uinteger'
|
||||
o.placeholder = 5;
|
||||
|
||||
@@ -0,0 +1,32 @@
|
||||
'use strict';
|
||||
'require form';
|
||||
'require view';
|
||||
|
||||
return view.extend({
|
||||
load: function() {
|
||||
|
||||
},
|
||||
|
||||
render: function() {
|
||||
let m, s, o;
|
||||
|
||||
m = new form.Map('nut_monitor', _('NUT Monitor'),
|
||||
_('Network UPS Tools Monitoring Configuration'));
|
||||
|
||||
s = m.section(form.NamedSection, 'upsmon', 'upsmon', _('Global Settings'));
|
||||
s.addremove = true;
|
||||
s.optional = true;
|
||||
|
||||
o = s.option(form.Value, 'runas', _('RunAs User'), _('upsmon drops privileges to this user'));
|
||||
o.placeholder = 'nutmon'
|
||||
|
||||
o = s.option(form.Value, 'notifycmd', _('Notify command'));
|
||||
o.optional = true;
|
||||
|
||||
o = s.option(form.Value, 'shutdowncmd', _('Shutdown command'));
|
||||
o.optional = true;
|
||||
o.placeholder = '/usr/sbin/nutshutdown'
|
||||
|
||||
return m.render();
|
||||
}
|
||||
});
|
||||
@@ -94,14 +94,6 @@ return view.extend({
|
||||
o.optional = true;
|
||||
o.placeholder = 15;
|
||||
|
||||
o = s.option(form.Value, 'runas', _('RunAs User'), _('Drop privileges to this user'));
|
||||
o.optional = true;
|
||||
o.placeholder = 'nut'
|
||||
|
||||
o = s.option(form.Value, 'statepath', _('Path to state file'));
|
||||
o.optional = true;
|
||||
o.placeholder = '/var/run/nut'
|
||||
|
||||
o = s.option(form.Value, 'maxconn', _('Maximum connections'));
|
||||
o.optional = true;
|
||||
o.datatype = 'uinteger'
|
||||
@@ -146,10 +138,6 @@ return view.extend({
|
||||
o.optional = true;
|
||||
o.default = false;
|
||||
|
||||
o = s.option(form.Value, 'user', _('RunAs User'), _('User as which to execute driver; requires device file accessed by driver to be read-write for that user.'));
|
||||
o.optional = true;
|
||||
o.placeholder = 'nut';
|
||||
|
||||
// Drivers
|
||||
s = m.section(form.TypedSection, 'driver', _('Driver Configuration'),
|
||||
_('The name of this section will be used as UPS name elsewhere'));
|
||||
|
||||
@@ -0,0 +1,30 @@
|
||||
'use strict';
|
||||
'require form';
|
||||
'require view';
|
||||
|
||||
return view.extend({
|
||||
load: function() {
|
||||
|
||||
},
|
||||
|
||||
render: function() {
|
||||
let m, s, o;
|
||||
|
||||
m = new form.Map('nut_server', _('NUT Server'),
|
||||
_('Network UPS Tools Server Configuration'));
|
||||
|
||||
// Server global settings
|
||||
s = m.section(form.NamedSection, 'upsd', 'upsd', _('UPS Server Global Settings'));
|
||||
s.addremove = true;
|
||||
|
||||
o = s.option(form.Value, 'runas', _('RunAs User'), _('Drop privileges to this user'));
|
||||
o.optional = true;
|
||||
o.placeholder = 'nut'
|
||||
|
||||
o = s.option(form.Value, 'statepath', _('Path to state file'));
|
||||
o.optional = true;
|
||||
o.placeholder = '/var/run/nut'
|
||||
|
||||
return m.render();
|
||||
}
|
||||
});
|
||||
@@ -13,7 +13,7 @@ msgstr ""
|
||||
"&& n%100<=10 ? 3 : n%100>=11 ? 4 : 5;\n"
|
||||
"X-Generator: Weblate 5.17.1-dev\n"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:254
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:242
|
||||
msgid "Additional Shutdown Time(s)"
|
||||
msgstr ""
|
||||
|
||||
@@ -26,7 +26,7 @@ msgid "Allowed actions"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_cgi.js:21
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:26
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:25
|
||||
msgid "As configured by NUT"
|
||||
msgstr ""
|
||||
|
||||
@@ -38,43 +38,43 @@ msgstr ""
|
||||
msgid "Auxiliary (Deprecated)"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:190
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:178
|
||||
msgid "Bytes to read from interrupt pipe"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:110
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:99
|
||||
msgid "CA Certificate path"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:111
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:103
|
||||
msgid "Certificate file (SSL)"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_cgi.js:36
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_cgi_admin.js:17
|
||||
msgid "Control UPS via CGI"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:124
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:113
|
||||
msgid "Custom notification message for message type"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:104
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:93
|
||||
msgid "Deadtime"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:126
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:118
|
||||
msgid "Default for UPSes without this field."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:217
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:205
|
||||
msgid "Delay for kill power command"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:226
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:214
|
||||
msgid "Delay to power on UPS if power returns after kill power"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:167
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:155
|
||||
msgid "Description (Display)"
|
||||
msgstr ""
|
||||
|
||||
@@ -82,44 +82,44 @@ msgstr ""
|
||||
msgid "Display name"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:209
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:197
|
||||
msgid "Do not lock port when starting driver"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:170
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:158
|
||||
msgid "Driver"
|
||||
msgstr "برنامج تشغيل"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:154
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:142
|
||||
msgid "Driver Configuration"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:116
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:108
|
||||
msgid "Driver Global Settings"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:122
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:114
|
||||
msgid "Driver Path"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:250
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:238
|
||||
msgid "Driver Shutdown Order"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:145
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:282
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:137
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:270
|
||||
msgid "Driver waits for data to be consumed by upsd before publishing more."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:97
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server_admin.js:20
|
||||
msgid "Drop privileges to this user"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_cgi.js:41
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_cgi_admin.js:22
|
||||
msgid "Enable"
|
||||
msgstr "شغل"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:178
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:166
|
||||
msgid ""
|
||||
"Enables a hotplug script that makes all ttyUSB devices (e.g. serial USB) "
|
||||
"group read-write as user %s"
|
||||
@@ -133,23 +133,29 @@ msgstr ""
|
||||
msgid "Forced Shutdown"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:71
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:70
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor_admin.js:16
|
||||
msgid "Global Settings"
|
||||
msgstr "الاعدادات العامة"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_cgi.js:15
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_cgi_admin.js:15
|
||||
msgid "Go to NUT CGI"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/root/usr/share/rpcd/acl.d/luci-app-nut.json:15
|
||||
msgid "Grant admin UCI access for luci-app-nut"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/root/usr/share/rpcd/acl.d/luci-app-nut.json:3
|
||||
msgid "Grant UCI access for luci-app-nut"
|
||||
msgid "Grant limited UCI read access for luci-app-nut"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_cgi.js:17
|
||||
msgid "Host"
|
||||
msgstr "ضيف"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:100
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:89
|
||||
msgid "Host Sync"
|
||||
msgstr ""
|
||||
|
||||
@@ -157,7 +163,7 @@ msgstr ""
|
||||
msgid "Hostname or IP address"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:29
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:28
|
||||
msgid "Hostname or address of UPS"
|
||||
msgstr ""
|
||||
|
||||
@@ -165,7 +171,7 @@ msgstr ""
|
||||
msgid "IP Address"
|
||||
msgstr "عنوان الـ IP"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:171
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:159
|
||||
msgid "If this list is empty you need to %s"
|
||||
msgstr ""
|
||||
|
||||
@@ -173,7 +179,7 @@ msgstr ""
|
||||
msgid "Ignore"
|
||||
msgstr "تجاهل"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:182
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:170
|
||||
msgid "Ignore Low Battery"
|
||||
msgstr ""
|
||||
|
||||
@@ -181,19 +187,19 @@ msgstr ""
|
||||
msgid "Instant commands"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:186
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:174
|
||||
msgid "Interrupt Only"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:190
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:178
|
||||
msgid "Interrupt Size"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:203
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:191
|
||||
msgid "Manufacturer (Display)"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:194
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:182
|
||||
msgid "Max USB HID Length Reported"
|
||||
msgstr ""
|
||||
|
||||
@@ -201,47 +207,55 @@ msgstr ""
|
||||
msgid "Maximum Age of Data"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:130
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:122
|
||||
msgid "Maximum Retries"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:126
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:198
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:118
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:186
|
||||
msgid "Maximum Start Delay"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:105
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:97
|
||||
msgid "Maximum connections"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:130
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:122
|
||||
msgid "Maximum number of times to try starting a driver."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:140
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:132
|
||||
msgid "Maximum time in seconds between refresh of UPS status"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:78
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:74
|
||||
msgid "Minimum required number or power supplies"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:206
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:194
|
||||
msgid "Model (Display)"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_cgi.js:13
|
||||
#: applications/luci-app-nut/root/usr/share/luci/menu.d/luci-app-nut.json:42
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_cgi_admin.js:13
|
||||
msgid "NUT CGI"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:68
|
||||
#: applications/luci-app-nut/root/usr/share/luci/menu.d/luci-app-nut.json:30
|
||||
#: applications/luci-app-nut/root/usr/share/luci/menu.d/luci-app-nut.json:100
|
||||
msgid "NUT CGI - admin"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/root/usr/share/luci/menu.d/luci-app-nut.json:85
|
||||
msgid "NUT CGI - main"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:67
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor_admin.js:13
|
||||
msgid "NUT Monitor"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:42
|
||||
#: applications/luci-app-nut/root/usr/share/luci/menu.d/luci-app-nut.json:18
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server_admin.js:13
|
||||
msgid "NUT Server"
|
||||
msgstr ""
|
||||
|
||||
@@ -249,7 +263,23 @@ msgstr ""
|
||||
msgid "NUT Users"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:26
|
||||
#: applications/luci-app-nut/root/usr/share/luci/menu.d/luci-app-nut.json:69
|
||||
msgid "NUT monitor - admin"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/root/usr/share/luci/menu.d/luci-app-nut.json:54
|
||||
msgid "NUT monitor - main"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/root/usr/share/luci/menu.d/luci-app-nut.json:38
|
||||
msgid "NUT server - admin"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/root/usr/share/luci/menu.d/luci-app-nut.json:23
|
||||
msgid "NUT server - main"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:25
|
||||
msgid "Name of UPS"
|
||||
msgstr ""
|
||||
|
||||
@@ -258,59 +288,62 @@ msgid "Network UPS Tools"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_cgi.js:14
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_cgi_admin.js:14
|
||||
msgid "Network UPS Tools CGI Configuration"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:69
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:68
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor_admin.js:14
|
||||
msgid "Network UPS Tools Monitoring Configuration"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:43
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server_admin.js:14
|
||||
msgid "Network UPS Tools Server Configuration"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:209
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:197
|
||||
msgid "No Lock"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:213
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:201
|
||||
msgid "No low/high voltage transfer OIDs"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:127
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:116
|
||||
msgid "Notification flags"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:119
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:108
|
||||
msgid "Notifications settings"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:87
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor_admin.js:23
|
||||
msgid "Notify command"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:217
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:205
|
||||
msgid "Off Delay(s)"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:226
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:214
|
||||
msgid "On Delay(s)"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:46
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:45
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:53
|
||||
msgid "Password"
|
||||
msgstr "كلمة المرور"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:110
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:99
|
||||
msgid "Path containing ca certificates to match against host certificate"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:122
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:114
|
||||
msgid "Path to drivers (instead of default)"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:101
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server_admin.js:24
|
||||
msgid "Path to state file"
|
||||
msgstr ""
|
||||
|
||||
@@ -318,30 +351,30 @@ msgstr ""
|
||||
msgid "Period after which data is considered stale"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:140
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:132
|
||||
msgid "Poll Interval"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:90
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:79
|
||||
msgid "Poll frequency"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:95
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:84
|
||||
msgid "Poll frequency alert"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:235
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:223
|
||||
msgid "Polling Frequency(s)"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_cgi.js:28
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:33
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:32
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:83
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:240
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:228
|
||||
msgid "Port"
|
||||
msgstr "المنفذ"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:38
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:37
|
||||
msgid "Power value"
|
||||
msgstr ""
|
||||
|
||||
@@ -353,15 +386,15 @@ msgstr "سيد"
|
||||
msgid "Primary (Deprecated)"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:244
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:232
|
||||
msgid "Product (regex)"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:114
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:103
|
||||
msgid "Require SSL and make sure server CN matches hostname"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:135
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:127
|
||||
msgid "Retry Delay"
|
||||
msgstr ""
|
||||
|
||||
@@ -369,49 +402,48 @@ msgstr ""
|
||||
msgid "Role"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:119
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:111
|
||||
msgid "Run drivers in a chroot(2) environment"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:75
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:97
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:149
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor_admin.js:20
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server_admin.js:20
|
||||
msgid "RunAs User"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:163
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:151
|
||||
msgid "SNMP Community"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:260
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:248
|
||||
msgid "SNMP retries"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:264
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:252
|
||||
msgid "SNMP timeout(s)"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:268
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:256
|
||||
msgid "SNMP version"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:270
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:258
|
||||
msgid "SNMPv1"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:271
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:259
|
||||
msgid "SNMPv2c"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:272
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:260
|
||||
msgid "SNMPv3"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:257
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:245
|
||||
msgid "Serial Number"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:177
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:165
|
||||
msgid "Set USB serial port permissions"
|
||||
msgstr ""
|
||||
|
||||
@@ -419,49 +451,50 @@ msgstr ""
|
||||
msgid "Set variables"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:83
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor_admin.js:26
|
||||
msgid "Shutdown command"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:145
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:282
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:137
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:270
|
||||
msgid "Synchronous Communication"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:155
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:143
|
||||
msgid "The name of this section will be used as UPS name elsewhere"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:167
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:203
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:206
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:257
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:155
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:191
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:194
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:245
|
||||
msgid ""
|
||||
"This is passed through to the driver, so make sure your driver supports this "
|
||||
"option"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:135
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:127
|
||||
msgid "Time in seconds between driver start retry attempts."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:198
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:186
|
||||
msgid "Time in seconds that upsdrvctl will wait for driver to finish starting"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:142
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:131
|
||||
msgid "UPS Auxiliary (Deprecated)"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:130
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:119
|
||||
msgid "UPS Monitor User Settings"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:139
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:128
|
||||
msgid "UPS Primary (Deprecated)"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:89
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server_admin.js:17
|
||||
msgid "UPS Server Global Settings"
|
||||
msgstr ""
|
||||
|
||||
@@ -469,19 +502,19 @@ msgstr ""
|
||||
msgid "UPS name"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:159
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:147
|
||||
msgid "USB Bus(es) (regex)"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:247
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:235
|
||||
msgid "USB Product Id"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:279
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:267
|
||||
msgid "USB Vendor Id"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:57
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:56
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:28
|
||||
msgid "Unable to run ldd: %s"
|
||||
msgstr ""
|
||||
@@ -491,30 +524,24 @@ msgid ""
|
||||
"Use %s to see full list of commands your UPS supports (requires %s package)"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:149
|
||||
msgid ""
|
||||
"User as which to execute driver; requires device file accessed by driver to "
|
||||
"be read-write for that user."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:133
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:122
|
||||
msgid "User type (Primary/Auxiliary)"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:43
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:42
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:50
|
||||
msgid "Username"
|
||||
msgstr "اسم المستخدم"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:276
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:264
|
||||
msgid "Vendor (regex)"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:114
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:103
|
||||
msgid "Verify all connection with SSL"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:194
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:182
|
||||
msgid "Workaround for buggy firmware"
|
||||
msgstr ""
|
||||
|
||||
@@ -526,14 +553,14 @@ msgstr ""
|
||||
msgid "Write to syslog and execute notify command"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:119
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:111
|
||||
msgid "chroot"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:171
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:159
|
||||
msgid "install drivers"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:75
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor_admin.js:20
|
||||
msgid "upsmon drops privileges to this user"
|
||||
msgstr ""
|
||||
|
||||
@@ -7,7 +7,7 @@ msgstr ""
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:254
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:242
|
||||
msgid "Additional Shutdown Time(s)"
|
||||
msgstr ""
|
||||
|
||||
@@ -20,7 +20,7 @@ msgid "Allowed actions"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_cgi.js:21
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:26
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:25
|
||||
msgid "As configured by NUT"
|
||||
msgstr ""
|
||||
|
||||
@@ -32,43 +32,43 @@ msgstr ""
|
||||
msgid "Auxiliary (Deprecated)"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:190
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:178
|
||||
msgid "Bytes to read from interrupt pipe"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:110
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:99
|
||||
msgid "CA Certificate path"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:111
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:103
|
||||
msgid "Certificate file (SSL)"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_cgi.js:36
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_cgi_admin.js:17
|
||||
msgid "Control UPS via CGI"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:124
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:113
|
||||
msgid "Custom notification message for message type"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:104
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:93
|
||||
msgid "Deadtime"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:126
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:118
|
||||
msgid "Default for UPSes without this field."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:217
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:205
|
||||
msgid "Delay for kill power command"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:226
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:214
|
||||
msgid "Delay to power on UPS if power returns after kill power"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:167
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:155
|
||||
msgid "Description (Display)"
|
||||
msgstr ""
|
||||
|
||||
@@ -76,44 +76,44 @@ msgstr ""
|
||||
msgid "Display name"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:209
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:197
|
||||
msgid "Do not lock port when starting driver"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:170
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:158
|
||||
msgid "Driver"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:154
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:142
|
||||
msgid "Driver Configuration"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:116
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:108
|
||||
msgid "Driver Global Settings"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:122
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:114
|
||||
msgid "Driver Path"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:250
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:238
|
||||
msgid "Driver Shutdown Order"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:145
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:282
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:137
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:270
|
||||
msgid "Driver waits for data to be consumed by upsd before publishing more."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:97
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server_admin.js:20
|
||||
msgid "Drop privileges to this user"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_cgi.js:41
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_cgi_admin.js:22
|
||||
msgid "Enable"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:178
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:166
|
||||
msgid ""
|
||||
"Enables a hotplug script that makes all ttyUSB devices (e.g. serial USB) "
|
||||
"group read-write as user %s"
|
||||
@@ -127,23 +127,29 @@ msgstr ""
|
||||
msgid "Forced Shutdown"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:71
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:70
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor_admin.js:16
|
||||
msgid "Global Settings"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_cgi.js:15
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_cgi_admin.js:15
|
||||
msgid "Go to NUT CGI"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/root/usr/share/rpcd/acl.d/luci-app-nut.json:15
|
||||
msgid "Grant admin UCI access for luci-app-nut"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/root/usr/share/rpcd/acl.d/luci-app-nut.json:3
|
||||
msgid "Grant UCI access for luci-app-nut"
|
||||
msgid "Grant limited UCI read access for luci-app-nut"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_cgi.js:17
|
||||
msgid "Host"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:100
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:89
|
||||
msgid "Host Sync"
|
||||
msgstr ""
|
||||
|
||||
@@ -151,7 +157,7 @@ msgstr ""
|
||||
msgid "Hostname or IP address"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:29
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:28
|
||||
msgid "Hostname or address of UPS"
|
||||
msgstr ""
|
||||
|
||||
@@ -159,7 +165,7 @@ msgstr ""
|
||||
msgid "IP Address"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:171
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:159
|
||||
msgid "If this list is empty you need to %s"
|
||||
msgstr ""
|
||||
|
||||
@@ -167,7 +173,7 @@ msgstr ""
|
||||
msgid "Ignore"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:182
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:170
|
||||
msgid "Ignore Low Battery"
|
||||
msgstr ""
|
||||
|
||||
@@ -175,19 +181,19 @@ msgstr ""
|
||||
msgid "Instant commands"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:186
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:174
|
||||
msgid "Interrupt Only"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:190
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:178
|
||||
msgid "Interrupt Size"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:203
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:191
|
||||
msgid "Manufacturer (Display)"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:194
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:182
|
||||
msgid "Max USB HID Length Reported"
|
||||
msgstr ""
|
||||
|
||||
@@ -195,47 +201,55 @@ msgstr ""
|
||||
msgid "Maximum Age of Data"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:130
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:122
|
||||
msgid "Maximum Retries"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:126
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:198
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:118
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:186
|
||||
msgid "Maximum Start Delay"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:105
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:97
|
||||
msgid "Maximum connections"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:130
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:122
|
||||
msgid "Maximum number of times to try starting a driver."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:140
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:132
|
||||
msgid "Maximum time in seconds between refresh of UPS status"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:78
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:74
|
||||
msgid "Minimum required number or power supplies"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:206
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:194
|
||||
msgid "Model (Display)"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_cgi.js:13
|
||||
#: applications/luci-app-nut/root/usr/share/luci/menu.d/luci-app-nut.json:42
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_cgi_admin.js:13
|
||||
msgid "NUT CGI"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:68
|
||||
#: applications/luci-app-nut/root/usr/share/luci/menu.d/luci-app-nut.json:30
|
||||
#: applications/luci-app-nut/root/usr/share/luci/menu.d/luci-app-nut.json:100
|
||||
msgid "NUT CGI - admin"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/root/usr/share/luci/menu.d/luci-app-nut.json:85
|
||||
msgid "NUT CGI - main"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:67
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor_admin.js:13
|
||||
msgid "NUT Monitor"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:42
|
||||
#: applications/luci-app-nut/root/usr/share/luci/menu.d/luci-app-nut.json:18
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server_admin.js:13
|
||||
msgid "NUT Server"
|
||||
msgstr ""
|
||||
|
||||
@@ -243,7 +257,23 @@ msgstr ""
|
||||
msgid "NUT Users"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:26
|
||||
#: applications/luci-app-nut/root/usr/share/luci/menu.d/luci-app-nut.json:69
|
||||
msgid "NUT monitor - admin"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/root/usr/share/luci/menu.d/luci-app-nut.json:54
|
||||
msgid "NUT monitor - main"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/root/usr/share/luci/menu.d/luci-app-nut.json:38
|
||||
msgid "NUT server - admin"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/root/usr/share/luci/menu.d/luci-app-nut.json:23
|
||||
msgid "NUT server - main"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:25
|
||||
msgid "Name of UPS"
|
||||
msgstr ""
|
||||
|
||||
@@ -252,59 +282,62 @@ msgid "Network UPS Tools"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_cgi.js:14
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_cgi_admin.js:14
|
||||
msgid "Network UPS Tools CGI Configuration"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:69
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:68
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor_admin.js:14
|
||||
msgid "Network UPS Tools Monitoring Configuration"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:43
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server_admin.js:14
|
||||
msgid "Network UPS Tools Server Configuration"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:209
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:197
|
||||
msgid "No Lock"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:213
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:201
|
||||
msgid "No low/high voltage transfer OIDs"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:127
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:116
|
||||
msgid "Notification flags"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:119
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:108
|
||||
msgid "Notifications settings"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:87
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor_admin.js:23
|
||||
msgid "Notify command"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:217
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:205
|
||||
msgid "Off Delay(s)"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:226
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:214
|
||||
msgid "On Delay(s)"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:46
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:45
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:53
|
||||
msgid "Password"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:110
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:99
|
||||
msgid "Path containing ca certificates to match against host certificate"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:122
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:114
|
||||
msgid "Path to drivers (instead of default)"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:101
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server_admin.js:24
|
||||
msgid "Path to state file"
|
||||
msgstr ""
|
||||
|
||||
@@ -312,30 +345,30 @@ msgstr ""
|
||||
msgid "Period after which data is considered stale"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:140
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:132
|
||||
msgid "Poll Interval"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:90
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:79
|
||||
msgid "Poll frequency"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:95
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:84
|
||||
msgid "Poll frequency alert"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:235
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:223
|
||||
msgid "Polling Frequency(s)"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_cgi.js:28
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:33
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:32
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:83
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:240
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:228
|
||||
msgid "Port"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:38
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:37
|
||||
msgid "Power value"
|
||||
msgstr ""
|
||||
|
||||
@@ -347,15 +380,15 @@ msgstr ""
|
||||
msgid "Primary (Deprecated)"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:244
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:232
|
||||
msgid "Product (regex)"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:114
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:103
|
||||
msgid "Require SSL and make sure server CN matches hostname"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:135
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:127
|
||||
msgid "Retry Delay"
|
||||
msgstr ""
|
||||
|
||||
@@ -363,49 +396,48 @@ msgstr ""
|
||||
msgid "Role"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:119
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:111
|
||||
msgid "Run drivers in a chroot(2) environment"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:75
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:97
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:149
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor_admin.js:20
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server_admin.js:20
|
||||
msgid "RunAs User"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:163
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:151
|
||||
msgid "SNMP Community"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:260
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:248
|
||||
msgid "SNMP retries"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:264
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:252
|
||||
msgid "SNMP timeout(s)"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:268
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:256
|
||||
msgid "SNMP version"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:270
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:258
|
||||
msgid "SNMPv1"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:271
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:259
|
||||
msgid "SNMPv2c"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:272
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:260
|
||||
msgid "SNMPv3"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:257
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:245
|
||||
msgid "Serial Number"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:177
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:165
|
||||
msgid "Set USB serial port permissions"
|
||||
msgstr ""
|
||||
|
||||
@@ -413,49 +445,50 @@ msgstr ""
|
||||
msgid "Set variables"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:83
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor_admin.js:26
|
||||
msgid "Shutdown command"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:145
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:282
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:137
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:270
|
||||
msgid "Synchronous Communication"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:155
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:143
|
||||
msgid "The name of this section will be used as UPS name elsewhere"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:167
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:203
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:206
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:257
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:155
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:191
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:194
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:245
|
||||
msgid ""
|
||||
"This is passed through to the driver, so make sure your driver supports this "
|
||||
"option"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:135
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:127
|
||||
msgid "Time in seconds between driver start retry attempts."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:198
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:186
|
||||
msgid "Time in seconds that upsdrvctl will wait for driver to finish starting"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:142
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:131
|
||||
msgid "UPS Auxiliary (Deprecated)"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:130
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:119
|
||||
msgid "UPS Monitor User Settings"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:139
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:128
|
||||
msgid "UPS Primary (Deprecated)"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:89
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server_admin.js:17
|
||||
msgid "UPS Server Global Settings"
|
||||
msgstr ""
|
||||
|
||||
@@ -463,19 +496,19 @@ msgstr ""
|
||||
msgid "UPS name"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:159
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:147
|
||||
msgid "USB Bus(es) (regex)"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:247
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:235
|
||||
msgid "USB Product Id"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:279
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:267
|
||||
msgid "USB Vendor Id"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:57
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:56
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:28
|
||||
msgid "Unable to run ldd: %s"
|
||||
msgstr ""
|
||||
@@ -485,30 +518,24 @@ msgid ""
|
||||
"Use %s to see full list of commands your UPS supports (requires %s package)"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:149
|
||||
msgid ""
|
||||
"User as which to execute driver; requires device file accessed by driver to "
|
||||
"be read-write for that user."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:133
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:122
|
||||
msgid "User type (Primary/Auxiliary)"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:43
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:42
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:50
|
||||
msgid "Username"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:276
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:264
|
||||
msgid "Vendor (regex)"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:114
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:103
|
||||
msgid "Verify all connection with SSL"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:194
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:182
|
||||
msgid "Workaround for buggy firmware"
|
||||
msgstr ""
|
||||
|
||||
@@ -520,14 +547,14 @@ msgstr ""
|
||||
msgid "Write to syslog and execute notify command"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:119
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:111
|
||||
msgid "chroot"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:171
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:159
|
||||
msgid "install drivers"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:75
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor_admin.js:20
|
||||
msgid "upsmon drops privileges to this user"
|
||||
msgstr ""
|
||||
|
||||
@@ -11,7 +11,7 @@ msgstr ""
|
||||
"n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
|
||||
"X-Generator: Weblate 5.17.1-dev\n"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:254
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:242
|
||||
msgid "Additional Shutdown Time(s)"
|
||||
msgstr ""
|
||||
|
||||
@@ -24,7 +24,7 @@ msgid "Allowed actions"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_cgi.js:21
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:26
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:25
|
||||
msgid "As configured by NUT"
|
||||
msgstr ""
|
||||
|
||||
@@ -36,43 +36,43 @@ msgstr ""
|
||||
msgid "Auxiliary (Deprecated)"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:190
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:178
|
||||
msgid "Bytes to read from interrupt pipe"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:110
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:99
|
||||
msgid "CA Certificate path"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:111
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:103
|
||||
msgid "Certificate file (SSL)"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_cgi.js:36
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_cgi_admin.js:17
|
||||
msgid "Control UPS via CGI"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:124
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:113
|
||||
msgid "Custom notification message for message type"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:104
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:93
|
||||
msgid "Deadtime"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:126
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:118
|
||||
msgid "Default for UPSes without this field."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:217
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:205
|
||||
msgid "Delay for kill power command"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:226
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:214
|
||||
msgid "Delay to power on UPS if power returns after kill power"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:167
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:155
|
||||
msgid "Description (Display)"
|
||||
msgstr ""
|
||||
|
||||
@@ -80,44 +80,44 @@ msgstr ""
|
||||
msgid "Display name"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:209
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:197
|
||||
msgid "Do not lock port when starting driver"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:170
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:158
|
||||
msgid "Driver"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:154
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:142
|
||||
msgid "Driver Configuration"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:116
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:108
|
||||
msgid "Driver Global Settings"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:122
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:114
|
||||
msgid "Driver Path"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:250
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:238
|
||||
msgid "Driver Shutdown Order"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:145
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:282
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:137
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:270
|
||||
msgid "Driver waits for data to be consumed by upsd before publishing more."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:97
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server_admin.js:20
|
||||
msgid "Drop privileges to this user"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_cgi.js:41
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_cgi_admin.js:22
|
||||
msgid "Enable"
|
||||
msgstr "Уключыць"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:178
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:166
|
||||
msgid ""
|
||||
"Enables a hotplug script that makes all ttyUSB devices (e.g. serial USB) "
|
||||
"group read-write as user %s"
|
||||
@@ -131,23 +131,29 @@ msgstr ""
|
||||
msgid "Forced Shutdown"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:71
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:70
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor_admin.js:16
|
||||
msgid "Global Settings"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_cgi.js:15
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_cgi_admin.js:15
|
||||
msgid "Go to NUT CGI"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/root/usr/share/rpcd/acl.d/luci-app-nut.json:15
|
||||
msgid "Grant admin UCI access for luci-app-nut"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/root/usr/share/rpcd/acl.d/luci-app-nut.json:3
|
||||
msgid "Grant UCI access for luci-app-nut"
|
||||
msgid "Grant limited UCI read access for luci-app-nut"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_cgi.js:17
|
||||
msgid "Host"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:100
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:89
|
||||
msgid "Host Sync"
|
||||
msgstr ""
|
||||
|
||||
@@ -155,7 +161,7 @@ msgstr ""
|
||||
msgid "Hostname or IP address"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:29
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:28
|
||||
msgid "Hostname or address of UPS"
|
||||
msgstr ""
|
||||
|
||||
@@ -163,7 +169,7 @@ msgstr ""
|
||||
msgid "IP Address"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:171
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:159
|
||||
msgid "If this list is empty you need to %s"
|
||||
msgstr ""
|
||||
|
||||
@@ -171,7 +177,7 @@ msgstr ""
|
||||
msgid "Ignore"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:182
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:170
|
||||
msgid "Ignore Low Battery"
|
||||
msgstr ""
|
||||
|
||||
@@ -179,19 +185,19 @@ msgstr ""
|
||||
msgid "Instant commands"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:186
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:174
|
||||
msgid "Interrupt Only"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:190
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:178
|
||||
msgid "Interrupt Size"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:203
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:191
|
||||
msgid "Manufacturer (Display)"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:194
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:182
|
||||
msgid "Max USB HID Length Reported"
|
||||
msgstr ""
|
||||
|
||||
@@ -199,47 +205,55 @@ msgstr ""
|
||||
msgid "Maximum Age of Data"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:130
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:122
|
||||
msgid "Maximum Retries"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:126
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:198
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:118
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:186
|
||||
msgid "Maximum Start Delay"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:105
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:97
|
||||
msgid "Maximum connections"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:130
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:122
|
||||
msgid "Maximum number of times to try starting a driver."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:140
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:132
|
||||
msgid "Maximum time in seconds between refresh of UPS status"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:78
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:74
|
||||
msgid "Minimum required number or power supplies"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:206
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:194
|
||||
msgid "Model (Display)"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_cgi.js:13
|
||||
#: applications/luci-app-nut/root/usr/share/luci/menu.d/luci-app-nut.json:42
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_cgi_admin.js:13
|
||||
msgid "NUT CGI"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:68
|
||||
#: applications/luci-app-nut/root/usr/share/luci/menu.d/luci-app-nut.json:30
|
||||
#: applications/luci-app-nut/root/usr/share/luci/menu.d/luci-app-nut.json:100
|
||||
msgid "NUT CGI - admin"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/root/usr/share/luci/menu.d/luci-app-nut.json:85
|
||||
msgid "NUT CGI - main"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:67
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor_admin.js:13
|
||||
msgid "NUT Monitor"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:42
|
||||
#: applications/luci-app-nut/root/usr/share/luci/menu.d/luci-app-nut.json:18
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server_admin.js:13
|
||||
msgid "NUT Server"
|
||||
msgstr ""
|
||||
|
||||
@@ -247,7 +261,23 @@ msgstr ""
|
||||
msgid "NUT Users"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:26
|
||||
#: applications/luci-app-nut/root/usr/share/luci/menu.d/luci-app-nut.json:69
|
||||
msgid "NUT monitor - admin"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/root/usr/share/luci/menu.d/luci-app-nut.json:54
|
||||
msgid "NUT monitor - main"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/root/usr/share/luci/menu.d/luci-app-nut.json:38
|
||||
msgid "NUT server - admin"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/root/usr/share/luci/menu.d/luci-app-nut.json:23
|
||||
msgid "NUT server - main"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:25
|
||||
msgid "Name of UPS"
|
||||
msgstr ""
|
||||
|
||||
@@ -256,59 +286,62 @@ msgid "Network UPS Tools"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_cgi.js:14
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_cgi_admin.js:14
|
||||
msgid "Network UPS Tools CGI Configuration"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:69
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:68
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor_admin.js:14
|
||||
msgid "Network UPS Tools Monitoring Configuration"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:43
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server_admin.js:14
|
||||
msgid "Network UPS Tools Server Configuration"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:209
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:197
|
||||
msgid "No Lock"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:213
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:201
|
||||
msgid "No low/high voltage transfer OIDs"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:127
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:116
|
||||
msgid "Notification flags"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:119
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:108
|
||||
msgid "Notifications settings"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:87
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor_admin.js:23
|
||||
msgid "Notify command"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:217
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:205
|
||||
msgid "Off Delay(s)"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:226
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:214
|
||||
msgid "On Delay(s)"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:46
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:45
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:53
|
||||
msgid "Password"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:110
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:99
|
||||
msgid "Path containing ca certificates to match against host certificate"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:122
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:114
|
||||
msgid "Path to drivers (instead of default)"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:101
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server_admin.js:24
|
||||
msgid "Path to state file"
|
||||
msgstr ""
|
||||
|
||||
@@ -316,30 +349,30 @@ msgstr ""
|
||||
msgid "Period after which data is considered stale"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:140
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:132
|
||||
msgid "Poll Interval"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:90
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:79
|
||||
msgid "Poll frequency"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:95
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:84
|
||||
msgid "Poll frequency alert"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:235
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:223
|
||||
msgid "Polling Frequency(s)"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_cgi.js:28
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:33
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:32
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:83
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:240
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:228
|
||||
msgid "Port"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:38
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:37
|
||||
msgid "Power value"
|
||||
msgstr ""
|
||||
|
||||
@@ -351,15 +384,15 @@ msgstr ""
|
||||
msgid "Primary (Deprecated)"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:244
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:232
|
||||
msgid "Product (regex)"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:114
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:103
|
||||
msgid "Require SSL and make sure server CN matches hostname"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:135
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:127
|
||||
msgid "Retry Delay"
|
||||
msgstr ""
|
||||
|
||||
@@ -367,49 +400,48 @@ msgstr ""
|
||||
msgid "Role"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:119
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:111
|
||||
msgid "Run drivers in a chroot(2) environment"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:75
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:97
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:149
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor_admin.js:20
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server_admin.js:20
|
||||
msgid "RunAs User"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:163
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:151
|
||||
msgid "SNMP Community"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:260
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:248
|
||||
msgid "SNMP retries"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:264
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:252
|
||||
msgid "SNMP timeout(s)"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:268
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:256
|
||||
msgid "SNMP version"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:270
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:258
|
||||
msgid "SNMPv1"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:271
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:259
|
||||
msgid "SNMPv2c"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:272
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:260
|
||||
msgid "SNMPv3"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:257
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:245
|
||||
msgid "Serial Number"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:177
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:165
|
||||
msgid "Set USB serial port permissions"
|
||||
msgstr ""
|
||||
|
||||
@@ -417,49 +449,50 @@ msgstr ""
|
||||
msgid "Set variables"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:83
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor_admin.js:26
|
||||
msgid "Shutdown command"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:145
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:282
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:137
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:270
|
||||
msgid "Synchronous Communication"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:155
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:143
|
||||
msgid "The name of this section will be used as UPS name elsewhere"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:167
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:203
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:206
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:257
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:155
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:191
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:194
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:245
|
||||
msgid ""
|
||||
"This is passed through to the driver, so make sure your driver supports this "
|
||||
"option"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:135
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:127
|
||||
msgid "Time in seconds between driver start retry attempts."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:198
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:186
|
||||
msgid "Time in seconds that upsdrvctl will wait for driver to finish starting"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:142
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:131
|
||||
msgid "UPS Auxiliary (Deprecated)"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:130
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:119
|
||||
msgid "UPS Monitor User Settings"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:139
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:128
|
||||
msgid "UPS Primary (Deprecated)"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:89
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server_admin.js:17
|
||||
msgid "UPS Server Global Settings"
|
||||
msgstr ""
|
||||
|
||||
@@ -467,19 +500,19 @@ msgstr ""
|
||||
msgid "UPS name"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:159
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:147
|
||||
msgid "USB Bus(es) (regex)"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:247
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:235
|
||||
msgid "USB Product Id"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:279
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:267
|
||||
msgid "USB Vendor Id"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:57
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:56
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:28
|
||||
msgid "Unable to run ldd: %s"
|
||||
msgstr ""
|
||||
@@ -489,30 +522,24 @@ msgid ""
|
||||
"Use %s to see full list of commands your UPS supports (requires %s package)"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:149
|
||||
msgid ""
|
||||
"User as which to execute driver; requires device file accessed by driver to "
|
||||
"be read-write for that user."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:133
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:122
|
||||
msgid "User type (Primary/Auxiliary)"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:43
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:42
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:50
|
||||
msgid "Username"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:276
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:264
|
||||
msgid "Vendor (regex)"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:114
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:103
|
||||
msgid "Verify all connection with SSL"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:194
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:182
|
||||
msgid "Workaround for buggy firmware"
|
||||
msgstr ""
|
||||
|
||||
@@ -524,14 +551,14 @@ msgstr ""
|
||||
msgid "Write to syslog and execute notify command"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:119
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:111
|
||||
msgid "chroot"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:171
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:159
|
||||
msgid "install drivers"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:75
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor_admin.js:20
|
||||
msgid "upsmon drops privileges to this user"
|
||||
msgstr ""
|
||||
|
||||
@@ -12,7 +12,7 @@ msgstr ""
|
||||
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
||||
"X-Generator: Weblate 5.17-dev\n"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:254
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:242
|
||||
msgid "Additional Shutdown Time(s)"
|
||||
msgstr "Допълнително време за изключване"
|
||||
|
||||
@@ -25,7 +25,7 @@ msgid "Allowed actions"
|
||||
msgstr "Позволени действия"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_cgi.js:21
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:26
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:25
|
||||
msgid "As configured by NUT"
|
||||
msgstr ""
|
||||
|
||||
@@ -37,46 +37,46 @@ msgstr ""
|
||||
msgid "Auxiliary (Deprecated)"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:190
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:178
|
||||
msgid "Bytes to read from interrupt pipe"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:110
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:99
|
||||
msgid "CA Certificate path"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:111
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:103
|
||||
msgid "Certificate file (SSL)"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_cgi.js:36
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_cgi_admin.js:17
|
||||
msgid "Control UPS via CGI"
|
||||
msgstr "Управление на UPS чрез CGI"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:124
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:113
|
||||
msgid "Custom notification message for message type"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:104
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:93
|
||||
msgid "Deadtime"
|
||||
msgstr "Мъртво време"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:126
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:118
|
||||
msgid "Default for UPSes without this field."
|
||||
msgstr "По подразбиране за UPS-ите без това поле."
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:217
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:205
|
||||
#, fuzzy
|
||||
msgid "Delay for kill power command"
|
||||
msgstr "Закъснение преди команда за спиране (kill)"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:226
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:214
|
||||
msgid "Delay to power on UPS if power returns after kill power"
|
||||
msgstr ""
|
||||
"Закъснение за включване на UPS, ако захранването се възстанови след спиране "
|
||||
"на захранването"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:167
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:155
|
||||
msgid "Description (Display)"
|
||||
msgstr "Описание (Дисплей)"
|
||||
|
||||
@@ -84,44 +84,44 @@ msgstr "Описание (Дисплей)"
|
||||
msgid "Display name"
|
||||
msgstr "Показано име"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:209
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:197
|
||||
msgid "Do not lock port when starting driver"
|
||||
msgstr "Не заключвайте порта при стартиране на драйвъра"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:170
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:158
|
||||
msgid "Driver"
|
||||
msgstr "Драйвър"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:154
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:142
|
||||
msgid "Driver Configuration"
|
||||
msgstr "Конфигурация на Драйвър"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:116
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:108
|
||||
msgid "Driver Global Settings"
|
||||
msgstr "Глобални настройки на Драйвър"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:122
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:114
|
||||
msgid "Driver Path"
|
||||
msgstr "Път към драйвър"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:250
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:238
|
||||
msgid "Driver Shutdown Order"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:145
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:282
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:137
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:270
|
||||
msgid "Driver waits for data to be consumed by upsd before publishing more."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:97
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server_admin.js:20
|
||||
msgid "Drop privileges to this user"
|
||||
msgstr "Премахване на правата на този потребител"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_cgi.js:41
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_cgi_admin.js:22
|
||||
msgid "Enable"
|
||||
msgstr "Активиране"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:178
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:166
|
||||
msgid ""
|
||||
"Enables a hotplug script that makes all ttyUSB devices (e.g. serial USB) "
|
||||
"group read-write as user %s"
|
||||
@@ -135,23 +135,29 @@ msgstr ""
|
||||
msgid "Forced Shutdown"
|
||||
msgstr "Принудително изключване"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:71
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:70
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor_admin.js:16
|
||||
msgid "Global Settings"
|
||||
msgstr "Глобални настройки"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_cgi.js:15
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_cgi_admin.js:15
|
||||
msgid "Go to NUT CGI"
|
||||
msgstr "Отиди към NUT CGI"
|
||||
|
||||
#: applications/luci-app-nut/root/usr/share/rpcd/acl.d/luci-app-nut.json:15
|
||||
msgid "Grant admin UCI access for luci-app-nut"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/root/usr/share/rpcd/acl.d/luci-app-nut.json:3
|
||||
msgid "Grant UCI access for luci-app-nut"
|
||||
msgid "Grant limited UCI read access for luci-app-nut"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_cgi.js:17
|
||||
msgid "Host"
|
||||
msgstr "Хост"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:100
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:89
|
||||
msgid "Host Sync"
|
||||
msgstr ""
|
||||
|
||||
@@ -159,7 +165,7 @@ msgstr ""
|
||||
msgid "Hostname or IP address"
|
||||
msgstr "Hostname или IP адрес"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:29
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:28
|
||||
msgid "Hostname or address of UPS"
|
||||
msgstr ""
|
||||
|
||||
@@ -167,7 +173,7 @@ msgstr ""
|
||||
msgid "IP Address"
|
||||
msgstr "IP адрес"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:171
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:159
|
||||
msgid "If this list is empty you need to %s"
|
||||
msgstr ""
|
||||
|
||||
@@ -175,7 +181,7 @@ msgstr ""
|
||||
msgid "Ignore"
|
||||
msgstr "Игнориране"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:182
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:170
|
||||
msgid "Ignore Low Battery"
|
||||
msgstr "Игнориране на изтощена батерия"
|
||||
|
||||
@@ -183,20 +189,20 @@ msgstr "Игнориране на изтощена батерия"
|
||||
msgid "Instant commands"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:186
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:174
|
||||
msgid "Interrupt Only"
|
||||
msgstr "Само прекъсване"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:190
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:178
|
||||
msgid "Interrupt Size"
|
||||
msgstr "Размер на прекъсване"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:203
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:191
|
||||
#, fuzzy
|
||||
msgid "Manufacturer (Display)"
|
||||
msgstr "Производител (Дисплей)"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:194
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:182
|
||||
msgid "Max USB HID Length Reported"
|
||||
msgstr "Максимална отчетена дължина на USB HID"
|
||||
|
||||
@@ -204,47 +210,55 @@ msgstr "Максимална отчетена дължина на USB HID"
|
||||
msgid "Maximum Age of Data"
|
||||
msgstr "Максимална възраст на данни"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:130
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:122
|
||||
msgid "Maximum Retries"
|
||||
msgstr "Максимален брой повторения"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:126
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:198
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:118
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:186
|
||||
msgid "Maximum Start Delay"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:105
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:97
|
||||
msgid "Maximum connections"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:130
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:122
|
||||
msgid "Maximum number of times to try starting a driver."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:140
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:132
|
||||
msgid "Maximum time in seconds between refresh of UPS status"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:78
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:74
|
||||
msgid "Minimum required number or power supplies"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:206
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:194
|
||||
msgid "Model (Display)"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_cgi.js:13
|
||||
#: applications/luci-app-nut/root/usr/share/luci/menu.d/luci-app-nut.json:42
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_cgi_admin.js:13
|
||||
msgid "NUT CGI"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:68
|
||||
#: applications/luci-app-nut/root/usr/share/luci/menu.d/luci-app-nut.json:30
|
||||
#: applications/luci-app-nut/root/usr/share/luci/menu.d/luci-app-nut.json:100
|
||||
msgid "NUT CGI - admin"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/root/usr/share/luci/menu.d/luci-app-nut.json:85
|
||||
msgid "NUT CGI - main"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:67
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor_admin.js:13
|
||||
msgid "NUT Monitor"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:42
|
||||
#: applications/luci-app-nut/root/usr/share/luci/menu.d/luci-app-nut.json:18
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server_admin.js:13
|
||||
msgid "NUT Server"
|
||||
msgstr ""
|
||||
|
||||
@@ -252,7 +266,23 @@ msgstr ""
|
||||
msgid "NUT Users"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:26
|
||||
#: applications/luci-app-nut/root/usr/share/luci/menu.d/luci-app-nut.json:69
|
||||
msgid "NUT monitor - admin"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/root/usr/share/luci/menu.d/luci-app-nut.json:54
|
||||
msgid "NUT monitor - main"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/root/usr/share/luci/menu.d/luci-app-nut.json:38
|
||||
msgid "NUT server - admin"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/root/usr/share/luci/menu.d/luci-app-nut.json:23
|
||||
msgid "NUT server - main"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:25
|
||||
msgid "Name of UPS"
|
||||
msgstr ""
|
||||
|
||||
@@ -261,59 +291,62 @@ msgid "Network UPS Tools"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_cgi.js:14
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_cgi_admin.js:14
|
||||
msgid "Network UPS Tools CGI Configuration"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:69
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:68
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor_admin.js:14
|
||||
msgid "Network UPS Tools Monitoring Configuration"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:43
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server_admin.js:14
|
||||
msgid "Network UPS Tools Server Configuration"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:209
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:197
|
||||
msgid "No Lock"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:213
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:201
|
||||
msgid "No low/high voltage transfer OIDs"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:127
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:116
|
||||
msgid "Notification flags"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:119
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:108
|
||||
msgid "Notifications settings"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:87
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor_admin.js:23
|
||||
msgid "Notify command"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:217
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:205
|
||||
msgid "Off Delay(s)"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:226
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:214
|
||||
msgid "On Delay(s)"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:46
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:45
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:53
|
||||
msgid "Password"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:110
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:99
|
||||
msgid "Path containing ca certificates to match against host certificate"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:122
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:114
|
||||
msgid "Path to drivers (instead of default)"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:101
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server_admin.js:24
|
||||
msgid "Path to state file"
|
||||
msgstr ""
|
||||
|
||||
@@ -321,30 +354,30 @@ msgstr ""
|
||||
msgid "Period after which data is considered stale"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:140
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:132
|
||||
msgid "Poll Interval"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:90
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:79
|
||||
msgid "Poll frequency"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:95
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:84
|
||||
msgid "Poll frequency alert"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:235
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:223
|
||||
msgid "Polling Frequency(s)"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_cgi.js:28
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:33
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:32
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:83
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:240
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:228
|
||||
msgid "Port"
|
||||
msgstr "Порт"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:38
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:37
|
||||
msgid "Power value"
|
||||
msgstr ""
|
||||
|
||||
@@ -356,15 +389,15 @@ msgstr "Мастер"
|
||||
msgid "Primary (Deprecated)"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:244
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:232
|
||||
msgid "Product (regex)"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:114
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:103
|
||||
msgid "Require SSL and make sure server CN matches hostname"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:135
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:127
|
||||
msgid "Retry Delay"
|
||||
msgstr ""
|
||||
|
||||
@@ -372,49 +405,48 @@ msgstr ""
|
||||
msgid "Role"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:119
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:111
|
||||
msgid "Run drivers in a chroot(2) environment"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:75
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:97
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:149
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor_admin.js:20
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server_admin.js:20
|
||||
msgid "RunAs User"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:163
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:151
|
||||
msgid "SNMP Community"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:260
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:248
|
||||
msgid "SNMP retries"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:264
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:252
|
||||
msgid "SNMP timeout(s)"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:268
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:256
|
||||
msgid "SNMP version"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:270
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:258
|
||||
msgid "SNMPv1"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:271
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:259
|
||||
msgid "SNMPv2c"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:272
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:260
|
||||
msgid "SNMPv3"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:257
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:245
|
||||
msgid "Serial Number"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:177
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:165
|
||||
msgid "Set USB serial port permissions"
|
||||
msgstr ""
|
||||
|
||||
@@ -422,49 +454,50 @@ msgstr ""
|
||||
msgid "Set variables"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:83
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor_admin.js:26
|
||||
msgid "Shutdown command"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:145
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:282
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:137
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:270
|
||||
msgid "Synchronous Communication"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:155
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:143
|
||||
msgid "The name of this section will be used as UPS name elsewhere"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:167
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:203
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:206
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:257
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:155
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:191
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:194
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:245
|
||||
msgid ""
|
||||
"This is passed through to the driver, so make sure your driver supports this "
|
||||
"option"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:135
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:127
|
||||
msgid "Time in seconds between driver start retry attempts."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:198
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:186
|
||||
msgid "Time in seconds that upsdrvctl will wait for driver to finish starting"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:142
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:131
|
||||
msgid "UPS Auxiliary (Deprecated)"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:130
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:119
|
||||
msgid "UPS Monitor User Settings"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:139
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:128
|
||||
msgid "UPS Primary (Deprecated)"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:89
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server_admin.js:17
|
||||
msgid "UPS Server Global Settings"
|
||||
msgstr ""
|
||||
|
||||
@@ -472,19 +505,19 @@ msgstr ""
|
||||
msgid "UPS name"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:159
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:147
|
||||
msgid "USB Bus(es) (regex)"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:247
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:235
|
||||
msgid "USB Product Id"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:279
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:267
|
||||
msgid "USB Vendor Id"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:57
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:56
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:28
|
||||
msgid "Unable to run ldd: %s"
|
||||
msgstr ""
|
||||
@@ -494,30 +527,24 @@ msgid ""
|
||||
"Use %s to see full list of commands your UPS supports (requires %s package)"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:149
|
||||
msgid ""
|
||||
"User as which to execute driver; requires device file accessed by driver to "
|
||||
"be read-write for that user."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:133
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:122
|
||||
msgid "User type (Primary/Auxiliary)"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:43
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:42
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:50
|
||||
msgid "Username"
|
||||
msgstr "Потребителско име"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:276
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:264
|
||||
msgid "Vendor (regex)"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:114
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:103
|
||||
msgid "Verify all connection with SSL"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:194
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:182
|
||||
msgid "Workaround for buggy firmware"
|
||||
msgstr ""
|
||||
|
||||
@@ -529,15 +556,15 @@ msgstr ""
|
||||
msgid "Write to syslog and execute notify command"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:119
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:111
|
||||
msgid "chroot"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:171
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:159
|
||||
msgid "install drivers"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:75
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor_admin.js:20
|
||||
msgid "upsmon drops privileges to this user"
|
||||
msgstr ""
|
||||
|
||||
|
||||
@@ -12,7 +12,7 @@ msgstr ""
|
||||
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
||||
"X-Generator: Weblate 4.9-dev\n"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:254
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:242
|
||||
msgid "Additional Shutdown Time(s)"
|
||||
msgstr ""
|
||||
|
||||
@@ -25,7 +25,7 @@ msgid "Allowed actions"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_cgi.js:21
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:26
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:25
|
||||
msgid "As configured by NUT"
|
||||
msgstr ""
|
||||
|
||||
@@ -37,43 +37,43 @@ msgstr ""
|
||||
msgid "Auxiliary (Deprecated)"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:190
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:178
|
||||
msgid "Bytes to read from interrupt pipe"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:110
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:99
|
||||
msgid "CA Certificate path"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:111
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:103
|
||||
msgid "Certificate file (SSL)"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_cgi.js:36
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_cgi_admin.js:17
|
||||
msgid "Control UPS via CGI"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:124
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:113
|
||||
msgid "Custom notification message for message type"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:104
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:93
|
||||
msgid "Deadtime"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:126
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:118
|
||||
msgid "Default for UPSes without this field."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:217
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:205
|
||||
msgid "Delay for kill power command"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:226
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:214
|
||||
msgid "Delay to power on UPS if power returns after kill power"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:167
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:155
|
||||
msgid "Description (Display)"
|
||||
msgstr ""
|
||||
|
||||
@@ -81,44 +81,44 @@ msgstr ""
|
||||
msgid "Display name"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:209
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:197
|
||||
msgid "Do not lock port when starting driver"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:170
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:158
|
||||
msgid "Driver"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:154
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:142
|
||||
msgid "Driver Configuration"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:116
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:108
|
||||
msgid "Driver Global Settings"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:122
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:114
|
||||
msgid "Driver Path"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:250
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:238
|
||||
msgid "Driver Shutdown Order"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:145
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:282
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:137
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:270
|
||||
msgid "Driver waits for data to be consumed by upsd before publishing more."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:97
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server_admin.js:20
|
||||
msgid "Drop privileges to this user"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_cgi.js:41
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_cgi_admin.js:22
|
||||
msgid "Enable"
|
||||
msgstr "সক্রিয় করুন"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:178
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:166
|
||||
msgid ""
|
||||
"Enables a hotplug script that makes all ttyUSB devices (e.g. serial USB) "
|
||||
"group read-write as user %s"
|
||||
@@ -132,23 +132,29 @@ msgstr ""
|
||||
msgid "Forced Shutdown"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:71
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:70
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor_admin.js:16
|
||||
msgid "Global Settings"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_cgi.js:15
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_cgi_admin.js:15
|
||||
msgid "Go to NUT CGI"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/root/usr/share/rpcd/acl.d/luci-app-nut.json:15
|
||||
msgid "Grant admin UCI access for luci-app-nut"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/root/usr/share/rpcd/acl.d/luci-app-nut.json:3
|
||||
msgid "Grant UCI access for luci-app-nut"
|
||||
msgid "Grant limited UCI read access for luci-app-nut"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_cgi.js:17
|
||||
msgid "Host"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:100
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:89
|
||||
msgid "Host Sync"
|
||||
msgstr ""
|
||||
|
||||
@@ -156,7 +162,7 @@ msgstr ""
|
||||
msgid "Hostname or IP address"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:29
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:28
|
||||
msgid "Hostname or address of UPS"
|
||||
msgstr ""
|
||||
|
||||
@@ -164,7 +170,7 @@ msgstr ""
|
||||
msgid "IP Address"
|
||||
msgstr "আইপি এড্রেস"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:171
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:159
|
||||
msgid "If this list is empty you need to %s"
|
||||
msgstr ""
|
||||
|
||||
@@ -172,7 +178,7 @@ msgstr ""
|
||||
msgid "Ignore"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:182
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:170
|
||||
msgid "Ignore Low Battery"
|
||||
msgstr ""
|
||||
|
||||
@@ -180,19 +186,19 @@ msgstr ""
|
||||
msgid "Instant commands"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:186
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:174
|
||||
msgid "Interrupt Only"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:190
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:178
|
||||
msgid "Interrupt Size"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:203
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:191
|
||||
msgid "Manufacturer (Display)"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:194
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:182
|
||||
msgid "Max USB HID Length Reported"
|
||||
msgstr ""
|
||||
|
||||
@@ -200,47 +206,55 @@ msgstr ""
|
||||
msgid "Maximum Age of Data"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:130
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:122
|
||||
msgid "Maximum Retries"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:126
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:198
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:118
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:186
|
||||
msgid "Maximum Start Delay"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:105
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:97
|
||||
msgid "Maximum connections"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:130
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:122
|
||||
msgid "Maximum number of times to try starting a driver."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:140
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:132
|
||||
msgid "Maximum time in seconds between refresh of UPS status"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:78
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:74
|
||||
msgid "Minimum required number or power supplies"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:206
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:194
|
||||
msgid "Model (Display)"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_cgi.js:13
|
||||
#: applications/luci-app-nut/root/usr/share/luci/menu.d/luci-app-nut.json:42
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_cgi_admin.js:13
|
||||
msgid "NUT CGI"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:68
|
||||
#: applications/luci-app-nut/root/usr/share/luci/menu.d/luci-app-nut.json:30
|
||||
#: applications/luci-app-nut/root/usr/share/luci/menu.d/luci-app-nut.json:100
|
||||
msgid "NUT CGI - admin"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/root/usr/share/luci/menu.d/luci-app-nut.json:85
|
||||
msgid "NUT CGI - main"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:67
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor_admin.js:13
|
||||
msgid "NUT Monitor"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:42
|
||||
#: applications/luci-app-nut/root/usr/share/luci/menu.d/luci-app-nut.json:18
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server_admin.js:13
|
||||
msgid "NUT Server"
|
||||
msgstr ""
|
||||
|
||||
@@ -248,7 +262,23 @@ msgstr ""
|
||||
msgid "NUT Users"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:26
|
||||
#: applications/luci-app-nut/root/usr/share/luci/menu.d/luci-app-nut.json:69
|
||||
msgid "NUT monitor - admin"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/root/usr/share/luci/menu.d/luci-app-nut.json:54
|
||||
msgid "NUT monitor - main"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/root/usr/share/luci/menu.d/luci-app-nut.json:38
|
||||
msgid "NUT server - admin"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/root/usr/share/luci/menu.d/luci-app-nut.json:23
|
||||
msgid "NUT server - main"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:25
|
||||
msgid "Name of UPS"
|
||||
msgstr ""
|
||||
|
||||
@@ -257,59 +287,62 @@ msgid "Network UPS Tools"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_cgi.js:14
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_cgi_admin.js:14
|
||||
msgid "Network UPS Tools CGI Configuration"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:69
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:68
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor_admin.js:14
|
||||
msgid "Network UPS Tools Monitoring Configuration"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:43
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server_admin.js:14
|
||||
msgid "Network UPS Tools Server Configuration"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:209
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:197
|
||||
msgid "No Lock"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:213
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:201
|
||||
msgid "No low/high voltage transfer OIDs"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:127
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:116
|
||||
msgid "Notification flags"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:119
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:108
|
||||
msgid "Notifications settings"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:87
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor_admin.js:23
|
||||
msgid "Notify command"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:217
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:205
|
||||
msgid "Off Delay(s)"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:226
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:214
|
||||
msgid "On Delay(s)"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:46
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:45
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:53
|
||||
msgid "Password"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:110
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:99
|
||||
msgid "Path containing ca certificates to match against host certificate"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:122
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:114
|
||||
msgid "Path to drivers (instead of default)"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:101
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server_admin.js:24
|
||||
msgid "Path to state file"
|
||||
msgstr ""
|
||||
|
||||
@@ -317,30 +350,30 @@ msgstr ""
|
||||
msgid "Period after which data is considered stale"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:140
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:132
|
||||
msgid "Poll Interval"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:90
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:79
|
||||
msgid "Poll frequency"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:95
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:84
|
||||
msgid "Poll frequency alert"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:235
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:223
|
||||
msgid "Polling Frequency(s)"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_cgi.js:28
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:33
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:32
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:83
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:240
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:228
|
||||
msgid "Port"
|
||||
msgstr "পোর্ট"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:38
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:37
|
||||
msgid "Power value"
|
||||
msgstr ""
|
||||
|
||||
@@ -352,15 +385,15 @@ msgstr ""
|
||||
msgid "Primary (Deprecated)"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:244
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:232
|
||||
msgid "Product (regex)"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:114
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:103
|
||||
msgid "Require SSL and make sure server CN matches hostname"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:135
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:127
|
||||
msgid "Retry Delay"
|
||||
msgstr ""
|
||||
|
||||
@@ -368,49 +401,48 @@ msgstr ""
|
||||
msgid "Role"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:119
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:111
|
||||
msgid "Run drivers in a chroot(2) environment"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:75
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:97
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:149
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor_admin.js:20
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server_admin.js:20
|
||||
msgid "RunAs User"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:163
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:151
|
||||
msgid "SNMP Community"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:260
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:248
|
||||
msgid "SNMP retries"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:264
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:252
|
||||
msgid "SNMP timeout(s)"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:268
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:256
|
||||
msgid "SNMP version"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:270
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:258
|
||||
msgid "SNMPv1"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:271
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:259
|
||||
msgid "SNMPv2c"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:272
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:260
|
||||
msgid "SNMPv3"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:257
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:245
|
||||
msgid "Serial Number"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:177
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:165
|
||||
msgid "Set USB serial port permissions"
|
||||
msgstr ""
|
||||
|
||||
@@ -418,49 +450,50 @@ msgstr ""
|
||||
msgid "Set variables"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:83
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor_admin.js:26
|
||||
msgid "Shutdown command"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:145
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:282
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:137
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:270
|
||||
msgid "Synchronous Communication"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:155
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:143
|
||||
msgid "The name of this section will be used as UPS name elsewhere"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:167
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:203
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:206
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:257
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:155
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:191
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:194
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:245
|
||||
msgid ""
|
||||
"This is passed through to the driver, so make sure your driver supports this "
|
||||
"option"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:135
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:127
|
||||
msgid "Time in seconds between driver start retry attempts."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:198
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:186
|
||||
msgid "Time in seconds that upsdrvctl will wait for driver to finish starting"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:142
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:131
|
||||
msgid "UPS Auxiliary (Deprecated)"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:130
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:119
|
||||
msgid "UPS Monitor User Settings"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:139
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:128
|
||||
msgid "UPS Primary (Deprecated)"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:89
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server_admin.js:17
|
||||
msgid "UPS Server Global Settings"
|
||||
msgstr ""
|
||||
|
||||
@@ -468,19 +501,19 @@ msgstr ""
|
||||
msgid "UPS name"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:159
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:147
|
||||
msgid "USB Bus(es) (regex)"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:247
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:235
|
||||
msgid "USB Product Id"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:279
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:267
|
||||
msgid "USB Vendor Id"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:57
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:56
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:28
|
||||
msgid "Unable to run ldd: %s"
|
||||
msgstr ""
|
||||
@@ -490,30 +523,24 @@ msgid ""
|
||||
"Use %s to see full list of commands your UPS supports (requires %s package)"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:149
|
||||
msgid ""
|
||||
"User as which to execute driver; requires device file accessed by driver to "
|
||||
"be read-write for that user."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:133
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:122
|
||||
msgid "User type (Primary/Auxiliary)"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:43
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:42
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:50
|
||||
msgid "Username"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:276
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:264
|
||||
msgid "Vendor (regex)"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:114
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:103
|
||||
msgid "Verify all connection with SSL"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:194
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:182
|
||||
msgid "Workaround for buggy firmware"
|
||||
msgstr ""
|
||||
|
||||
@@ -525,14 +552,14 @@ msgstr ""
|
||||
msgid "Write to syslog and execute notify command"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:119
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:111
|
||||
msgid "chroot"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:171
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:159
|
||||
msgid "install drivers"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:75
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor_admin.js:20
|
||||
msgid "upsmon drops privileges to this user"
|
||||
msgstr ""
|
||||
|
||||
@@ -13,7 +13,7 @@ msgstr ""
|
||||
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
||||
"X-Generator: Weblate 5.17-dev\n"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:254
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:242
|
||||
msgid "Additional Shutdown Time(s)"
|
||||
msgstr "Temps Addicional d'Apagat"
|
||||
|
||||
@@ -26,7 +26,7 @@ msgid "Allowed actions"
|
||||
msgstr "Accions permeses"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_cgi.js:21
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:26
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:25
|
||||
msgid "As configured by NUT"
|
||||
msgstr "Tal com està configurat per NUT"
|
||||
|
||||
@@ -38,43 +38,43 @@ msgstr ""
|
||||
msgid "Auxiliary (Deprecated)"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:190
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:178
|
||||
msgid "Bytes to read from interrupt pipe"
|
||||
msgstr "Bytes per llegir del tub d’interrupció"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:110
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:99
|
||||
msgid "CA Certificate path"
|
||||
msgstr "Ruta del Certificat CA"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:111
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:103
|
||||
msgid "Certificate file (SSL)"
|
||||
msgstr "Certificat SSL"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_cgi.js:36
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_cgi_admin.js:17
|
||||
msgid "Control UPS via CGI"
|
||||
msgstr "Controlar UPS mitjançant CGI"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:124
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:113
|
||||
msgid "Custom notification message for message type"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:104
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:93
|
||||
msgid "Deadtime"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:126
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:118
|
||||
msgid "Default for UPSes without this field."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:217
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:205
|
||||
msgid "Delay for kill power command"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:226
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:214
|
||||
msgid "Delay to power on UPS if power returns after kill power"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:167
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:155
|
||||
msgid "Description (Display)"
|
||||
msgstr ""
|
||||
|
||||
@@ -82,44 +82,44 @@ msgstr ""
|
||||
msgid "Display name"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:209
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:197
|
||||
msgid "Do not lock port when starting driver"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:170
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:158
|
||||
msgid "Driver"
|
||||
msgstr "Controlador"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:154
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:142
|
||||
msgid "Driver Configuration"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:116
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:108
|
||||
msgid "Driver Global Settings"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:122
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:114
|
||||
msgid "Driver Path"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:250
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:238
|
||||
msgid "Driver Shutdown Order"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:145
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:282
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:137
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:270
|
||||
msgid "Driver waits for data to be consumed by upsd before publishing more."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:97
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server_admin.js:20
|
||||
msgid "Drop privileges to this user"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_cgi.js:41
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_cgi_admin.js:22
|
||||
msgid "Enable"
|
||||
msgstr "Activa"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:178
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:166
|
||||
msgid ""
|
||||
"Enables a hotplug script that makes all ttyUSB devices (e.g. serial USB) "
|
||||
"group read-write as user %s"
|
||||
@@ -133,23 +133,29 @@ msgstr ""
|
||||
msgid "Forced Shutdown"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:71
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:70
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor_admin.js:16
|
||||
msgid "Global Settings"
|
||||
msgstr "Configuració global"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_cgi.js:15
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_cgi_admin.js:15
|
||||
msgid "Go to NUT CGI"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/root/usr/share/rpcd/acl.d/luci-app-nut.json:15
|
||||
msgid "Grant admin UCI access for luci-app-nut"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/root/usr/share/rpcd/acl.d/luci-app-nut.json:3
|
||||
msgid "Grant UCI access for luci-app-nut"
|
||||
msgid "Grant limited UCI read access for luci-app-nut"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_cgi.js:17
|
||||
msgid "Host"
|
||||
msgstr "Amfitrió"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:100
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:89
|
||||
msgid "Host Sync"
|
||||
msgstr ""
|
||||
|
||||
@@ -157,7 +163,7 @@ msgstr ""
|
||||
msgid "Hostname or IP address"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:29
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:28
|
||||
msgid "Hostname or address of UPS"
|
||||
msgstr ""
|
||||
|
||||
@@ -165,7 +171,7 @@ msgstr ""
|
||||
msgid "IP Address"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:171
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:159
|
||||
msgid "If this list is empty you need to %s"
|
||||
msgstr ""
|
||||
|
||||
@@ -173,7 +179,7 @@ msgstr ""
|
||||
msgid "Ignore"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:182
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:170
|
||||
msgid "Ignore Low Battery"
|
||||
msgstr ""
|
||||
|
||||
@@ -181,19 +187,19 @@ msgstr ""
|
||||
msgid "Instant commands"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:186
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:174
|
||||
msgid "Interrupt Only"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:190
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:178
|
||||
msgid "Interrupt Size"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:203
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:191
|
||||
msgid "Manufacturer (Display)"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:194
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:182
|
||||
msgid "Max USB HID Length Reported"
|
||||
msgstr ""
|
||||
|
||||
@@ -201,47 +207,55 @@ msgstr ""
|
||||
msgid "Maximum Age of Data"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:130
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:122
|
||||
msgid "Maximum Retries"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:126
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:198
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:118
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:186
|
||||
msgid "Maximum Start Delay"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:105
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:97
|
||||
msgid "Maximum connections"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:130
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:122
|
||||
msgid "Maximum number of times to try starting a driver."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:140
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:132
|
||||
msgid "Maximum time in seconds between refresh of UPS status"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:78
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:74
|
||||
msgid "Minimum required number or power supplies"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:206
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:194
|
||||
msgid "Model (Display)"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_cgi.js:13
|
||||
#: applications/luci-app-nut/root/usr/share/luci/menu.d/luci-app-nut.json:42
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_cgi_admin.js:13
|
||||
msgid "NUT CGI"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:68
|
||||
#: applications/luci-app-nut/root/usr/share/luci/menu.d/luci-app-nut.json:30
|
||||
#: applications/luci-app-nut/root/usr/share/luci/menu.d/luci-app-nut.json:100
|
||||
msgid "NUT CGI - admin"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/root/usr/share/luci/menu.d/luci-app-nut.json:85
|
||||
msgid "NUT CGI - main"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:67
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor_admin.js:13
|
||||
msgid "NUT Monitor"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:42
|
||||
#: applications/luci-app-nut/root/usr/share/luci/menu.d/luci-app-nut.json:18
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server_admin.js:13
|
||||
msgid "NUT Server"
|
||||
msgstr ""
|
||||
|
||||
@@ -249,7 +263,23 @@ msgstr ""
|
||||
msgid "NUT Users"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:26
|
||||
#: applications/luci-app-nut/root/usr/share/luci/menu.d/luci-app-nut.json:69
|
||||
msgid "NUT monitor - admin"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/root/usr/share/luci/menu.d/luci-app-nut.json:54
|
||||
msgid "NUT monitor - main"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/root/usr/share/luci/menu.d/luci-app-nut.json:38
|
||||
msgid "NUT server - admin"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/root/usr/share/luci/menu.d/luci-app-nut.json:23
|
||||
msgid "NUT server - main"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:25
|
||||
msgid "Name of UPS"
|
||||
msgstr ""
|
||||
|
||||
@@ -258,59 +288,62 @@ msgid "Network UPS Tools"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_cgi.js:14
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_cgi_admin.js:14
|
||||
msgid "Network UPS Tools CGI Configuration"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:69
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:68
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor_admin.js:14
|
||||
msgid "Network UPS Tools Monitoring Configuration"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:43
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server_admin.js:14
|
||||
msgid "Network UPS Tools Server Configuration"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:209
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:197
|
||||
msgid "No Lock"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:213
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:201
|
||||
msgid "No low/high voltage transfer OIDs"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:127
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:116
|
||||
msgid "Notification flags"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:119
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:108
|
||||
msgid "Notifications settings"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:87
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor_admin.js:23
|
||||
msgid "Notify command"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:217
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:205
|
||||
msgid "Off Delay(s)"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:226
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:214
|
||||
msgid "On Delay(s)"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:46
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:45
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:53
|
||||
msgid "Password"
|
||||
msgstr "Contrasenya"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:110
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:99
|
||||
msgid "Path containing ca certificates to match against host certificate"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:122
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:114
|
||||
msgid "Path to drivers (instead of default)"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:101
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server_admin.js:24
|
||||
msgid "Path to state file"
|
||||
msgstr ""
|
||||
|
||||
@@ -318,30 +351,30 @@ msgstr ""
|
||||
msgid "Period after which data is considered stale"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:140
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:132
|
||||
msgid "Poll Interval"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:90
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:79
|
||||
msgid "Poll frequency"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:95
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:84
|
||||
msgid "Poll frequency alert"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:235
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:223
|
||||
msgid "Polling Frequency(s)"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_cgi.js:28
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:33
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:32
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:83
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:240
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:228
|
||||
msgid "Port"
|
||||
msgstr "Port"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:38
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:37
|
||||
msgid "Power value"
|
||||
msgstr ""
|
||||
|
||||
@@ -353,15 +386,15 @@ msgstr ""
|
||||
msgid "Primary (Deprecated)"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:244
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:232
|
||||
msgid "Product (regex)"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:114
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:103
|
||||
msgid "Require SSL and make sure server CN matches hostname"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:135
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:127
|
||||
msgid "Retry Delay"
|
||||
msgstr ""
|
||||
|
||||
@@ -369,49 +402,48 @@ msgstr ""
|
||||
msgid "Role"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:119
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:111
|
||||
msgid "Run drivers in a chroot(2) environment"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:75
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:97
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:149
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor_admin.js:20
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server_admin.js:20
|
||||
msgid "RunAs User"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:163
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:151
|
||||
msgid "SNMP Community"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:260
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:248
|
||||
msgid "SNMP retries"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:264
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:252
|
||||
msgid "SNMP timeout(s)"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:268
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:256
|
||||
msgid "SNMP version"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:270
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:258
|
||||
msgid "SNMPv1"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:271
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:259
|
||||
msgid "SNMPv2c"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:272
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:260
|
||||
msgid "SNMPv3"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:257
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:245
|
||||
msgid "Serial Number"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:177
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:165
|
||||
msgid "Set USB serial port permissions"
|
||||
msgstr ""
|
||||
|
||||
@@ -419,49 +451,50 @@ msgstr ""
|
||||
msgid "Set variables"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:83
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor_admin.js:26
|
||||
msgid "Shutdown command"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:145
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:282
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:137
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:270
|
||||
msgid "Synchronous Communication"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:155
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:143
|
||||
msgid "The name of this section will be used as UPS name elsewhere"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:167
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:203
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:206
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:257
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:155
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:191
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:194
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:245
|
||||
msgid ""
|
||||
"This is passed through to the driver, so make sure your driver supports this "
|
||||
"option"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:135
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:127
|
||||
msgid "Time in seconds between driver start retry attempts."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:198
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:186
|
||||
msgid "Time in seconds that upsdrvctl will wait for driver to finish starting"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:142
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:131
|
||||
msgid "UPS Auxiliary (Deprecated)"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:130
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:119
|
||||
msgid "UPS Monitor User Settings"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:139
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:128
|
||||
msgid "UPS Primary (Deprecated)"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:89
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server_admin.js:17
|
||||
msgid "UPS Server Global Settings"
|
||||
msgstr ""
|
||||
|
||||
@@ -469,19 +502,19 @@ msgstr ""
|
||||
msgid "UPS name"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:159
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:147
|
||||
msgid "USB Bus(es) (regex)"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:247
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:235
|
||||
msgid "USB Product Id"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:279
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:267
|
||||
msgid "USB Vendor Id"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:57
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:56
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:28
|
||||
msgid "Unable to run ldd: %s"
|
||||
msgstr ""
|
||||
@@ -491,30 +524,24 @@ msgid ""
|
||||
"Use %s to see full list of commands your UPS supports (requires %s package)"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:149
|
||||
msgid ""
|
||||
"User as which to execute driver; requires device file accessed by driver to "
|
||||
"be read-write for that user."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:133
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:122
|
||||
msgid "User type (Primary/Auxiliary)"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:43
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:42
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:50
|
||||
msgid "Username"
|
||||
msgstr "Nom d'usuari"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:276
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:264
|
||||
msgid "Vendor (regex)"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:114
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:103
|
||||
msgid "Verify all connection with SSL"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:194
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:182
|
||||
msgid "Workaround for buggy firmware"
|
||||
msgstr ""
|
||||
|
||||
@@ -526,15 +553,15 @@ msgstr ""
|
||||
msgid "Write to syslog and execute notify command"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:119
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:111
|
||||
msgid "chroot"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:171
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:159
|
||||
msgid "install drivers"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:75
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor_admin.js:20
|
||||
msgid "upsmon drops privileges to this user"
|
||||
msgstr ""
|
||||
|
||||
|
||||
@@ -12,7 +12,7 @@ msgstr ""
|
||||
"Plural-Forms: nplurals=3; plural=((n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2);\n"
|
||||
"X-Generator: Weblate 2026.7.dev0\n"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:254
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:242
|
||||
msgid "Additional Shutdown Time(s)"
|
||||
msgstr "Dodatečný čas k vypnutí"
|
||||
|
||||
@@ -25,7 +25,7 @@ msgid "Allowed actions"
|
||||
msgstr "Povolené akce"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_cgi.js:21
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:26
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:25
|
||||
msgid "As configured by NUT"
|
||||
msgstr "Jak nastaveno NUT"
|
||||
|
||||
@@ -37,45 +37,45 @@ msgstr "Pomocné"
|
||||
msgid "Auxiliary (Deprecated)"
|
||||
msgstr "Pomocné (zastaralé)"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:190
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:178
|
||||
msgid "Bytes to read from interrupt pipe"
|
||||
msgstr "Kolik bajtů číst z roury přerušení"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:110
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:99
|
||||
msgid "CA Certificate path"
|
||||
msgstr "Popis umístění certifikátu cert. autority"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:111
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:103
|
||||
msgid "Certificate file (SSL)"
|
||||
msgstr "Soubor s certifikátem (SSL)"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_cgi.js:36
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_cgi_admin.js:17
|
||||
msgid "Control UPS via CGI"
|
||||
msgstr "Ovládat záložní zdroj prostřednictvím CGI rozhraní"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:124
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:113
|
||||
msgid "Custom notification message for message type"
|
||||
msgstr "Uživatelsky určená zpráva upozornění pro typ zprávy"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:104
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:93
|
||||
msgid "Deadtime"
|
||||
msgstr "Délka nekomunikace pro považování za vybitou"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:126
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:118
|
||||
msgid "Default for UPSes without this field."
|
||||
msgstr "Výchozí pro UPS zdroje bez této kolonky."
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:217
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:205
|
||||
msgid "Delay for kill power command"
|
||||
msgstr "Prodleva pro příkaz utínající napájení"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:226
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:214
|
||||
msgid "Delay to power on UPS if power returns after kill power"
|
||||
msgstr ""
|
||||
"Po utnutí napájení do připojených zařízení, odložit zapnutí UPS zdroje po "
|
||||
"obnovení dodávek elektřiny ze sítě"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:167
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:155
|
||||
msgid "Description (Display)"
|
||||
msgstr "Popis (zobrazení)"
|
||||
|
||||
@@ -83,44 +83,44 @@ msgstr "Popis (zobrazení)"
|
||||
msgid "Display name"
|
||||
msgstr "Zobrazovaný název"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:209
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:197
|
||||
msgid "Do not lock port when starting driver"
|
||||
msgstr "Nezamykat port při spouštění ovladače"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:170
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:158
|
||||
msgid "Driver"
|
||||
msgstr "Ovladač"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:154
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:142
|
||||
msgid "Driver Configuration"
|
||||
msgstr "Nastavení ovladače"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:116
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:108
|
||||
msgid "Driver Global Settings"
|
||||
msgstr "Globální nastavení ovladače"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:122
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:114
|
||||
msgid "Driver Path"
|
||||
msgstr "Popis umístění ovladače"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:250
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:238
|
||||
msgid "Driver Shutdown Order"
|
||||
msgstr "Pořadí vypínání ovladače"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:145
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:282
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:137
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:270
|
||||
msgid "Driver waits for data to be consumed by upsd before publishing more."
|
||||
msgstr "Ovladač čeká až budou data použita upsd a až pak odešle další."
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:97
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server_admin.js:20
|
||||
msgid "Drop privileges to this user"
|
||||
msgstr "Snížit práva na úroveň tohoto uživatele"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_cgi.js:41
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_cgi_admin.js:22
|
||||
msgid "Enable"
|
||||
msgstr "Povolit"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:178
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:166
|
||||
msgid ""
|
||||
"Enables a hotplug script that makes all ttyUSB devices (e.g. serial USB) "
|
||||
"group read-write as user %s"
|
||||
@@ -136,23 +136,29 @@ msgstr "Spustit notifikační příkaz"
|
||||
msgid "Forced Shutdown"
|
||||
msgstr "Vynucené vypnutí"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:71
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:70
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor_admin.js:16
|
||||
msgid "Global Settings"
|
||||
msgstr "Globální nastavení"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_cgi.js:15
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_cgi_admin.js:15
|
||||
msgid "Go to NUT CGI"
|
||||
msgstr "Přejít do NUT CGI"
|
||||
|
||||
#: applications/luci-app-nut/root/usr/share/rpcd/acl.d/luci-app-nut.json:15
|
||||
msgid "Grant admin UCI access for luci-app-nut"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/root/usr/share/rpcd/acl.d/luci-app-nut.json:3
|
||||
msgid "Grant UCI access for luci-app-nut"
|
||||
msgstr "Udělit luci-app-nut přístup do UCI nastavování"
|
||||
msgid "Grant limited UCI read access for luci-app-nut"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_cgi.js:17
|
||||
msgid "Host"
|
||||
msgstr "Hostitel"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:100
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:89
|
||||
msgid "Host Sync"
|
||||
msgstr "Synchronizace hostitele"
|
||||
|
||||
@@ -160,7 +166,7 @@ msgstr "Synchronizace hostitele"
|
||||
msgid "Hostname or IP address"
|
||||
msgstr "Název hostitele nebo IP adresa"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:29
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:28
|
||||
msgid "Hostname or address of UPS"
|
||||
msgstr "Název stroje nebo adresa UPS zdroje"
|
||||
|
||||
@@ -168,7 +174,7 @@ msgstr "Název stroje nebo adresa UPS zdroje"
|
||||
msgid "IP Address"
|
||||
msgstr "IP adresa"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:171
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:159
|
||||
msgid "If this list is empty you need to %s"
|
||||
msgstr "Pokud je tento seznam prázdný, je zapotřebí %s"
|
||||
|
||||
@@ -176,7 +182,7 @@ msgstr "Pokud je tento seznam prázdný, je zapotřebí %s"
|
||||
msgid "Ignore"
|
||||
msgstr "Ignorovat"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:182
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:170
|
||||
msgid "Ignore Low Battery"
|
||||
msgstr "Ignorovat nízké nabití akumulátoru"
|
||||
|
||||
@@ -184,19 +190,19 @@ msgstr "Ignorovat nízké nabití akumulátoru"
|
||||
msgid "Instant commands"
|
||||
msgstr "Okamžité příkazy"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:186
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:174
|
||||
msgid "Interrupt Only"
|
||||
msgstr "Pouze přerušit"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:190
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:178
|
||||
msgid "Interrupt Size"
|
||||
msgstr "Velikost přerušení"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:203
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:191
|
||||
msgid "Manufacturer (Display)"
|
||||
msgstr "Výrobce (zobrazení)"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:194
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:182
|
||||
msgid "Max USB HID Length Reported"
|
||||
msgstr "Hlášená délka USB HID nejvýše"
|
||||
|
||||
@@ -204,47 +210,55 @@ msgstr "Hlášená délka USB HID nejvýše"
|
||||
msgid "Maximum Age of Data"
|
||||
msgstr "Nejvyšší umožněné stáří dat"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:130
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:122
|
||||
msgid "Maximum Retries"
|
||||
msgstr "Opakovaných pokusů nejvýše"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:126
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:198
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:118
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:186
|
||||
msgid "Maximum Start Delay"
|
||||
msgstr "Prodleva spuštění nejvýše"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:105
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:97
|
||||
msgid "Maximum connections"
|
||||
msgstr "Počet spojení nejvýše"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:130
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:122
|
||||
msgid "Maximum number of times to try starting a driver."
|
||||
msgstr "Kolikrát nanejvýš se pokoušet ovladač spustit."
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:140
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:132
|
||||
msgid "Maximum time in seconds between refresh of UPS status"
|
||||
msgstr "Nejdelší čas (v sekundách) mezi znovunačteními stavu UPS zdroje"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:78
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:74
|
||||
msgid "Minimum required number or power supplies"
|
||||
msgstr "Nejnižší potřebný počet napájecích zdrojů"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:206
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:194
|
||||
msgid "Model (Display)"
|
||||
msgstr "Model (zobrazení)"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_cgi.js:13
|
||||
#: applications/luci-app-nut/root/usr/share/luci/menu.d/luci-app-nut.json:42
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_cgi_admin.js:13
|
||||
msgid "NUT CGI"
|
||||
msgstr "NUT CGI"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:68
|
||||
#: applications/luci-app-nut/root/usr/share/luci/menu.d/luci-app-nut.json:30
|
||||
#: applications/luci-app-nut/root/usr/share/luci/menu.d/luci-app-nut.json:100
|
||||
msgid "NUT CGI - admin"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/root/usr/share/luci/menu.d/luci-app-nut.json:85
|
||||
msgid "NUT CGI - main"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:67
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor_admin.js:13
|
||||
msgid "NUT Monitor"
|
||||
msgstr "NUT monitor"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:42
|
||||
#: applications/luci-app-nut/root/usr/share/luci/menu.d/luci-app-nut.json:18
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server_admin.js:13
|
||||
msgid "NUT Server"
|
||||
msgstr "NUT server"
|
||||
|
||||
@@ -252,7 +266,23 @@ msgstr "NUT server"
|
||||
msgid "NUT Users"
|
||||
msgstr "NUT uživatelé"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:26
|
||||
#: applications/luci-app-nut/root/usr/share/luci/menu.d/luci-app-nut.json:69
|
||||
msgid "NUT monitor - admin"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/root/usr/share/luci/menu.d/luci-app-nut.json:54
|
||||
msgid "NUT monitor - main"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/root/usr/share/luci/menu.d/luci-app-nut.json:38
|
||||
msgid "NUT server - admin"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/root/usr/share/luci/menu.d/luci-app-nut.json:23
|
||||
msgid "NUT server - main"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:25
|
||||
msgid "Name of UPS"
|
||||
msgstr "Název UPS zdroje"
|
||||
|
||||
@@ -261,61 +291,64 @@ msgid "Network UPS Tools"
|
||||
msgstr "Network UPS Tools"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_cgi.js:14
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_cgi_admin.js:14
|
||||
msgid "Network UPS Tools CGI Configuration"
|
||||
msgstr "Nastavení Network UPS Tools CGI"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:69
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:68
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor_admin.js:14
|
||||
msgid "Network UPS Tools Monitoring Configuration"
|
||||
msgstr "Nastavení monitorování v Network UPS Tools"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:43
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server_admin.js:14
|
||||
msgid "Network UPS Tools Server Configuration"
|
||||
msgstr "Nastavení serveru Network UPS Tools"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:209
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:197
|
||||
msgid "No Lock"
|
||||
msgstr "Žádný zámek"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:213
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:201
|
||||
msgid "No low/high voltage transfer OIDs"
|
||||
msgstr "Žádná OID přenosu nízké/vysoké napětí"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:127
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:116
|
||||
msgid "Notification flags"
|
||||
msgstr "Příznaky notifikace"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:119
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:108
|
||||
msgid "Notifications settings"
|
||||
msgstr "Nastavení notifikací"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:87
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor_admin.js:23
|
||||
msgid "Notify command"
|
||||
msgstr "Příkaz notifikace"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:217
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:205
|
||||
msgid "Off Delay(s)"
|
||||
msgstr "Prodlevy vypnutí"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:226
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:214
|
||||
msgid "On Delay(s)"
|
||||
msgstr "Prodlevy zapnutí"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:46
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:45
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:53
|
||||
msgid "Password"
|
||||
msgstr "Heslo"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:110
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:99
|
||||
msgid "Path containing ca certificates to match against host certificate"
|
||||
msgstr ""
|
||||
"Popis umístění obsahujícího certifikáty cert. autorit mezi kterými hledat "
|
||||
"shodu vůči certifikátu hostitele"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:122
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:114
|
||||
msgid "Path to drivers (instead of default)"
|
||||
msgstr "Popis umístění ovladače (namísto výchozího)"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:101
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server_admin.js:24
|
||||
msgid "Path to state file"
|
||||
msgstr "Popis umístění souboru se stavy"
|
||||
|
||||
@@ -323,30 +356,30 @@ msgstr "Popis umístění souboru se stavy"
|
||||
msgid "Period after which data is considered stale"
|
||||
msgstr "Doba, po jejímž uplynutí jsou data považována za už neaktuální"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:140
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:132
|
||||
msgid "Poll Interval"
|
||||
msgstr "Interval dotazování"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:90
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:79
|
||||
msgid "Poll frequency"
|
||||
msgstr "Četnost dotazování"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:95
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:84
|
||||
msgid "Poll frequency alert"
|
||||
msgstr "Dotazovat na výstrahu ohledně frekvence"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:235
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:223
|
||||
msgid "Polling Frequency(s)"
|
||||
msgstr "Četnosti dotazování"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_cgi.js:28
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:33
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:32
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:83
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:240
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:228
|
||||
msgid "Port"
|
||||
msgstr "Port"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:38
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:37
|
||||
msgid "Power value"
|
||||
msgstr "Hodnota energie"
|
||||
|
||||
@@ -358,15 +391,15 @@ msgstr "Hlavní"
|
||||
msgid "Primary (Deprecated)"
|
||||
msgstr "Hlavní (zastaralé)"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:244
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:232
|
||||
msgid "Product (regex)"
|
||||
msgstr "Produkt (regulární výraz)"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:114
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:103
|
||||
msgid "Require SSL and make sure server CN matches hostname"
|
||||
msgstr "Vyžadovat SSL a ověřovat, že CN serveru se shoduje s názvem stroje"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:135
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:127
|
||||
msgid "Retry Delay"
|
||||
msgstr "Prodleva opakovaného pokusu"
|
||||
|
||||
@@ -374,49 +407,48 @@ msgstr "Prodleva opakovaného pokusu"
|
||||
msgid "Role"
|
||||
msgstr "Role"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:119
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:111
|
||||
msgid "Run drivers in a chroot(2) environment"
|
||||
msgstr "Spouštět ovladače v chroot(2) prostředí"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:75
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:97
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:149
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor_admin.js:20
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server_admin.js:20
|
||||
msgid "RunAs User"
|
||||
msgstr "Spouštět jako uživatel"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:163
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:151
|
||||
msgid "SNMP Community"
|
||||
msgstr "SNMP komunita"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:260
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:248
|
||||
msgid "SNMP retries"
|
||||
msgstr "SNMP opakované pokusy"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:264
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:252
|
||||
msgid "SNMP timeout(s)"
|
||||
msgstr "SNMP časové limity"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:268
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:256
|
||||
msgid "SNMP version"
|
||||
msgstr "Verze SNMP"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:270
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:258
|
||||
msgid "SNMPv1"
|
||||
msgstr "SNMPv1"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:271
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:259
|
||||
msgid "SNMPv2c"
|
||||
msgstr "SNMPv2c"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:272
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:260
|
||||
msgid "SNMPv3"
|
||||
msgstr "SNMPv3"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:257
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:245
|
||||
msgid "Serial Number"
|
||||
msgstr "Sériové číslo"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:177
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:165
|
||||
msgid "Set USB serial port permissions"
|
||||
msgstr "Nastavit oprávnění k USB sériovému portu"
|
||||
|
||||
@@ -424,24 +456,24 @@ msgstr "Nastavit oprávnění k USB sériovému portu"
|
||||
msgid "Set variables"
|
||||
msgstr "Nastavit proměnné"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:83
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor_admin.js:26
|
||||
msgid "Shutdown command"
|
||||
msgstr "Příkaz pro vypnutí"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:145
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:282
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:137
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:270
|
||||
msgid "Synchronous Communication"
|
||||
msgstr "Synchronní komunikace"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:155
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:143
|
||||
msgid "The name of this section will be used as UPS name elsewhere"
|
||||
msgstr ""
|
||||
"Název této sekce bude na ostatních místech používán jako název UPS zdroje"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:167
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:203
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:206
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:257
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:155
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:191
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:194
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:245
|
||||
msgid ""
|
||||
"This is passed through to the driver, so make sure your driver supports this "
|
||||
"option"
|
||||
@@ -449,29 +481,30 @@ msgstr ""
|
||||
"Toto je předáno ovladači, proto ověřte, zda tuto volbu konkrétní ovladač "
|
||||
"podporuje"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:135
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:127
|
||||
msgid "Time in seconds between driver start retry attempts."
|
||||
msgstr "Prodleva (v sekundách) mezi opětovnými pokusy o spuštění ovladače."
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:198
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:186
|
||||
msgid "Time in seconds that upsdrvctl will wait for driver to finish starting"
|
||||
msgstr ""
|
||||
"Doba (v sekundách), po kterou upsdrvctl bude čekat na dokončení spuštění "
|
||||
"ovladače"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:142
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:131
|
||||
msgid "UPS Auxiliary (Deprecated)"
|
||||
msgstr "UPS pomocné (zastaralé)"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:130
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:119
|
||||
msgid "UPS Monitor User Settings"
|
||||
msgstr "Nastavení uživatele monitoru UPS zdroje"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:139
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:128
|
||||
msgid "UPS Primary (Deprecated)"
|
||||
msgstr "UPS hlavní (zastaralé)"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:89
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server_admin.js:17
|
||||
msgid "UPS Server Global Settings"
|
||||
msgstr "Globální nastavení UPS serveru"
|
||||
|
||||
@@ -479,19 +512,19 @@ msgstr "Globální nastavení UPS serveru"
|
||||
msgid "UPS name"
|
||||
msgstr "Název UPS zdroje"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:159
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:147
|
||||
msgid "USB Bus(es) (regex)"
|
||||
msgstr "USB sběrnice (regulární výraz)"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:247
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:235
|
||||
msgid "USB Product Id"
|
||||
msgstr "USB identif. produktu"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:279
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:267
|
||||
msgid "USB Vendor Id"
|
||||
msgstr "USB identif. výrobce"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:57
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:56
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:28
|
||||
msgid "Unable to run ldd: %s"
|
||||
msgstr "Není možné spustit ldd: %s"
|
||||
@@ -503,33 +536,24 @@ msgstr ""
|
||||
"Úplný seznam příkazů, které vámi používaný UPS zdroj podporuje, si zobrazíte "
|
||||
"pomocí %s (vyžaduje balíček %s)"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:149
|
||||
msgid ""
|
||||
"User as which to execute driver; requires device file accessed by driver to "
|
||||
"be read-write for that user."
|
||||
msgstr ""
|
||||
"Uživatel pod kterým ovladač spouštět – vyžaduje, aby soubor představující "
|
||||
"zařízení, ke kterému ovladač přistupuje, byl pro tohoto uživatele přístupný "
|
||||
"pro čtení i zápis."
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:133
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:122
|
||||
msgid "User type (Primary/Auxiliary)"
|
||||
msgstr "Typ uživatele (hlavní/pomocný)"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:43
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:42
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:50
|
||||
msgid "Username"
|
||||
msgstr "Uživatelské jméno"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:276
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:264
|
||||
msgid "Vendor (regex)"
|
||||
msgstr "Výrobce (regulární výraz)"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:114
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:103
|
||||
msgid "Verify all connection with SSL"
|
||||
msgstr "Ověřovat veškerá spojení pomocí SSL"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:194
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:182
|
||||
msgid "Workaround for buggy firmware"
|
||||
msgstr "Obejití problému pro chybový firmware"
|
||||
|
||||
@@ -541,18 +565,29 @@ msgstr "Zapsat do syslog"
|
||||
msgid "Write to syslog and execute notify command"
|
||||
msgstr "Zapsat do syslog a spustit příkaz notify"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:119
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:111
|
||||
msgid "chroot"
|
||||
msgstr "chroot"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:171
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:159
|
||||
msgid "install drivers"
|
||||
msgstr "nainstalovat ovladače"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:75
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor_admin.js:20
|
||||
msgid "upsmon drops privileges to this user"
|
||||
msgstr "upsmon zredukuje svá privilegia na úroveň tohoto uživatele"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "User as which to execute driver; requires device file accessed by driver "
|
||||
#~ "to be read-write for that user."
|
||||
#~ msgstr ""
|
||||
#~ "Uživatel pod kterým ovladač spouštět – vyžaduje, aby soubor představující "
|
||||
#~ "zařízení, ke kterému ovladač přistupuje, byl pro tohoto uživatele "
|
||||
#~ "přístupný pro čtení i zápis."
|
||||
|
||||
#~ msgid "Grant UCI access for luci-app-nut"
|
||||
#~ msgstr "Udělit luci-app-nut přístup do UCI nastavování"
|
||||
|
||||
#~ msgid "UPS Monitor User Settings)"
|
||||
#~ msgstr "Nastavení uživatele pod kterým běží monitoring UPS)"
|
||||
|
||||
|
||||
@@ -12,7 +12,7 @@ msgstr ""
|
||||
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
||||
"X-Generator: Weblate 5.4-dev\n"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:254
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:242
|
||||
msgid "Additional Shutdown Time(s)"
|
||||
msgstr "Yderligere nedlukningstid(er)"
|
||||
|
||||
@@ -25,7 +25,7 @@ msgid "Allowed actions"
|
||||
msgstr "Tilladte handlinger"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_cgi.js:21
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:26
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:25
|
||||
msgid "As configured by NUT"
|
||||
msgstr "Som konfigureret af NUT"
|
||||
|
||||
@@ -37,45 +37,45 @@ msgstr "Auxiliary"
|
||||
msgid "Auxiliary (Deprecated)"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:190
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:178
|
||||
msgid "Bytes to read from interrupt pipe"
|
||||
msgstr "Bytes, der skal læses fra interrupt pipe"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:110
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:99
|
||||
msgid "CA Certificate path"
|
||||
msgstr "CA-certifikatsti"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:111
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:103
|
||||
msgid "Certificate file (SSL)"
|
||||
msgstr "Certifikatfil (SSL)"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_cgi.js:36
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_cgi_admin.js:17
|
||||
msgid "Control UPS via CGI"
|
||||
msgstr "Styr UPS via CGI"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:124
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:113
|
||||
msgid "Custom notification message for message type"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:104
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:93
|
||||
msgid "Deadtime"
|
||||
msgstr "Deadtime"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:126
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:118
|
||||
msgid "Default for UPSes without this field."
|
||||
msgstr "Standard for UPS'er uden dette felt."
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:217
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:205
|
||||
msgid "Delay for kill power command"
|
||||
msgstr "Forsinkelse af kommando til at slukke strøm"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:226
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:214
|
||||
msgid "Delay to power on UPS if power returns after kill power"
|
||||
msgstr ""
|
||||
"Forsinkelse af tænding af UPS, hvis strømmen vender tilbage efter at "
|
||||
"strømmen er blevet afbrudt"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:167
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:155
|
||||
msgid "Description (Display)"
|
||||
msgstr "Beskrivelse (Visning)"
|
||||
|
||||
@@ -83,44 +83,44 @@ msgstr "Beskrivelse (Visning)"
|
||||
msgid "Display name"
|
||||
msgstr "Vis navn"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:209
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:197
|
||||
msgid "Do not lock port when starting driver"
|
||||
msgstr "Lås ikke porten, når du starter driveren"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:170
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:158
|
||||
msgid "Driver"
|
||||
msgstr "Driver"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:154
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:142
|
||||
msgid "Driver Configuration"
|
||||
msgstr "Driver konfiguration"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:116
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:108
|
||||
msgid "Driver Global Settings"
|
||||
msgstr "Driver globale indstillinger"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:122
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:114
|
||||
msgid "Driver Path"
|
||||
msgstr "Driver sti"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:250
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:238
|
||||
msgid "Driver Shutdown Order"
|
||||
msgstr "Driver Nedlukningsordre"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:145
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:282
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:137
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:270
|
||||
msgid "Driver waits for data to be consumed by upsd before publishing more."
|
||||
msgstr "Driver venter på, at data forbruges af upsd, før den udgiver mere."
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:97
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server_admin.js:20
|
||||
msgid "Drop privileges to this user"
|
||||
msgstr "Drop privilegier til denne bruger"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_cgi.js:41
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_cgi_admin.js:22
|
||||
msgid "Enable"
|
||||
msgstr "Aktiver"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:178
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:166
|
||||
msgid ""
|
||||
"Enables a hotplug script that makes all ttyUSB devices (e.g. serial USB) "
|
||||
"group read-write as user %s"
|
||||
@@ -136,23 +136,29 @@ msgstr "Kør underretningskommando"
|
||||
msgid "Forced Shutdown"
|
||||
msgstr "Tvunget nedlukning"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:71
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:70
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor_admin.js:16
|
||||
msgid "Global Settings"
|
||||
msgstr "Globale indstillinger"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_cgi.js:15
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_cgi_admin.js:15
|
||||
msgid "Go to NUT CGI"
|
||||
msgstr "Gå til NUT CGI"
|
||||
|
||||
#: applications/luci-app-nut/root/usr/share/rpcd/acl.d/luci-app-nut.json:15
|
||||
msgid "Grant admin UCI access for luci-app-nut"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/root/usr/share/rpcd/acl.d/luci-app-nut.json:3
|
||||
msgid "Grant UCI access for luci-app-nut"
|
||||
msgstr "Giv UCI-adgang til luci-app-nut"
|
||||
msgid "Grant limited UCI read access for luci-app-nut"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_cgi.js:17
|
||||
msgid "Host"
|
||||
msgstr "Vært"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:100
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:89
|
||||
msgid "Host Sync"
|
||||
msgstr ""
|
||||
|
||||
@@ -160,7 +166,7 @@ msgstr ""
|
||||
msgid "Hostname or IP address"
|
||||
msgstr "Værtsnavn eller IP-adresse"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:29
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:28
|
||||
msgid "Hostname or address of UPS"
|
||||
msgstr "Værtsnavn eller adresse på UPS"
|
||||
|
||||
@@ -168,7 +174,7 @@ msgstr "Værtsnavn eller adresse på UPS"
|
||||
msgid "IP Address"
|
||||
msgstr "IP Address"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:171
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:159
|
||||
msgid "If this list is empty you need to %s"
|
||||
msgstr ""
|
||||
|
||||
@@ -176,7 +182,7 @@ msgstr ""
|
||||
msgid "Ignore"
|
||||
msgstr "Ignorer"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:182
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:170
|
||||
msgid "Ignore Low Battery"
|
||||
msgstr "Ignorer lavt batteri"
|
||||
|
||||
@@ -184,19 +190,19 @@ msgstr "Ignorer lavt batteri"
|
||||
msgid "Instant commands"
|
||||
msgstr "Direkte kommandoer"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:186
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:174
|
||||
msgid "Interrupt Only"
|
||||
msgstr "Kun afbrydelse"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:190
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:178
|
||||
msgid "Interrupt Size"
|
||||
msgstr "Afbrydelsesstørrelse"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:203
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:191
|
||||
msgid "Manufacturer (Display)"
|
||||
msgstr "Producent (skærm)"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:194
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:182
|
||||
msgid "Max USB HID Length Reported"
|
||||
msgstr "Maksimal USB HID-længde rapporteret"
|
||||
|
||||
@@ -204,47 +210,55 @@ msgstr "Maksimal USB HID-længde rapporteret"
|
||||
msgid "Maximum Age of Data"
|
||||
msgstr "Maksimal alder af data"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:130
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:122
|
||||
msgid "Maximum Retries"
|
||||
msgstr "Maksimalt antal genforsøg"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:126
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:198
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:118
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:186
|
||||
msgid "Maximum Start Delay"
|
||||
msgstr "Maksimal startforsinkelse"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:105
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:97
|
||||
msgid "Maximum connections"
|
||||
msgstr "Maksimale antal forbindelser"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:130
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:122
|
||||
msgid "Maximum number of times to try starting a driver."
|
||||
msgstr "Maksimalt antal forsøg på at starte en driver."
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:140
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:132
|
||||
msgid "Maximum time in seconds between refresh of UPS status"
|
||||
msgstr "Maksimal tid i sekunder mellem opdatering af UPS-status"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:78
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:74
|
||||
msgid "Minimum required number or power supplies"
|
||||
msgstr "Minimum nødvendigt antal eller strømforsyninger"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:206
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:194
|
||||
msgid "Model (Display)"
|
||||
msgstr "Model (Display)"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_cgi.js:13
|
||||
#: applications/luci-app-nut/root/usr/share/luci/menu.d/luci-app-nut.json:42
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_cgi_admin.js:13
|
||||
msgid "NUT CGI"
|
||||
msgstr "Netværk UPS-værktøjer (CGI)"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:68
|
||||
#: applications/luci-app-nut/root/usr/share/luci/menu.d/luci-app-nut.json:30
|
||||
#: applications/luci-app-nut/root/usr/share/luci/menu.d/luci-app-nut.json:100
|
||||
msgid "NUT CGI - admin"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/root/usr/share/luci/menu.d/luci-app-nut.json:85
|
||||
msgid "NUT CGI - main"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:67
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor_admin.js:13
|
||||
msgid "NUT Monitor"
|
||||
msgstr "UPS-værktøjer til netværk (overvågning)"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:42
|
||||
#: applications/luci-app-nut/root/usr/share/luci/menu.d/luci-app-nut.json:18
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server_admin.js:13
|
||||
msgid "NUT Server"
|
||||
msgstr "UPS-værktøjer til netværk (server)"
|
||||
|
||||
@@ -252,7 +266,23 @@ msgstr "UPS-værktøjer til netværk (server)"
|
||||
msgid "NUT Users"
|
||||
msgstr "NUT-brugere"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:26
|
||||
#: applications/luci-app-nut/root/usr/share/luci/menu.d/luci-app-nut.json:69
|
||||
msgid "NUT monitor - admin"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/root/usr/share/luci/menu.d/luci-app-nut.json:54
|
||||
msgid "NUT monitor - main"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/root/usr/share/luci/menu.d/luci-app-nut.json:38
|
||||
msgid "NUT server - admin"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/root/usr/share/luci/menu.d/luci-app-nut.json:23
|
||||
msgid "NUT server - main"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:25
|
||||
msgid "Name of UPS"
|
||||
msgstr "Navn på UPS"
|
||||
|
||||
@@ -261,59 +291,62 @@ msgid "Network UPS Tools"
|
||||
msgstr "UPS-værktøjer til netværk"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_cgi.js:14
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_cgi_admin.js:14
|
||||
msgid "Network UPS Tools CGI Configuration"
|
||||
msgstr "Netværk UPS-værktøjer CGI-konfiguration"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:69
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:68
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor_admin.js:14
|
||||
msgid "Network UPS Tools Monitoring Configuration"
|
||||
msgstr "Netværk UPS-værktøjer Overvågningskonfiguration"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:43
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server_admin.js:14
|
||||
msgid "Network UPS Tools Server Configuration"
|
||||
msgstr "Konfiguration af serverkonfiguration af UPS-værktøjer til netværk"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:209
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:197
|
||||
msgid "No Lock"
|
||||
msgstr "Ingen lås"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:213
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:201
|
||||
msgid "No low/high voltage transfer OIDs"
|
||||
msgstr "Ingen OID'er for overførsel af lav/høj spænding"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:127
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:116
|
||||
msgid "Notification flags"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:119
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:108
|
||||
msgid "Notifications settings"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:87
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor_admin.js:23
|
||||
msgid "Notify command"
|
||||
msgstr "Underret kommando"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:217
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:205
|
||||
msgid "Off Delay(s)"
|
||||
msgstr "Off Forsinkelse(s)"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:226
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:214
|
||||
msgid "On Delay(s)"
|
||||
msgstr "On Forsinkelse(r)"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:46
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:45
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:53
|
||||
msgid "Password"
|
||||
msgstr "Adgangskode"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:110
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:99
|
||||
msgid "Path containing ca certificates to match against host certificate"
|
||||
msgstr "Sti med ca-certifikater, der skal matches med værtscertifikatet"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:122
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:114
|
||||
msgid "Path to drivers (instead of default)"
|
||||
msgstr "Sti til drivere (i stedet for standard)"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:101
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server_admin.js:24
|
||||
msgid "Path to state file"
|
||||
msgstr "Sti til tilstandsfil"
|
||||
|
||||
@@ -321,30 +354,30 @@ msgstr "Sti til tilstandsfil"
|
||||
msgid "Period after which data is considered stale"
|
||||
msgstr "Periode, efter hvilken data anses for forældet"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:140
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:132
|
||||
msgid "Poll Interval"
|
||||
msgstr "Poll Interval"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:90
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:79
|
||||
msgid "Poll frequency"
|
||||
msgstr "Poll frekvens"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:95
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:84
|
||||
msgid "Poll frequency alert"
|
||||
msgstr "Poll frekvens alarm"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:235
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:223
|
||||
msgid "Polling Frequency(s)"
|
||||
msgstr "Polling frekvens(er)"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_cgi.js:28
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:33
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:32
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:83
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:240
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:228
|
||||
msgid "Port"
|
||||
msgstr "Port"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:38
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:37
|
||||
msgid "Power value"
|
||||
msgstr "Effektværdi"
|
||||
|
||||
@@ -356,15 +389,15 @@ msgstr "Primary"
|
||||
msgid "Primary (Deprecated)"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:244
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:232
|
||||
msgid "Product (regex)"
|
||||
msgstr "Produkt (regex)"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:114
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:103
|
||||
msgid "Require SSL and make sure server CN matches hostname"
|
||||
msgstr "Kræv SSL, og sørg for, at serverens CN passer til værtsnavnet"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:135
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:127
|
||||
msgid "Retry Delay"
|
||||
msgstr "Forsinkelse af gentagelsesforsøg"
|
||||
|
||||
@@ -372,49 +405,48 @@ msgstr "Forsinkelse af gentagelsesforsøg"
|
||||
msgid "Role"
|
||||
msgstr "Rolle"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:119
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:111
|
||||
msgid "Run drivers in a chroot(2) environment"
|
||||
msgstr "Kør drivere i et chroot(2)-miljø"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:75
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:97
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:149
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor_admin.js:20
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server_admin.js:20
|
||||
msgid "RunAs User"
|
||||
msgstr "Kør som bruger"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:163
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:151
|
||||
msgid "SNMP Community"
|
||||
msgstr "SNMP-fællesskab"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:260
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:248
|
||||
msgid "SNMP retries"
|
||||
msgstr "SNMP-genforsøg"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:264
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:252
|
||||
msgid "SNMP timeout(s)"
|
||||
msgstr "SNMP-timeout(s)"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:268
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:256
|
||||
msgid "SNMP version"
|
||||
msgstr "SNMP-version"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:270
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:258
|
||||
msgid "SNMPv1"
|
||||
msgstr "SNMPv1"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:271
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:259
|
||||
msgid "SNMPv2c"
|
||||
msgstr "SNMPv2c"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:272
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:260
|
||||
msgid "SNMPv3"
|
||||
msgstr "SNMPv3"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:257
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:245
|
||||
msgid "Serial Number"
|
||||
msgstr "Serienummer"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:177
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:165
|
||||
msgid "Set USB serial port permissions"
|
||||
msgstr "Indstil tilladelser til USB-serielport"
|
||||
|
||||
@@ -422,51 +454,52 @@ msgstr "Indstil tilladelser til USB-serielport"
|
||||
msgid "Set variables"
|
||||
msgstr "Indstil variabler"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:83
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor_admin.js:26
|
||||
msgid "Shutdown command"
|
||||
msgstr "Kommando til nedlukning"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:145
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:282
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:137
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:270
|
||||
msgid "Synchronous Communication"
|
||||
msgstr "Synkron kommunikation"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:155
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:143
|
||||
msgid "The name of this section will be used as UPS name elsewhere"
|
||||
msgstr "Navnet på denne sektion vil blive brugt som UPS-navn andre steder"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:167
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:203
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:206
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:257
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:155
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:191
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:194
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:245
|
||||
msgid ""
|
||||
"This is passed through to the driver, so make sure your driver supports this "
|
||||
"option"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:135
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:127
|
||||
msgid "Time in seconds between driver start retry attempts."
|
||||
msgstr "Tid i sekunder mellem forsøg på at genstarte driveren igen."
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:198
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:186
|
||||
msgid "Time in seconds that upsdrvctl will wait for driver to finish starting"
|
||||
msgstr ""
|
||||
"Tid i sekunder, som upsdrvctl vil vente på, at driveren er færdig med at "
|
||||
"starte"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:142
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:131
|
||||
msgid "UPS Auxiliary (Deprecated)"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:130
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:119
|
||||
msgid "UPS Monitor User Settings"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:139
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:128
|
||||
msgid "UPS Primary (Deprecated)"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:89
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server_admin.js:17
|
||||
msgid "UPS Server Global Settings"
|
||||
msgstr "Globale indstillinger for UPS Server"
|
||||
|
||||
@@ -474,19 +507,19 @@ msgstr "Globale indstillinger for UPS Server"
|
||||
msgid "UPS name"
|
||||
msgstr "UPS-navn"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:159
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:147
|
||||
msgid "USB Bus(es) (regex)"
|
||||
msgstr "USB-bus(er) (regex)"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:247
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:235
|
||||
msgid "USB Product Id"
|
||||
msgstr "USB-produkt-id"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:279
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:267
|
||||
msgid "USB Vendor Id"
|
||||
msgstr "USB-leverandør-id"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:57
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:56
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:28
|
||||
msgid "Unable to run ldd: %s"
|
||||
msgstr ""
|
||||
@@ -498,32 +531,24 @@ msgstr ""
|
||||
"Brug %s til at se en komplet liste over de kommandoer, som din UPS "
|
||||
"understøtter (kræver %s-pakken)"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:149
|
||||
msgid ""
|
||||
"User as which to execute driver; requires device file accessed by driver to "
|
||||
"be read-write for that user."
|
||||
msgstr ""
|
||||
"Bruger, som driveren skal udføres af; kræver, at en enhedsfil, som driveren "
|
||||
"har adgang til, skal være skrive- og læsevenlig for den pågældende bruger."
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:133
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:122
|
||||
msgid "User type (Primary/Auxiliary)"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:43
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:42
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:50
|
||||
msgid "Username"
|
||||
msgstr "Brugernavn"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:276
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:264
|
||||
msgid "Vendor (regex)"
|
||||
msgstr "Leverandør (regex)"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:114
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:103
|
||||
msgid "Verify all connection with SSL"
|
||||
msgstr "Kontroller alle forbindelser med SSL"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:194
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:182
|
||||
msgid "Workaround for buggy firmware"
|
||||
msgstr "Løsning for fejlbehæftet firmware"
|
||||
|
||||
@@ -535,18 +560,29 @@ msgstr "Skriv til syslog"
|
||||
msgid "Write to syslog and execute notify command"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:119
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:111
|
||||
msgid "chroot"
|
||||
msgstr "chroot"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:171
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:159
|
||||
msgid "install drivers"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:75
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor_admin.js:20
|
||||
msgid "upsmon drops privileges to this user"
|
||||
msgstr "upsmon dropper privilegier til denne bruger"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "User as which to execute driver; requires device file accessed by driver "
|
||||
#~ "to be read-write for that user."
|
||||
#~ msgstr ""
|
||||
#~ "Bruger, som driveren skal udføres af; kræver, at en enhedsfil, som "
|
||||
#~ "driveren har adgang til, skal være skrive- og læsevenlig for den "
|
||||
#~ "pågældende bruger."
|
||||
|
||||
#~ msgid "Grant UCI access for luci-app-nut"
|
||||
#~ msgstr "Giv UCI-adgang til luci-app-nut"
|
||||
|
||||
#~ msgid "Communications lost message"
|
||||
#~ msgstr "Kommunikation mistet besked"
|
||||
|
||||
|
||||
@@ -12,7 +12,7 @@ msgstr ""
|
||||
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
||||
"X-Generator: Weblate 5.17.1\n"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:254
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:242
|
||||
msgid "Additional Shutdown Time(s)"
|
||||
msgstr "Zusätzliche Abschaltzeit(en)"
|
||||
|
||||
@@ -25,7 +25,7 @@ msgid "Allowed actions"
|
||||
msgstr "Erlaubte Aktionen"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_cgi.js:21
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:26
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:25
|
||||
msgid "As configured by NUT"
|
||||
msgstr "Wie von NUT konfiguriert"
|
||||
|
||||
@@ -37,45 +37,45 @@ msgstr "Helfer"
|
||||
msgid "Auxiliary (Deprecated)"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:190
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:178
|
||||
msgid "Bytes to read from interrupt pipe"
|
||||
msgstr "Bytes zum Lesen aus der Interrupt-Pipe"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:110
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:99
|
||||
msgid "CA Certificate path"
|
||||
msgstr "CA Zertifikatspfad"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:111
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:103
|
||||
msgid "Certificate file (SSL)"
|
||||
msgstr "Zertifikatsdatei (SSL)"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_cgi.js:36
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_cgi_admin.js:17
|
||||
msgid "Control UPS via CGI"
|
||||
msgstr "Steuere die USV über CGI"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:124
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:113
|
||||
msgid "Custom notification message for message type"
|
||||
msgstr "Benutzerdefinierte Benachrichtigung für Nachrichtentyp"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:104
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:93
|
||||
msgid "Deadtime"
|
||||
msgstr "Totzeit"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:126
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:118
|
||||
msgid "Default for UPSes without this field."
|
||||
msgstr "Standard für USVs ohne dieses Feld."
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:217
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:205
|
||||
msgid "Delay for kill power command"
|
||||
msgstr "Zeitverzögerung für Ausschaltbefehl"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:226
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:214
|
||||
msgid "Delay to power on UPS if power returns after kill power"
|
||||
msgstr ""
|
||||
"Verzögerung vor dem Einschalten der USV, wenn die Stromversorgung nach dem "
|
||||
"Ausschalten wiederhergestellt wird"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:167
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:155
|
||||
msgid "Description (Display)"
|
||||
msgstr "Beschreibung (Anzeige)"
|
||||
|
||||
@@ -83,46 +83,46 @@ msgstr "Beschreibung (Anzeige)"
|
||||
msgid "Display name"
|
||||
msgstr "Anzeigename"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:209
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:197
|
||||
msgid "Do not lock port when starting driver"
|
||||
msgstr "Port beim Starten des Treibers nicht sperren"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:170
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:158
|
||||
msgid "Driver"
|
||||
msgstr "Treiber"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:154
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:142
|
||||
msgid "Driver Configuration"
|
||||
msgstr "Treiberkonfiguration"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:116
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:108
|
||||
msgid "Driver Global Settings"
|
||||
msgstr "Globale Treibereinstellungen"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:122
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:114
|
||||
msgid "Driver Path"
|
||||
msgstr "Treiberpfad"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:250
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:238
|
||||
msgid "Driver Shutdown Order"
|
||||
msgstr "Reihenfolge des Herunterfahrens von Treibern"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:145
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:282
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:137
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:270
|
||||
msgid "Driver waits for data to be consumed by upsd before publishing more."
|
||||
msgstr ""
|
||||
"Der Treiber wartet, bis die Daten von upsd verarbeitet sind, bevor er "
|
||||
"weitere Daten veröffentlicht."
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:97
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server_admin.js:20
|
||||
msgid "Drop privileges to this user"
|
||||
msgstr "Entferne Rechte für diesen Benutzer"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_cgi.js:41
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_cgi_admin.js:22
|
||||
msgid "Enable"
|
||||
msgstr "Aktivieren"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:178
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:166
|
||||
msgid ""
|
||||
"Enables a hotplug script that makes all ttyUSB devices (e.g. serial USB) "
|
||||
"group read-write as user %s"
|
||||
@@ -138,23 +138,29 @@ msgstr "Benachrichtigungsbefehl ausführen"
|
||||
msgid "Forced Shutdown"
|
||||
msgstr "Erzwungenes Herunterfahren"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:71
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:70
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor_admin.js:16
|
||||
msgid "Global Settings"
|
||||
msgstr "Globale Einstellungen"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_cgi.js:15
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_cgi_admin.js:15
|
||||
msgid "Go to NUT CGI"
|
||||
msgstr "Zum NUT CGI gehen"
|
||||
|
||||
#: applications/luci-app-nut/root/usr/share/rpcd/acl.d/luci-app-nut.json:15
|
||||
msgid "Grant admin UCI access for luci-app-nut"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/root/usr/share/rpcd/acl.d/luci-app-nut.json:3
|
||||
msgid "Grant UCI access for luci-app-nut"
|
||||
msgstr "Gewähre UCI-Zugriff für luci-app-nut"
|
||||
msgid "Grant limited UCI read access for luci-app-nut"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_cgi.js:17
|
||||
msgid "Host"
|
||||
msgstr "Host"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:100
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:89
|
||||
msgid "Host Sync"
|
||||
msgstr "Host-Sync"
|
||||
|
||||
@@ -162,7 +168,7 @@ msgstr "Host-Sync"
|
||||
msgid "Hostname or IP address"
|
||||
msgstr "Hostname oder IP-Adresse"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:29
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:28
|
||||
msgid "Hostname or address of UPS"
|
||||
msgstr "Hostname oder Adresse der USV"
|
||||
|
||||
@@ -170,7 +176,7 @@ msgstr "Hostname oder Adresse der USV"
|
||||
msgid "IP Address"
|
||||
msgstr "IP-Adresse"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:171
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:159
|
||||
msgid "If this list is empty you need to %s"
|
||||
msgstr "Wenn diese Liste leer ist, müssen Sie %"
|
||||
|
||||
@@ -178,7 +184,7 @@ msgstr "Wenn diese Liste leer ist, müssen Sie %"
|
||||
msgid "Ignore"
|
||||
msgstr "Ignorieren"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:182
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:170
|
||||
msgid "Ignore Low Battery"
|
||||
msgstr "Ignoriere niedrigen Batteriestand"
|
||||
|
||||
@@ -186,19 +192,19 @@ msgstr "Ignoriere niedrigen Batteriestand"
|
||||
msgid "Instant commands"
|
||||
msgstr "Direkte Befehle"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:186
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:174
|
||||
msgid "Interrupt Only"
|
||||
msgstr "Nur Unterbrechung"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:190
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:178
|
||||
msgid "Interrupt Size"
|
||||
msgstr "Unterbrechungsgröße"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:203
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:191
|
||||
msgid "Manufacturer (Display)"
|
||||
msgstr "Hersteller (Display)"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:194
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:182
|
||||
msgid "Max USB HID Length Reported"
|
||||
msgstr "Max. gemeldete USB-HID-Länge"
|
||||
|
||||
@@ -206,47 +212,55 @@ msgstr "Max. gemeldete USB-HID-Länge"
|
||||
msgid "Maximum Age of Data"
|
||||
msgstr "Maximales Alter der Daten"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:130
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:122
|
||||
msgid "Maximum Retries"
|
||||
msgstr "Maximale Wiederversuche"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:126
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:198
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:118
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:186
|
||||
msgid "Maximum Start Delay"
|
||||
msgstr "Maximale Startverzögerung"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:105
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:97
|
||||
msgid "Maximum connections"
|
||||
msgstr "Maximale Verbindungen"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:130
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:122
|
||||
msgid "Maximum number of times to try starting a driver."
|
||||
msgstr "Maximale Anzahl von Versuchen, einen Treiber zu starten."
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:140
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:132
|
||||
msgid "Maximum time in seconds between refresh of UPS status"
|
||||
msgstr "Maximale Zeit in Sekunden zwischen der Aktualisierung des USV-Status"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:78
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:74
|
||||
msgid "Minimum required number or power supplies"
|
||||
msgstr "Mindestanzahl von Netzteilen"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:206
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:194
|
||||
msgid "Model (Display)"
|
||||
msgstr "Modell (Display)"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_cgi.js:13
|
||||
#: applications/luci-app-nut/root/usr/share/luci/menu.d/luci-app-nut.json:42
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_cgi_admin.js:13
|
||||
msgid "NUT CGI"
|
||||
msgstr "Netzwerk-USV-Tools (CGI)"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:68
|
||||
#: applications/luci-app-nut/root/usr/share/luci/menu.d/luci-app-nut.json:30
|
||||
#: applications/luci-app-nut/root/usr/share/luci/menu.d/luci-app-nut.json:100
|
||||
msgid "NUT CGI - admin"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/root/usr/share/luci/menu.d/luci-app-nut.json:85
|
||||
msgid "NUT CGI - main"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:67
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor_admin.js:13
|
||||
msgid "NUT Monitor"
|
||||
msgstr "Netzwerk-USV-Tools (Monitor)"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:42
|
||||
#: applications/luci-app-nut/root/usr/share/luci/menu.d/luci-app-nut.json:18
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server_admin.js:13
|
||||
msgid "NUT Server"
|
||||
msgstr "Netzwerk-USV-Tools (Server)"
|
||||
|
||||
@@ -254,7 +268,23 @@ msgstr "Netzwerk-USV-Tools (Server)"
|
||||
msgid "NUT Users"
|
||||
msgstr "NUT Benutzer"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:26
|
||||
#: applications/luci-app-nut/root/usr/share/luci/menu.d/luci-app-nut.json:69
|
||||
msgid "NUT monitor - admin"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/root/usr/share/luci/menu.d/luci-app-nut.json:54
|
||||
msgid "NUT monitor - main"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/root/usr/share/luci/menu.d/luci-app-nut.json:38
|
||||
msgid "NUT server - admin"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/root/usr/share/luci/menu.d/luci-app-nut.json:23
|
||||
msgid "NUT server - main"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:25
|
||||
msgid "Name of UPS"
|
||||
msgstr "Name der USV"
|
||||
|
||||
@@ -263,59 +293,62 @@ msgid "Network UPS Tools"
|
||||
msgstr "Netzwerk-USV-Tools"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_cgi.js:14
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_cgi_admin.js:14
|
||||
msgid "Network UPS Tools CGI Configuration"
|
||||
msgstr "Netzwerk-USV-Tools CGI-Konfiguration"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:69
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:68
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor_admin.js:14
|
||||
msgid "Network UPS Tools Monitoring Configuration"
|
||||
msgstr "Netzwerk-USV-Tools Konfiguration der Überwachung"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:43
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server_admin.js:14
|
||||
msgid "Network UPS Tools Server Configuration"
|
||||
msgstr "Netzwerk-USV-Tools Konfiguration des Servers"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:209
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:197
|
||||
msgid "No Lock"
|
||||
msgstr "Keine Sperre"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:213
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:201
|
||||
msgid "No low/high voltage transfer OIDs"
|
||||
msgstr "Keine Nieder-/Hochspannungsübertragungs-OIDs"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:127
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:116
|
||||
msgid "Notification flags"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:119
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:108
|
||||
msgid "Notifications settings"
|
||||
msgstr "Benachrichtigungseinstellungen"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:87
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor_admin.js:23
|
||||
msgid "Notify command"
|
||||
msgstr "Benachrichtigungsbefehl"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:217
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:205
|
||||
msgid "Off Delay(s)"
|
||||
msgstr "Ausschaltverzögerung(en)"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:226
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:214
|
||||
msgid "On Delay(s)"
|
||||
msgstr "Einschaltverzögerung(en)"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:46
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:45
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:53
|
||||
msgid "Password"
|
||||
msgstr "Passwort"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:110
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:99
|
||||
msgid "Path containing ca certificates to match against host certificate"
|
||||
msgstr "Pfad mit CA-Zertifikaten zum Abgleich mit dem Host-Zertifikat"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:122
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:114
|
||||
msgid "Path to drivers (instead of default)"
|
||||
msgstr "Treiberpfad (anstatt des Standardpfads)"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:101
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server_admin.js:24
|
||||
msgid "Path to state file"
|
||||
msgstr "Pfad zur Zustandsdatei"
|
||||
|
||||
@@ -323,30 +356,30 @@ msgstr "Pfad zur Zustandsdatei"
|
||||
msgid "Period after which data is considered stale"
|
||||
msgstr "Zeitraum, nach dem Daten als veraltet gelten"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:140
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:132
|
||||
msgid "Poll Interval"
|
||||
msgstr "Aktualisierungsintervall"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:90
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:79
|
||||
msgid "Poll frequency"
|
||||
msgstr "Aktualisierungshäufigkeit"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:95
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:84
|
||||
msgid "Poll frequency alert"
|
||||
msgstr "Abfragehäufigkeitswarnung"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:235
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:223
|
||||
msgid "Polling Frequency(s)"
|
||||
msgstr "Abfragefrequenz(en)"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_cgi.js:28
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:33
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:32
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:83
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:240
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:228
|
||||
msgid "Port"
|
||||
msgstr "Port"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:38
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:37
|
||||
msgid "Power value"
|
||||
msgstr "Leistungswert"
|
||||
|
||||
@@ -358,17 +391,17 @@ msgstr "Primär"
|
||||
msgid "Primary (Deprecated)"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:244
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:232
|
||||
msgid "Product (regex)"
|
||||
msgstr "Produkt (Regex)"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:114
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:103
|
||||
msgid "Require SSL and make sure server CN matches hostname"
|
||||
msgstr ""
|
||||
"SSL voraussetzen und sicherstellen, dass der CN des Servers mit dem "
|
||||
"Hostnamen übereinstimmt"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:135
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:127
|
||||
msgid "Retry Delay"
|
||||
msgstr "Verzögerung bei Wiederholungsversuchen"
|
||||
|
||||
@@ -376,49 +409,48 @@ msgstr "Verzögerung bei Wiederholungsversuchen"
|
||||
msgid "Role"
|
||||
msgstr "Rolle"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:119
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:111
|
||||
msgid "Run drivers in a chroot(2) environment"
|
||||
msgstr "Treiber in einer chroot(2)-Umgebung ausführen"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:75
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:97
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:149
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor_admin.js:20
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server_admin.js:20
|
||||
msgid "RunAs User"
|
||||
msgstr "Ausführen als Benutzer"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:163
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:151
|
||||
msgid "SNMP Community"
|
||||
msgstr "SNMP Community"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:260
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:248
|
||||
msgid "SNMP retries"
|
||||
msgstr "SNMP Wiederversuche"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:264
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:252
|
||||
msgid "SNMP timeout(s)"
|
||||
msgstr "SNMP Zeitüberschreitung (en)"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:268
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:256
|
||||
msgid "SNMP version"
|
||||
msgstr "SNMP-Version"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:270
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:258
|
||||
msgid "SNMPv1"
|
||||
msgstr "SNMPv1"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:271
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:259
|
||||
msgid "SNMPv2c"
|
||||
msgstr "SNMPv2c"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:272
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:260
|
||||
msgid "SNMPv3"
|
||||
msgstr "SNMPv3"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:257
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:245
|
||||
msgid "Serial Number"
|
||||
msgstr "Seriennummer"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:177
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:165
|
||||
msgid "Set USB serial port permissions"
|
||||
msgstr "Festlegen von USB-Berechtigungen für serielle Anschlüsse"
|
||||
|
||||
@@ -426,24 +458,24 @@ msgstr "Festlegen von USB-Berechtigungen für serielle Anschlüsse"
|
||||
msgid "Set variables"
|
||||
msgstr "Setze Variablen"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:83
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor_admin.js:26
|
||||
msgid "Shutdown command"
|
||||
msgstr "Befehl zum Herunterfahren"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:145
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:282
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:137
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:270
|
||||
msgid "Synchronous Communication"
|
||||
msgstr "Synchrone Kommunikation"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:155
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:143
|
||||
msgid "The name of this section will be used as UPS name elsewhere"
|
||||
msgstr ""
|
||||
"Der Name dieses Abschnitts wird an anderer Stelle als USV-Name verwendet"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:167
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:203
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:206
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:257
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:155
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:191
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:194
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:245
|
||||
msgid ""
|
||||
"This is passed through to the driver, so make sure your driver supports this "
|
||||
"option"
|
||||
@@ -451,30 +483,31 @@ msgstr ""
|
||||
"Dies wird an den Treiber weitergeleitet, also versichern Sie sich, dass Ihr "
|
||||
"Treiber diese Option unterstützt"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:135
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:127
|
||||
msgid "Time in seconds between driver start retry attempts."
|
||||
msgstr ""
|
||||
"Zeit in Sekunden zwischen den wiederholten Startversuchen des Treibers."
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:198
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:186
|
||||
msgid "Time in seconds that upsdrvctl will wait for driver to finish starting"
|
||||
msgstr ""
|
||||
"Zeit in Sekunden, die upsdrvctl darauf wartet, dass der Treiber den "
|
||||
"Startvorgang beendet"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:142
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:131
|
||||
msgid "UPS Auxiliary (Deprecated)"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:130
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:119
|
||||
msgid "UPS Monitor User Settings"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:139
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:128
|
||||
msgid "UPS Primary (Deprecated)"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:89
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server_admin.js:17
|
||||
msgid "UPS Server Global Settings"
|
||||
msgstr "Globale Einstellungen des USV-Servers"
|
||||
|
||||
@@ -482,19 +515,19 @@ msgstr "Globale Einstellungen des USV-Servers"
|
||||
msgid "UPS name"
|
||||
msgstr "USV-Name"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:159
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:147
|
||||
msgid "USB Bus(es) (regex)"
|
||||
msgstr "USB-Bus(se) (regex)"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:247
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:235
|
||||
msgid "USB Product Id"
|
||||
msgstr "USB Produkt ID"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:279
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:267
|
||||
msgid "USB Vendor Id"
|
||||
msgstr "USB Hersteller ID"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:57
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:56
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:28
|
||||
msgid "Unable to run ldd: %s"
|
||||
msgstr "Kann ldd nicht ausführen: %s"
|
||||
@@ -506,33 +539,24 @@ msgstr ""
|
||||
"Verwenden Sie %s, um die vollständige Liste der von Ihrer USV unterstützten "
|
||||
"Befehle anzuzeigen (erfordert das Paket %s)"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:149
|
||||
msgid ""
|
||||
"User as which to execute driver; requires device file accessed by driver to "
|
||||
"be read-write for that user."
|
||||
msgstr ""
|
||||
"Benutzer, unter dem der Treiber ausgeführt werden soll; erfordert, dass die "
|
||||
"Gerätedatei, auf die der Treiber zugreift, für diesen Benutzer schreib- und "
|
||||
"lesbar ist."
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:133
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:122
|
||||
msgid "User type (Primary/Auxiliary)"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:43
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:42
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:50
|
||||
msgid "Username"
|
||||
msgstr "Benutzername"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:276
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:264
|
||||
msgid "Vendor (regex)"
|
||||
msgstr "Anbieter (Regex)"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:114
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:103
|
||||
msgid "Verify all connection with SSL"
|
||||
msgstr "Überprüfe alle Verbindungen mit SSL"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:194
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:182
|
||||
msgid "Workaround for buggy firmware"
|
||||
msgstr "Workaround für fehlerhafte Firmware"
|
||||
|
||||
@@ -544,18 +568,29 @@ msgstr "Schreibe Systemlog"
|
||||
msgid "Write to syslog and execute notify command"
|
||||
msgstr "An syslog schreiben und Benachrichtigungsbefehl ausführen"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:119
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:111
|
||||
msgid "chroot"
|
||||
msgstr "chroot"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:171
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:159
|
||||
msgid "install drivers"
|
||||
msgstr "Treiber installieren"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:75
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor_admin.js:20
|
||||
msgid "upsmon drops privileges to this user"
|
||||
msgstr "upsmon entzieht diesem Benutzer die Privilegien"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "User as which to execute driver; requires device file accessed by driver "
|
||||
#~ "to be read-write for that user."
|
||||
#~ msgstr ""
|
||||
#~ "Benutzer, unter dem der Treiber ausgeführt werden soll; erfordert, dass "
|
||||
#~ "die Gerätedatei, auf die der Treiber zugreift, für diesen Benutzer "
|
||||
#~ "schreib- und lesbar ist."
|
||||
|
||||
#~ msgid "Grant UCI access for luci-app-nut"
|
||||
#~ msgstr "Gewähre UCI-Zugriff für luci-app-nut"
|
||||
|
||||
#~ msgid "UPS Monitor User Settings)"
|
||||
#~ msgstr "USV-Monitor Benutzereinstellungen)"
|
||||
|
||||
|
||||
@@ -12,7 +12,7 @@ msgstr ""
|
||||
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
||||
"X-Generator: Weblate 4.13-dev\n"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:254
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:242
|
||||
msgid "Additional Shutdown Time(s)"
|
||||
msgstr ""
|
||||
|
||||
@@ -25,7 +25,7 @@ msgid "Allowed actions"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_cgi.js:21
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:26
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:25
|
||||
msgid "As configured by NUT"
|
||||
msgstr ""
|
||||
|
||||
@@ -37,43 +37,43 @@ msgstr ""
|
||||
msgid "Auxiliary (Deprecated)"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:190
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:178
|
||||
msgid "Bytes to read from interrupt pipe"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:110
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:99
|
||||
msgid "CA Certificate path"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:111
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:103
|
||||
msgid "Certificate file (SSL)"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_cgi.js:36
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_cgi_admin.js:17
|
||||
msgid "Control UPS via CGI"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:124
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:113
|
||||
msgid "Custom notification message for message type"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:104
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:93
|
||||
msgid "Deadtime"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:126
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:118
|
||||
msgid "Default for UPSes without this field."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:217
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:205
|
||||
msgid "Delay for kill power command"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:226
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:214
|
||||
msgid "Delay to power on UPS if power returns after kill power"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:167
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:155
|
||||
msgid "Description (Display)"
|
||||
msgstr ""
|
||||
|
||||
@@ -81,44 +81,44 @@ msgstr ""
|
||||
msgid "Display name"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:209
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:197
|
||||
msgid "Do not lock port when starting driver"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:170
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:158
|
||||
msgid "Driver"
|
||||
msgstr "Οδηγός"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:154
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:142
|
||||
msgid "Driver Configuration"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:116
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:108
|
||||
msgid "Driver Global Settings"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:122
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:114
|
||||
msgid "Driver Path"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:250
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:238
|
||||
msgid "Driver Shutdown Order"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:145
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:282
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:137
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:270
|
||||
msgid "Driver waits for data to be consumed by upsd before publishing more."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:97
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server_admin.js:20
|
||||
msgid "Drop privileges to this user"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_cgi.js:41
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_cgi_admin.js:22
|
||||
msgid "Enable"
|
||||
msgstr "Ενεργοποίηση"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:178
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:166
|
||||
msgid ""
|
||||
"Enables a hotplug script that makes all ttyUSB devices (e.g. serial USB) "
|
||||
"group read-write as user %s"
|
||||
@@ -132,23 +132,29 @@ msgstr ""
|
||||
msgid "Forced Shutdown"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:71
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:70
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor_admin.js:16
|
||||
msgid "Global Settings"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_cgi.js:15
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_cgi_admin.js:15
|
||||
msgid "Go to NUT CGI"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/root/usr/share/rpcd/acl.d/luci-app-nut.json:15
|
||||
msgid "Grant admin UCI access for luci-app-nut"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/root/usr/share/rpcd/acl.d/luci-app-nut.json:3
|
||||
msgid "Grant UCI access for luci-app-nut"
|
||||
msgid "Grant limited UCI read access for luci-app-nut"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_cgi.js:17
|
||||
msgid "Host"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:100
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:89
|
||||
msgid "Host Sync"
|
||||
msgstr ""
|
||||
|
||||
@@ -156,7 +162,7 @@ msgstr ""
|
||||
msgid "Hostname or IP address"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:29
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:28
|
||||
msgid "Hostname or address of UPS"
|
||||
msgstr ""
|
||||
|
||||
@@ -164,7 +170,7 @@ msgstr ""
|
||||
msgid "IP Address"
|
||||
msgstr "Διεύθυνση IP"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:171
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:159
|
||||
msgid "If this list is empty you need to %s"
|
||||
msgstr ""
|
||||
|
||||
@@ -172,7 +178,7 @@ msgstr ""
|
||||
msgid "Ignore"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:182
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:170
|
||||
msgid "Ignore Low Battery"
|
||||
msgstr ""
|
||||
|
||||
@@ -180,19 +186,19 @@ msgstr ""
|
||||
msgid "Instant commands"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:186
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:174
|
||||
msgid "Interrupt Only"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:190
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:178
|
||||
msgid "Interrupt Size"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:203
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:191
|
||||
msgid "Manufacturer (Display)"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:194
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:182
|
||||
msgid "Max USB HID Length Reported"
|
||||
msgstr ""
|
||||
|
||||
@@ -200,47 +206,55 @@ msgstr ""
|
||||
msgid "Maximum Age of Data"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:130
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:122
|
||||
msgid "Maximum Retries"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:126
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:198
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:118
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:186
|
||||
msgid "Maximum Start Delay"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:105
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:97
|
||||
msgid "Maximum connections"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:130
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:122
|
||||
msgid "Maximum number of times to try starting a driver."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:140
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:132
|
||||
msgid "Maximum time in seconds between refresh of UPS status"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:78
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:74
|
||||
msgid "Minimum required number or power supplies"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:206
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:194
|
||||
msgid "Model (Display)"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_cgi.js:13
|
||||
#: applications/luci-app-nut/root/usr/share/luci/menu.d/luci-app-nut.json:42
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_cgi_admin.js:13
|
||||
msgid "NUT CGI"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:68
|
||||
#: applications/luci-app-nut/root/usr/share/luci/menu.d/luci-app-nut.json:30
|
||||
#: applications/luci-app-nut/root/usr/share/luci/menu.d/luci-app-nut.json:100
|
||||
msgid "NUT CGI - admin"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/root/usr/share/luci/menu.d/luci-app-nut.json:85
|
||||
msgid "NUT CGI - main"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:67
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor_admin.js:13
|
||||
msgid "NUT Monitor"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:42
|
||||
#: applications/luci-app-nut/root/usr/share/luci/menu.d/luci-app-nut.json:18
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server_admin.js:13
|
||||
msgid "NUT Server"
|
||||
msgstr ""
|
||||
|
||||
@@ -248,7 +262,23 @@ msgstr ""
|
||||
msgid "NUT Users"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:26
|
||||
#: applications/luci-app-nut/root/usr/share/luci/menu.d/luci-app-nut.json:69
|
||||
msgid "NUT monitor - admin"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/root/usr/share/luci/menu.d/luci-app-nut.json:54
|
||||
msgid "NUT monitor - main"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/root/usr/share/luci/menu.d/luci-app-nut.json:38
|
||||
msgid "NUT server - admin"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/root/usr/share/luci/menu.d/luci-app-nut.json:23
|
||||
msgid "NUT server - main"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:25
|
||||
msgid "Name of UPS"
|
||||
msgstr ""
|
||||
|
||||
@@ -257,59 +287,62 @@ msgid "Network UPS Tools"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_cgi.js:14
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_cgi_admin.js:14
|
||||
msgid "Network UPS Tools CGI Configuration"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:69
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:68
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor_admin.js:14
|
||||
msgid "Network UPS Tools Monitoring Configuration"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:43
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server_admin.js:14
|
||||
msgid "Network UPS Tools Server Configuration"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:209
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:197
|
||||
msgid "No Lock"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:213
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:201
|
||||
msgid "No low/high voltage transfer OIDs"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:127
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:116
|
||||
msgid "Notification flags"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:119
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:108
|
||||
msgid "Notifications settings"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:87
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor_admin.js:23
|
||||
msgid "Notify command"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:217
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:205
|
||||
msgid "Off Delay(s)"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:226
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:214
|
||||
msgid "On Delay(s)"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:46
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:45
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:53
|
||||
msgid "Password"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:110
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:99
|
||||
msgid "Path containing ca certificates to match against host certificate"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:122
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:114
|
||||
msgid "Path to drivers (instead of default)"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:101
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server_admin.js:24
|
||||
msgid "Path to state file"
|
||||
msgstr ""
|
||||
|
||||
@@ -317,30 +350,30 @@ msgstr ""
|
||||
msgid "Period after which data is considered stale"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:140
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:132
|
||||
msgid "Poll Interval"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:90
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:79
|
||||
msgid "Poll frequency"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:95
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:84
|
||||
msgid "Poll frequency alert"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:235
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:223
|
||||
msgid "Polling Frequency(s)"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_cgi.js:28
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:33
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:32
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:83
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:240
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:228
|
||||
msgid "Port"
|
||||
msgstr "Θύρα"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:38
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:37
|
||||
msgid "Power value"
|
||||
msgstr ""
|
||||
|
||||
@@ -352,15 +385,15 @@ msgstr ""
|
||||
msgid "Primary (Deprecated)"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:244
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:232
|
||||
msgid "Product (regex)"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:114
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:103
|
||||
msgid "Require SSL and make sure server CN matches hostname"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:135
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:127
|
||||
msgid "Retry Delay"
|
||||
msgstr ""
|
||||
|
||||
@@ -368,49 +401,48 @@ msgstr ""
|
||||
msgid "Role"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:119
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:111
|
||||
msgid "Run drivers in a chroot(2) environment"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:75
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:97
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:149
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor_admin.js:20
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server_admin.js:20
|
||||
msgid "RunAs User"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:163
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:151
|
||||
msgid "SNMP Community"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:260
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:248
|
||||
msgid "SNMP retries"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:264
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:252
|
||||
msgid "SNMP timeout(s)"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:268
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:256
|
||||
msgid "SNMP version"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:270
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:258
|
||||
msgid "SNMPv1"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:271
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:259
|
||||
msgid "SNMPv2c"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:272
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:260
|
||||
msgid "SNMPv3"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:257
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:245
|
||||
msgid "Serial Number"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:177
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:165
|
||||
msgid "Set USB serial port permissions"
|
||||
msgstr ""
|
||||
|
||||
@@ -418,49 +450,50 @@ msgstr ""
|
||||
msgid "Set variables"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:83
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor_admin.js:26
|
||||
msgid "Shutdown command"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:145
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:282
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:137
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:270
|
||||
msgid "Synchronous Communication"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:155
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:143
|
||||
msgid "The name of this section will be used as UPS name elsewhere"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:167
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:203
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:206
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:257
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:155
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:191
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:194
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:245
|
||||
msgid ""
|
||||
"This is passed through to the driver, so make sure your driver supports this "
|
||||
"option"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:135
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:127
|
||||
msgid "Time in seconds between driver start retry attempts."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:198
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:186
|
||||
msgid "Time in seconds that upsdrvctl will wait for driver to finish starting"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:142
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:131
|
||||
msgid "UPS Auxiliary (Deprecated)"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:130
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:119
|
||||
msgid "UPS Monitor User Settings"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:139
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:128
|
||||
msgid "UPS Primary (Deprecated)"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:89
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server_admin.js:17
|
||||
msgid "UPS Server Global Settings"
|
||||
msgstr ""
|
||||
|
||||
@@ -468,19 +501,19 @@ msgstr ""
|
||||
msgid "UPS name"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:159
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:147
|
||||
msgid "USB Bus(es) (regex)"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:247
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:235
|
||||
msgid "USB Product Id"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:279
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:267
|
||||
msgid "USB Vendor Id"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:57
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:56
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:28
|
||||
msgid "Unable to run ldd: %s"
|
||||
msgstr ""
|
||||
@@ -490,30 +523,24 @@ msgid ""
|
||||
"Use %s to see full list of commands your UPS supports (requires %s package)"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:149
|
||||
msgid ""
|
||||
"User as which to execute driver; requires device file accessed by driver to "
|
||||
"be read-write for that user."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:133
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:122
|
||||
msgid "User type (Primary/Auxiliary)"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:43
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:42
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:50
|
||||
msgid "Username"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:276
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:264
|
||||
msgid "Vendor (regex)"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:114
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:103
|
||||
msgid "Verify all connection with SSL"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:194
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:182
|
||||
msgid "Workaround for buggy firmware"
|
||||
msgstr ""
|
||||
|
||||
@@ -525,14 +552,14 @@ msgstr ""
|
||||
msgid "Write to syslog and execute notify command"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:119
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:111
|
||||
msgid "chroot"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:171
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:159
|
||||
msgid "install drivers"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:75
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor_admin.js:20
|
||||
msgid "upsmon drops privileges to this user"
|
||||
msgstr ""
|
||||
|
||||
@@ -13,7 +13,7 @@ msgstr ""
|
||||
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
||||
"X-Generator: Weblate 2026.7.dev0\n"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:254
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:242
|
||||
msgid "Additional Shutdown Time(s)"
|
||||
msgstr "Tiempo adicional de apagado (s)"
|
||||
|
||||
@@ -26,7 +26,7 @@ msgid "Allowed actions"
|
||||
msgstr "Acciones permitidas"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_cgi.js:21
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:26
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:25
|
||||
msgid "As configured by NUT"
|
||||
msgstr "Según lo configurado por NUT"
|
||||
|
||||
@@ -38,45 +38,45 @@ msgstr "Esclavo"
|
||||
msgid "Auxiliary (Deprecated)"
|
||||
msgstr "Auxiliar (Obsoleto)"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:190
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:178
|
||||
msgid "Bytes to read from interrupt pipe"
|
||||
msgstr "Bytes para leer desde tubo de interrupción"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:110
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:99
|
||||
msgid "CA Certificate path"
|
||||
msgstr "Ruta del certificado de CA"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:111
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:103
|
||||
msgid "Certificate file (SSL)"
|
||||
msgstr "Archivo de certificado (SSL)"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_cgi.js:36
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_cgi_admin.js:17
|
||||
msgid "Control UPS via CGI"
|
||||
msgstr "Control de UPS a través de CGI"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:124
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:113
|
||||
msgid "Custom notification message for message type"
|
||||
msgstr "Mensaje de notificación personalizado para el tipo de mensaje"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:104
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:93
|
||||
msgid "Deadtime"
|
||||
msgstr "Tiempo muerto"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:126
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:118
|
||||
msgid "Default for UPSes without this field."
|
||||
msgstr "Predeterminado para UPS sin este campo."
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:217
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:205
|
||||
msgid "Delay for kill power command"
|
||||
msgstr "Retraso para el comando kill power"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:226
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:214
|
||||
msgid "Delay to power on UPS if power returns after kill power"
|
||||
msgstr ""
|
||||
"Retraso para encender el UPS si la energía regresa después de apagar la "
|
||||
"unidad"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:167
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:155
|
||||
msgid "Description (Display)"
|
||||
msgstr "Descripción (Display)"
|
||||
|
||||
@@ -84,46 +84,46 @@ msgstr "Descripción (Display)"
|
||||
msgid "Display name"
|
||||
msgstr "Nombre para mostrar"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:209
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:197
|
||||
msgid "Do not lock port when starting driver"
|
||||
msgstr "No bloquee el puerto al iniciar el controlador"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:170
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:158
|
||||
msgid "Driver"
|
||||
msgstr "Controlador"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:154
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:142
|
||||
msgid "Driver Configuration"
|
||||
msgstr "Configuración del controlador"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:116
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:108
|
||||
msgid "Driver Global Settings"
|
||||
msgstr "Configuración global del controlador"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:122
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:114
|
||||
msgid "Driver Path"
|
||||
msgstr "Ruta del controlador"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:250
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:238
|
||||
msgid "Driver Shutdown Order"
|
||||
msgstr "Orden de apagado del controlador"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:145
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:282
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:137
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:270
|
||||
msgid "Driver waits for data to be consumed by upsd before publishing more."
|
||||
msgstr ""
|
||||
"El controlador espera que los datos sean consumidos por upsd antes de "
|
||||
"publicar más."
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:97
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server_admin.js:20
|
||||
msgid "Drop privileges to this user"
|
||||
msgstr "Soltar privilegios a este usuario"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_cgi.js:41
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_cgi_admin.js:22
|
||||
msgid "Enable"
|
||||
msgstr "Activar"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:178
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:166
|
||||
msgid ""
|
||||
"Enables a hotplug script that makes all ttyUSB devices (e.g. serial USB) "
|
||||
"group read-write as user %s"
|
||||
@@ -140,23 +140,29 @@ msgstr "Ejecutar comando de notificación"
|
||||
msgid "Forced Shutdown"
|
||||
msgstr "Forzar apagado"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:71
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:70
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor_admin.js:16
|
||||
msgid "Global Settings"
|
||||
msgstr "Ajustes globales"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_cgi.js:15
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_cgi_admin.js:15
|
||||
msgid "Go to NUT CGI"
|
||||
msgstr "Ir a CGI de NUT"
|
||||
|
||||
#: applications/luci-app-nut/root/usr/share/rpcd/acl.d/luci-app-nut.json:15
|
||||
msgid "Grant admin UCI access for luci-app-nut"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/root/usr/share/rpcd/acl.d/luci-app-nut.json:3
|
||||
msgid "Grant UCI access for luci-app-nut"
|
||||
msgstr "Conceder acceso UCI para luci-app-nut"
|
||||
msgid "Grant limited UCI read access for luci-app-nut"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_cgi.js:17
|
||||
msgid "Host"
|
||||
msgstr "Host"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:100
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:89
|
||||
msgid "Host Sync"
|
||||
msgstr "Sincronización del host"
|
||||
|
||||
@@ -164,7 +170,7 @@ msgstr "Sincronización del host"
|
||||
msgid "Hostname or IP address"
|
||||
msgstr "Nombre de host o dirección IP"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:29
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:28
|
||||
msgid "Hostname or address of UPS"
|
||||
msgstr "Nombre de host o dirección de UPS"
|
||||
|
||||
@@ -172,7 +178,7 @@ msgstr "Nombre de host o dirección de UPS"
|
||||
msgid "IP Address"
|
||||
msgstr "Dirección IP"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:171
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:159
|
||||
msgid "If this list is empty you need to %s"
|
||||
msgstr "Si esta lista está vacía, necesitas %s"
|
||||
|
||||
@@ -180,7 +186,7 @@ msgstr "Si esta lista está vacía, necesitas %s"
|
||||
msgid "Ignore"
|
||||
msgstr "Ignorar"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:182
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:170
|
||||
msgid "Ignore Low Battery"
|
||||
msgstr "Ignorar batería baja"
|
||||
|
||||
@@ -188,19 +194,19 @@ msgstr "Ignorar batería baja"
|
||||
msgid "Instant commands"
|
||||
msgstr "Comandos instantáneos"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:186
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:174
|
||||
msgid "Interrupt Only"
|
||||
msgstr "Solo Interrumpir"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:190
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:178
|
||||
msgid "Interrupt Size"
|
||||
msgstr "Tamaño de la interrupción"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:203
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:191
|
||||
msgid "Manufacturer (Display)"
|
||||
msgstr "Fabricante (Display)"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:194
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:182
|
||||
msgid "Max USB HID Length Reported"
|
||||
msgstr "Longitud máxima de USB HID informada"
|
||||
|
||||
@@ -208,47 +214,55 @@ msgstr "Longitud máxima de USB HID informada"
|
||||
msgid "Maximum Age of Data"
|
||||
msgstr "Edad máxima de los datos"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:130
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:122
|
||||
msgid "Maximum Retries"
|
||||
msgstr "Reintentos máximos"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:126
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:198
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:118
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:186
|
||||
msgid "Maximum Start Delay"
|
||||
msgstr "Retardo de arranque máximo"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:105
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:97
|
||||
msgid "Maximum connections"
|
||||
msgstr "Conexiones máximas"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:130
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:122
|
||||
msgid "Maximum number of times to try starting a driver."
|
||||
msgstr "Número máximo de veces para intentar iniciar un controlador."
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:140
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:132
|
||||
msgid "Maximum time in seconds between refresh of UPS status"
|
||||
msgstr "Tiempo máximo en segundos para la actualización del estado de UPS"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:78
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:74
|
||||
msgid "Minimum required number or power supplies"
|
||||
msgstr "Número mínimo requerido o fuentes de alimentación"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:206
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:194
|
||||
msgid "Model (Display)"
|
||||
msgstr "Modelo (Display)"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_cgi.js:13
|
||||
#: applications/luci-app-nut/root/usr/share/luci/menu.d/luci-app-nut.json:42
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_cgi_admin.js:13
|
||||
msgid "NUT CGI"
|
||||
msgstr "Herramientas UPS de red (CGI)"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:68
|
||||
#: applications/luci-app-nut/root/usr/share/luci/menu.d/luci-app-nut.json:30
|
||||
#: applications/luci-app-nut/root/usr/share/luci/menu.d/luci-app-nut.json:100
|
||||
msgid "NUT CGI - admin"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/root/usr/share/luci/menu.d/luci-app-nut.json:85
|
||||
msgid "NUT CGI - main"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:67
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor_admin.js:13
|
||||
msgid "NUT Monitor"
|
||||
msgstr "Herramientas de red de UPS (Monitor)"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:42
|
||||
#: applications/luci-app-nut/root/usr/share/luci/menu.d/luci-app-nut.json:18
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server_admin.js:13
|
||||
msgid "NUT Server"
|
||||
msgstr "Herramientas de red de UPS (servidor)"
|
||||
|
||||
@@ -256,7 +270,23 @@ msgstr "Herramientas de red de UPS (servidor)"
|
||||
msgid "NUT Users"
|
||||
msgstr "Usuarios de NUT"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:26
|
||||
#: applications/luci-app-nut/root/usr/share/luci/menu.d/luci-app-nut.json:69
|
||||
msgid "NUT monitor - admin"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/root/usr/share/luci/menu.d/luci-app-nut.json:54
|
||||
msgid "NUT monitor - main"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/root/usr/share/luci/menu.d/luci-app-nut.json:38
|
||||
msgid "NUT server - admin"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/root/usr/share/luci/menu.d/luci-app-nut.json:23
|
||||
msgid "NUT server - main"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:25
|
||||
msgid "Name of UPS"
|
||||
msgstr "Nombre de UPS"
|
||||
|
||||
@@ -265,61 +295,64 @@ msgid "Network UPS Tools"
|
||||
msgstr "Herramientas de red de UPS"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_cgi.js:14
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_cgi_admin.js:14
|
||||
msgid "Network UPS Tools CGI Configuration"
|
||||
msgstr "Configuración de CGI de herramientas de UPS de red"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:69
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:68
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor_admin.js:14
|
||||
msgid "Network UPS Tools Monitoring Configuration"
|
||||
msgstr "Configuración de monitoreo de herramientas UPS de red"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:43
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server_admin.js:14
|
||||
msgid "Network UPS Tools Server Configuration"
|
||||
msgstr "Configuración del servidor de herramientas de red de UPS"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:209
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:197
|
||||
msgid "No Lock"
|
||||
msgstr "Sin bloqueo"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:213
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:201
|
||||
msgid "No low/high voltage transfer OIDs"
|
||||
msgstr "Sin OID de transferencia de baja/alta tensión"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:127
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:116
|
||||
msgid "Notification flags"
|
||||
msgstr "Indicadores de notificación"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:119
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:108
|
||||
msgid "Notifications settings"
|
||||
msgstr "Configuración de notificaciones"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:87
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor_admin.js:23
|
||||
msgid "Notify command"
|
||||
msgstr "Orden de notificación"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:217
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:205
|
||||
msgid "Off Delay(s)"
|
||||
msgstr "Retardo de apagado (s)"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:226
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:214
|
||||
msgid "On Delay(s)"
|
||||
msgstr "Retardo de encendido (s)"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:46
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:45
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:53
|
||||
msgid "Password"
|
||||
msgstr "Contraseña"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:110
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:99
|
||||
msgid "Path containing ca certificates to match against host certificate"
|
||||
msgstr ""
|
||||
"Ruta que contiene certificados de CA para compararlos con el certificado del "
|
||||
"host"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:122
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:114
|
||||
msgid "Path to drivers (instead of default)"
|
||||
msgstr "Ruta a los controladores (en lugar de la predeterminada)"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:101
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server_admin.js:24
|
||||
msgid "Path to state file"
|
||||
msgstr "Ruta al archivo de estado"
|
||||
|
||||
@@ -327,30 +360,30 @@ msgstr "Ruta al archivo de estado"
|
||||
msgid "Period after which data is considered stale"
|
||||
msgstr "Período después del cual los datos se consideran obsoletos"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:140
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:132
|
||||
msgid "Poll Interval"
|
||||
msgstr "Intervalo de encuesta"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:90
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:79
|
||||
msgid "Poll frequency"
|
||||
msgstr "Frecuencia de encuesta"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:95
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:84
|
||||
msgid "Poll frequency alert"
|
||||
msgstr "Alerta de frecuencia de sondeo"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:235
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:223
|
||||
msgid "Polling Frequency(s)"
|
||||
msgstr "Frecuencia de sondeo(s)"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_cgi.js:28
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:33
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:32
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:83
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:240
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:228
|
||||
msgid "Port"
|
||||
msgstr "Puerto"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:38
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:37
|
||||
msgid "Power value"
|
||||
msgstr "Valor de potencia"
|
||||
|
||||
@@ -362,16 +395,16 @@ msgstr "Primario"
|
||||
msgid "Primary (Deprecated)"
|
||||
msgstr "Primario (Obsoleto)"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:244
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:232
|
||||
msgid "Product (regex)"
|
||||
msgstr "Producto (regex)"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:114
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:103
|
||||
msgid "Require SSL and make sure server CN matches hostname"
|
||||
msgstr ""
|
||||
"Requiere SSL y asegúrese de que el servidor CN coincida con el nombre de host"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:135
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:127
|
||||
msgid "Retry Delay"
|
||||
msgstr "Retraso de reintento"
|
||||
|
||||
@@ -379,49 +412,48 @@ msgstr "Retraso de reintento"
|
||||
msgid "Role"
|
||||
msgstr "Rol"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:119
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:111
|
||||
msgid "Run drivers in a chroot(2) environment"
|
||||
msgstr "Ejecutar controladores en un entorno chroot(2)"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:75
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:97
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:149
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor_admin.js:20
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server_admin.js:20
|
||||
msgid "RunAs User"
|
||||
msgstr "Ejecutar como usuario"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:163
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:151
|
||||
msgid "SNMP Community"
|
||||
msgstr "Comunidad SNMP"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:260
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:248
|
||||
msgid "SNMP retries"
|
||||
msgstr "Reintentos SNMP"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:264
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:252
|
||||
msgid "SNMP timeout(s)"
|
||||
msgstr "Tiempo de espera de SNMP"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:268
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:256
|
||||
msgid "SNMP version"
|
||||
msgstr "Versión de SNMP"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:270
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:258
|
||||
msgid "SNMPv1"
|
||||
msgstr "SNMPv1"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:271
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:259
|
||||
msgid "SNMPv2c"
|
||||
msgstr "SNMPv2c"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:272
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:260
|
||||
msgid "SNMPv3"
|
||||
msgstr "SNMPv3"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:257
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:245
|
||||
msgid "Serial Number"
|
||||
msgstr "Número de serie"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:177
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:165
|
||||
msgid "Set USB serial port permissions"
|
||||
msgstr "Establecer permisos de puerto serie USB"
|
||||
|
||||
@@ -429,23 +461,23 @@ msgstr "Establecer permisos de puerto serie USB"
|
||||
msgid "Set variables"
|
||||
msgstr "Establecer variables"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:83
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor_admin.js:26
|
||||
msgid "Shutdown command"
|
||||
msgstr "Orden de apagado"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:145
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:282
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:137
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:270
|
||||
msgid "Synchronous Communication"
|
||||
msgstr "Comunicación sincrónica"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:155
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:143
|
||||
msgid "The name of this section will be used as UPS name elsewhere"
|
||||
msgstr "El nombre de esta sección se usará como nombre de UPS en otra parte"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:167
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:203
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:206
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:257
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:155
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:191
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:194
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:245
|
||||
msgid ""
|
||||
"This is passed through to the driver, so make sure your driver supports this "
|
||||
"option"
|
||||
@@ -453,30 +485,31 @@ msgstr ""
|
||||
"Esto se transmite al controlador, así que asegúrese de que su controlador "
|
||||
"admite esta opción"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:135
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:127
|
||||
msgid "Time in seconds between driver start retry attempts."
|
||||
msgstr ""
|
||||
"Tiempo en segundos entre los intentos de reintento de inicio del controlador."
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:198
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:186
|
||||
msgid "Time in seconds that upsdrvctl will wait for driver to finish starting"
|
||||
msgstr ""
|
||||
"Tiempo en segundos que upsdrvctl esperará a que el controlador termine de "
|
||||
"iniciarse"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:142
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:131
|
||||
msgid "UPS Auxiliary (Deprecated)"
|
||||
msgstr "SAI auxiliar (Obsoleto)"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:130
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:119
|
||||
msgid "UPS Monitor User Settings"
|
||||
msgstr "Configuración de usuario del monitor del SAI"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:139
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:128
|
||||
msgid "UPS Primary (Deprecated)"
|
||||
msgstr "UPS principal (Obsoleto)"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:89
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server_admin.js:17
|
||||
msgid "UPS Server Global Settings"
|
||||
msgstr "Configuración global del servidor UPS"
|
||||
|
||||
@@ -484,19 +517,19 @@ msgstr "Configuración global del servidor UPS"
|
||||
msgid "UPS name"
|
||||
msgstr "Nombre de UPS"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:159
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:147
|
||||
msgid "USB Bus(es) (regex)"
|
||||
msgstr "Bus(es) USB (regex)"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:247
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:235
|
||||
msgid "USB Product Id"
|
||||
msgstr "ID de producto USB"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:279
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:267
|
||||
msgid "USB Vendor Id"
|
||||
msgstr "ID de proveedor USB"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:57
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:56
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:28
|
||||
msgid "Unable to run ldd: %s"
|
||||
msgstr "No se puede ejecutar ldd: %s"
|
||||
@@ -508,33 +541,24 @@ msgstr ""
|
||||
"Use %s para ver la lista completa de las órdenes que admite su UPS (requiere "
|
||||
"el paquete %s)"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:149
|
||||
msgid ""
|
||||
"User as which to execute driver; requires device file accessed by driver to "
|
||||
"be read-write for that user."
|
||||
msgstr ""
|
||||
"Usuario como para ejecutar el controlador; requiere que el archivo de "
|
||||
"dispositivo accedido por el controlador sea de lectura y escritura para ese "
|
||||
"usuario."
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:133
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:122
|
||||
msgid "User type (Primary/Auxiliary)"
|
||||
msgstr "Tipo de usuario (Principal/Auxiliar)"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:43
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:42
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:50
|
||||
msgid "Username"
|
||||
msgstr "Nombre de usuario"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:276
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:264
|
||||
msgid "Vendor (regex)"
|
||||
msgstr "Proveedor (regex)"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:114
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:103
|
||||
msgid "Verify all connection with SSL"
|
||||
msgstr "Verificar toda la conexión con SSL"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:194
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:182
|
||||
msgid "Workaround for buggy firmware"
|
||||
msgstr "Solución para el firmware de buggy"
|
||||
|
||||
@@ -546,18 +570,29 @@ msgstr "Escribir en syslog"
|
||||
msgid "Write to syslog and execute notify command"
|
||||
msgstr "Escribe en syslog y ejecuta el comando notify"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:119
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:111
|
||||
msgid "chroot"
|
||||
msgstr "chroot"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:171
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:159
|
||||
msgid "install drivers"
|
||||
msgstr "instalar controladores"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:75
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor_admin.js:20
|
||||
msgid "upsmon drops privileges to this user"
|
||||
msgstr "upsmon le quita privilegios a este usuario"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "User as which to execute driver; requires device file accessed by driver "
|
||||
#~ "to be read-write for that user."
|
||||
#~ msgstr ""
|
||||
#~ "Usuario como para ejecutar el controlador; requiere que el archivo de "
|
||||
#~ "dispositivo accedido por el controlador sea de lectura y escritura para "
|
||||
#~ "ese usuario."
|
||||
|
||||
#~ msgid "Grant UCI access for luci-app-nut"
|
||||
#~ msgstr "Conceder acceso UCI para luci-app-nut"
|
||||
|
||||
#~ msgid "UPS Monitor User Settings)"
|
||||
#~ msgstr "Configuración de usuario del monitor del SAI)"
|
||||
|
||||
|
||||
@@ -7,7 +7,7 @@ msgstr ""
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:254
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:242
|
||||
msgid "Additional Shutdown Time(s)"
|
||||
msgstr ""
|
||||
|
||||
@@ -20,7 +20,7 @@ msgid "Allowed actions"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_cgi.js:21
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:26
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:25
|
||||
msgid "As configured by NUT"
|
||||
msgstr ""
|
||||
|
||||
@@ -32,43 +32,43 @@ msgstr ""
|
||||
msgid "Auxiliary (Deprecated)"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:190
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:178
|
||||
msgid "Bytes to read from interrupt pipe"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:110
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:99
|
||||
msgid "CA Certificate path"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:111
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:103
|
||||
msgid "Certificate file (SSL)"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_cgi.js:36
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_cgi_admin.js:17
|
||||
msgid "Control UPS via CGI"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:124
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:113
|
||||
msgid "Custom notification message for message type"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:104
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:93
|
||||
msgid "Deadtime"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:126
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:118
|
||||
msgid "Default for UPSes without this field."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:217
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:205
|
||||
msgid "Delay for kill power command"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:226
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:214
|
||||
msgid "Delay to power on UPS if power returns after kill power"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:167
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:155
|
||||
msgid "Description (Display)"
|
||||
msgstr ""
|
||||
|
||||
@@ -76,44 +76,44 @@ msgstr ""
|
||||
msgid "Display name"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:209
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:197
|
||||
msgid "Do not lock port when starting driver"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:170
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:158
|
||||
msgid "Driver"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:154
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:142
|
||||
msgid "Driver Configuration"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:116
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:108
|
||||
msgid "Driver Global Settings"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:122
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:114
|
||||
msgid "Driver Path"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:250
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:238
|
||||
msgid "Driver Shutdown Order"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:145
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:282
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:137
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:270
|
||||
msgid "Driver waits for data to be consumed by upsd before publishing more."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:97
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server_admin.js:20
|
||||
msgid "Drop privileges to this user"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_cgi.js:41
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_cgi_admin.js:22
|
||||
msgid "Enable"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:178
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:166
|
||||
msgid ""
|
||||
"Enables a hotplug script that makes all ttyUSB devices (e.g. serial USB) "
|
||||
"group read-write as user %s"
|
||||
@@ -127,23 +127,29 @@ msgstr ""
|
||||
msgid "Forced Shutdown"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:71
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:70
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor_admin.js:16
|
||||
msgid "Global Settings"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_cgi.js:15
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_cgi_admin.js:15
|
||||
msgid "Go to NUT CGI"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/root/usr/share/rpcd/acl.d/luci-app-nut.json:15
|
||||
msgid "Grant admin UCI access for luci-app-nut"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/root/usr/share/rpcd/acl.d/luci-app-nut.json:3
|
||||
msgid "Grant UCI access for luci-app-nut"
|
||||
msgid "Grant limited UCI read access for luci-app-nut"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_cgi.js:17
|
||||
msgid "Host"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:100
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:89
|
||||
msgid "Host Sync"
|
||||
msgstr ""
|
||||
|
||||
@@ -151,7 +157,7 @@ msgstr ""
|
||||
msgid "Hostname or IP address"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:29
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:28
|
||||
msgid "Hostname or address of UPS"
|
||||
msgstr ""
|
||||
|
||||
@@ -159,7 +165,7 @@ msgstr ""
|
||||
msgid "IP Address"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:171
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:159
|
||||
msgid "If this list is empty you need to %s"
|
||||
msgstr ""
|
||||
|
||||
@@ -167,7 +173,7 @@ msgstr ""
|
||||
msgid "Ignore"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:182
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:170
|
||||
msgid "Ignore Low Battery"
|
||||
msgstr ""
|
||||
|
||||
@@ -175,19 +181,19 @@ msgstr ""
|
||||
msgid "Instant commands"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:186
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:174
|
||||
msgid "Interrupt Only"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:190
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:178
|
||||
msgid "Interrupt Size"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:203
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:191
|
||||
msgid "Manufacturer (Display)"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:194
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:182
|
||||
msgid "Max USB HID Length Reported"
|
||||
msgstr ""
|
||||
|
||||
@@ -195,47 +201,55 @@ msgstr ""
|
||||
msgid "Maximum Age of Data"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:130
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:122
|
||||
msgid "Maximum Retries"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:126
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:198
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:118
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:186
|
||||
msgid "Maximum Start Delay"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:105
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:97
|
||||
msgid "Maximum connections"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:130
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:122
|
||||
msgid "Maximum number of times to try starting a driver."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:140
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:132
|
||||
msgid "Maximum time in seconds between refresh of UPS status"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:78
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:74
|
||||
msgid "Minimum required number or power supplies"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:206
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:194
|
||||
msgid "Model (Display)"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_cgi.js:13
|
||||
#: applications/luci-app-nut/root/usr/share/luci/menu.d/luci-app-nut.json:42
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_cgi_admin.js:13
|
||||
msgid "NUT CGI"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:68
|
||||
#: applications/luci-app-nut/root/usr/share/luci/menu.d/luci-app-nut.json:30
|
||||
#: applications/luci-app-nut/root/usr/share/luci/menu.d/luci-app-nut.json:100
|
||||
msgid "NUT CGI - admin"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/root/usr/share/luci/menu.d/luci-app-nut.json:85
|
||||
msgid "NUT CGI - main"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:67
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor_admin.js:13
|
||||
msgid "NUT Monitor"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:42
|
||||
#: applications/luci-app-nut/root/usr/share/luci/menu.d/luci-app-nut.json:18
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server_admin.js:13
|
||||
msgid "NUT Server"
|
||||
msgstr ""
|
||||
|
||||
@@ -243,7 +257,23 @@ msgstr ""
|
||||
msgid "NUT Users"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:26
|
||||
#: applications/luci-app-nut/root/usr/share/luci/menu.d/luci-app-nut.json:69
|
||||
msgid "NUT monitor - admin"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/root/usr/share/luci/menu.d/luci-app-nut.json:54
|
||||
msgid "NUT monitor - main"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/root/usr/share/luci/menu.d/luci-app-nut.json:38
|
||||
msgid "NUT server - admin"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/root/usr/share/luci/menu.d/luci-app-nut.json:23
|
||||
msgid "NUT server - main"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:25
|
||||
msgid "Name of UPS"
|
||||
msgstr ""
|
||||
|
||||
@@ -252,59 +282,62 @@ msgid "Network UPS Tools"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_cgi.js:14
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_cgi_admin.js:14
|
||||
msgid "Network UPS Tools CGI Configuration"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:69
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:68
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor_admin.js:14
|
||||
msgid "Network UPS Tools Monitoring Configuration"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:43
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server_admin.js:14
|
||||
msgid "Network UPS Tools Server Configuration"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:209
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:197
|
||||
msgid "No Lock"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:213
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:201
|
||||
msgid "No low/high voltage transfer OIDs"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:127
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:116
|
||||
msgid "Notification flags"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:119
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:108
|
||||
msgid "Notifications settings"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:87
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor_admin.js:23
|
||||
msgid "Notify command"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:217
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:205
|
||||
msgid "Off Delay(s)"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:226
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:214
|
||||
msgid "On Delay(s)"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:46
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:45
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:53
|
||||
msgid "Password"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:110
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:99
|
||||
msgid "Path containing ca certificates to match against host certificate"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:122
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:114
|
||||
msgid "Path to drivers (instead of default)"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:101
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server_admin.js:24
|
||||
msgid "Path to state file"
|
||||
msgstr ""
|
||||
|
||||
@@ -312,30 +345,30 @@ msgstr ""
|
||||
msgid "Period after which data is considered stale"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:140
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:132
|
||||
msgid "Poll Interval"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:90
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:79
|
||||
msgid "Poll frequency"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:95
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:84
|
||||
msgid "Poll frequency alert"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:235
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:223
|
||||
msgid "Polling Frequency(s)"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_cgi.js:28
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:33
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:32
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:83
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:240
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:228
|
||||
msgid "Port"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:38
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:37
|
||||
msgid "Power value"
|
||||
msgstr ""
|
||||
|
||||
@@ -347,15 +380,15 @@ msgstr ""
|
||||
msgid "Primary (Deprecated)"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:244
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:232
|
||||
msgid "Product (regex)"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:114
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:103
|
||||
msgid "Require SSL and make sure server CN matches hostname"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:135
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:127
|
||||
msgid "Retry Delay"
|
||||
msgstr ""
|
||||
|
||||
@@ -363,49 +396,48 @@ msgstr ""
|
||||
msgid "Role"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:119
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:111
|
||||
msgid "Run drivers in a chroot(2) environment"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:75
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:97
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:149
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor_admin.js:20
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server_admin.js:20
|
||||
msgid "RunAs User"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:163
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:151
|
||||
msgid "SNMP Community"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:260
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:248
|
||||
msgid "SNMP retries"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:264
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:252
|
||||
msgid "SNMP timeout(s)"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:268
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:256
|
||||
msgid "SNMP version"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:270
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:258
|
||||
msgid "SNMPv1"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:271
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:259
|
||||
msgid "SNMPv2c"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:272
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:260
|
||||
msgid "SNMPv3"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:257
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:245
|
||||
msgid "Serial Number"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:177
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:165
|
||||
msgid "Set USB serial port permissions"
|
||||
msgstr ""
|
||||
|
||||
@@ -413,49 +445,50 @@ msgstr ""
|
||||
msgid "Set variables"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:83
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor_admin.js:26
|
||||
msgid "Shutdown command"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:145
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:282
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:137
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:270
|
||||
msgid "Synchronous Communication"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:155
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:143
|
||||
msgid "The name of this section will be used as UPS name elsewhere"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:167
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:203
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:206
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:257
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:155
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:191
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:194
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:245
|
||||
msgid ""
|
||||
"This is passed through to the driver, so make sure your driver supports this "
|
||||
"option"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:135
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:127
|
||||
msgid "Time in seconds between driver start retry attempts."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:198
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:186
|
||||
msgid "Time in seconds that upsdrvctl will wait for driver to finish starting"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:142
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:131
|
||||
msgid "UPS Auxiliary (Deprecated)"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:130
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:119
|
||||
msgid "UPS Monitor User Settings"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:139
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:128
|
||||
msgid "UPS Primary (Deprecated)"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:89
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server_admin.js:17
|
||||
msgid "UPS Server Global Settings"
|
||||
msgstr ""
|
||||
|
||||
@@ -463,19 +496,19 @@ msgstr ""
|
||||
msgid "UPS name"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:159
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:147
|
||||
msgid "USB Bus(es) (regex)"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:247
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:235
|
||||
msgid "USB Product Id"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:279
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:267
|
||||
msgid "USB Vendor Id"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:57
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:56
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:28
|
||||
msgid "Unable to run ldd: %s"
|
||||
msgstr ""
|
||||
@@ -485,30 +518,24 @@ msgid ""
|
||||
"Use %s to see full list of commands your UPS supports (requires %s package)"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:149
|
||||
msgid ""
|
||||
"User as which to execute driver; requires device file accessed by driver to "
|
||||
"be read-write for that user."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:133
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:122
|
||||
msgid "User type (Primary/Auxiliary)"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:43
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:42
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:50
|
||||
msgid "Username"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:276
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:264
|
||||
msgid "Vendor (regex)"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:114
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:103
|
||||
msgid "Verify all connection with SSL"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:194
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:182
|
||||
msgid "Workaround for buggy firmware"
|
||||
msgstr ""
|
||||
|
||||
@@ -520,14 +547,14 @@ msgstr ""
|
||||
msgid "Write to syslog and execute notify command"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:119
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:111
|
||||
msgid "chroot"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:171
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:159
|
||||
msgid "install drivers"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:75
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor_admin.js:20
|
||||
msgid "upsmon drops privileges to this user"
|
||||
msgstr ""
|
||||
|
||||
@@ -12,7 +12,7 @@ msgstr ""
|
||||
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
||||
"X-Generator: Weblate 4.12-dev\n"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:254
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:242
|
||||
msgid "Additional Shutdown Time(s)"
|
||||
msgstr ""
|
||||
|
||||
@@ -25,7 +25,7 @@ msgid "Allowed actions"
|
||||
msgstr "Sallitut toiminnot"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_cgi.js:21
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:26
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:25
|
||||
msgid "As configured by NUT"
|
||||
msgstr ""
|
||||
|
||||
@@ -37,43 +37,43 @@ msgstr ""
|
||||
msgid "Auxiliary (Deprecated)"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:190
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:178
|
||||
msgid "Bytes to read from interrupt pipe"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:110
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:99
|
||||
msgid "CA Certificate path"
|
||||
msgstr "CA-varmenteen polku"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:111
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:103
|
||||
msgid "Certificate file (SSL)"
|
||||
msgstr "Varmennetiedosto (SSL)"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_cgi.js:36
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_cgi_admin.js:17
|
||||
msgid "Control UPS via CGI"
|
||||
msgstr "Ohjaa UPS:ää CGI:n kautta"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:124
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:113
|
||||
msgid "Custom notification message for message type"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:104
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:93
|
||||
msgid "Deadtime"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:126
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:118
|
||||
msgid "Default for UPSes without this field."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:217
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:205
|
||||
msgid "Delay for kill power command"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:226
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:214
|
||||
msgid "Delay to power on UPS if power returns after kill power"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:167
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:155
|
||||
msgid "Description (Display)"
|
||||
msgstr ""
|
||||
|
||||
@@ -81,44 +81,44 @@ msgstr ""
|
||||
msgid "Display name"
|
||||
msgstr "Näyttönimi"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:209
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:197
|
||||
msgid "Do not lock port when starting driver"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:170
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:158
|
||||
msgid "Driver"
|
||||
msgstr "Ajuri"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:154
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:142
|
||||
msgid "Driver Configuration"
|
||||
msgstr "Ajurin määritys"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:116
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:108
|
||||
msgid "Driver Global Settings"
|
||||
msgstr "Ajurin yleiset asetukset"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:122
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:114
|
||||
msgid "Driver Path"
|
||||
msgstr "Ajurin polku"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:250
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:238
|
||||
msgid "Driver Shutdown Order"
|
||||
msgstr "Ajurin sammutusjärjestys"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:145
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:282
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:137
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:270
|
||||
msgid "Driver waits for data to be consumed by upsd before publishing more."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:97
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server_admin.js:20
|
||||
msgid "Drop privileges to this user"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_cgi.js:41
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_cgi_admin.js:22
|
||||
msgid "Enable"
|
||||
msgstr "Ota käyttöön"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:178
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:166
|
||||
msgid ""
|
||||
"Enables a hotplug script that makes all ttyUSB devices (e.g. serial USB) "
|
||||
"group read-write as user %s"
|
||||
@@ -132,23 +132,29 @@ msgstr ""
|
||||
msgid "Forced Shutdown"
|
||||
msgstr "Pakotettu sammutus"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:71
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:70
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor_admin.js:16
|
||||
msgid "Global Settings"
|
||||
msgstr "Yleiset asetukset"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_cgi.js:15
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_cgi_admin.js:15
|
||||
msgid "Go to NUT CGI"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/root/usr/share/rpcd/acl.d/luci-app-nut.json:15
|
||||
msgid "Grant admin UCI access for luci-app-nut"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/root/usr/share/rpcd/acl.d/luci-app-nut.json:3
|
||||
msgid "Grant UCI access for luci-app-nut"
|
||||
msgid "Grant limited UCI read access for luci-app-nut"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_cgi.js:17
|
||||
msgid "Host"
|
||||
msgstr "Palvelin"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:100
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:89
|
||||
msgid "Host Sync"
|
||||
msgstr ""
|
||||
|
||||
@@ -156,7 +162,7 @@ msgstr ""
|
||||
msgid "Hostname or IP address"
|
||||
msgstr "Laitenimi tai IP-osoite"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:29
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:28
|
||||
msgid "Hostname or address of UPS"
|
||||
msgstr "UPS-varavirtalähteen laitenimi tai osoite"
|
||||
|
||||
@@ -164,7 +170,7 @@ msgstr "UPS-varavirtalähteen laitenimi tai osoite"
|
||||
msgid "IP Address"
|
||||
msgstr "IP-osoite"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:171
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:159
|
||||
msgid "If this list is empty you need to %s"
|
||||
msgstr ""
|
||||
|
||||
@@ -172,7 +178,7 @@ msgstr ""
|
||||
msgid "Ignore"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:182
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:170
|
||||
msgid "Ignore Low Battery"
|
||||
msgstr ""
|
||||
|
||||
@@ -180,19 +186,19 @@ msgstr ""
|
||||
msgid "Instant commands"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:186
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:174
|
||||
msgid "Interrupt Only"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:190
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:178
|
||||
msgid "Interrupt Size"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:203
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:191
|
||||
msgid "Manufacturer (Display)"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:194
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:182
|
||||
msgid "Max USB HID Length Reported"
|
||||
msgstr ""
|
||||
|
||||
@@ -200,47 +206,55 @@ msgstr ""
|
||||
msgid "Maximum Age of Data"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:130
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:122
|
||||
msgid "Maximum Retries"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:126
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:198
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:118
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:186
|
||||
msgid "Maximum Start Delay"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:105
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:97
|
||||
msgid "Maximum connections"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:130
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:122
|
||||
msgid "Maximum number of times to try starting a driver."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:140
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:132
|
||||
msgid "Maximum time in seconds between refresh of UPS status"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:78
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:74
|
||||
msgid "Minimum required number or power supplies"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:206
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:194
|
||||
msgid "Model (Display)"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_cgi.js:13
|
||||
#: applications/luci-app-nut/root/usr/share/luci/menu.d/luci-app-nut.json:42
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_cgi_admin.js:13
|
||||
msgid "NUT CGI"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:68
|
||||
#: applications/luci-app-nut/root/usr/share/luci/menu.d/luci-app-nut.json:30
|
||||
#: applications/luci-app-nut/root/usr/share/luci/menu.d/luci-app-nut.json:100
|
||||
msgid "NUT CGI - admin"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/root/usr/share/luci/menu.d/luci-app-nut.json:85
|
||||
msgid "NUT CGI - main"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:67
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor_admin.js:13
|
||||
msgid "NUT Monitor"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:42
|
||||
#: applications/luci-app-nut/root/usr/share/luci/menu.d/luci-app-nut.json:18
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server_admin.js:13
|
||||
msgid "NUT Server"
|
||||
msgstr ""
|
||||
|
||||
@@ -248,7 +262,23 @@ msgstr ""
|
||||
msgid "NUT Users"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:26
|
||||
#: applications/luci-app-nut/root/usr/share/luci/menu.d/luci-app-nut.json:69
|
||||
msgid "NUT monitor - admin"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/root/usr/share/luci/menu.d/luci-app-nut.json:54
|
||||
msgid "NUT monitor - main"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/root/usr/share/luci/menu.d/luci-app-nut.json:38
|
||||
msgid "NUT server - admin"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/root/usr/share/luci/menu.d/luci-app-nut.json:23
|
||||
msgid "NUT server - main"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:25
|
||||
msgid "Name of UPS"
|
||||
msgstr ""
|
||||
|
||||
@@ -257,59 +287,62 @@ msgid "Network UPS Tools"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_cgi.js:14
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_cgi_admin.js:14
|
||||
msgid "Network UPS Tools CGI Configuration"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:69
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:68
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor_admin.js:14
|
||||
msgid "Network UPS Tools Monitoring Configuration"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:43
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server_admin.js:14
|
||||
msgid "Network UPS Tools Server Configuration"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:209
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:197
|
||||
msgid "No Lock"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:213
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:201
|
||||
msgid "No low/high voltage transfer OIDs"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:127
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:116
|
||||
msgid "Notification flags"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:119
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:108
|
||||
msgid "Notifications settings"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:87
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor_admin.js:23
|
||||
msgid "Notify command"
|
||||
msgstr "Ilmoituskomento"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:217
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:205
|
||||
msgid "Off Delay(s)"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:226
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:214
|
||||
msgid "On Delay(s)"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:46
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:45
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:53
|
||||
msgid "Password"
|
||||
msgstr "Salasana"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:110
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:99
|
||||
msgid "Path containing ca certificates to match against host certificate"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:122
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:114
|
||||
msgid "Path to drivers (instead of default)"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:101
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server_admin.js:24
|
||||
msgid "Path to state file"
|
||||
msgstr "Polku tilatiedostoon"
|
||||
|
||||
@@ -317,30 +350,30 @@ msgstr "Polku tilatiedostoon"
|
||||
msgid "Period after which data is considered stale"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:140
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:132
|
||||
msgid "Poll Interval"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:90
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:79
|
||||
msgid "Poll frequency"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:95
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:84
|
||||
msgid "Poll frequency alert"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:235
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:223
|
||||
msgid "Polling Frequency(s)"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_cgi.js:28
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:33
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:32
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:83
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:240
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:228
|
||||
msgid "Port"
|
||||
msgstr "Portti"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:38
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:37
|
||||
msgid "Power value"
|
||||
msgstr ""
|
||||
|
||||
@@ -352,15 +385,15 @@ msgstr "Primary"
|
||||
msgid "Primary (Deprecated)"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:244
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:232
|
||||
msgid "Product (regex)"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:114
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:103
|
||||
msgid "Require SSL and make sure server CN matches hostname"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:135
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:127
|
||||
msgid "Retry Delay"
|
||||
msgstr ""
|
||||
|
||||
@@ -368,49 +401,48 @@ msgstr ""
|
||||
msgid "Role"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:119
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:111
|
||||
msgid "Run drivers in a chroot(2) environment"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:75
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:97
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:149
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor_admin.js:20
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server_admin.js:20
|
||||
msgid "RunAs User"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:163
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:151
|
||||
msgid "SNMP Community"
|
||||
msgstr "SNMP-yhteisö"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:260
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:248
|
||||
msgid "SNMP retries"
|
||||
msgstr "SNMP-uudelleenyritykset"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:264
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:252
|
||||
msgid "SNMP timeout(s)"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:268
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:256
|
||||
msgid "SNMP version"
|
||||
msgstr "SNMP-versio"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:270
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:258
|
||||
msgid "SNMPv1"
|
||||
msgstr "SNMPv1"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:271
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:259
|
||||
msgid "SNMPv2c"
|
||||
msgstr "SNMPv2c"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:272
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:260
|
||||
msgid "SNMPv3"
|
||||
msgstr "SNMPv3"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:257
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:245
|
||||
msgid "Serial Number"
|
||||
msgstr "Sarjanumero"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:177
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:165
|
||||
msgid "Set USB serial port permissions"
|
||||
msgstr "Aseta USB-sarjaportin oikeudet"
|
||||
|
||||
@@ -418,49 +450,50 @@ msgstr "Aseta USB-sarjaportin oikeudet"
|
||||
msgid "Set variables"
|
||||
msgstr "Aseta muuttujat"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:83
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor_admin.js:26
|
||||
msgid "Shutdown command"
|
||||
msgstr "Sammutuskomento"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:145
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:282
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:137
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:270
|
||||
msgid "Synchronous Communication"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:155
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:143
|
||||
msgid "The name of this section will be used as UPS name elsewhere"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:167
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:203
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:206
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:257
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:155
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:191
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:194
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:245
|
||||
msgid ""
|
||||
"This is passed through to the driver, so make sure your driver supports this "
|
||||
"option"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:135
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:127
|
||||
msgid "Time in seconds between driver start retry attempts."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:198
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:186
|
||||
msgid "Time in seconds that upsdrvctl will wait for driver to finish starting"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:142
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:131
|
||||
msgid "UPS Auxiliary (Deprecated)"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:130
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:119
|
||||
msgid "UPS Monitor User Settings"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:139
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:128
|
||||
msgid "UPS Primary (Deprecated)"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:89
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server_admin.js:17
|
||||
msgid "UPS Server Global Settings"
|
||||
msgstr "UPS-palvelimen yleiset asetukset"
|
||||
|
||||
@@ -468,19 +501,19 @@ msgstr "UPS-palvelimen yleiset asetukset"
|
||||
msgid "UPS name"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:159
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:147
|
||||
msgid "USB Bus(es) (regex)"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:247
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:235
|
||||
msgid "USB Product Id"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:279
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:267
|
||||
msgid "USB Vendor Id"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:57
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:56
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:28
|
||||
msgid "Unable to run ldd: %s"
|
||||
msgstr ""
|
||||
@@ -490,30 +523,24 @@ msgid ""
|
||||
"Use %s to see full list of commands your UPS supports (requires %s package)"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:149
|
||||
msgid ""
|
||||
"User as which to execute driver; requires device file accessed by driver to "
|
||||
"be read-write for that user."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:133
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:122
|
||||
msgid "User type (Primary/Auxiliary)"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:43
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:42
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:50
|
||||
msgid "Username"
|
||||
msgstr "Käyttäjätunnus"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:276
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:264
|
||||
msgid "Vendor (regex)"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:114
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:103
|
||||
msgid "Verify all connection with SSL"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:194
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:182
|
||||
msgid "Workaround for buggy firmware"
|
||||
msgstr ""
|
||||
|
||||
@@ -525,15 +552,15 @@ msgstr "Kirjoita syslogiin"
|
||||
msgid "Write to syslog and execute notify command"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:119
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:111
|
||||
msgid "chroot"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:171
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:159
|
||||
msgid "install drivers"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:75
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor_admin.js:20
|
||||
msgid "upsmon drops privileges to this user"
|
||||
msgstr ""
|
||||
|
||||
|
||||
@@ -12,7 +12,7 @@ msgstr ""
|
||||
"Plural-Forms: nplurals=2; plural=n > 1;\n"
|
||||
"X-Generator: Weblate 5.9-dev\n"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:254
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:242
|
||||
msgid "Additional Shutdown Time(s)"
|
||||
msgstr "Temps additionnel d'arrêt"
|
||||
|
||||
@@ -25,7 +25,7 @@ msgid "Allowed actions"
|
||||
msgstr "Actions permises"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_cgi.js:21
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:26
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:25
|
||||
msgid "As configured by NUT"
|
||||
msgstr "Comme configuré par NUT"
|
||||
|
||||
@@ -37,45 +37,45 @@ msgstr "Esclave"
|
||||
msgid "Auxiliary (Deprecated)"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:190
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:178
|
||||
msgid "Bytes to read from interrupt pipe"
|
||||
msgstr "Octets à lire du tube d'interruption"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:110
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:99
|
||||
msgid "CA Certificate path"
|
||||
msgstr "Chemin du certificat CA"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:111
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:103
|
||||
msgid "Certificate file (SSL)"
|
||||
msgstr "Fichier de certificat (SSL)"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_cgi.js:36
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_cgi_admin.js:17
|
||||
msgid "Control UPS via CGI"
|
||||
msgstr "Contrôler l'ASI via le CGI"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:124
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:113
|
||||
msgid "Custom notification message for message type"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:104
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:93
|
||||
msgid "Deadtime"
|
||||
msgstr "Temps mort"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:126
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:118
|
||||
msgid "Default for UPSes without this field."
|
||||
msgstr "Standard pour les ASI sans ce champ."
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:217
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:205
|
||||
msgid "Delay for kill power command"
|
||||
msgstr "Délai pour la commande de coupure de courant"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:226
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:214
|
||||
msgid "Delay to power on UPS if power returns after kill power"
|
||||
msgstr ""
|
||||
"Délai pour le démarrage de l'ASI si le courant revient après la commande de "
|
||||
"coupure du courant"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:167
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:155
|
||||
msgid "Description (Display)"
|
||||
msgstr "Description (affichage)"
|
||||
|
||||
@@ -83,46 +83,46 @@ msgstr "Description (affichage)"
|
||||
msgid "Display name"
|
||||
msgstr "Nom d'affichage"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:209
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:197
|
||||
msgid "Do not lock port when starting driver"
|
||||
msgstr "Ne pas fermer le port lors du démarrage du pilote"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:170
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:158
|
||||
msgid "Driver"
|
||||
msgstr "Pilote"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:154
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:142
|
||||
msgid "Driver Configuration"
|
||||
msgstr "Configuration du pilote"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:116
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:108
|
||||
msgid "Driver Global Settings"
|
||||
msgstr "Paramètres globales du pilote"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:122
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:114
|
||||
msgid "Driver Path"
|
||||
msgstr "Chemin d'accès du pilote"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:250
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:238
|
||||
msgid "Driver Shutdown Order"
|
||||
msgstr "Ordre d'arrêt du pilote"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:145
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:282
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:137
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:270
|
||||
msgid "Driver waits for data to be consumed by upsd before publishing more."
|
||||
msgstr ""
|
||||
"Le pilote est en attente de données encore à consommer par upsd avant de "
|
||||
"publier davantage."
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:97
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server_admin.js:20
|
||||
msgid "Drop privileges to this user"
|
||||
msgstr "Retirer des droits à cet utilisateur"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_cgi.js:41
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_cgi_admin.js:22
|
||||
msgid "Enable"
|
||||
msgstr "Activer"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:178
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:166
|
||||
msgid ""
|
||||
"Enables a hotplug script that makes all ttyUSB devices (e.g. serial USB) "
|
||||
"group read-write as user %s"
|
||||
@@ -138,23 +138,29 @@ msgstr "Exécuter la commande de notification"
|
||||
msgid "Forced Shutdown"
|
||||
msgstr "Arrêt forcé"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:71
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:70
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor_admin.js:16
|
||||
msgid "Global Settings"
|
||||
msgstr "Paramètres généraux"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_cgi.js:15
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_cgi_admin.js:15
|
||||
msgid "Go to NUT CGI"
|
||||
msgstr "Aller à NUT CGI"
|
||||
|
||||
#: applications/luci-app-nut/root/usr/share/rpcd/acl.d/luci-app-nut.json:15
|
||||
msgid "Grant admin UCI access for luci-app-nut"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/root/usr/share/rpcd/acl.d/luci-app-nut.json:3
|
||||
msgid "Grant UCI access for luci-app-nut"
|
||||
msgstr "Accorder l'accès UCI à luci-app-nut"
|
||||
msgid "Grant limited UCI read access for luci-app-nut"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_cgi.js:17
|
||||
msgid "Host"
|
||||
msgstr "Hôte"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:100
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:89
|
||||
msgid "Host Sync"
|
||||
msgstr ""
|
||||
|
||||
@@ -162,7 +168,7 @@ msgstr ""
|
||||
msgid "Hostname or IP address"
|
||||
msgstr "Nom d'hôte ou adresse IP"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:29
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:28
|
||||
msgid "Hostname or address of UPS"
|
||||
msgstr "Nom d'hôte ou adresse de l'ASI"
|
||||
|
||||
@@ -170,7 +176,7 @@ msgstr "Nom d'hôte ou adresse de l'ASI"
|
||||
msgid "IP Address"
|
||||
msgstr "Adresse IP"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:171
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:159
|
||||
msgid "If this list is empty you need to %s"
|
||||
msgstr ""
|
||||
|
||||
@@ -178,7 +184,7 @@ msgstr ""
|
||||
msgid "Ignore"
|
||||
msgstr "Ignorer"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:182
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:170
|
||||
msgid "Ignore Low Battery"
|
||||
msgstr "Ignorer la batterie faible"
|
||||
|
||||
@@ -186,19 +192,19 @@ msgstr "Ignorer la batterie faible"
|
||||
msgid "Instant commands"
|
||||
msgstr "Commandes instantanées"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:186
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:174
|
||||
msgid "Interrupt Only"
|
||||
msgstr "Interruption seulement"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:190
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:178
|
||||
msgid "Interrupt Size"
|
||||
msgstr "Taille d'interruption"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:203
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:191
|
||||
msgid "Manufacturer (Display)"
|
||||
msgstr "Fabricant (affichage)"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:194
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:182
|
||||
msgid "Max USB HID Length Reported"
|
||||
msgstr "Longueur USB HID maximale rapporté"
|
||||
|
||||
@@ -206,47 +212,55 @@ msgstr "Longueur USB HID maximale rapporté"
|
||||
msgid "Maximum Age of Data"
|
||||
msgstr "Âge maximal des données"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:130
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:122
|
||||
msgid "Maximum Retries"
|
||||
msgstr "Nombre maximal de tentatives"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:126
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:198
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:118
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:186
|
||||
msgid "Maximum Start Delay"
|
||||
msgstr "Délai maximal de démarrage"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:105
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:97
|
||||
msgid "Maximum connections"
|
||||
msgstr "Nombre maximal de connexions"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:130
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:122
|
||||
msgid "Maximum number of times to try starting a driver."
|
||||
msgstr "Nombre maximal de tentatives de démarrage d'un pilote."
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:140
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:132
|
||||
msgid "Maximum time in seconds between refresh of UPS status"
|
||||
msgstr "Temps maximal en secondes entre le rafraichissement du statut ASI"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:78
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:74
|
||||
msgid "Minimum required number or power supplies"
|
||||
msgstr "Nombre minimal requis d'alimentations électriques"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:206
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:194
|
||||
msgid "Model (Display)"
|
||||
msgstr "Modèle (affichage)"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_cgi.js:13
|
||||
#: applications/luci-app-nut/root/usr/share/luci/menu.d/luci-app-nut.json:42
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_cgi_admin.js:13
|
||||
msgid "NUT CGI"
|
||||
msgstr "Outils d'ASI réseaux (CGI)"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:68
|
||||
#: applications/luci-app-nut/root/usr/share/luci/menu.d/luci-app-nut.json:30
|
||||
#: applications/luci-app-nut/root/usr/share/luci/menu.d/luci-app-nut.json:100
|
||||
msgid "NUT CGI - admin"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/root/usr/share/luci/menu.d/luci-app-nut.json:85
|
||||
msgid "NUT CGI - main"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:67
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor_admin.js:13
|
||||
msgid "NUT Monitor"
|
||||
msgstr "Outils d'ASI réseaux (moniteur)"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:42
|
||||
#: applications/luci-app-nut/root/usr/share/luci/menu.d/luci-app-nut.json:18
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server_admin.js:13
|
||||
msgid "NUT Server"
|
||||
msgstr "Outils d'ASI réseau (serveur)"
|
||||
|
||||
@@ -254,7 +268,23 @@ msgstr "Outils d'ASI réseau (serveur)"
|
||||
msgid "NUT Users"
|
||||
msgstr "Utilisateurs NUT"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:26
|
||||
#: applications/luci-app-nut/root/usr/share/luci/menu.d/luci-app-nut.json:69
|
||||
msgid "NUT monitor - admin"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/root/usr/share/luci/menu.d/luci-app-nut.json:54
|
||||
msgid "NUT monitor - main"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/root/usr/share/luci/menu.d/luci-app-nut.json:38
|
||||
msgid "NUT server - admin"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/root/usr/share/luci/menu.d/luci-app-nut.json:23
|
||||
msgid "NUT server - main"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:25
|
||||
msgid "Name of UPS"
|
||||
msgstr "Nom de l'ASI"
|
||||
|
||||
@@ -263,61 +293,64 @@ msgid "Network UPS Tools"
|
||||
msgstr "Outils d'ASI réseau"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_cgi.js:14
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_cgi_admin.js:14
|
||||
msgid "Network UPS Tools CGI Configuration"
|
||||
msgstr "Configuration CGI des outils ASI réseau"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:69
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:68
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor_admin.js:14
|
||||
msgid "Network UPS Tools Monitoring Configuration"
|
||||
msgstr "Configuration de la surveillance des outils d'ASI réseau"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:43
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server_admin.js:14
|
||||
msgid "Network UPS Tools Server Configuration"
|
||||
msgstr "Configuration du serveur des outils d'ASI réseau"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:209
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:197
|
||||
msgid "No Lock"
|
||||
msgstr "Verrouillage fait défaut"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:213
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:201
|
||||
msgid "No low/high voltage transfer OIDs"
|
||||
msgstr "OIDs de transfer de voltage bas/haut font défaut"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:127
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:116
|
||||
msgid "Notification flags"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:119
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:108
|
||||
msgid "Notifications settings"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:87
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor_admin.js:23
|
||||
msgid "Notify command"
|
||||
msgstr "Commande de notification"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:217
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:205
|
||||
msgid "Off Delay(s)"
|
||||
msgstr "Retard d'extinction"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:226
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:214
|
||||
msgid "On Delay(s)"
|
||||
msgstr "Retard d'allumage"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:46
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:45
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:53
|
||||
msgid "Password"
|
||||
msgstr "Mot de passe"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:110
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:99
|
||||
msgid "Path containing ca certificates to match against host certificate"
|
||||
msgstr ""
|
||||
"Chemin d'accès contenant des certificats CA à faire correspondre au "
|
||||
"certificat d'hôte"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:122
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:114
|
||||
msgid "Path to drivers (instead of default)"
|
||||
msgstr "Chemin d'accès aux pilotes (au lieu de celui choisi par défaut)"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:101
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server_admin.js:24
|
||||
msgid "Path to state file"
|
||||
msgstr "Chemin d'accès aux fichiers d'état"
|
||||
|
||||
@@ -325,30 +358,30 @@ msgstr "Chemin d'accès aux fichiers d'état"
|
||||
msgid "Period after which data is considered stale"
|
||||
msgstr "Période à l'issue de laquelle les données sont considérées confinées"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:140
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:132
|
||||
msgid "Poll Interval"
|
||||
msgstr "Intervalle d'actualisation"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:90
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:79
|
||||
msgid "Poll frequency"
|
||||
msgstr "Fréquence d'actualisation"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:95
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:84
|
||||
msgid "Poll frequency alert"
|
||||
msgstr "Alerte de fréquence d'actualisation"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:235
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:223
|
||||
msgid "Polling Frequency(s)"
|
||||
msgstr "Fréquences d'actualisation"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_cgi.js:28
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:33
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:32
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:83
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:240
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:228
|
||||
msgid "Port"
|
||||
msgstr "Port"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:38
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:37
|
||||
msgid "Power value"
|
||||
msgstr "Valeur de courant"
|
||||
|
||||
@@ -360,15 +393,15 @@ msgstr "Maître"
|
||||
msgid "Primary (Deprecated)"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:244
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:232
|
||||
msgid "Product (regex)"
|
||||
msgstr "Produit (regex)"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:114
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:103
|
||||
msgid "Require SSL and make sure server CN matches hostname"
|
||||
msgstr "Requiers SSL et assure que le CN du serveur corresponde au nom d'hôte"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:135
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:127
|
||||
msgid "Retry Delay"
|
||||
msgstr "Retard de réessai"
|
||||
|
||||
@@ -376,49 +409,48 @@ msgstr "Retard de réessai"
|
||||
msgid "Role"
|
||||
msgstr "Rôle"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:119
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:111
|
||||
msgid "Run drivers in a chroot(2) environment"
|
||||
msgstr "Exécute les pilotes dans un environnement chroot(2)"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:75
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:97
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:149
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor_admin.js:20
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server_admin.js:20
|
||||
msgid "RunAs User"
|
||||
msgstr "Exécute en tant qu'utilisateur"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:163
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:151
|
||||
msgid "SNMP Community"
|
||||
msgstr "Communauté SNMP"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:260
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:248
|
||||
msgid "SNMP retries"
|
||||
msgstr "Réessais SNMP"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:264
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:252
|
||||
msgid "SNMP timeout(s)"
|
||||
msgstr "Épuisement(s) de délai SNMP"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:268
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:256
|
||||
msgid "SNMP version"
|
||||
msgstr "Version SNMP"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:270
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:258
|
||||
msgid "SNMPv1"
|
||||
msgstr "SNMPv1"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:271
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:259
|
||||
msgid "SNMPv2c"
|
||||
msgstr "SNMPv2c"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:272
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:260
|
||||
msgid "SNMPv3"
|
||||
msgstr "SNMPv3"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:257
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:245
|
||||
msgid "Serial Number"
|
||||
msgstr "Numéro de série"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:177
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:165
|
||||
msgid "Set USB serial port permissions"
|
||||
msgstr "Assignes les permissions de port de série USB"
|
||||
|
||||
@@ -426,50 +458,51 @@ msgstr "Assignes les permissions de port de série USB"
|
||||
msgid "Set variables"
|
||||
msgstr "Assigne des variables"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:83
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor_admin.js:26
|
||||
msgid "Shutdown command"
|
||||
msgstr "Commande d'arrêt"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:145
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:282
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:137
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:270
|
||||
msgid "Synchronous Communication"
|
||||
msgstr "Communication synchrone"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:155
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:143
|
||||
msgid "The name of this section will be used as UPS name elsewhere"
|
||||
msgstr "Le nom de cette section sera utilisé ailleurs en tant que nom ISA"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:167
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:203
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:206
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:257
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:155
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:191
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:194
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:245
|
||||
msgid ""
|
||||
"This is passed through to the driver, so make sure your driver supports this "
|
||||
"option"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:135
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:127
|
||||
msgid "Time in seconds between driver start retry attempts."
|
||||
msgstr "Temps en secondes entre les réessais de démarrage du pilote."
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:198
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:186
|
||||
msgid "Time in seconds that upsdrvctl will wait for driver to finish starting"
|
||||
msgstr ""
|
||||
"Temps en secondes upsdrvctl attend le pilote afin de finaliser le démarrage"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:142
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:131
|
||||
msgid "UPS Auxiliary (Deprecated)"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:130
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:119
|
||||
msgid "UPS Monitor User Settings"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:139
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:128
|
||||
msgid "UPS Primary (Deprecated)"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:89
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server_admin.js:17
|
||||
msgid "UPS Server Global Settings"
|
||||
msgstr "Paramètres globaux du serveur ISA"
|
||||
|
||||
@@ -477,19 +510,19 @@ msgstr "Paramètres globaux du serveur ISA"
|
||||
msgid "UPS name"
|
||||
msgstr "Nom d'ISA"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:159
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:147
|
||||
msgid "USB Bus(es) (regex)"
|
||||
msgstr "Bus USB (regex)"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:247
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:235
|
||||
msgid "USB Product Id"
|
||||
msgstr "Id de produit USB"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:279
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:267
|
||||
msgid "USB Vendor Id"
|
||||
msgstr "Id de vendeur USB"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:57
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:56
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:28
|
||||
msgid "Unable to run ldd: %s"
|
||||
msgstr ""
|
||||
@@ -501,32 +534,24 @@ msgstr ""
|
||||
"Utilise %s afin de voir la liste complète des commandes que ton ASI supporte "
|
||||
"(requiers le paquet %s)"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:149
|
||||
msgid ""
|
||||
"User as which to execute driver; requires device file accessed by driver to "
|
||||
"be read-write for that user."
|
||||
msgstr ""
|
||||
"Utilisateur exécutant le pilote, requiers que le fichier d'appareil auquel "
|
||||
"le pilote accède soit en mode écriture/lecture pour cet utilisateur."
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:133
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:122
|
||||
msgid "User type (Primary/Auxiliary)"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:43
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:42
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:50
|
||||
msgid "Username"
|
||||
msgstr "Nom d'utilisateur"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:276
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:264
|
||||
msgid "Vendor (regex)"
|
||||
msgstr "Vendeur (regex)"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:114
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:103
|
||||
msgid "Verify all connection with SSL"
|
||||
msgstr "Vérifie chaque connexion à l'aide d'SSL"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:194
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:182
|
||||
msgid "Workaround for buggy firmware"
|
||||
msgstr "Palliatif pour logiciel fautif"
|
||||
|
||||
@@ -538,18 +563,29 @@ msgstr "Inscrits à syslog"
|
||||
msgid "Write to syslog and execute notify command"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:119
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:111
|
||||
msgid "chroot"
|
||||
msgstr "chroot"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:171
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:159
|
||||
msgid "install drivers"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:75
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor_admin.js:20
|
||||
msgid "upsmon drops privileges to this user"
|
||||
msgstr "upsmon cède ses droits à cet utilisateur"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "User as which to execute driver; requires device file accessed by driver "
|
||||
#~ "to be read-write for that user."
|
||||
#~ msgstr ""
|
||||
#~ "Utilisateur exécutant le pilote, requiers que le fichier d'appareil "
|
||||
#~ "auquel le pilote accède soit en mode écriture/lecture pour cet "
|
||||
#~ "utilisateur."
|
||||
|
||||
#~ msgid "Grant UCI access for luci-app-nut"
|
||||
#~ msgstr "Accorder l'accès UCI à luci-app-nut"
|
||||
|
||||
#~ msgid "%s is mutually exclusive to other choices"
|
||||
#~ msgstr "%s est exclusif des autres choix"
|
||||
|
||||
|
||||
@@ -13,7 +13,7 @@ msgstr ""
|
||||
"6 && n<11) ? 3 : 4;\n"
|
||||
"X-Generator: Weblate 2026.7.dev0\n"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:254
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:242
|
||||
msgid "Additional Shutdown Time(s)"
|
||||
msgstr "Am (anna) Múchta Breise"
|
||||
|
||||
@@ -26,7 +26,7 @@ msgid "Allowed actions"
|
||||
msgstr "gníomhartha ceadaithe"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_cgi.js:21
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:26
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:25
|
||||
msgid "As configured by NUT"
|
||||
msgstr "Mar atá cumraithe ag NUT"
|
||||
|
||||
@@ -38,44 +38,44 @@ msgstr "Sclábhaí"
|
||||
msgid "Auxiliary (Deprecated)"
|
||||
msgstr "Cúnta (I léig)"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:190
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:178
|
||||
msgid "Bytes to read from interrupt pipe"
|
||||
msgstr "Bytes le léamh ó phíopa cur isteach"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:110
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:99
|
||||
msgid "CA Certificate path"
|
||||
msgstr "Conair Teastais CA"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:111
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:103
|
||||
msgid "Certificate file (SSL)"
|
||||
msgstr "Comhad deimhnithe (SSL)"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_cgi.js:36
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_cgi_admin.js:17
|
||||
msgid "Control UPS via CGI"
|
||||
msgstr "Rialú UPS trí CGI"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:124
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:113
|
||||
msgid "Custom notification message for message type"
|
||||
msgstr "Teachtaireacht fógra saincheaptha do chineál teachtaireachta"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:104
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:93
|
||||
msgid "Deadtime"
|
||||
msgstr "Am marbh"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:126
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:118
|
||||
msgid "Default for UPSes without this field."
|
||||
msgstr "Réamhshocraithe do UPSEanna gan an réimse seo."
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:217
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:205
|
||||
msgid "Delay for kill power command"
|
||||
msgstr "Moill le haghaidh ordú cumhachta marú"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:226
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:214
|
||||
msgid "Delay to power on UPS if power returns after kill power"
|
||||
msgstr ""
|
||||
"Moill ar chumhacht ar UPS má fhilleann cumhacht tar éis cumhacht a mharú"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:167
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:155
|
||||
msgid "Description (Display)"
|
||||
msgstr "Cur síos (Taispeáin)"
|
||||
|
||||
@@ -83,44 +83,44 @@ msgstr "Cur síos (Taispeáin)"
|
||||
msgid "Display name"
|
||||
msgstr "Ainm taispeána"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:209
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:197
|
||||
msgid "Do not lock port when starting driver"
|
||||
msgstr "Ná glac an calafort agus tú ag tosú tiománaí"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:170
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:158
|
||||
msgid "Driver"
|
||||
msgstr "Tiománaí"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:154
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:142
|
||||
msgid "Driver Configuration"
|
||||
msgstr "Cumraíocht Tiománaí"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:116
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:108
|
||||
msgid "Driver Global Settings"
|
||||
msgstr "Socruithe Domhanda Tiománaí"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:122
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:114
|
||||
msgid "Driver Path"
|
||||
msgstr "Conair Tiománaí"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:250
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:238
|
||||
msgid "Driver Shutdown Order"
|
||||
msgstr "Ordú Múchadh Tiománaithe"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:145
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:282
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:137
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:270
|
||||
msgid "Driver waits for data to be consumed by upsd before publishing more."
|
||||
msgstr "Fanann tiománaí go n-ídíonn upsd sonraí sula bhfoilsíonn sé níos mó."
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:97
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server_admin.js:20
|
||||
msgid "Drop privileges to this user"
|
||||
msgstr "Scaoil pribhléidí don úsáideoir seo"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_cgi.js:41
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_cgi_admin.js:22
|
||||
msgid "Enable"
|
||||
msgstr "Cumasaigh"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:178
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:166
|
||||
msgid ""
|
||||
"Enables a hotplug script that makes all ttyUSB devices (e.g. serial USB) "
|
||||
"group read-write as user %s"
|
||||
@@ -136,23 +136,29 @@ msgstr "Forghníomhú ordú fógra"
|
||||
msgid "Forced Shutdown"
|
||||
msgstr "Múchadh Éigeantach"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:71
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:70
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor_admin.js:16
|
||||
msgid "Global Settings"
|
||||
msgstr "Socruithe Domhanda"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_cgi.js:15
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_cgi_admin.js:15
|
||||
msgid "Go to NUT CGI"
|
||||
msgstr "Téigh go NUT CGI"
|
||||
|
||||
#: applications/luci-app-nut/root/usr/share/rpcd/acl.d/luci-app-nut.json:15
|
||||
msgid "Grant admin UCI access for luci-app-nut"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/root/usr/share/rpcd/acl.d/luci-app-nut.json:3
|
||||
msgid "Grant UCI access for luci-app-nut"
|
||||
msgstr "Rochtain UCI a dheonú do luci-app-nut"
|
||||
msgid "Grant limited UCI read access for luci-app-nut"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_cgi.js:17
|
||||
msgid "Host"
|
||||
msgstr "Óstach"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:100
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:89
|
||||
msgid "Host Sync"
|
||||
msgstr "Sioncrónú Óstach"
|
||||
|
||||
@@ -160,7 +166,7 @@ msgstr "Sioncrónú Óstach"
|
||||
msgid "Hostname or IP address"
|
||||
msgstr "Ainm óstach nó seoladh IP"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:29
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:28
|
||||
msgid "Hostname or address of UPS"
|
||||
msgstr "Ainm óstach nó seoladh UPS"
|
||||
|
||||
@@ -168,7 +174,7 @@ msgstr "Ainm óstach nó seoladh UPS"
|
||||
msgid "IP Address"
|
||||
msgstr "Seoladh IP"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:171
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:159
|
||||
msgid "If this list is empty you need to %s"
|
||||
msgstr "Má tá an liosta seo folamh ní mór duit %s a dhéanamh"
|
||||
|
||||
@@ -176,7 +182,7 @@ msgstr "Má tá an liosta seo folamh ní mór duit %s a dhéanamh"
|
||||
msgid "Ignore"
|
||||
msgstr "Déan neamhaird de"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:182
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:170
|
||||
msgid "Ignore Low Battery"
|
||||
msgstr "Déan neamhaird de Battery Íseal"
|
||||
|
||||
@@ -184,19 +190,19 @@ msgstr "Déan neamhaird de Battery Íseal"
|
||||
msgid "Instant commands"
|
||||
msgstr "Orduithe láithreacha"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:186
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:174
|
||||
msgid "Interrupt Only"
|
||||
msgstr "Cuir isteach Amháin"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:190
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:178
|
||||
msgid "Interrupt Size"
|
||||
msgstr "Méid Cuir isteach"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:203
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:191
|
||||
msgid "Manufacturer (Display)"
|
||||
msgstr "Monaróir (Taispeáin)"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:194
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:182
|
||||
msgid "Max USB HID Length Reported"
|
||||
msgstr "Tuairiscíodh Fad Uasta USB HID"
|
||||
|
||||
@@ -204,47 +210,55 @@ msgstr "Tuairiscíodh Fad Uasta USB HID"
|
||||
msgid "Maximum Age of Data"
|
||||
msgstr "Aois Uasta na Sonraí"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:130
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:122
|
||||
msgid "Maximum Retries"
|
||||
msgstr "Athbhreithnithe Uasta"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:126
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:198
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:118
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:186
|
||||
msgid "Maximum Start Delay"
|
||||
msgstr "Moill Tosaigh Uasta"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:105
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:97
|
||||
msgid "Maximum connections"
|
||||
msgstr "Naisc uasta"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:130
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:122
|
||||
msgid "Maximum number of times to try starting a driver."
|
||||
msgstr "Uaslíon uaireanta chun iarracht a dhéanamh tiománaí a thosú."
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:140
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:132
|
||||
msgid "Maximum time in seconds between refresh of UPS status"
|
||||
msgstr "An t-am uasta i soicindí idir athnuachan stádas UPS"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:78
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:74
|
||||
msgid "Minimum required number or power supplies"
|
||||
msgstr "Líon íosta riachtanach nó soláthairtí cumh"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:206
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:194
|
||||
msgid "Model (Display)"
|
||||
msgstr "Múnla (Taispeáin)"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_cgi.js:13
|
||||
#: applications/luci-app-nut/root/usr/share/luci/menu.d/luci-app-nut.json:42
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_cgi_admin.js:13
|
||||
msgid "NUT CGI"
|
||||
msgstr "Uirlisí UPS Líonra (CGI)"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:68
|
||||
#: applications/luci-app-nut/root/usr/share/luci/menu.d/luci-app-nut.json:30
|
||||
#: applications/luci-app-nut/root/usr/share/luci/menu.d/luci-app-nut.json:100
|
||||
msgid "NUT CGI - admin"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/root/usr/share/luci/menu.d/luci-app-nut.json:85
|
||||
msgid "NUT CGI - main"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:67
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor_admin.js:13
|
||||
msgid "NUT Monitor"
|
||||
msgstr "Uirlisí UPS Líonra (Monatóireacht)"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:42
|
||||
#: applications/luci-app-nut/root/usr/share/luci/menu.d/luci-app-nut.json:18
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server_admin.js:13
|
||||
msgid "NUT Server"
|
||||
msgstr "Uirlisí UPS Líonra (Freastalaí)"
|
||||
|
||||
@@ -252,7 +266,23 @@ msgstr "Uirlisí UPS Líonra (Freastalaí)"
|
||||
msgid "NUT Users"
|
||||
msgstr "Úsáideoirí NUT"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:26
|
||||
#: applications/luci-app-nut/root/usr/share/luci/menu.d/luci-app-nut.json:69
|
||||
msgid "NUT monitor - admin"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/root/usr/share/luci/menu.d/luci-app-nut.json:54
|
||||
msgid "NUT monitor - main"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/root/usr/share/luci/menu.d/luci-app-nut.json:38
|
||||
msgid "NUT server - admin"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/root/usr/share/luci/menu.d/luci-app-nut.json:23
|
||||
msgid "NUT server - main"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:25
|
||||
msgid "Name of UPS"
|
||||
msgstr "Ainm UPS"
|
||||
|
||||
@@ -261,59 +291,62 @@ msgid "Network UPS Tools"
|
||||
msgstr "Uirlisí UPS Líonra"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_cgi.js:14
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_cgi_admin.js:14
|
||||
msgid "Network UPS Tools CGI Configuration"
|
||||
msgstr "Cumraíocht CGI Uirlisí UPS Líonra"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:69
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:68
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor_admin.js:14
|
||||
msgid "Network UPS Tools Monitoring Configuration"
|
||||
msgstr "Cumraíocht Monatóireachta Uirlisí UPS"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:43
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server_admin.js:14
|
||||
msgid "Network UPS Tools Server Configuration"
|
||||
msgstr "Cumraíocht Freastalaí Uirlisí UPS Network"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:209
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:197
|
||||
msgid "No Lock"
|
||||
msgstr "Gan Glas"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:213
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:201
|
||||
msgid "No low/high voltage transfer OIDs"
|
||||
msgstr "Gan aon OIDanna aistrithe íseal/ardvoltais"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:127
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:116
|
||||
msgid "Notification flags"
|
||||
msgstr "Bratacha fógra"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:119
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:108
|
||||
msgid "Notifications settings"
|
||||
msgstr "Socruithe fógraí"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:87
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor_admin.js:23
|
||||
msgid "Notify command"
|
||||
msgstr "Ordú a chur in iúl"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:217
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:205
|
||||
msgid "Off Delay(s)"
|
||||
msgstr "Moill (í) as"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:226
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:214
|
||||
msgid "On Delay(s)"
|
||||
msgstr "Ar Mhoill (í)"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:46
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:45
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:53
|
||||
msgid "Password"
|
||||
msgstr "Pasfhocal"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:110
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:99
|
||||
msgid "Path containing ca certificates to match against host certificate"
|
||||
msgstr "Conair ina bhfuil teastais ca le comhoiriúnú i gcoinne deimhniú"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:122
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:114
|
||||
msgid "Path to drivers (instead of default)"
|
||||
msgstr "Conair chuig tiománaithe (in ionad réamhshocraithe)"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:101
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server_admin.js:24
|
||||
msgid "Path to state file"
|
||||
msgstr "Conair chuig comhad stáit"
|
||||
|
||||
@@ -321,30 +354,30 @@ msgstr "Conair chuig comhad stáit"
|
||||
msgid "Period after which data is considered stale"
|
||||
msgstr "Tréimhse ina dhiaidh sin meastar go measfar sonraí"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:140
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:132
|
||||
msgid "Poll Interval"
|
||||
msgstr "Eatraimh Vótaíochta"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:90
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:79
|
||||
msgid "Poll frequency"
|
||||
msgstr "Minicíocht vótaíochta"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:95
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:84
|
||||
msgid "Poll frequency alert"
|
||||
msgstr "Foláireamh minicíochta pota"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:235
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:223
|
||||
msgid "Polling Frequency(s)"
|
||||
msgstr "Minicíocht (í) vótaíochta"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_cgi.js:28
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:33
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:32
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:83
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:240
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:228
|
||||
msgid "Port"
|
||||
msgstr "Port"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:38
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:37
|
||||
msgid "Power value"
|
||||
msgstr "Luach cumhachta"
|
||||
|
||||
@@ -356,15 +389,15 @@ msgstr "Príomhúil"
|
||||
msgid "Primary (Deprecated)"
|
||||
msgstr "Príomhúil (I léig)"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:244
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:232
|
||||
msgid "Product (regex)"
|
||||
msgstr "Táirge (regex)"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:114
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:103
|
||||
msgid "Require SSL and make sure server CN matches hostname"
|
||||
msgstr "Teastaíonn SSL ag teastáil agus déan cinnte go n-oireann freastalaí"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:135
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:127
|
||||
msgid "Retry Delay"
|
||||
msgstr "Athbhreithnigh Mhoill"
|
||||
|
||||
@@ -372,49 +405,48 @@ msgstr "Athbhreithnigh Mhoill"
|
||||
msgid "Role"
|
||||
msgstr "Ról"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:119
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:111
|
||||
msgid "Run drivers in a chroot(2) environment"
|
||||
msgstr "Rith tiománaithe i dtimpeallacht chroot (2)"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:75
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:97
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:149
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor_admin.js:20
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server_admin.js:20
|
||||
msgid "RunAs User"
|
||||
msgstr "RithMar Úsáideoir"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:163
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:151
|
||||
msgid "SNMP Community"
|
||||
msgstr "Pobal SNMP"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:260
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:248
|
||||
msgid "SNMP retries"
|
||||
msgstr "Athbhreithniú SNMP"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:264
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:252
|
||||
msgid "SNMP timeout(s)"
|
||||
msgstr "An t-am (í) SNMP"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:268
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:256
|
||||
msgid "SNMP version"
|
||||
msgstr "Leagan SNMP"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:270
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:258
|
||||
msgid "SNMPv1"
|
||||
msgstr "SNMPv1"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:271
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:259
|
||||
msgid "SNMPv2c"
|
||||
msgstr "SNMPv2c"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:272
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:260
|
||||
msgid "SNMPv3"
|
||||
msgstr "SNMPv3"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:257
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:245
|
||||
msgid "Serial Number"
|
||||
msgstr "Sraithuimhir"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:177
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:165
|
||||
msgid "Set USB serial port permissions"
|
||||
msgstr "Socraigh ceadanna calafort sraitheach"
|
||||
|
||||
@@ -422,23 +454,23 @@ msgstr "Socraigh ceadanna calafort sraitheach"
|
||||
msgid "Set variables"
|
||||
msgstr "Socraigh athróga"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:83
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor_admin.js:26
|
||||
msgid "Shutdown command"
|
||||
msgstr "Ordú múchadh"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:145
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:282
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:137
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:270
|
||||
msgid "Synchronous Communication"
|
||||
msgstr "Cumarsáid Sioncrónach"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:155
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:143
|
||||
msgid "The name of this section will be used as UPS name elsewhere"
|
||||
msgstr "Úsáidfear ainm an chuid seo mar ainm UPS in áiteanna eile"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:167
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:203
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:206
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:257
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:155
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:191
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:194
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:245
|
||||
msgid ""
|
||||
"This is passed through to the driver, so make sure your driver supports this "
|
||||
"option"
|
||||
@@ -446,27 +478,28 @@ msgstr ""
|
||||
"Cuirtear seo ar aghaidh chuig an tiománaí, mar sin déan cinnte go dtacaíonn "
|
||||
"do thiománaí leis an rogha seo"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:135
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:127
|
||||
msgid "Time in seconds between driver start retry attempts."
|
||||
msgstr "Am i soicindí idir iarrachtaí arís a thosú le tiománaí."
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:198
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:186
|
||||
msgid "Time in seconds that upsdrvctl will wait for driver to finish starting"
|
||||
msgstr "Am i soicindí a fanfaidh upsdrvctl go gcríochnóidh an tiománaí ag tosú"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:142
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:131
|
||||
msgid "UPS Auxiliary (Deprecated)"
|
||||
msgstr "UPS Cúnta (Imithe as Feidhm)"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:130
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:119
|
||||
msgid "UPS Monitor User Settings"
|
||||
msgstr "Socruithe Úsáideora Monatóireachta UPS"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:139
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:128
|
||||
msgid "UPS Primary (Deprecated)"
|
||||
msgstr "Príomh-UPS (Imithe as Feidhm)"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:89
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server_admin.js:17
|
||||
msgid "UPS Server Global Settings"
|
||||
msgstr "Socruithe Domhanda Freastalaí UPS"
|
||||
|
||||
@@ -474,19 +507,19 @@ msgstr "Socruithe Domhanda Freastalaí UPS"
|
||||
msgid "UPS name"
|
||||
msgstr "Ainm UPS"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:159
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:147
|
||||
msgid "USB Bus(es) (regex)"
|
||||
msgstr "Bus USB (s) (regex)"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:247
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:235
|
||||
msgid "USB Product Id"
|
||||
msgstr "ID Táirge USB"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:279
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:267
|
||||
msgid "USB Vendor Id"
|
||||
msgstr "ID Díoltóra USB"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:57
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:56
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:28
|
||||
msgid "Unable to run ldd: %s"
|
||||
msgstr "Ní féidir ldd a rith: %s"
|
||||
@@ -498,32 +531,24 @@ msgstr ""
|
||||
"Úsáid %s chun liosta iomlán a fheiceáil ar na horduithe a dtacaíonn do UPS "
|
||||
"(teastaíonn pacáiste %s)"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:149
|
||||
msgid ""
|
||||
"User as which to execute driver; requires device file accessed by driver to "
|
||||
"be read-write for that user."
|
||||
msgstr ""
|
||||
"An t-úsáideoir chun an tiománaí a rith; éilíonn sé comhad gléis a bhfuil "
|
||||
"rochtain ag an tiománaí air chun é a léamh agus a scríobh don úsáideoir sin."
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:133
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:122
|
||||
msgid "User type (Primary/Auxiliary)"
|
||||
msgstr "Cineál úsáideora (Príomhúil/Cúnta)"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:43
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:42
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:50
|
||||
msgid "Username"
|
||||
msgstr "Ainm úsáideora"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:276
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:264
|
||||
msgid "Vendor (regex)"
|
||||
msgstr "Díoltóir (regex)"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:114
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:103
|
||||
msgid "Verify all connection with SSL"
|
||||
msgstr "Fíoraigh gach nasc le SSL"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:194
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:182
|
||||
msgid "Workaround for buggy firmware"
|
||||
msgstr "Réiteach le haghaidh dochtearraí fabhtúil"
|
||||
|
||||
@@ -535,18 +560,29 @@ msgstr "Scríobh chuig syslog"
|
||||
msgid "Write to syslog and execute notify command"
|
||||
msgstr "Scríobh chuig syslog agus cuir an t-ordú fógra i gcrích"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:119
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:111
|
||||
msgid "chroot"
|
||||
msgstr "chroot"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:171
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:159
|
||||
msgid "install drivers"
|
||||
msgstr "tiománaithe a shuiteáil"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:75
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor_admin.js:20
|
||||
msgid "upsmon drops privileges to this user"
|
||||
msgstr "Titeann upsmon pribhléidí don úsáideoir seo"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "User as which to execute driver; requires device file accessed by driver "
|
||||
#~ "to be read-write for that user."
|
||||
#~ msgstr ""
|
||||
#~ "An t-úsáideoir chun an tiománaí a rith; éilíonn sé comhad gléis a bhfuil "
|
||||
#~ "rochtain ag an tiománaí air chun é a léamh agus a scríobh don úsáideoir "
|
||||
#~ "sin."
|
||||
|
||||
#~ msgid "Grant UCI access for luci-app-nut"
|
||||
#~ msgstr "Rochtain UCI a dheonú do luci-app-nut"
|
||||
|
||||
#~ msgid "UPS Monitor User Settings)"
|
||||
#~ msgstr "Socruithe Úsáideora Monatóra UPS)"
|
||||
|
||||
|
||||
@@ -13,7 +13,7 @@ msgstr ""
|
||||
"n % 10 == 0) ? 2 : 3));\n"
|
||||
"X-Generator: Weblate 5.5-dev\n"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:254
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:242
|
||||
msgid "Additional Shutdown Time(s)"
|
||||
msgstr "זמן כיבוי נוסף"
|
||||
|
||||
@@ -26,7 +26,7 @@ msgid "Allowed actions"
|
||||
msgstr "פעולות מורשות"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_cgi.js:21
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:26
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:25
|
||||
msgid "As configured by NUT"
|
||||
msgstr "כפי שמוגדר על ידי NUT"
|
||||
|
||||
@@ -38,43 +38,43 @@ msgstr ""
|
||||
msgid "Auxiliary (Deprecated)"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:190
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:178
|
||||
msgid "Bytes to read from interrupt pipe"
|
||||
msgstr "בתים לקריאה מצינור הפרעה"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:110
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:99
|
||||
msgid "CA Certificate path"
|
||||
msgstr "נתיב אישור רשות אישורים"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:111
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:103
|
||||
msgid "Certificate file (SSL)"
|
||||
msgstr "קובץ אישור (SSL)"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_cgi.js:36
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_cgi_admin.js:17
|
||||
msgid "Control UPS via CGI"
|
||||
msgstr "שליטה באל־פסק דרך CGI"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:124
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:113
|
||||
msgid "Custom notification message for message type"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:104
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:93
|
||||
msgid "Deadtime"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:126
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:118
|
||||
msgid "Default for UPSes without this field."
|
||||
msgstr "ברירת מחדל למאגרי אל־פסק בלי השדה הזה."
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:217
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:205
|
||||
msgid "Delay for kill power command"
|
||||
msgstr "השהיה לפקודת הפסקת חשמל"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:226
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:214
|
||||
msgid "Delay to power on UPS if power returns after kill power"
|
||||
msgstr "השהיה להפעלת אל־פסק אם החשמל חוזר לאחר קטיעת החשמל"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:167
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:155
|
||||
msgid "Description (Display)"
|
||||
msgstr "תיאור (תצוגה)"
|
||||
|
||||
@@ -82,44 +82,44 @@ msgstr "תיאור (תצוגה)"
|
||||
msgid "Display name"
|
||||
msgstr "שם תצוגה"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:209
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:197
|
||||
msgid "Do not lock port when starting driver"
|
||||
msgstr "לא לנעול את הפתחה בעת הפעלת מנהל ההתקן"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:170
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:158
|
||||
msgid "Driver"
|
||||
msgstr "מנהל התקן"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:154
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:142
|
||||
msgid "Driver Configuration"
|
||||
msgstr "הגדרות מנהל התקן"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:116
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:108
|
||||
msgid "Driver Global Settings"
|
||||
msgstr "הגדרות כלליות למנהל התקן"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:122
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:114
|
||||
msgid "Driver Path"
|
||||
msgstr "נתיב מנהל התקן"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:250
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:238
|
||||
msgid "Driver Shutdown Order"
|
||||
msgstr "סדר כיבוי מנהל התקן"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:145
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:282
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:137
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:270
|
||||
msgid "Driver waits for data to be consumed by upsd before publishing more."
|
||||
msgstr "מנהל ההתקן ממתין לצריכת הנתונים על ידי upsd בטרם פרסום עוד."
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:97
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server_admin.js:20
|
||||
msgid "Drop privileges to this user"
|
||||
msgstr "השמטת הרשאות למשתמש הזה"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_cgi.js:41
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_cgi_admin.js:22
|
||||
msgid "Enable"
|
||||
msgstr "הפעלה"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:178
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:166
|
||||
msgid ""
|
||||
"Enables a hotplug script that makes all ttyUSB devices (e.g. serial USB) "
|
||||
"group read-write as user %s"
|
||||
@@ -133,23 +133,29 @@ msgstr "הפעלת פקודת התראה"
|
||||
msgid "Forced Shutdown"
|
||||
msgstr "כיבוי כפוי"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:71
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:70
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor_admin.js:16
|
||||
msgid "Global Settings"
|
||||
msgstr "הגדרות גלובליות"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_cgi.js:15
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_cgi_admin.js:15
|
||||
msgid "Go to NUT CGI"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/root/usr/share/rpcd/acl.d/luci-app-nut.json:15
|
||||
msgid "Grant admin UCI access for luci-app-nut"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/root/usr/share/rpcd/acl.d/luci-app-nut.json:3
|
||||
msgid "Grant UCI access for luci-app-nut"
|
||||
msgstr "הענקת גישת UCI ל־luci-app-nut"
|
||||
msgid "Grant limited UCI read access for luci-app-nut"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_cgi.js:17
|
||||
msgid "Host"
|
||||
msgstr "מארח"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:100
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:89
|
||||
msgid "Host Sync"
|
||||
msgstr ""
|
||||
|
||||
@@ -157,7 +163,7 @@ msgstr ""
|
||||
msgid "Hostname or IP address"
|
||||
msgstr "שם מארח או כתובת IP"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:29
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:28
|
||||
msgid "Hostname or address of UPS"
|
||||
msgstr "שם מארח או כתובת אל־פסק"
|
||||
|
||||
@@ -165,7 +171,7 @@ msgstr "שם מארח או כתובת אל־פסק"
|
||||
msgid "IP Address"
|
||||
msgstr "כתובת IP"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:171
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:159
|
||||
msgid "If this list is empty you need to %s"
|
||||
msgstr ""
|
||||
|
||||
@@ -173,7 +179,7 @@ msgstr ""
|
||||
msgid "Ignore"
|
||||
msgstr "התעלמות"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:182
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:170
|
||||
msgid "Ignore Low Battery"
|
||||
msgstr "התעלמות מסוללה חלשה"
|
||||
|
||||
@@ -181,19 +187,19 @@ msgstr "התעלמות מסוללה חלשה"
|
||||
msgid "Instant commands"
|
||||
msgstr "פקודות מיידיות"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:186
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:174
|
||||
msgid "Interrupt Only"
|
||||
msgstr "פסיקה בלבד"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:190
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:178
|
||||
msgid "Interrupt Size"
|
||||
msgstr "גודל פסיקה"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:203
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:191
|
||||
msgid "Manufacturer (Display)"
|
||||
msgstr "יצרן (תצוגה)"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:194
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:182
|
||||
msgid "Max USB HID Length Reported"
|
||||
msgstr ""
|
||||
|
||||
@@ -201,47 +207,55 @@ msgstr ""
|
||||
msgid "Maximum Age of Data"
|
||||
msgstr "גיל הנתונים המרבי"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:130
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:122
|
||||
msgid "Maximum Retries"
|
||||
msgstr "מספר ניסיונות מרבי"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:126
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:198
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:118
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:186
|
||||
msgid "Maximum Start Delay"
|
||||
msgstr "השהיית התחלה מרבית"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:105
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:97
|
||||
msgid "Maximum connections"
|
||||
msgstr "כמות חיבורים מרבית"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:130
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:122
|
||||
msgid "Maximum number of times to try starting a driver."
|
||||
msgstr "מספר הפעמים המרבי להתחלת מנהל התקן."
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:140
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:132
|
||||
msgid "Maximum time in seconds between refresh of UPS status"
|
||||
msgstr "הזמן המרבי בשניות בין רענוני מצב האל־פסק"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:78
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:74
|
||||
msgid "Minimum required number or power supplies"
|
||||
msgstr "מספר ספקי הכוח הקטן ביותר הנדרש"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:206
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:194
|
||||
msgid "Model (Display)"
|
||||
msgstr "דגם (תצוגה)"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_cgi.js:13
|
||||
#: applications/luci-app-nut/root/usr/share/luci/menu.d/luci-app-nut.json:42
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_cgi_admin.js:13
|
||||
msgid "NUT CGI"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:68
|
||||
#: applications/luci-app-nut/root/usr/share/luci/menu.d/luci-app-nut.json:30
|
||||
#: applications/luci-app-nut/root/usr/share/luci/menu.d/luci-app-nut.json:100
|
||||
msgid "NUT CGI - admin"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/root/usr/share/luci/menu.d/luci-app-nut.json:85
|
||||
msgid "NUT CGI - main"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:67
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor_admin.js:13
|
||||
msgid "NUT Monitor"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:42
|
||||
#: applications/luci-app-nut/root/usr/share/luci/menu.d/luci-app-nut.json:18
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server_admin.js:13
|
||||
msgid "NUT Server"
|
||||
msgstr ""
|
||||
|
||||
@@ -249,7 +263,23 @@ msgstr ""
|
||||
msgid "NUT Users"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:26
|
||||
#: applications/luci-app-nut/root/usr/share/luci/menu.d/luci-app-nut.json:69
|
||||
msgid "NUT monitor - admin"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/root/usr/share/luci/menu.d/luci-app-nut.json:54
|
||||
msgid "NUT monitor - main"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/root/usr/share/luci/menu.d/luci-app-nut.json:38
|
||||
msgid "NUT server - admin"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/root/usr/share/luci/menu.d/luci-app-nut.json:23
|
||||
msgid "NUT server - main"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:25
|
||||
msgid "Name of UPS"
|
||||
msgstr ""
|
||||
|
||||
@@ -258,59 +288,62 @@ msgid "Network UPS Tools"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_cgi.js:14
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_cgi_admin.js:14
|
||||
msgid "Network UPS Tools CGI Configuration"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:69
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:68
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor_admin.js:14
|
||||
msgid "Network UPS Tools Monitoring Configuration"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:43
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server_admin.js:14
|
||||
msgid "Network UPS Tools Server Configuration"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:209
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:197
|
||||
msgid "No Lock"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:213
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:201
|
||||
msgid "No low/high voltage transfer OIDs"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:127
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:116
|
||||
msgid "Notification flags"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:119
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:108
|
||||
msgid "Notifications settings"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:87
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor_admin.js:23
|
||||
msgid "Notify command"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:217
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:205
|
||||
msgid "Off Delay(s)"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:226
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:214
|
||||
msgid "On Delay(s)"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:46
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:45
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:53
|
||||
msgid "Password"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:110
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:99
|
||||
msgid "Path containing ca certificates to match against host certificate"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:122
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:114
|
||||
msgid "Path to drivers (instead of default)"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:101
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server_admin.js:24
|
||||
msgid "Path to state file"
|
||||
msgstr ""
|
||||
|
||||
@@ -318,30 +351,30 @@ msgstr ""
|
||||
msgid "Period after which data is considered stale"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:140
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:132
|
||||
msgid "Poll Interval"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:90
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:79
|
||||
msgid "Poll frequency"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:95
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:84
|
||||
msgid "Poll frequency alert"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:235
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:223
|
||||
msgid "Polling Frequency(s)"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_cgi.js:28
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:33
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:32
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:83
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:240
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:228
|
||||
msgid "Port"
|
||||
msgstr "פתחה"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:38
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:37
|
||||
msgid "Power value"
|
||||
msgstr ""
|
||||
|
||||
@@ -353,15 +386,15 @@ msgstr ""
|
||||
msgid "Primary (Deprecated)"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:244
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:232
|
||||
msgid "Product (regex)"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:114
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:103
|
||||
msgid "Require SSL and make sure server CN matches hostname"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:135
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:127
|
||||
msgid "Retry Delay"
|
||||
msgstr ""
|
||||
|
||||
@@ -369,49 +402,48 @@ msgstr ""
|
||||
msgid "Role"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:119
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:111
|
||||
msgid "Run drivers in a chroot(2) environment"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:75
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:97
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:149
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor_admin.js:20
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server_admin.js:20
|
||||
msgid "RunAs User"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:163
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:151
|
||||
msgid "SNMP Community"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:260
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:248
|
||||
msgid "SNMP retries"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:264
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:252
|
||||
msgid "SNMP timeout(s)"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:268
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:256
|
||||
msgid "SNMP version"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:270
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:258
|
||||
msgid "SNMPv1"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:271
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:259
|
||||
msgid "SNMPv2c"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:272
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:260
|
||||
msgid "SNMPv3"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:257
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:245
|
||||
msgid "Serial Number"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:177
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:165
|
||||
msgid "Set USB serial port permissions"
|
||||
msgstr ""
|
||||
|
||||
@@ -419,49 +451,50 @@ msgstr ""
|
||||
msgid "Set variables"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:83
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor_admin.js:26
|
||||
msgid "Shutdown command"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:145
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:282
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:137
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:270
|
||||
msgid "Synchronous Communication"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:155
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:143
|
||||
msgid "The name of this section will be used as UPS name elsewhere"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:167
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:203
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:206
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:257
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:155
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:191
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:194
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:245
|
||||
msgid ""
|
||||
"This is passed through to the driver, so make sure your driver supports this "
|
||||
"option"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:135
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:127
|
||||
msgid "Time in seconds between driver start retry attempts."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:198
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:186
|
||||
msgid "Time in seconds that upsdrvctl will wait for driver to finish starting"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:142
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:131
|
||||
msgid "UPS Auxiliary (Deprecated)"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:130
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:119
|
||||
msgid "UPS Monitor User Settings"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:139
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:128
|
||||
msgid "UPS Primary (Deprecated)"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:89
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server_admin.js:17
|
||||
msgid "UPS Server Global Settings"
|
||||
msgstr ""
|
||||
|
||||
@@ -469,19 +502,19 @@ msgstr ""
|
||||
msgid "UPS name"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:159
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:147
|
||||
msgid "USB Bus(es) (regex)"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:247
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:235
|
||||
msgid "USB Product Id"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:279
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:267
|
||||
msgid "USB Vendor Id"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:57
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:56
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:28
|
||||
msgid "Unable to run ldd: %s"
|
||||
msgstr ""
|
||||
@@ -491,30 +524,24 @@ msgid ""
|
||||
"Use %s to see full list of commands your UPS supports (requires %s package)"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:149
|
||||
msgid ""
|
||||
"User as which to execute driver; requires device file accessed by driver to "
|
||||
"be read-write for that user."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:133
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:122
|
||||
msgid "User type (Primary/Auxiliary)"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:43
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:42
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:50
|
||||
msgid "Username"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:276
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:264
|
||||
msgid "Vendor (regex)"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:114
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:103
|
||||
msgid "Verify all connection with SSL"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:194
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:182
|
||||
msgid "Workaround for buggy firmware"
|
||||
msgstr ""
|
||||
|
||||
@@ -526,18 +553,21 @@ msgstr ""
|
||||
msgid "Write to syslog and execute notify command"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:119
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:111
|
||||
msgid "chroot"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:171
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:159
|
||||
msgid "install drivers"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:75
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor_admin.js:20
|
||||
msgid "upsmon drops privileges to this user"
|
||||
msgstr ""
|
||||
|
||||
#~ msgid "Grant UCI access for luci-app-nut"
|
||||
#~ msgstr "הענקת גישת UCI ל־luci-app-nut"
|
||||
|
||||
#~ msgid "Communications lost message"
|
||||
#~ msgstr "הודעת אובדן תקשורת"
|
||||
|
||||
|
||||
@@ -12,7 +12,7 @@ msgstr ""
|
||||
"Plural-Forms: nplurals=2; plural=n > 1;\n"
|
||||
"X-Generator: Weblate 5.7-dev\n"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:254
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:242
|
||||
msgid "Additional Shutdown Time(s)"
|
||||
msgstr ""
|
||||
|
||||
@@ -25,7 +25,7 @@ msgid "Allowed actions"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_cgi.js:21
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:26
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:25
|
||||
msgid "As configured by NUT"
|
||||
msgstr ""
|
||||
|
||||
@@ -37,43 +37,43 @@ msgstr ""
|
||||
msgid "Auxiliary (Deprecated)"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:190
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:178
|
||||
msgid "Bytes to read from interrupt pipe"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:110
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:99
|
||||
msgid "CA Certificate path"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:111
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:103
|
||||
msgid "Certificate file (SSL)"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_cgi.js:36
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_cgi_admin.js:17
|
||||
msgid "Control UPS via CGI"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:124
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:113
|
||||
msgid "Custom notification message for message type"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:104
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:93
|
||||
msgid "Deadtime"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:126
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:118
|
||||
msgid "Default for UPSes without this field."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:217
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:205
|
||||
msgid "Delay for kill power command"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:226
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:214
|
||||
msgid "Delay to power on UPS if power returns after kill power"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:167
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:155
|
||||
msgid "Description (Display)"
|
||||
msgstr ""
|
||||
|
||||
@@ -81,44 +81,44 @@ msgstr ""
|
||||
msgid "Display name"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:209
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:197
|
||||
msgid "Do not lock port when starting driver"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:170
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:158
|
||||
msgid "Driver"
|
||||
msgstr "ड्राइवर"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:154
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:142
|
||||
msgid "Driver Configuration"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:116
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:108
|
||||
msgid "Driver Global Settings"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:122
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:114
|
||||
msgid "Driver Path"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:250
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:238
|
||||
msgid "Driver Shutdown Order"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:145
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:282
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:137
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:270
|
||||
msgid "Driver waits for data to be consumed by upsd before publishing more."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:97
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server_admin.js:20
|
||||
msgid "Drop privileges to this user"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_cgi.js:41
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_cgi_admin.js:22
|
||||
msgid "Enable"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:178
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:166
|
||||
msgid ""
|
||||
"Enables a hotplug script that makes all ttyUSB devices (e.g. serial USB) "
|
||||
"group read-write as user %s"
|
||||
@@ -132,23 +132,29 @@ msgstr ""
|
||||
msgid "Forced Shutdown"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:71
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:70
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor_admin.js:16
|
||||
msgid "Global Settings"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_cgi.js:15
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_cgi_admin.js:15
|
||||
msgid "Go to NUT CGI"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/root/usr/share/rpcd/acl.d/luci-app-nut.json:15
|
||||
msgid "Grant admin UCI access for luci-app-nut"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/root/usr/share/rpcd/acl.d/luci-app-nut.json:3
|
||||
msgid "Grant UCI access for luci-app-nut"
|
||||
msgid "Grant limited UCI read access for luci-app-nut"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_cgi.js:17
|
||||
msgid "Host"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:100
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:89
|
||||
msgid "Host Sync"
|
||||
msgstr ""
|
||||
|
||||
@@ -156,7 +162,7 @@ msgstr ""
|
||||
msgid "Hostname or IP address"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:29
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:28
|
||||
msgid "Hostname or address of UPS"
|
||||
msgstr ""
|
||||
|
||||
@@ -164,7 +170,7 @@ msgstr ""
|
||||
msgid "IP Address"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:171
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:159
|
||||
msgid "If this list is empty you need to %s"
|
||||
msgstr ""
|
||||
|
||||
@@ -172,7 +178,7 @@ msgstr ""
|
||||
msgid "Ignore"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:182
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:170
|
||||
msgid "Ignore Low Battery"
|
||||
msgstr ""
|
||||
|
||||
@@ -180,19 +186,19 @@ msgstr ""
|
||||
msgid "Instant commands"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:186
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:174
|
||||
msgid "Interrupt Only"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:190
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:178
|
||||
msgid "Interrupt Size"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:203
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:191
|
||||
msgid "Manufacturer (Display)"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:194
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:182
|
||||
msgid "Max USB HID Length Reported"
|
||||
msgstr ""
|
||||
|
||||
@@ -200,47 +206,55 @@ msgstr ""
|
||||
msgid "Maximum Age of Data"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:130
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:122
|
||||
msgid "Maximum Retries"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:126
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:198
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:118
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:186
|
||||
msgid "Maximum Start Delay"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:105
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:97
|
||||
msgid "Maximum connections"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:130
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:122
|
||||
msgid "Maximum number of times to try starting a driver."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:140
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:132
|
||||
msgid "Maximum time in seconds between refresh of UPS status"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:78
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:74
|
||||
msgid "Minimum required number or power supplies"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:206
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:194
|
||||
msgid "Model (Display)"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_cgi.js:13
|
||||
#: applications/luci-app-nut/root/usr/share/luci/menu.d/luci-app-nut.json:42
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_cgi_admin.js:13
|
||||
msgid "NUT CGI"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:68
|
||||
#: applications/luci-app-nut/root/usr/share/luci/menu.d/luci-app-nut.json:30
|
||||
#: applications/luci-app-nut/root/usr/share/luci/menu.d/luci-app-nut.json:100
|
||||
msgid "NUT CGI - admin"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/root/usr/share/luci/menu.d/luci-app-nut.json:85
|
||||
msgid "NUT CGI - main"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:67
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor_admin.js:13
|
||||
msgid "NUT Monitor"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:42
|
||||
#: applications/luci-app-nut/root/usr/share/luci/menu.d/luci-app-nut.json:18
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server_admin.js:13
|
||||
msgid "NUT Server"
|
||||
msgstr ""
|
||||
|
||||
@@ -248,7 +262,23 @@ msgstr ""
|
||||
msgid "NUT Users"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:26
|
||||
#: applications/luci-app-nut/root/usr/share/luci/menu.d/luci-app-nut.json:69
|
||||
msgid "NUT monitor - admin"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/root/usr/share/luci/menu.d/luci-app-nut.json:54
|
||||
msgid "NUT monitor - main"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/root/usr/share/luci/menu.d/luci-app-nut.json:38
|
||||
msgid "NUT server - admin"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/root/usr/share/luci/menu.d/luci-app-nut.json:23
|
||||
msgid "NUT server - main"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:25
|
||||
msgid "Name of UPS"
|
||||
msgstr ""
|
||||
|
||||
@@ -257,59 +287,62 @@ msgid "Network UPS Tools"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_cgi.js:14
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_cgi_admin.js:14
|
||||
msgid "Network UPS Tools CGI Configuration"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:69
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:68
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor_admin.js:14
|
||||
msgid "Network UPS Tools Monitoring Configuration"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:43
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server_admin.js:14
|
||||
msgid "Network UPS Tools Server Configuration"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:209
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:197
|
||||
msgid "No Lock"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:213
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:201
|
||||
msgid "No low/high voltage transfer OIDs"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:127
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:116
|
||||
msgid "Notification flags"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:119
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:108
|
||||
msgid "Notifications settings"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:87
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor_admin.js:23
|
||||
msgid "Notify command"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:217
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:205
|
||||
msgid "Off Delay(s)"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:226
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:214
|
||||
msgid "On Delay(s)"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:46
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:45
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:53
|
||||
msgid "Password"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:110
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:99
|
||||
msgid "Path containing ca certificates to match against host certificate"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:122
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:114
|
||||
msgid "Path to drivers (instead of default)"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:101
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server_admin.js:24
|
||||
msgid "Path to state file"
|
||||
msgstr ""
|
||||
|
||||
@@ -317,30 +350,30 @@ msgstr ""
|
||||
msgid "Period after which data is considered stale"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:140
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:132
|
||||
msgid "Poll Interval"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:90
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:79
|
||||
msgid "Poll frequency"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:95
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:84
|
||||
msgid "Poll frequency alert"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:235
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:223
|
||||
msgid "Polling Frequency(s)"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_cgi.js:28
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:33
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:32
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:83
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:240
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:228
|
||||
msgid "Port"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:38
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:37
|
||||
msgid "Power value"
|
||||
msgstr ""
|
||||
|
||||
@@ -352,15 +385,15 @@ msgstr ""
|
||||
msgid "Primary (Deprecated)"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:244
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:232
|
||||
msgid "Product (regex)"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:114
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:103
|
||||
msgid "Require SSL and make sure server CN matches hostname"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:135
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:127
|
||||
msgid "Retry Delay"
|
||||
msgstr ""
|
||||
|
||||
@@ -368,49 +401,48 @@ msgstr ""
|
||||
msgid "Role"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:119
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:111
|
||||
msgid "Run drivers in a chroot(2) environment"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:75
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:97
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:149
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor_admin.js:20
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server_admin.js:20
|
||||
msgid "RunAs User"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:163
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:151
|
||||
msgid "SNMP Community"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:260
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:248
|
||||
msgid "SNMP retries"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:264
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:252
|
||||
msgid "SNMP timeout(s)"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:268
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:256
|
||||
msgid "SNMP version"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:270
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:258
|
||||
msgid "SNMPv1"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:271
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:259
|
||||
msgid "SNMPv2c"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:272
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:260
|
||||
msgid "SNMPv3"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:257
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:245
|
||||
msgid "Serial Number"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:177
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:165
|
||||
msgid "Set USB serial port permissions"
|
||||
msgstr ""
|
||||
|
||||
@@ -418,49 +450,50 @@ msgstr ""
|
||||
msgid "Set variables"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:83
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor_admin.js:26
|
||||
msgid "Shutdown command"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:145
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:282
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:137
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:270
|
||||
msgid "Synchronous Communication"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:155
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:143
|
||||
msgid "The name of this section will be used as UPS name elsewhere"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:167
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:203
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:206
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:257
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:155
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:191
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:194
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:245
|
||||
msgid ""
|
||||
"This is passed through to the driver, so make sure your driver supports this "
|
||||
"option"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:135
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:127
|
||||
msgid "Time in seconds between driver start retry attempts."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:198
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:186
|
||||
msgid "Time in seconds that upsdrvctl will wait for driver to finish starting"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:142
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:131
|
||||
msgid "UPS Auxiliary (Deprecated)"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:130
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:119
|
||||
msgid "UPS Monitor User Settings"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:139
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:128
|
||||
msgid "UPS Primary (Deprecated)"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:89
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server_admin.js:17
|
||||
msgid "UPS Server Global Settings"
|
||||
msgstr ""
|
||||
|
||||
@@ -468,19 +501,19 @@ msgstr ""
|
||||
msgid "UPS name"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:159
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:147
|
||||
msgid "USB Bus(es) (regex)"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:247
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:235
|
||||
msgid "USB Product Id"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:279
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:267
|
||||
msgid "USB Vendor Id"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:57
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:56
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:28
|
||||
msgid "Unable to run ldd: %s"
|
||||
msgstr ""
|
||||
@@ -490,30 +523,24 @@ msgid ""
|
||||
"Use %s to see full list of commands your UPS supports (requires %s package)"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:149
|
||||
msgid ""
|
||||
"User as which to execute driver; requires device file accessed by driver to "
|
||||
"be read-write for that user."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:133
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:122
|
||||
msgid "User type (Primary/Auxiliary)"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:43
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:42
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:50
|
||||
msgid "Username"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:276
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:264
|
||||
msgid "Vendor (regex)"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:114
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:103
|
||||
msgid "Verify all connection with SSL"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:194
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:182
|
||||
msgid "Workaround for buggy firmware"
|
||||
msgstr ""
|
||||
|
||||
@@ -525,14 +552,14 @@ msgstr ""
|
||||
msgid "Write to syslog and execute notify command"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:119
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:111
|
||||
msgid "chroot"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:171
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:159
|
||||
msgid "install drivers"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:75
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor_admin.js:20
|
||||
msgid "upsmon drops privileges to this user"
|
||||
msgstr ""
|
||||
|
||||
@@ -12,7 +12,7 @@ msgstr ""
|
||||
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
||||
"X-Generator: Weblate 5.12-dev\n"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:254
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:242
|
||||
msgid "Additional Shutdown Time(s)"
|
||||
msgstr "További leállítási idők"
|
||||
|
||||
@@ -25,7 +25,7 @@ msgid "Allowed actions"
|
||||
msgstr "Engedélyezett műveletek"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_cgi.js:21
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:26
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:25
|
||||
msgid "As configured by NUT"
|
||||
msgstr "Ahogy a NUT beállította"
|
||||
|
||||
@@ -37,45 +37,45 @@ msgstr "Szolga"
|
||||
msgid "Auxiliary (Deprecated)"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:190
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:178
|
||||
msgid "Bytes to read from interrupt pipe"
|
||||
msgstr "Megszakított csőből olvasandó bájtok"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:110
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:99
|
||||
msgid "CA Certificate path"
|
||||
msgstr "CA-tanúsítvány útvonala"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:111
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:103
|
||||
msgid "Certificate file (SSL)"
|
||||
msgstr "Tanúsítványfájl (SSL)"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_cgi.js:36
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_cgi_admin.js:17
|
||||
msgid "Control UPS via CGI"
|
||||
msgstr "UPS vezérlése CGI-n keresztül"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:124
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:113
|
||||
msgid "Custom notification message for message type"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:104
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:93
|
||||
msgid "Deadtime"
|
||||
msgstr "Holtidő"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:126
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:118
|
||||
msgid "Default for UPSes without this field."
|
||||
msgstr "Alapértelmezett a UPS-eknél ezen mező nélkül."
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:217
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:205
|
||||
msgid "Delay for kill power command"
|
||||
msgstr "Az energia kilövése parancs késleltetése"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:226
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:214
|
||||
msgid "Delay to power on UPS if power returns after kill power"
|
||||
msgstr ""
|
||||
"Az UPS bekapcsolásának késleltetése, ha visszatér az energia az energia "
|
||||
"kilövése után"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:167
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:155
|
||||
msgid "Description (Display)"
|
||||
msgstr "Leírás (megjelenítés)"
|
||||
|
||||
@@ -83,46 +83,46 @@ msgstr "Leírás (megjelenítés)"
|
||||
msgid "Display name"
|
||||
msgstr "Megjelenített név"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:209
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:197
|
||||
msgid "Do not lock port when starting driver"
|
||||
msgstr "Ne zárolja a portot az illesztőprogram indításakor"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:170
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:158
|
||||
msgid "Driver"
|
||||
msgstr "Illesztőprogram"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:154
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:142
|
||||
msgid "Driver Configuration"
|
||||
msgstr "Illesztőprogram beállítása"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:116
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:108
|
||||
msgid "Driver Global Settings"
|
||||
msgstr "Illesztőprogram globális beállításai"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:122
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:114
|
||||
msgid "Driver Path"
|
||||
msgstr "Illesztőprogram útvonala"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:250
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:238
|
||||
msgid "Driver Shutdown Order"
|
||||
msgstr "Illesztőprogram leállítási sorrendje"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:145
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:282
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:137
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:270
|
||||
msgid "Driver waits for data to be consumed by upsd before publishing more."
|
||||
msgstr ""
|
||||
"Az illesztőprogram várakozik az upsd által elfogyasztott adatokra, mielőtt "
|
||||
"többet tesz közzé."
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:97
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server_admin.js:20
|
||||
msgid "Drop privileges to this user"
|
||||
msgstr "Jogosultságok dobása a felhasználónak"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_cgi.js:41
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_cgi_admin.js:22
|
||||
msgid "Enable"
|
||||
msgstr "Engedélyezés"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:178
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:166
|
||||
msgid ""
|
||||
"Enables a hotplug script that makes all ttyUSB devices (e.g. serial USB) "
|
||||
"group read-write as user %s"
|
||||
@@ -139,23 +139,29 @@ msgstr "Értesítési parancs végrehajtása"
|
||||
msgid "Forced Shutdown"
|
||||
msgstr "Kényszerített leállítás"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:71
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:70
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor_admin.js:16
|
||||
msgid "Global Settings"
|
||||
msgstr "Globális beállítások"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_cgi.js:15
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_cgi_admin.js:15
|
||||
msgid "Go to NUT CGI"
|
||||
msgstr "Ugrás a NUT CGI-hez"
|
||||
|
||||
#: applications/luci-app-nut/root/usr/share/rpcd/acl.d/luci-app-nut.json:15
|
||||
msgid "Grant admin UCI access for luci-app-nut"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/root/usr/share/rpcd/acl.d/luci-app-nut.json:3
|
||||
msgid "Grant UCI access for luci-app-nut"
|
||||
msgstr "UCI hozzáférés engedélyezése a <em>luci-app-nut</em> alkalmazásnak"
|
||||
msgid "Grant limited UCI read access for luci-app-nut"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_cgi.js:17
|
||||
msgid "Host"
|
||||
msgstr "Gép"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:100
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:89
|
||||
msgid "Host Sync"
|
||||
msgstr ""
|
||||
|
||||
@@ -163,7 +169,7 @@ msgstr ""
|
||||
msgid "Hostname or IP address"
|
||||
msgstr "Gépnév vagy IP-cím"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:29
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:28
|
||||
msgid "Hostname or address of UPS"
|
||||
msgstr "A UPS gépneve vagy címe"
|
||||
|
||||
@@ -171,7 +177,7 @@ msgstr "A UPS gépneve vagy címe"
|
||||
msgid "IP Address"
|
||||
msgstr "IP-cím"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:171
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:159
|
||||
msgid "If this list is empty you need to %s"
|
||||
msgstr ""
|
||||
|
||||
@@ -179,7 +185,7 @@ msgstr ""
|
||||
msgid "Ignore"
|
||||
msgstr "Mellőzés"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:182
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:170
|
||||
msgid "Ignore Low Battery"
|
||||
msgstr "Alacsony akkumulátor mellőzése"
|
||||
|
||||
@@ -187,19 +193,19 @@ msgstr "Alacsony akkumulátor mellőzése"
|
||||
msgid "Instant commands"
|
||||
msgstr "Azonnali parancsok"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:186
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:174
|
||||
msgid "Interrupt Only"
|
||||
msgstr "Csak megszakítás"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:190
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:178
|
||||
msgid "Interrupt Size"
|
||||
msgstr "Megszakítás mérete"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:203
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:191
|
||||
msgid "Manufacturer (Display)"
|
||||
msgstr "Gyártó (megjelenítés)"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:194
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:182
|
||||
msgid "Max USB HID Length Reported"
|
||||
msgstr "Legnagyobb USB HID hossz jelentve"
|
||||
|
||||
@@ -207,47 +213,55 @@ msgstr "Legnagyobb USB HID hossz jelentve"
|
||||
msgid "Maximum Age of Data"
|
||||
msgstr "Adatok legnagyobb életkora"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:130
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:122
|
||||
msgid "Maximum Retries"
|
||||
msgstr "Legtöbb újrapróbálás"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:126
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:198
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:118
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:186
|
||||
msgid "Maximum Start Delay"
|
||||
msgstr "Legnagyobb indítási késleltetés"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:105
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:97
|
||||
msgid "Maximum connections"
|
||||
msgstr "Legtöbb kapcsolat"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:130
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:122
|
||||
msgid "Maximum number of times to try starting a driver."
|
||||
msgstr "Egy illesztőprogram indítási kísérleteinek legnagyobb száma."
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:140
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:132
|
||||
msgid "Maximum time in seconds between refresh of UPS status"
|
||||
msgstr "Legnagyobb idő másodpercben az UPS állapot frissítése között"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:78
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:74
|
||||
msgid "Minimum required number or power supplies"
|
||||
msgstr "Legkisebb szükséges szám vagy áramforrás"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:206
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:194
|
||||
msgid "Model (Display)"
|
||||
msgstr "Modell (megjelenítés)"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_cgi.js:13
|
||||
#: applications/luci-app-nut/root/usr/share/luci/menu.d/luci-app-nut.json:42
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_cgi_admin.js:13
|
||||
msgid "NUT CGI"
|
||||
msgstr "Hálózati UPS eszközök (CGI)"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:68
|
||||
#: applications/luci-app-nut/root/usr/share/luci/menu.d/luci-app-nut.json:30
|
||||
#: applications/luci-app-nut/root/usr/share/luci/menu.d/luci-app-nut.json:100
|
||||
msgid "NUT CGI - admin"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/root/usr/share/luci/menu.d/luci-app-nut.json:85
|
||||
msgid "NUT CGI - main"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:67
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor_admin.js:13
|
||||
msgid "NUT Monitor"
|
||||
msgstr "Hálózati UPS eszközök (megfigyelő)"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:42
|
||||
#: applications/luci-app-nut/root/usr/share/luci/menu.d/luci-app-nut.json:18
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server_admin.js:13
|
||||
msgid "NUT Server"
|
||||
msgstr "Hálózati UPS eszközök (kiszolgáló)"
|
||||
|
||||
@@ -255,7 +269,23 @@ msgstr "Hálózati UPS eszközök (kiszolgáló)"
|
||||
msgid "NUT Users"
|
||||
msgstr "NUT felhasználók"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:26
|
||||
#: applications/luci-app-nut/root/usr/share/luci/menu.d/luci-app-nut.json:69
|
||||
msgid "NUT monitor - admin"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/root/usr/share/luci/menu.d/luci-app-nut.json:54
|
||||
msgid "NUT monitor - main"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/root/usr/share/luci/menu.d/luci-app-nut.json:38
|
||||
msgid "NUT server - admin"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/root/usr/share/luci/menu.d/luci-app-nut.json:23
|
||||
msgid "NUT server - main"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:25
|
||||
msgid "Name of UPS"
|
||||
msgstr "Az UPS neve"
|
||||
|
||||
@@ -264,61 +294,64 @@ msgid "Network UPS Tools"
|
||||
msgstr "Hálózati UPS eszközök"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_cgi.js:14
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_cgi_admin.js:14
|
||||
msgid "Network UPS Tools CGI Configuration"
|
||||
msgstr "Hálózati UPS eszközök CGI beállítások"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:69
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:68
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor_admin.js:14
|
||||
msgid "Network UPS Tools Monitoring Configuration"
|
||||
msgstr "Hálózati UPS eszközök megfigyelési beállítások"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:43
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server_admin.js:14
|
||||
msgid "Network UPS Tools Server Configuration"
|
||||
msgstr "Hálózati UPS eszközök kiszolgáló beállítások"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:209
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:197
|
||||
msgid "No Lock"
|
||||
msgstr "Nincs zárolás"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:213
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:201
|
||||
msgid "No low/high voltage transfer OIDs"
|
||||
msgstr "Nincsenek alacsony/magas feszültség átviteli OID-k"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:127
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:116
|
||||
msgid "Notification flags"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:119
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:108
|
||||
msgid "Notifications settings"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:87
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor_admin.js:23
|
||||
msgid "Notify command"
|
||||
msgstr "Értesítési parancs"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:217
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:205
|
||||
msgid "Off Delay(s)"
|
||||
msgstr "Ki késleltetések"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:226
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:214
|
||||
msgid "On Delay(s)"
|
||||
msgstr "Be késleltetések"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:46
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:45
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:53
|
||||
msgid "Password"
|
||||
msgstr "Jelszó"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:110
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:99
|
||||
msgid "Path containing ca certificates to match against host certificate"
|
||||
msgstr ""
|
||||
"Útvonal, amely a CA-tanúsítványt tartalmazza a gép tanúsítványának "
|
||||
"egyeztetéséhez"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:122
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:114
|
||||
msgid "Path to drivers (instead of default)"
|
||||
msgstr "Útvonal az illesztőprogramokhoz (az alapértelmezett helyett)"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:101
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server_admin.js:24
|
||||
msgid "Path to state file"
|
||||
msgstr "Útvonal az állapotfájlhoz"
|
||||
|
||||
@@ -326,30 +359,30 @@ msgstr "Útvonal az állapotfájlhoz"
|
||||
msgid "Period after which data is considered stale"
|
||||
msgstr "Az időszak, amely után az adat elavultnak tekinthető"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:140
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:132
|
||||
msgid "Poll Interval"
|
||||
msgstr "Lekérdezési időköz"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:90
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:79
|
||||
msgid "Poll frequency"
|
||||
msgstr "Lekérdezési gyakoriság"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:95
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:84
|
||||
msgid "Poll frequency alert"
|
||||
msgstr "Lekérdezési gyakoriság riasztás"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:235
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:223
|
||||
msgid "Polling Frequency(s)"
|
||||
msgstr "Lekérdezési gyakoriságok"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_cgi.js:28
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:33
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:32
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:83
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:240
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:228
|
||||
msgid "Port"
|
||||
msgstr "Port"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:38
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:37
|
||||
msgid "Power value"
|
||||
msgstr "Energiaérték"
|
||||
|
||||
@@ -361,17 +394,17 @@ msgstr "Mester"
|
||||
msgid "Primary (Deprecated)"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:244
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:232
|
||||
msgid "Product (regex)"
|
||||
msgstr "Termék (reguláris kifejezés)"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:114
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:103
|
||||
msgid "Require SSL and make sure server CN matches hostname"
|
||||
msgstr ""
|
||||
"SSL szükséges, és győződjön meg arról, hogy a kiszolgáló CN-je egyezik-e a "
|
||||
"gépnévvel"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:135
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:127
|
||||
msgid "Retry Delay"
|
||||
msgstr "Újrapróbálás késleltetése"
|
||||
|
||||
@@ -379,49 +412,48 @@ msgstr "Újrapróbálás késleltetése"
|
||||
msgid "Role"
|
||||
msgstr "Szerep"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:119
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:111
|
||||
msgid "Run drivers in a chroot(2) environment"
|
||||
msgstr "Illesztőprogramok futtatása egy chroot(2) környezetben"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:75
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:97
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:149
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor_admin.js:20
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server_admin.js:20
|
||||
msgid "RunAs User"
|
||||
msgstr "RunAs felhasználó"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:163
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:151
|
||||
msgid "SNMP Community"
|
||||
msgstr "SNMP közösség"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:260
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:248
|
||||
msgid "SNMP retries"
|
||||
msgstr "SNMP újrapróbálások"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:264
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:252
|
||||
msgid "SNMP timeout(s)"
|
||||
msgstr "SNMP időkorlátok"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:268
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:256
|
||||
msgid "SNMP version"
|
||||
msgstr "SNMP verzió"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:270
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:258
|
||||
msgid "SNMPv1"
|
||||
msgstr "SNMPv1"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:271
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:259
|
||||
msgid "SNMPv2c"
|
||||
msgstr "SNMPv2c"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:272
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:260
|
||||
msgid "SNMPv3"
|
||||
msgstr "SNMPv3"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:257
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:245
|
||||
msgid "Serial Number"
|
||||
msgstr "Sorozatszám"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:177
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:165
|
||||
msgid "Set USB serial port permissions"
|
||||
msgstr "USB soros port jogosultságainak beállítása"
|
||||
|
||||
@@ -429,52 +461,53 @@ msgstr "USB soros port jogosultságainak beállítása"
|
||||
msgid "Set variables"
|
||||
msgstr "Változók beállítása"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:83
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor_admin.js:26
|
||||
msgid "Shutdown command"
|
||||
msgstr "Leállítási parancs"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:145
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:282
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:137
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:270
|
||||
msgid "Synchronous Communication"
|
||||
msgstr "Egyidejű kommunikáció"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:155
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:143
|
||||
msgid "The name of this section will be used as UPS name elsewhere"
|
||||
msgstr "A munkamenet neve lesz használva UPS névként máshol"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:167
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:203
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:206
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:257
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:155
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:191
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:194
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:245
|
||||
msgid ""
|
||||
"This is passed through to the driver, so make sure your driver supports this "
|
||||
"option"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:135
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:127
|
||||
msgid "Time in seconds between driver start retry attempts."
|
||||
msgstr ""
|
||||
"Az illesztőprogram-indítás újrapróbálási kísérletei közti idő másodpercben."
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:198
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:186
|
||||
msgid "Time in seconds that upsdrvctl will wait for driver to finish starting"
|
||||
msgstr ""
|
||||
"Az idő másodpercben, ameddig az upsdrvctl várakozni fog az illesztőprogram-"
|
||||
"indítás befejeződésére"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:142
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:131
|
||||
msgid "UPS Auxiliary (Deprecated)"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:130
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:119
|
||||
msgid "UPS Monitor User Settings"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:139
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:128
|
||||
msgid "UPS Primary (Deprecated)"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:89
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server_admin.js:17
|
||||
msgid "UPS Server Global Settings"
|
||||
msgstr "UPS kiszolgáló globális beállításai"
|
||||
|
||||
@@ -482,19 +515,19 @@ msgstr "UPS kiszolgáló globális beállításai"
|
||||
msgid "UPS name"
|
||||
msgstr "UPS neve"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:159
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:147
|
||||
msgid "USB Bus(es) (regex)"
|
||||
msgstr "USB buszok (reguláris kifejezés)"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:247
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:235
|
||||
msgid "USB Product Id"
|
||||
msgstr "USB termékazonosító"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:279
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:267
|
||||
msgid "USB Vendor Id"
|
||||
msgstr "USB gyártóazonosító"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:57
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:56
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:28
|
||||
msgid "Unable to run ldd: %s"
|
||||
msgstr ""
|
||||
@@ -506,33 +539,24 @@ msgstr ""
|
||||
"Használja az %s parancsot a teljes lista megtekintéséhez, hogy mely "
|
||||
"parancsokat támogatja az UPS-e (az %s csomagot igényli)"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:149
|
||||
msgid ""
|
||||
"User as which to execute driver; requires device file accessed by driver to "
|
||||
"be read-write for that user."
|
||||
msgstr ""
|
||||
"A felhasználó, amelyként az illesztőprogramot végre kell hajtani. Azt "
|
||||
"igényli, hogy az illesztőprogram által elért eszközfájl olvasható és írható "
|
||||
"legyen annál a felhasználónál."
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:133
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:122
|
||||
msgid "User type (Primary/Auxiliary)"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:43
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:42
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:50
|
||||
msgid "Username"
|
||||
msgstr "Felhasználónév"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:276
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:264
|
||||
msgid "Vendor (regex)"
|
||||
msgstr "Gyártó (reguláris kifejezés)"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:114
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:103
|
||||
msgid "Verify all connection with SSL"
|
||||
msgstr "Minden SSL-lel rendelkező kapcsolat ellenőrzése"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:194
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:182
|
||||
msgid "Workaround for buggy firmware"
|
||||
msgstr "Kerülő megoldás a hibás firmware-hez"
|
||||
|
||||
@@ -544,18 +568,29 @@ msgstr "Írás a rendszernaplóba"
|
||||
msgid "Write to syslog and execute notify command"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:119
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:111
|
||||
msgid "chroot"
|
||||
msgstr "chroot"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:171
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:159
|
||||
msgid "install drivers"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:75
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor_admin.js:20
|
||||
msgid "upsmon drops privileges to this user"
|
||||
msgstr "Az upsmon jogosultságokat dob a felhasználónak"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "User as which to execute driver; requires device file accessed by driver "
|
||||
#~ "to be read-write for that user."
|
||||
#~ msgstr ""
|
||||
#~ "A felhasználó, amelyként az illesztőprogramot végre kell hajtani. Azt "
|
||||
#~ "igényli, hogy az illesztőprogram által elért eszközfájl olvasható és "
|
||||
#~ "írható legyen annál a felhasználónál."
|
||||
|
||||
#~ msgid "Grant UCI access for luci-app-nut"
|
||||
#~ msgstr "UCI hozzáférés engedélyezése a <em>luci-app-nut</em> alkalmazásnak"
|
||||
|
||||
#~ msgid "Communications lost message"
|
||||
#~ msgstr "Kommunikációk megszakadásának üzenete"
|
||||
|
||||
|
||||
@@ -12,7 +12,7 @@ msgstr ""
|
||||
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
||||
"X-Generator: Weblate 5.13-dev\n"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:254
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:242
|
||||
msgid "Additional Shutdown Time(s)"
|
||||
msgstr "Tempo di spegnimento aggiuntivo(s)"
|
||||
|
||||
@@ -25,7 +25,7 @@ msgid "Allowed actions"
|
||||
msgstr "Azioni consentite"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_cgi.js:21
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:26
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:25
|
||||
msgid "As configured by NUT"
|
||||
msgstr "Come configurato da NUT"
|
||||
|
||||
@@ -37,45 +37,45 @@ msgstr "Ausiliario"
|
||||
msgid "Auxiliary (Deprecated)"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:190
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:178
|
||||
msgid "Bytes to read from interrupt pipe"
|
||||
msgstr "Byte da leggere dalla pipe di interrupt"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:110
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:99
|
||||
msgid "CA Certificate path"
|
||||
msgstr "Percorso dei certificati CA"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:111
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:103
|
||||
msgid "Certificate file (SSL)"
|
||||
msgstr "File certificato (SSL)"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_cgi.js:36
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_cgi_admin.js:17
|
||||
msgid "Control UPS via CGI"
|
||||
msgstr "Controlla UPS tramite CGI"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:124
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:113
|
||||
msgid "Custom notification message for message type"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:104
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:93
|
||||
msgid "Deadtime"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:126
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:118
|
||||
msgid "Default for UPSes without this field."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:217
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:205
|
||||
msgid "Delay for kill power command"
|
||||
msgstr "Ritardo per il comando di spegnimento"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:226
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:214
|
||||
msgid "Delay to power on UPS if power returns after kill power"
|
||||
msgstr ""
|
||||
"Ritardo nell'accensione dell' UPS se l'alimentazione viene ripristinata dopo "
|
||||
"l'interruzione dell'alimentazione"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:167
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:155
|
||||
msgid "Description (Display)"
|
||||
msgstr "Descrizione (Display)"
|
||||
|
||||
@@ -83,44 +83,44 @@ msgstr "Descrizione (Display)"
|
||||
msgid "Display name"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:209
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:197
|
||||
msgid "Do not lock port when starting driver"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:170
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:158
|
||||
msgid "Driver"
|
||||
msgstr "Driver"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:154
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:142
|
||||
msgid "Driver Configuration"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:116
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:108
|
||||
msgid "Driver Global Settings"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:122
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:114
|
||||
msgid "Driver Path"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:250
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:238
|
||||
msgid "Driver Shutdown Order"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:145
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:282
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:137
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:270
|
||||
msgid "Driver waits for data to be consumed by upsd before publishing more."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:97
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server_admin.js:20
|
||||
msgid "Drop privileges to this user"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_cgi.js:41
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_cgi_admin.js:22
|
||||
msgid "Enable"
|
||||
msgstr "Abilitare"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:178
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:166
|
||||
msgid ""
|
||||
"Enables a hotplug script that makes all ttyUSB devices (e.g. serial USB) "
|
||||
"group read-write as user %s"
|
||||
@@ -134,23 +134,29 @@ msgstr ""
|
||||
msgid "Forced Shutdown"
|
||||
msgstr "Spegnimento Forzato"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:71
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:70
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor_admin.js:16
|
||||
msgid "Global Settings"
|
||||
msgstr "Impostazioni globali"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_cgi.js:15
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_cgi_admin.js:15
|
||||
msgid "Go to NUT CGI"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/root/usr/share/rpcd/acl.d/luci-app-nut.json:15
|
||||
msgid "Grant admin UCI access for luci-app-nut"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/root/usr/share/rpcd/acl.d/luci-app-nut.json:3
|
||||
msgid "Grant UCI access for luci-app-nut"
|
||||
msgid "Grant limited UCI read access for luci-app-nut"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_cgi.js:17
|
||||
msgid "Host"
|
||||
msgstr "Host"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:100
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:89
|
||||
msgid "Host Sync"
|
||||
msgstr ""
|
||||
|
||||
@@ -158,7 +164,7 @@ msgstr ""
|
||||
msgid "Hostname or IP address"
|
||||
msgstr "Nome Host o indirizzo IP"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:29
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:28
|
||||
msgid "Hostname or address of UPS"
|
||||
msgstr "Nome Host o indirizzo dell' UPS"
|
||||
|
||||
@@ -166,7 +172,7 @@ msgstr "Nome Host o indirizzo dell' UPS"
|
||||
msgid "IP Address"
|
||||
msgstr "Indirizzo IP"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:171
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:159
|
||||
msgid "If this list is empty you need to %s"
|
||||
msgstr ""
|
||||
|
||||
@@ -174,7 +180,7 @@ msgstr ""
|
||||
msgid "Ignore"
|
||||
msgstr "Ignora"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:182
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:170
|
||||
msgid "Ignore Low Battery"
|
||||
msgstr ""
|
||||
|
||||
@@ -182,19 +188,19 @@ msgstr ""
|
||||
msgid "Instant commands"
|
||||
msgstr "Comandi instantanei"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:186
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:174
|
||||
msgid "Interrupt Only"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:190
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:178
|
||||
msgid "Interrupt Size"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:203
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:191
|
||||
msgid "Manufacturer (Display)"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:194
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:182
|
||||
msgid "Max USB HID Length Reported"
|
||||
msgstr ""
|
||||
|
||||
@@ -202,47 +208,55 @@ msgstr ""
|
||||
msgid "Maximum Age of Data"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:130
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:122
|
||||
msgid "Maximum Retries"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:126
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:198
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:118
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:186
|
||||
msgid "Maximum Start Delay"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:105
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:97
|
||||
msgid "Maximum connections"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:130
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:122
|
||||
msgid "Maximum number of times to try starting a driver."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:140
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:132
|
||||
msgid "Maximum time in seconds between refresh of UPS status"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:78
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:74
|
||||
msgid "Minimum required number or power supplies"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:206
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:194
|
||||
msgid "Model (Display)"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_cgi.js:13
|
||||
#: applications/luci-app-nut/root/usr/share/luci/menu.d/luci-app-nut.json:42
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_cgi_admin.js:13
|
||||
msgid "NUT CGI"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:68
|
||||
#: applications/luci-app-nut/root/usr/share/luci/menu.d/luci-app-nut.json:30
|
||||
#: applications/luci-app-nut/root/usr/share/luci/menu.d/luci-app-nut.json:100
|
||||
msgid "NUT CGI - admin"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/root/usr/share/luci/menu.d/luci-app-nut.json:85
|
||||
msgid "NUT CGI - main"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:67
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor_admin.js:13
|
||||
msgid "NUT Monitor"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:42
|
||||
#: applications/luci-app-nut/root/usr/share/luci/menu.d/luci-app-nut.json:18
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server_admin.js:13
|
||||
msgid "NUT Server"
|
||||
msgstr ""
|
||||
|
||||
@@ -250,7 +264,23 @@ msgstr ""
|
||||
msgid "NUT Users"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:26
|
||||
#: applications/luci-app-nut/root/usr/share/luci/menu.d/luci-app-nut.json:69
|
||||
msgid "NUT monitor - admin"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/root/usr/share/luci/menu.d/luci-app-nut.json:54
|
||||
msgid "NUT monitor - main"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/root/usr/share/luci/menu.d/luci-app-nut.json:38
|
||||
msgid "NUT server - admin"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/root/usr/share/luci/menu.d/luci-app-nut.json:23
|
||||
msgid "NUT server - main"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:25
|
||||
msgid "Name of UPS"
|
||||
msgstr ""
|
||||
|
||||
@@ -259,59 +289,62 @@ msgid "Network UPS Tools"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_cgi.js:14
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_cgi_admin.js:14
|
||||
msgid "Network UPS Tools CGI Configuration"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:69
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:68
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor_admin.js:14
|
||||
msgid "Network UPS Tools Monitoring Configuration"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:43
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server_admin.js:14
|
||||
msgid "Network UPS Tools Server Configuration"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:209
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:197
|
||||
msgid "No Lock"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:213
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:201
|
||||
msgid "No low/high voltage transfer OIDs"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:127
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:116
|
||||
msgid "Notification flags"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:119
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:108
|
||||
msgid "Notifications settings"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:87
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor_admin.js:23
|
||||
msgid "Notify command"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:217
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:205
|
||||
msgid "Off Delay(s)"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:226
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:214
|
||||
msgid "On Delay(s)"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:46
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:45
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:53
|
||||
msgid "Password"
|
||||
msgstr "Password"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:110
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:99
|
||||
msgid "Path containing ca certificates to match against host certificate"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:122
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:114
|
||||
msgid "Path to drivers (instead of default)"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:101
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server_admin.js:24
|
||||
msgid "Path to state file"
|
||||
msgstr ""
|
||||
|
||||
@@ -319,30 +352,30 @@ msgstr ""
|
||||
msgid "Period after which data is considered stale"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:140
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:132
|
||||
msgid "Poll Interval"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:90
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:79
|
||||
msgid "Poll frequency"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:95
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:84
|
||||
msgid "Poll frequency alert"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:235
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:223
|
||||
msgid "Polling Frequency(s)"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_cgi.js:28
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:33
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:32
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:83
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:240
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:228
|
||||
msgid "Port"
|
||||
msgstr "Porta"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:38
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:37
|
||||
msgid "Power value"
|
||||
msgstr ""
|
||||
|
||||
@@ -354,15 +387,15 @@ msgstr "Primary"
|
||||
msgid "Primary (Deprecated)"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:244
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:232
|
||||
msgid "Product (regex)"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:114
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:103
|
||||
msgid "Require SSL and make sure server CN matches hostname"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:135
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:127
|
||||
msgid "Retry Delay"
|
||||
msgstr ""
|
||||
|
||||
@@ -370,49 +403,48 @@ msgstr ""
|
||||
msgid "Role"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:119
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:111
|
||||
msgid "Run drivers in a chroot(2) environment"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:75
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:97
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:149
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor_admin.js:20
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server_admin.js:20
|
||||
msgid "RunAs User"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:163
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:151
|
||||
msgid "SNMP Community"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:260
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:248
|
||||
msgid "SNMP retries"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:264
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:252
|
||||
msgid "SNMP timeout(s)"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:268
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:256
|
||||
msgid "SNMP version"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:270
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:258
|
||||
msgid "SNMPv1"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:271
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:259
|
||||
msgid "SNMPv2c"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:272
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:260
|
||||
msgid "SNMPv3"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:257
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:245
|
||||
msgid "Serial Number"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:177
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:165
|
||||
msgid "Set USB serial port permissions"
|
||||
msgstr ""
|
||||
|
||||
@@ -420,49 +452,50 @@ msgstr ""
|
||||
msgid "Set variables"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:83
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor_admin.js:26
|
||||
msgid "Shutdown command"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:145
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:282
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:137
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:270
|
||||
msgid "Synchronous Communication"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:155
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:143
|
||||
msgid "The name of this section will be used as UPS name elsewhere"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:167
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:203
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:206
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:257
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:155
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:191
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:194
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:245
|
||||
msgid ""
|
||||
"This is passed through to the driver, so make sure your driver supports this "
|
||||
"option"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:135
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:127
|
||||
msgid "Time in seconds between driver start retry attempts."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:198
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:186
|
||||
msgid "Time in seconds that upsdrvctl will wait for driver to finish starting"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:142
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:131
|
||||
msgid "UPS Auxiliary (Deprecated)"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:130
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:119
|
||||
msgid "UPS Monitor User Settings"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:139
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:128
|
||||
msgid "UPS Primary (Deprecated)"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:89
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server_admin.js:17
|
||||
msgid "UPS Server Global Settings"
|
||||
msgstr ""
|
||||
|
||||
@@ -470,19 +503,19 @@ msgstr ""
|
||||
msgid "UPS name"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:159
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:147
|
||||
msgid "USB Bus(es) (regex)"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:247
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:235
|
||||
msgid "USB Product Id"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:279
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:267
|
||||
msgid "USB Vendor Id"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:57
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:56
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:28
|
||||
msgid "Unable to run ldd: %s"
|
||||
msgstr ""
|
||||
@@ -492,30 +525,24 @@ msgid ""
|
||||
"Use %s to see full list of commands your UPS supports (requires %s package)"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:149
|
||||
msgid ""
|
||||
"User as which to execute driver; requires device file accessed by driver to "
|
||||
"be read-write for that user."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:133
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:122
|
||||
msgid "User type (Primary/Auxiliary)"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:43
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:42
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:50
|
||||
msgid "Username"
|
||||
msgstr "Nome utente"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:276
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:264
|
||||
msgid "Vendor (regex)"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:114
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:103
|
||||
msgid "Verify all connection with SSL"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:194
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:182
|
||||
msgid "Workaround for buggy firmware"
|
||||
msgstr ""
|
||||
|
||||
@@ -527,15 +554,15 @@ msgstr ""
|
||||
msgid "Write to syslog and execute notify command"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:119
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:111
|
||||
msgid "chroot"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:171
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:159
|
||||
msgid "install drivers"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:75
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor_admin.js:20
|
||||
msgid "upsmon drops privileges to this user"
|
||||
msgstr ""
|
||||
|
||||
|
||||
@@ -12,7 +12,7 @@ msgstr ""
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
"X-Generator: Weblate 5.5-dev\n"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:254
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:242
|
||||
msgid "Additional Shutdown Time(s)"
|
||||
msgstr "追加シャットダウン秒数"
|
||||
|
||||
@@ -25,7 +25,7 @@ msgid "Allowed actions"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_cgi.js:21
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:26
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:25
|
||||
msgid "As configured by NUT"
|
||||
msgstr ""
|
||||
|
||||
@@ -37,43 +37,43 @@ msgstr "スレーブ"
|
||||
msgid "Auxiliary (Deprecated)"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:190
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:178
|
||||
msgid "Bytes to read from interrupt pipe"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:110
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:99
|
||||
msgid "CA Certificate path"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:111
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:103
|
||||
msgid "Certificate file (SSL)"
|
||||
msgstr "証明書ファイル(SSL)"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_cgi.js:36
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_cgi_admin.js:17
|
||||
msgid "Control UPS via CGI"
|
||||
msgstr "CGI で UPS を制御"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:124
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:113
|
||||
msgid "Custom notification message for message type"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:104
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:93
|
||||
msgid "Deadtime"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:126
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:118
|
||||
msgid "Default for UPSes without this field."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:217
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:205
|
||||
msgid "Delay for kill power command"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:226
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:214
|
||||
msgid "Delay to power on UPS if power returns after kill power"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:167
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:155
|
||||
msgid "Description (Display)"
|
||||
msgstr "説明(表示)"
|
||||
|
||||
@@ -81,44 +81,44 @@ msgstr "説明(表示)"
|
||||
msgid "Display name"
|
||||
msgstr "表示名"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:209
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:197
|
||||
msgid "Do not lock port when starting driver"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:170
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:158
|
||||
msgid "Driver"
|
||||
msgstr "ドライバ"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:154
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:142
|
||||
msgid "Driver Configuration"
|
||||
msgstr "ドライバー構成"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:116
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:108
|
||||
msgid "Driver Global Settings"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:122
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:114
|
||||
msgid "Driver Path"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:250
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:238
|
||||
msgid "Driver Shutdown Order"
|
||||
msgstr "ドライバー シャットダウン順序"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:145
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:282
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:137
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:270
|
||||
msgid "Driver waits for data to be consumed by upsd before publishing more."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:97
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server_admin.js:20
|
||||
msgid "Drop privileges to this user"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_cgi.js:41
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_cgi_admin.js:22
|
||||
msgid "Enable"
|
||||
msgstr "有効化"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:178
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:166
|
||||
msgid ""
|
||||
"Enables a hotplug script that makes all ttyUSB devices (e.g. serial USB) "
|
||||
"group read-write as user %s"
|
||||
@@ -132,23 +132,29 @@ msgstr "通知コマンドを実行"
|
||||
msgid "Forced Shutdown"
|
||||
msgstr "強制シャットダウン"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:71
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:70
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor_admin.js:16
|
||||
msgid "Global Settings"
|
||||
msgstr "全体設定"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_cgi.js:15
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_cgi_admin.js:15
|
||||
msgid "Go to NUT CGI"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/root/usr/share/rpcd/acl.d/luci-app-nut.json:15
|
||||
msgid "Grant admin UCI access for luci-app-nut"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/root/usr/share/rpcd/acl.d/luci-app-nut.json:3
|
||||
msgid "Grant UCI access for luci-app-nut"
|
||||
msgstr "luci-app-nutにUCIアクセスを許可"
|
||||
msgid "Grant limited UCI read access for luci-app-nut"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_cgi.js:17
|
||||
msgid "Host"
|
||||
msgstr "ホスト"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:100
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:89
|
||||
msgid "Host Sync"
|
||||
msgstr ""
|
||||
|
||||
@@ -156,7 +162,7 @@ msgstr ""
|
||||
msgid "Hostname or IP address"
|
||||
msgstr "ホスト名または IP アドレス"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:29
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:28
|
||||
msgid "Hostname or address of UPS"
|
||||
msgstr "UPS のホスト名またはアドレス"
|
||||
|
||||
@@ -164,7 +170,7 @@ msgstr "UPS のホスト名またはアドレス"
|
||||
msgid "IP Address"
|
||||
msgstr "IP アドレス"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:171
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:159
|
||||
msgid "If this list is empty you need to %s"
|
||||
msgstr ""
|
||||
|
||||
@@ -172,7 +178,7 @@ msgstr ""
|
||||
msgid "Ignore"
|
||||
msgstr "無視"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:182
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:170
|
||||
msgid "Ignore Low Battery"
|
||||
msgstr "低バッテリーを無視"
|
||||
|
||||
@@ -180,19 +186,19 @@ msgstr "低バッテリーを無視"
|
||||
msgid "Instant commands"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:186
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:174
|
||||
msgid "Interrupt Only"
|
||||
msgstr "割り込みのみ"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:190
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:178
|
||||
msgid "Interrupt Size"
|
||||
msgstr "割り込みサイズ"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:203
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:191
|
||||
msgid "Manufacturer (Display)"
|
||||
msgstr "メーカー(ディスプレイ)"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:194
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:182
|
||||
msgid "Max USB HID Length Reported"
|
||||
msgstr ""
|
||||
|
||||
@@ -200,47 +206,55 @@ msgstr ""
|
||||
msgid "Maximum Age of Data"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:130
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:122
|
||||
msgid "Maximum Retries"
|
||||
msgstr "最大の再試行回数"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:126
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:198
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:118
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:186
|
||||
msgid "Maximum Start Delay"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:105
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:97
|
||||
msgid "Maximum connections"
|
||||
msgstr "最大の接続数"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:130
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:122
|
||||
msgid "Maximum number of times to try starting a driver."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:140
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:132
|
||||
msgid "Maximum time in seconds between refresh of UPS status"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:78
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:74
|
||||
msgid "Minimum required number or power supplies"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:206
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:194
|
||||
msgid "Model (Display)"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_cgi.js:13
|
||||
#: applications/luci-app-nut/root/usr/share/luci/menu.d/luci-app-nut.json:42
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_cgi_admin.js:13
|
||||
msgid "NUT CGI"
|
||||
msgstr "ネットワーク UPS ツール (CGI)"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:68
|
||||
#: applications/luci-app-nut/root/usr/share/luci/menu.d/luci-app-nut.json:30
|
||||
#: applications/luci-app-nut/root/usr/share/luci/menu.d/luci-app-nut.json:100
|
||||
msgid "NUT CGI - admin"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/root/usr/share/luci/menu.d/luci-app-nut.json:85
|
||||
msgid "NUT CGI - main"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:67
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor_admin.js:13
|
||||
msgid "NUT Monitor"
|
||||
msgstr "ネットワーク UPS ツール (モニター)"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:42
|
||||
#: applications/luci-app-nut/root/usr/share/luci/menu.d/luci-app-nut.json:18
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server_admin.js:13
|
||||
msgid "NUT Server"
|
||||
msgstr "ネットワーク UPS ツール (サーバー)"
|
||||
|
||||
@@ -248,7 +262,23 @@ msgstr "ネットワーク UPS ツール (サーバー)"
|
||||
msgid "NUT Users"
|
||||
msgstr "NUT ユーザー"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:26
|
||||
#: applications/luci-app-nut/root/usr/share/luci/menu.d/luci-app-nut.json:69
|
||||
msgid "NUT monitor - admin"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/root/usr/share/luci/menu.d/luci-app-nut.json:54
|
||||
msgid "NUT monitor - main"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/root/usr/share/luci/menu.d/luci-app-nut.json:38
|
||||
msgid "NUT server - admin"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/root/usr/share/luci/menu.d/luci-app-nut.json:23
|
||||
msgid "NUT server - main"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:25
|
||||
msgid "Name of UPS"
|
||||
msgstr "UPS の名前"
|
||||
|
||||
@@ -257,59 +287,62 @@ msgid "Network UPS Tools"
|
||||
msgstr "ネットワーク UPS ツール"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_cgi.js:14
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_cgi_admin.js:14
|
||||
msgid "Network UPS Tools CGI Configuration"
|
||||
msgstr "ネットワーク UPS ツール CGI 構成"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:69
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:68
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor_admin.js:14
|
||||
msgid "Network UPS Tools Monitoring Configuration"
|
||||
msgstr "ネットワーク UPS ツール モニタリング構成"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:43
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server_admin.js:14
|
||||
msgid "Network UPS Tools Server Configuration"
|
||||
msgstr "ネットワーク UPS ツール サーバー構成"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:209
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:197
|
||||
msgid "No Lock"
|
||||
msgstr "ロックがありません"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:213
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:201
|
||||
msgid "No low/high voltage transfer OIDs"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:127
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:116
|
||||
msgid "Notification flags"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:119
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:108
|
||||
msgid "Notifications settings"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:87
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor_admin.js:23
|
||||
msgid "Notify command"
|
||||
msgstr "通知コマンド"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:217
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:205
|
||||
msgid "Off Delay(s)"
|
||||
msgstr "遅延をオフにする"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:226
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:214
|
||||
msgid "On Delay(s)"
|
||||
msgstr "遅延をオンにする"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:46
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:45
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:53
|
||||
msgid "Password"
|
||||
msgstr "パスワード"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:110
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:99
|
||||
msgid "Path containing ca certificates to match against host certificate"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:122
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:114
|
||||
msgid "Path to drivers (instead of default)"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:101
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server_admin.js:24
|
||||
msgid "Path to state file"
|
||||
msgstr ""
|
||||
|
||||
@@ -317,30 +350,30 @@ msgstr ""
|
||||
msgid "Period after which data is considered stale"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:140
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:132
|
||||
msgid "Poll Interval"
|
||||
msgstr "ポーリング間隔"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:90
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:79
|
||||
msgid "Poll frequency"
|
||||
msgstr "ポーリング頻度"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:95
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:84
|
||||
msgid "Poll frequency alert"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:235
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:223
|
||||
msgid "Polling Frequency(s)"
|
||||
msgstr "ポーリング頻度"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_cgi.js:28
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:33
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:32
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:83
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:240
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:228
|
||||
msgid "Port"
|
||||
msgstr "ポート"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:38
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:37
|
||||
msgid "Power value"
|
||||
msgstr ""
|
||||
|
||||
@@ -352,15 +385,15 @@ msgstr "マスター"
|
||||
msgid "Primary (Deprecated)"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:244
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:232
|
||||
msgid "Product (regex)"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:114
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:103
|
||||
msgid "Require SSL and make sure server CN matches hostname"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:135
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:127
|
||||
msgid "Retry Delay"
|
||||
msgstr "再試行遅延"
|
||||
|
||||
@@ -368,49 +401,48 @@ msgstr "再試行遅延"
|
||||
msgid "Role"
|
||||
msgstr "役割"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:119
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:111
|
||||
msgid "Run drivers in a chroot(2) environment"
|
||||
msgstr "chroot(2) 環境でドライバーを実行"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:75
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:97
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:149
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor_admin.js:20
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server_admin.js:20
|
||||
msgid "RunAs User"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:163
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:151
|
||||
msgid "SNMP Community"
|
||||
msgstr "SNMP コミュニティ"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:260
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:248
|
||||
msgid "SNMP retries"
|
||||
msgstr "SNMP 再試行"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:264
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:252
|
||||
msgid "SNMP timeout(s)"
|
||||
msgstr "SNMP タイムアウト"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:268
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:256
|
||||
msgid "SNMP version"
|
||||
msgstr "SNMP のバージョン"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:270
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:258
|
||||
msgid "SNMPv1"
|
||||
msgstr "SNMPv1"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:271
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:259
|
||||
msgid "SNMPv2c"
|
||||
msgstr "SNMPv2c"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:272
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:260
|
||||
msgid "SNMPv3"
|
||||
msgstr "SNMPv3"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:257
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:245
|
||||
msgid "Serial Number"
|
||||
msgstr "シリアル番号"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:177
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:165
|
||||
msgid "Set USB serial port permissions"
|
||||
msgstr ""
|
||||
|
||||
@@ -418,49 +450,50 @@ msgstr ""
|
||||
msgid "Set variables"
|
||||
msgstr "変数を設定"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:83
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor_admin.js:26
|
||||
msgid "Shutdown command"
|
||||
msgstr "シャットダウン コマンド"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:145
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:282
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:137
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:270
|
||||
msgid "Synchronous Communication"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:155
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:143
|
||||
msgid "The name of this section will be used as UPS name elsewhere"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:167
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:203
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:206
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:257
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:155
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:191
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:194
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:245
|
||||
msgid ""
|
||||
"This is passed through to the driver, so make sure your driver supports this "
|
||||
"option"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:135
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:127
|
||||
msgid "Time in seconds between driver start retry attempts."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:198
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:186
|
||||
msgid "Time in seconds that upsdrvctl will wait for driver to finish starting"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:142
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:131
|
||||
msgid "UPS Auxiliary (Deprecated)"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:130
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:119
|
||||
msgid "UPS Monitor User Settings"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:139
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:128
|
||||
msgid "UPS Primary (Deprecated)"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:89
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server_admin.js:17
|
||||
msgid "UPS Server Global Settings"
|
||||
msgstr "UPS サーバー グローバル設定"
|
||||
|
||||
@@ -468,19 +501,19 @@ msgstr "UPS サーバー グローバル設定"
|
||||
msgid "UPS name"
|
||||
msgstr "UPS 名"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:159
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:147
|
||||
msgid "USB Bus(es) (regex)"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:247
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:235
|
||||
msgid "USB Product Id"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:279
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:267
|
||||
msgid "USB Vendor Id"
|
||||
msgstr "USB ベンダー ID"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:57
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:56
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:28
|
||||
msgid "Unable to run ldd: %s"
|
||||
msgstr ""
|
||||
@@ -490,30 +523,24 @@ msgid ""
|
||||
"Use %s to see full list of commands your UPS supports (requires %s package)"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:149
|
||||
msgid ""
|
||||
"User as which to execute driver; requires device file accessed by driver to "
|
||||
"be read-write for that user."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:133
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:122
|
||||
msgid "User type (Primary/Auxiliary)"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:43
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:42
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:50
|
||||
msgid "Username"
|
||||
msgstr "ユーザー名"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:276
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:264
|
||||
msgid "Vendor (regex)"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:114
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:103
|
||||
msgid "Verify all connection with SSL"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:194
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:182
|
||||
msgid "Workaround for buggy firmware"
|
||||
msgstr ""
|
||||
|
||||
@@ -525,18 +552,21 @@ msgstr "syslog へ書き込み"
|
||||
msgid "Write to syslog and execute notify command"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:119
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:111
|
||||
msgid "chroot"
|
||||
msgstr "chroot"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:171
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:159
|
||||
msgid "install drivers"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:75
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor_admin.js:20
|
||||
msgid "upsmon drops privileges to this user"
|
||||
msgstr ""
|
||||
|
||||
#~ msgid "Grant UCI access for luci-app-nut"
|
||||
#~ msgstr "luci-app-nutにUCIアクセスを許可"
|
||||
|
||||
#~ msgid "Communications restored message"
|
||||
#~ msgstr "通信回復時のメッセージ"
|
||||
|
||||
|
||||
@@ -12,7 +12,7 @@ msgstr ""
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
"X-Generator: Weblate 2026.7.dev0\n"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:254
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:242
|
||||
msgid "Additional Shutdown Time(s)"
|
||||
msgstr "추가 시스템 종료 시간"
|
||||
|
||||
@@ -25,7 +25,7 @@ msgid "Allowed actions"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_cgi.js:21
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:26
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:25
|
||||
msgid "As configured by NUT"
|
||||
msgstr "NUT에 의해 설정됨"
|
||||
|
||||
@@ -37,43 +37,43 @@ msgstr "보조(Auxiliary)"
|
||||
msgid "Auxiliary (Deprecated)"
|
||||
msgstr "슬레이브 (권장되지 않음)"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:190
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:178
|
||||
msgid "Bytes to read from interrupt pipe"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:110
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:99
|
||||
msgid "CA Certificate path"
|
||||
msgstr "CA 인증서 경로"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:111
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:103
|
||||
msgid "Certificate file (SSL)"
|
||||
msgstr "인증서 파일(SSL)"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_cgi.js:36
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_cgi_admin.js:17
|
||||
msgid "Control UPS via CGI"
|
||||
msgstr "CGI를 통한 UPS 제어"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:124
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:113
|
||||
msgid "Custom notification message for message type"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:104
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:93
|
||||
msgid "Deadtime"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:126
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:118
|
||||
msgid "Default for UPSes without this field."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:217
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:205
|
||||
msgid "Delay for kill power command"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:226
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:214
|
||||
msgid "Delay to power on UPS if power returns after kill power"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:167
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:155
|
||||
msgid "Description (Display)"
|
||||
msgstr "설명 (디스플레이)"
|
||||
|
||||
@@ -81,46 +81,46 @@ msgstr "설명 (디스플레이)"
|
||||
msgid "Display name"
|
||||
msgstr "디스플레이 이름"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:209
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:197
|
||||
msgid "Do not lock port when starting driver"
|
||||
msgstr "드라이버 시작할 때 포트 잠그지 않음"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:170
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:158
|
||||
msgid "Driver"
|
||||
msgstr "드라이버"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:154
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:142
|
||||
msgid "Driver Configuration"
|
||||
msgstr "드라이버 구성"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:116
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:108
|
||||
msgid "Driver Global Settings"
|
||||
msgstr "드라이버 전역 설정"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:122
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:114
|
||||
msgid "Driver Path"
|
||||
msgstr "드라이버 경로"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:250
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:238
|
||||
msgid "Driver Shutdown Order"
|
||||
msgstr "드라이버 종료 순서"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:145
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:282
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:137
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:270
|
||||
msgid "Driver waits for data to be consumed by upsd before publishing more."
|
||||
msgstr ""
|
||||
"드라이버는 더 많은 데이터를 게시하기 전에 upsd가 데이터를 사용할 때까지 기다"
|
||||
"립니다."
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:97
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server_admin.js:20
|
||||
msgid "Drop privileges to this user"
|
||||
msgstr "이 사용자에 대한 권한 삭제"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_cgi.js:41
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_cgi_admin.js:22
|
||||
msgid "Enable"
|
||||
msgstr "활성화"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:178
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:166
|
||||
msgid ""
|
||||
"Enables a hotplug script that makes all ttyUSB devices (e.g. serial USB) "
|
||||
"group read-write as user %s"
|
||||
@@ -134,23 +134,29 @@ msgstr ""
|
||||
msgid "Forced Shutdown"
|
||||
msgstr "강제 시스템 종료"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:71
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:70
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor_admin.js:16
|
||||
msgid "Global Settings"
|
||||
msgstr "전역 설정"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_cgi.js:15
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_cgi_admin.js:15
|
||||
msgid "Go to NUT CGI"
|
||||
msgstr "NUT CGI 바로가기"
|
||||
|
||||
#: applications/luci-app-nut/root/usr/share/rpcd/acl.d/luci-app-nut.json:15
|
||||
msgid "Grant admin UCI access for luci-app-nut"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/root/usr/share/rpcd/acl.d/luci-app-nut.json:3
|
||||
msgid "Grant UCI access for luci-app-nut"
|
||||
msgstr "luci-app-nut의 UCI 접근 권한 부여"
|
||||
msgid "Grant limited UCI read access for luci-app-nut"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_cgi.js:17
|
||||
msgid "Host"
|
||||
msgstr "호스트"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:100
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:89
|
||||
msgid "Host Sync"
|
||||
msgstr ""
|
||||
|
||||
@@ -158,7 +164,7 @@ msgstr ""
|
||||
msgid "Hostname or IP address"
|
||||
msgstr "호스트 이름 또는 IP 주소"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:29
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:28
|
||||
msgid "Hostname or address of UPS"
|
||||
msgstr "UPS의 호스트 이름 또는 주소"
|
||||
|
||||
@@ -166,7 +172,7 @@ msgstr "UPS의 호스트 이름 또는 주소"
|
||||
msgid "IP Address"
|
||||
msgstr "IP 주소"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:171
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:159
|
||||
msgid "If this list is empty you need to %s"
|
||||
msgstr ""
|
||||
|
||||
@@ -174,7 +180,7 @@ msgstr ""
|
||||
msgid "Ignore"
|
||||
msgstr "무시"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:182
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:170
|
||||
msgid "Ignore Low Battery"
|
||||
msgstr "저전압 무시"
|
||||
|
||||
@@ -182,19 +188,19 @@ msgstr "저전압 무시"
|
||||
msgid "Instant commands"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:186
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:174
|
||||
msgid "Interrupt Only"
|
||||
msgstr "인터럽트 전용"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:190
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:178
|
||||
msgid "Interrupt Size"
|
||||
msgstr "인터럽트 크기"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:203
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:191
|
||||
msgid "Manufacturer (Display)"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:194
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:182
|
||||
msgid "Max USB HID Length Reported"
|
||||
msgstr ""
|
||||
|
||||
@@ -202,47 +208,55 @@ msgstr ""
|
||||
msgid "Maximum Age of Data"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:130
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:122
|
||||
msgid "Maximum Retries"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:126
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:198
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:118
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:186
|
||||
msgid "Maximum Start Delay"
|
||||
msgstr "최대 시작 지연 시간"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:105
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:97
|
||||
msgid "Maximum connections"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:130
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:122
|
||||
msgid "Maximum number of times to try starting a driver."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:140
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:132
|
||||
msgid "Maximum time in seconds between refresh of UPS status"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:78
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:74
|
||||
msgid "Minimum required number or power supplies"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:206
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:194
|
||||
msgid "Model (Display)"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_cgi.js:13
|
||||
#: applications/luci-app-nut/root/usr/share/luci/menu.d/luci-app-nut.json:42
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_cgi_admin.js:13
|
||||
msgid "NUT CGI"
|
||||
msgstr "NUT CGI"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:68
|
||||
#: applications/luci-app-nut/root/usr/share/luci/menu.d/luci-app-nut.json:30
|
||||
#: applications/luci-app-nut/root/usr/share/luci/menu.d/luci-app-nut.json:100
|
||||
msgid "NUT CGI - admin"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/root/usr/share/luci/menu.d/luci-app-nut.json:85
|
||||
msgid "NUT CGI - main"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:67
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor_admin.js:13
|
||||
msgid "NUT Monitor"
|
||||
msgstr "NUT 모니터"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:42
|
||||
#: applications/luci-app-nut/root/usr/share/luci/menu.d/luci-app-nut.json:18
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server_admin.js:13
|
||||
msgid "NUT Server"
|
||||
msgstr "NUT 서버"
|
||||
|
||||
@@ -250,7 +264,23 @@ msgstr "NUT 서버"
|
||||
msgid "NUT Users"
|
||||
msgstr "NUT 사용자"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:26
|
||||
#: applications/luci-app-nut/root/usr/share/luci/menu.d/luci-app-nut.json:69
|
||||
msgid "NUT monitor - admin"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/root/usr/share/luci/menu.d/luci-app-nut.json:54
|
||||
msgid "NUT monitor - main"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/root/usr/share/luci/menu.d/luci-app-nut.json:38
|
||||
msgid "NUT server - admin"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/root/usr/share/luci/menu.d/luci-app-nut.json:23
|
||||
msgid "NUT server - main"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:25
|
||||
msgid "Name of UPS"
|
||||
msgstr "UPS 이름"
|
||||
|
||||
@@ -259,59 +289,62 @@ msgid "Network UPS Tools"
|
||||
msgstr "네트워크 UPS 도구"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_cgi.js:14
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_cgi_admin.js:14
|
||||
msgid "Network UPS Tools CGI Configuration"
|
||||
msgstr "네트워크 UPS 도구의 CGI 인터페이스를 설정합니다"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:69
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:68
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor_admin.js:14
|
||||
msgid "Network UPS Tools Monitoring Configuration"
|
||||
msgstr "네트워크 UPS 도구의 모니터링 서비스를 설정합니다"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:43
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server_admin.js:14
|
||||
msgid "Network UPS Tools Server Configuration"
|
||||
msgstr "네트워크 UPS 도구의 서버를 설정합니다"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:209
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:197
|
||||
msgid "No Lock"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:213
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:201
|
||||
msgid "No low/high voltage transfer OIDs"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:127
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:116
|
||||
msgid "Notification flags"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:119
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:108
|
||||
msgid "Notifications settings"
|
||||
msgstr "알림 설정"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:87
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor_admin.js:23
|
||||
msgid "Notify command"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:217
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:205
|
||||
msgid "Off Delay(s)"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:226
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:214
|
||||
msgid "On Delay(s)"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:46
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:45
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:53
|
||||
msgid "Password"
|
||||
msgstr "암호"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:110
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:99
|
||||
msgid "Path containing ca certificates to match against host certificate"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:122
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:114
|
||||
msgid "Path to drivers (instead of default)"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:101
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server_admin.js:24
|
||||
msgid "Path to state file"
|
||||
msgstr ""
|
||||
|
||||
@@ -319,30 +352,30 @@ msgstr ""
|
||||
msgid "Period after which data is considered stale"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:140
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:132
|
||||
msgid "Poll Interval"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:90
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:79
|
||||
msgid "Poll frequency"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:95
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:84
|
||||
msgid "Poll frequency alert"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:235
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:223
|
||||
msgid "Polling Frequency(s)"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_cgi.js:28
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:33
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:32
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:83
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:240
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:228
|
||||
msgid "Port"
|
||||
msgstr "포트"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:38
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:37
|
||||
msgid "Power value"
|
||||
msgstr ""
|
||||
|
||||
@@ -354,15 +387,15 @@ msgstr "주(Primary)"
|
||||
msgid "Primary (Deprecated)"
|
||||
msgstr "마스터 (권장되지 않음)"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:244
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:232
|
||||
msgid "Product (regex)"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:114
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:103
|
||||
msgid "Require SSL and make sure server CN matches hostname"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:135
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:127
|
||||
msgid "Retry Delay"
|
||||
msgstr ""
|
||||
|
||||
@@ -370,49 +403,48 @@ msgstr ""
|
||||
msgid "Role"
|
||||
msgstr "역할"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:119
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:111
|
||||
msgid "Run drivers in a chroot(2) environment"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:75
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:97
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:149
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor_admin.js:20
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server_admin.js:20
|
||||
msgid "RunAs User"
|
||||
msgstr "실행 사용자"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:163
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:151
|
||||
msgid "SNMP Community"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:260
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:248
|
||||
msgid "SNMP retries"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:264
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:252
|
||||
msgid "SNMP timeout(s)"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:268
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:256
|
||||
msgid "SNMP version"
|
||||
msgstr "SNMP 버전"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:270
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:258
|
||||
msgid "SNMPv1"
|
||||
msgstr "SNMPv1"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:271
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:259
|
||||
msgid "SNMPv2c"
|
||||
msgstr "SNMPv2c"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:272
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:260
|
||||
msgid "SNMPv3"
|
||||
msgstr "SNMPv3"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:257
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:245
|
||||
msgid "Serial Number"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:177
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:165
|
||||
msgid "Set USB serial port permissions"
|
||||
msgstr ""
|
||||
|
||||
@@ -420,49 +452,50 @@ msgstr ""
|
||||
msgid "Set variables"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:83
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor_admin.js:26
|
||||
msgid "Shutdown command"
|
||||
msgstr "시스템 종료 명령"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:145
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:282
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:137
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:270
|
||||
msgid "Synchronous Communication"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:155
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:143
|
||||
msgid "The name of this section will be used as UPS name elsewhere"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:167
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:203
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:206
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:257
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:155
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:191
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:194
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:245
|
||||
msgid ""
|
||||
"This is passed through to the driver, so make sure your driver supports this "
|
||||
"option"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:135
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:127
|
||||
msgid "Time in seconds between driver start retry attempts."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:198
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:186
|
||||
msgid "Time in seconds that upsdrvctl will wait for driver to finish starting"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:142
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:131
|
||||
msgid "UPS Auxiliary (Deprecated)"
|
||||
msgstr "UPS 슬레이브 (권장되지 않음)"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:130
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:119
|
||||
msgid "UPS Monitor User Settings"
|
||||
msgstr "UPS 모니터 사용자 설정"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:139
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:128
|
||||
msgid "UPS Primary (Deprecated)"
|
||||
msgstr "UPS 마스터 (권장되지 않음)"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:89
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server_admin.js:17
|
||||
msgid "UPS Server Global Settings"
|
||||
msgstr "UPS 서버 전역 설정"
|
||||
|
||||
@@ -470,19 +503,19 @@ msgstr "UPS 서버 전역 설정"
|
||||
msgid "UPS name"
|
||||
msgstr "UPS 이름"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:159
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:147
|
||||
msgid "USB Bus(es) (regex)"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:247
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:235
|
||||
msgid "USB Product Id"
|
||||
msgstr "USB 제품 ID"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:279
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:267
|
||||
msgid "USB Vendor Id"
|
||||
msgstr "USB 벤더 ID"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:57
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:56
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:28
|
||||
msgid "Unable to run ldd: %s"
|
||||
msgstr ""
|
||||
@@ -492,30 +525,24 @@ msgid ""
|
||||
"Use %s to see full list of commands your UPS supports (requires %s package)"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:149
|
||||
msgid ""
|
||||
"User as which to execute driver; requires device file accessed by driver to "
|
||||
"be read-write for that user."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:133
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:122
|
||||
msgid "User type (Primary/Auxiliary)"
|
||||
msgstr "사용자 유형 (주/보조)"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:43
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:42
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:50
|
||||
msgid "Username"
|
||||
msgstr "사용자 이름"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:276
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:264
|
||||
msgid "Vendor (regex)"
|
||||
msgstr "벤더 (정규식)"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:114
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:103
|
||||
msgid "Verify all connection with SSL"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:194
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:182
|
||||
msgid "Workaround for buggy firmware"
|
||||
msgstr ""
|
||||
|
||||
@@ -527,18 +554,21 @@ msgstr ""
|
||||
msgid "Write to syslog and execute notify command"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:119
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:111
|
||||
msgid "chroot"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:171
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:159
|
||||
msgid "install drivers"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:75
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor_admin.js:20
|
||||
msgid "upsmon drops privileges to this user"
|
||||
msgstr ""
|
||||
|
||||
#~ msgid "Grant UCI access for luci-app-nut"
|
||||
#~ msgstr "luci-app-nut의 UCI 접근 권한 부여"
|
||||
|
||||
#~ msgid "UPS Monitor User Settings)"
|
||||
#~ msgstr "UPS 모니터 사용자 설정"
|
||||
|
||||
|
||||
@@ -10,7 +10,7 @@ msgstr ""
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
"X-Generator: Weblate 5.17.1\n"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:254
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:242
|
||||
msgid "Additional Shutdown Time(s)"
|
||||
msgstr "ເວລາປິດເຄື່ອງເພີ່ມເຕີມ (ວິນາທີ)"
|
||||
|
||||
@@ -23,7 +23,7 @@ msgid "Allowed actions"
|
||||
msgstr "ການກະທຳທີ່ອະນຸຍາດ"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_cgi.js:21
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:26
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:25
|
||||
msgid "As configured by NUT"
|
||||
msgstr "ຕາມທີ່ຕັ້ງຄ່າໄວ້ໂດຍ NUT"
|
||||
|
||||
@@ -35,43 +35,43 @@ msgstr "ສຳຮອງ"
|
||||
msgid "Auxiliary (Deprecated)"
|
||||
msgstr "ສຳຮອງ (ບໍ່ແນະນຳໃຫ້ໃຊ້)"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:190
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:178
|
||||
msgid "Bytes to read from interrupt pipe"
|
||||
msgstr "ຈຳນວນໄບຕ໌ທີ່ຈະອ່ານຈາກທໍ່ສົ່ງຂໍ້ມູນຂັດຈັງຫວະ"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:110
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:99
|
||||
msgid "CA Certificate path"
|
||||
msgstr "ເສັ້ນທາງໄຟລ໌ໃບຢັ້ງຢືນ CA"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:111
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:103
|
||||
msgid "Certificate file (SSL)"
|
||||
msgstr "ໄຟລ໌ໃບຢັ້ງຢືນ (SSL)"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_cgi.js:36
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_cgi_admin.js:17
|
||||
msgid "Control UPS via CGI"
|
||||
msgstr "ຄວບຄຸມ UPS ຜ່ານ CGI"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:124
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:113
|
||||
msgid "Custom notification message for message type"
|
||||
msgstr "ຂໍ້ຄວາມແຈ້ງເຕືອນແບບກຳນົດເອງສຳລັບປະເພດຂໍ້ຄວາມ"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:104
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:93
|
||||
msgid "Deadtime"
|
||||
msgstr "ເວລາຕັດການເຊື່ອມຕໍ່ (Deadtime)"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:126
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:118
|
||||
msgid "Default for UPSes without this field."
|
||||
msgstr "ຄ່າເລີ່ມຕົ້ນສຳລັບ UPS ທີ່ບໍ່ມີຊ່ອງຂໍ້ມູນນີ້."
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:217
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:205
|
||||
msgid "Delay for kill power command"
|
||||
msgstr "ເວລາໜ່ວງສຳລັບຄຳສັ່ງຕັດໄຟ"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:226
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:214
|
||||
msgid "Delay to power on UPS if power returns after kill power"
|
||||
msgstr "ເວລາໜ່ວງສຳລັບການເປີດ UPS ຖ້າໄຟກັບມາຫຼັງຈາກການຕັດໄຟ"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:167
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:155
|
||||
msgid "Description (Display)"
|
||||
msgstr "ຄຳອະທິບາຍ (ສຳລັບສະແດງຜົນ)"
|
||||
|
||||
@@ -79,44 +79,44 @@ msgstr "ຄຳອະທິບາຍ (ສຳລັບສະແດງຜົນ)"
|
||||
msgid "Display name"
|
||||
msgstr "ຊື່ສະແດງຜົນ"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:209
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:197
|
||||
msgid "Do not lock port when starting driver"
|
||||
msgstr "ບໍ່ຕ້ອງລັອກພອດເວລາເລີ່ມການເຮັດວຽກຂອງໄດຣເວີ"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:170
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:158
|
||||
msgid "Driver"
|
||||
msgstr "ໄດຣເວີ"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:154
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:142
|
||||
msgid "Driver Configuration"
|
||||
msgstr "ການຕັ້ງຄ່າໄດຣເວີ"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:116
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:108
|
||||
msgid "Driver Global Settings"
|
||||
msgstr "ການຕັ້ງຄ່າທົ່ວໄປຂອງໄດຣເວີ"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:122
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:114
|
||||
msgid "Driver Path"
|
||||
msgstr "ທີ່ຢູ່ໄດຣເວີ (Path)"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:250
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:238
|
||||
msgid "Driver Shutdown Order"
|
||||
msgstr "ລຳດັບການປິດໄດຣເວີ"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:145
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:282
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:137
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:270
|
||||
msgid "Driver waits for data to be consumed by upsd before publishing more."
|
||||
msgstr "ໄດຣເວີຈະລໍຖ້າໃຫ້ upsd ອ່ານຂໍ້ມູນໄປກ່ອນ ຈຶ່ງຈະສົ່ງຂໍ້ມູນໃໝ່."
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:97
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server_admin.js:20
|
||||
msgid "Drop privileges to this user"
|
||||
msgstr "ຫຼຸດສິດການໃຊ້ງານໃຫ້ເປັນຜູ້ໃຊ້ນີ້"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_cgi.js:41
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_cgi_admin.js:22
|
||||
msgid "Enable"
|
||||
msgstr "ເປີດໃຊ້ງານ"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:178
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:166
|
||||
msgid ""
|
||||
"Enables a hotplug script that makes all ttyUSB devices (e.g. serial USB) "
|
||||
"group read-write as user %s"
|
||||
@@ -132,23 +132,29 @@ msgstr "ດຳເນີນການຄຳສັ່ງແຈ້ງເຕືອນ
|
||||
msgid "Forced Shutdown"
|
||||
msgstr "ບັງຄັບປິດເຄື່ອງ"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:71
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:70
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor_admin.js:16
|
||||
msgid "Global Settings"
|
||||
msgstr "ການຕັ້ງຄ່າທົ່ວໄປ"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_cgi.js:15
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_cgi_admin.js:15
|
||||
msgid "Go to NUT CGI"
|
||||
msgstr "ໄປທີ່ NUT CGI"
|
||||
|
||||
#: applications/luci-app-nut/root/usr/share/rpcd/acl.d/luci-app-nut.json:15
|
||||
msgid "Grant admin UCI access for luci-app-nut"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/root/usr/share/rpcd/acl.d/luci-app-nut.json:3
|
||||
msgid "Grant UCI access for luci-app-nut"
|
||||
msgstr "ອະນຸຍາດການເຂົ້າເຖິງ UCI ສຳລັບ luci-app-nut"
|
||||
msgid "Grant limited UCI read access for luci-app-nut"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_cgi.js:17
|
||||
msgid "Host"
|
||||
msgstr "ໂຮສ (Host)"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:100
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:89
|
||||
msgid "Host Sync"
|
||||
msgstr "ການຊິງໂຄຣໄນໂຮສ (Host Sync)"
|
||||
|
||||
@@ -156,7 +162,7 @@ msgstr "ການຊິງໂຄຣໄນໂຮສ (Host Sync)"
|
||||
msgid "Hostname or IP address"
|
||||
msgstr "ຊື່ໂຮສ ຫຼື ທີ່ຢູ່ IP"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:29
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:28
|
||||
msgid "Hostname or address of UPS"
|
||||
msgstr "ຊື່ໂຮສ ຫຼື ທີ່ຢູ່ຂອງ UPS"
|
||||
|
||||
@@ -164,7 +170,7 @@ msgstr "ຊື່ໂຮສ ຫຼື ທີ່ຢູ່ຂອງ UPS"
|
||||
msgid "IP Address"
|
||||
msgstr "ທີ່ຢູ່ IP"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:171
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:159
|
||||
msgid "If this list is empty you need to %s"
|
||||
msgstr "ຖ້າລາຍການນີ້ຫວ່າງເປົ່າ ເຈົ້າຈຳເປັນຕ້ອງ %s"
|
||||
|
||||
@@ -172,7 +178,7 @@ msgstr "ຖ້າລາຍການນີ້ຫວ່າງເປົ່າ ເ
|
||||
msgid "Ignore"
|
||||
msgstr "ລະເລີຍ"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:182
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:170
|
||||
msgid "Ignore Low Battery"
|
||||
msgstr "ລະເລີຍສະຖານະແບັດເຕີຣີຕໍ່າ"
|
||||
|
||||
@@ -180,19 +186,19 @@ msgstr "ລະເລີຍສະຖານະແບັດເຕີຣີຕໍ່
|
||||
msgid "Instant commands"
|
||||
msgstr "ຄຳສັ່ງທັນທີ"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:186
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:174
|
||||
msgid "Interrupt Only"
|
||||
msgstr "ສະເພາະ Interrupt"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:190
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:178
|
||||
msgid "Interrupt Size"
|
||||
msgstr "ຂະໜາດ Interrupt"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:203
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:191
|
||||
msgid "Manufacturer (Display)"
|
||||
msgstr "ຜູ້ຜະລິດ (ສຳລັບສະແດງຜົນ)"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:194
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:182
|
||||
msgid "Max USB HID Length Reported"
|
||||
msgstr "ຄວາມຍາວສູງສຸດຂອງ USB HID ທີ່ລາຍງານ"
|
||||
|
||||
@@ -200,47 +206,55 @@ msgstr "ຄວາມຍາວສູງສຸດຂອງ USB HID ທີ່ລາ
|
||||
msgid "Maximum Age of Data"
|
||||
msgstr "ອາຍຸຂໍ້ມູນສູງສຸດ"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:130
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:122
|
||||
msgid "Maximum Retries"
|
||||
msgstr "ຈຳນວນຄັ້ງທີ່ລອງໃໝ່ສູງສຸດ"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:126
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:198
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:118
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:186
|
||||
msgid "Maximum Start Delay"
|
||||
msgstr "ເວລາໜ່ວງໃນການເລີ່ມຕົ້ນສູງສຸດ"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:105
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:97
|
||||
msgid "Maximum connections"
|
||||
msgstr "ຈຳນວນການເຊື່ອມຕໍ່ສູງສຸດ"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:130
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:122
|
||||
msgid "Maximum number of times to try starting a driver."
|
||||
msgstr "ຈຳນວນຄັ້ງສູງສຸດທີ່ຈະລອງເລີ່ມຕົ້ນໄດຣເວີ."
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:140
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:132
|
||||
msgid "Maximum time in seconds between refresh of UPS status"
|
||||
msgstr "ເວລາສູງສຸດ (ວິນາທີ) ລະຫວ່າງການຣີເຟຣຊສະຖານະ UPS"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:78
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:74
|
||||
msgid "Minimum required number or power supplies"
|
||||
msgstr "ຈຳນວນແຫຼ່ງຈ່າຍໄຟທີ່ຕ້ອງການຂັ້ນຕໍ່າ"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:206
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:194
|
||||
msgid "Model (Display)"
|
||||
msgstr "ຮຸ່ນ (ສຳລັບສະແດງຜົນ)"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_cgi.js:13
|
||||
#: applications/luci-app-nut/root/usr/share/luci/menu.d/luci-app-nut.json:42
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_cgi_admin.js:13
|
||||
msgid "NUT CGI"
|
||||
msgstr "NUT CGI"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:68
|
||||
#: applications/luci-app-nut/root/usr/share/luci/menu.d/luci-app-nut.json:30
|
||||
#: applications/luci-app-nut/root/usr/share/luci/menu.d/luci-app-nut.json:100
|
||||
msgid "NUT CGI - admin"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/root/usr/share/luci/menu.d/luci-app-nut.json:85
|
||||
msgid "NUT CGI - main"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:67
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor_admin.js:13
|
||||
msgid "NUT Monitor"
|
||||
msgstr "NUT Monitor"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:42
|
||||
#: applications/luci-app-nut/root/usr/share/luci/menu.d/luci-app-nut.json:18
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server_admin.js:13
|
||||
msgid "NUT Server"
|
||||
msgstr "NUT Server"
|
||||
|
||||
@@ -248,7 +262,23 @@ msgstr "NUT Server"
|
||||
msgid "NUT Users"
|
||||
msgstr "ຜູ້ໃຊ້ NUT"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:26
|
||||
#: applications/luci-app-nut/root/usr/share/luci/menu.d/luci-app-nut.json:69
|
||||
msgid "NUT monitor - admin"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/root/usr/share/luci/menu.d/luci-app-nut.json:54
|
||||
msgid "NUT monitor - main"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/root/usr/share/luci/menu.d/luci-app-nut.json:38
|
||||
msgid "NUT server - admin"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/root/usr/share/luci/menu.d/luci-app-nut.json:23
|
||||
msgid "NUT server - main"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:25
|
||||
msgid "Name of UPS"
|
||||
msgstr "ຊື່ຂອງ UPS"
|
||||
|
||||
@@ -257,59 +287,62 @@ msgid "Network UPS Tools"
|
||||
msgstr "Network UPS Tools"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_cgi.js:14
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_cgi_admin.js:14
|
||||
msgid "Network UPS Tools CGI Configuration"
|
||||
msgstr "ການຕັ້ງຄ່າ Network UPS Tools CGI"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:69
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:68
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor_admin.js:14
|
||||
msgid "Network UPS Tools Monitoring Configuration"
|
||||
msgstr "ການຕັ້ງຄ່າການຕິດຕາມ Network UPS Tools"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:43
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server_admin.js:14
|
||||
msgid "Network UPS Tools Server Configuration"
|
||||
msgstr "ການຕັ້ງຄ່າເຊີບເວີ Network UPS Tools"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:209
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:197
|
||||
msgid "No Lock"
|
||||
msgstr "ບໍ່ລັອກ"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:213
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:201
|
||||
msgid "No low/high voltage transfer OIDs"
|
||||
msgstr "ບໍ່ມີ OID ການໂອນຍ້າຍແຮງດັນຕໍ່າ/ສູງ"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:127
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:116
|
||||
msgid "Notification flags"
|
||||
msgstr "ທຸງການແຈ້ງເຕືອນ"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:119
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:108
|
||||
msgid "Notifications settings"
|
||||
msgstr "ການຕັ້ງຄ່າການແຈ້ງເຕືອນ"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:87
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor_admin.js:23
|
||||
msgid "Notify command"
|
||||
msgstr "ຄຳສັ່ງແຈ້ງເຕືອນ"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:217
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:205
|
||||
msgid "Off Delay(s)"
|
||||
msgstr "ເວລາໜ່ວງກ່ອນປິດ (ວິນາທີ)"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:226
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:214
|
||||
msgid "On Delay(s)"
|
||||
msgstr "ເວລາໜ່ວງກ່ອນເປີດ (ວິນາທີ)"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:46
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:45
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:53
|
||||
msgid "Password"
|
||||
msgstr "ລະຫັດຜ່ານ"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:110
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:99
|
||||
msgid "Path containing ca certificates to match against host certificate"
|
||||
msgstr "ເສັ້ນທາງທີ່ເກັບໄຟລ໌ໃບຢັ້ງຢືນ CA ເພື່ອກວດສອບກັບໃບຢັ້ງຢືນຂອງໂຮສ"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:122
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:114
|
||||
msgid "Path to drivers (instead of default)"
|
||||
msgstr "ທີ່ຢູ່ໄດຣເວີ (ໃຊ້ແທນຄ່າເລີ່ມຕົ້ນ)"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:101
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server_admin.js:24
|
||||
msgid "Path to state file"
|
||||
msgstr "ທີ່ຢູ່ໄຟລ໌ສະຖານະ"
|
||||
|
||||
@@ -317,30 +350,30 @@ msgstr "ທີ່ຢູ່ໄຟລ໌ສະຖານະ"
|
||||
msgid "Period after which data is considered stale"
|
||||
msgstr "ໄລຍະເວລາທີ່ຂໍ້ມູນຈະຖືກຖືວ່າເກົ່າ"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:140
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:132
|
||||
msgid "Poll Interval"
|
||||
msgstr "ໄລຍະຫ່າງການດຶງຂໍ້ມູນ (Poll Interval)"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:90
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:79
|
||||
msgid "Poll frequency"
|
||||
msgstr "ຄວາມຖີ່ການດຶງຂໍ້ມູນ"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:95
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:84
|
||||
msgid "Poll frequency alert"
|
||||
msgstr "ການແຈ້ງເຕືອນຄວາມຖີ່ການດຶງຂໍ້ມູນ"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:235
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:223
|
||||
msgid "Polling Frequency(s)"
|
||||
msgstr "ຄວາມຖີ່ການດຶງຂໍ້ມູນ (ວິນາທີ)"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_cgi.js:28
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:33
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:32
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:83
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:240
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:228
|
||||
msgid "Port"
|
||||
msgstr "ພອດ (Port)"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:38
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:37
|
||||
msgid "Power value"
|
||||
msgstr "ຄ່າພະລັງງານ"
|
||||
|
||||
@@ -352,15 +385,15 @@ msgstr "ຫຼັກ"
|
||||
msgid "Primary (Deprecated)"
|
||||
msgstr "ຫຼັກ (ບໍ່ແນະນຳໃຫ້ໃຊ້)"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:244
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:232
|
||||
msgid "Product (regex)"
|
||||
msgstr "ສິນຄ້າ (regex)"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:114
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:103
|
||||
msgid "Require SSL and make sure server CN matches hostname"
|
||||
msgstr "ຕ້ອງການ SSL ແລະ ກວດສອບໃຫ້ແນ່ໃຈວ່າ CN ຂອງເຊີບເວີຕົງກັບຊື່ໂຮສ"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:135
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:127
|
||||
msgid "Retry Delay"
|
||||
msgstr "ເວລາໜ່ວງໃນການລອງໃໝ່"
|
||||
|
||||
@@ -368,49 +401,48 @@ msgstr "ເວລາໜ່ວງໃນການລອງໃໝ່"
|
||||
msgid "Role"
|
||||
msgstr "ບົດບາດ"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:119
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:111
|
||||
msgid "Run drivers in a chroot(2) environment"
|
||||
msgstr "ລັນໄດຣເວີໃນສະພາບແວດລ້ອມ chroot(2)"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:75
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:97
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:149
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor_admin.js:20
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server_admin.js:20
|
||||
msgid "RunAs User"
|
||||
msgstr "ຜູ້ໃຊ້ທີ່ໃຊ້ລັນໂປຣແກຣມ"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:163
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:151
|
||||
msgid "SNMP Community"
|
||||
msgstr "SNMP Community"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:260
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:248
|
||||
msgid "SNMP retries"
|
||||
msgstr "ຈຳນວນຄັ້ງການລອງ SNMP ໃໝ່"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:264
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:252
|
||||
msgid "SNMP timeout(s)"
|
||||
msgstr "ເວລາໝົດອາຍຸ SNMP (ວິນາທີ)"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:268
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:256
|
||||
msgid "SNMP version"
|
||||
msgstr "ເວີຊັນ SNMP"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:270
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:258
|
||||
msgid "SNMPv1"
|
||||
msgstr "SNMPv1"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:271
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:259
|
||||
msgid "SNMPv2c"
|
||||
msgstr "SNMPv2c"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:272
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:260
|
||||
msgid "SNMPv3"
|
||||
msgstr "SNMPv3"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:257
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:245
|
||||
msgid "Serial Number"
|
||||
msgstr "ເລກລຳດັບ (Serial Number)"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:177
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:165
|
||||
msgid "Set USB serial port permissions"
|
||||
msgstr "ຕັ້ງຄ່າສິດການເຂົ້າເຖິງພອດ USB serial"
|
||||
|
||||
@@ -418,49 +450,50 @@ msgstr "ຕັ້ງຄ່າສິດການເຂົ້າເຖິງພອ
|
||||
msgid "Set variables"
|
||||
msgstr "ຕັ້ງຄ່າຕົວປ່ຽນ"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:83
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor_admin.js:26
|
||||
msgid "Shutdown command"
|
||||
msgstr "ຄຳສັ່ງປິດເຄື່ອງ"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:145
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:282
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:137
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:270
|
||||
msgid "Synchronous Communication"
|
||||
msgstr "ການສື່ສານແບບ Synchronous"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:155
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:143
|
||||
msgid "The name of this section will be used as UPS name elsewhere"
|
||||
msgstr "ຊື່ຂອງພາກນີ້ຈະຖືກໃຊ້ເປັນຊື່ UPS ໃນບ່ອນອື່ນໆ"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:167
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:203
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:206
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:257
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:155
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:191
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:194
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:245
|
||||
msgid ""
|
||||
"This is passed through to the driver, so make sure your driver supports this "
|
||||
"option"
|
||||
msgstr "ຄ່ານີ້ຈະຖືກສົ່ງຕໍ່ໃຫ້ໄດຣເວີ, ສະນັ້ນກວດສອບໃຫ້ແນ່ໃຈວ່າໄດຣເວີຂອງເຈົ້າຮອງຮັບຕົວເລືອກນີ້"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:135
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:127
|
||||
msgid "Time in seconds between driver start retry attempts."
|
||||
msgstr "ເວລາເປັນວິນາທີລະຫວ່າງການລອງເລີ່ມຕົ້ນໄດຣເວີໃໝ່."
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:198
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:186
|
||||
msgid "Time in seconds that upsdrvctl will wait for driver to finish starting"
|
||||
msgstr "ເວລາເປັນວິນາທີທີ່ upsdrvctl ຈະລໍຖ້າໃຫ້ໄດຣເວີເລີ່ມຕົ້ນເຮັດວຽກຈົນສຳເລັດ"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:142
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:131
|
||||
msgid "UPS Auxiliary (Deprecated)"
|
||||
msgstr "UPS ສຳຮອງ (ບໍ່ແນະນຳໃຫ້ໃຊ້)"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:130
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:119
|
||||
msgid "UPS Monitor User Settings"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:139
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:128
|
||||
msgid "UPS Primary (Deprecated)"
|
||||
msgstr "UPS ຫຼັກ (ບໍ່ແນະນຳໃຫ້ໃຊ້)"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:89
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server_admin.js:17
|
||||
msgid "UPS Server Global Settings"
|
||||
msgstr "ການຕັ້ງຄ່າທົ່ວໄປຂອງ UPS Server"
|
||||
|
||||
@@ -468,19 +501,19 @@ msgstr "ການຕັ້ງຄ່າທົ່ວໄປຂອງ UPS Server"
|
||||
msgid "UPS name"
|
||||
msgstr "ຊື່ UPS"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:159
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:147
|
||||
msgid "USB Bus(es) (regex)"
|
||||
msgstr "USB Bus (regex)"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:247
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:235
|
||||
msgid "USB Product Id"
|
||||
msgstr "USB Product Id"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:279
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:267
|
||||
msgid "USB Vendor Id"
|
||||
msgstr "USB Vendor Id"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:57
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:56
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:28
|
||||
msgid "Unable to run ldd: %s"
|
||||
msgstr "ບໍ່ສາມາດລັນ ldd ໄດ້: %s"
|
||||
@@ -490,30 +523,24 @@ msgid ""
|
||||
"Use %s to see full list of commands your UPS supports (requires %s package)"
|
||||
msgstr "ໃຊ້ %s ເພື່ອເບິ່ງລາຍການຄຳສັ່ງທັງໝົດທີ່ UPS ຂອງເຈົ້າຮອງຮັບ (ຕ້ອງການແພັກເກັດ %s)"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:149
|
||||
msgid ""
|
||||
"User as which to execute driver; requires device file accessed by driver to "
|
||||
"be read-write for that user."
|
||||
msgstr "ຜູ້ໃຊ້ທີ່ຈະໃຊ້ລັນໄດຣເວີ; ຕ້ອງຕັ້ງຄ່າໄຟລ໌ອຸປະກອນທີ່ໄດຣເວີເຂົ້າເຖິງໃຫ້ເປັນອ່ານ-ຂຽນໄດ້ສຳລັບຜູ້ໃຊ້ນັ້ນ."
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:133
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:122
|
||||
msgid "User type (Primary/Auxiliary)"
|
||||
msgstr "ປະເພດຜູ້ໃຊ້ (ຫຼັກ/ສຳຮອງ)"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:43
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:42
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:50
|
||||
msgid "Username"
|
||||
msgstr "ຊື່ຜູ້ໃຊ້"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:276
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:264
|
||||
msgid "Vendor (regex)"
|
||||
msgstr "ຜູ້ຂາຍ (regex)"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:114
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:103
|
||||
msgid "Verify all connection with SSL"
|
||||
msgstr "ກວດສອບທຸກການເຊື່ອມຕໍ່ດ້ວຍ SSL"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:194
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:182
|
||||
msgid "Workaround for buggy firmware"
|
||||
msgstr "ວິທີແກ້ໄຂບັນຫາສຳລັບເຟີມແວທີ່ມີຂໍ້ຜິດພາດ"
|
||||
|
||||
@@ -525,17 +552,26 @@ msgstr "ຂຽນລົງ syslog"
|
||||
msgid "Write to syslog and execute notify command"
|
||||
msgstr "ຂຽນລົງ syslog ແລະ ດຳເນີນການຄຳສັ່ງແຈ້ງເຕືອນ"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:119
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:111
|
||||
msgid "chroot"
|
||||
msgstr "chroot"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:171
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:159
|
||||
msgid "install drivers"
|
||||
msgstr "ຕິດຕັ້ງໄດຣເວີ"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:75
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor_admin.js:20
|
||||
msgid "upsmon drops privileges to this user"
|
||||
msgstr "upsmon ຈະຫຼຸດສິດການໃຊ້ງານໃຫ້ເປັນຜູ້ໃຊ້ນີ້"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "User as which to execute driver; requires device file accessed by driver "
|
||||
#~ "to be read-write for that user."
|
||||
#~ msgstr ""
|
||||
#~ "ຜູ້ໃຊ້ທີ່ຈະໃຊ້ລັນໄດຣເວີ; ຕ້ອງຕັ້ງຄ່າໄຟລ໌ອຸປະກອນທີ່ໄດຣເວີເຂົ້າເຖິງໃຫ້ເປັນອ່ານ-ຂຽນໄດ້ສຳລັບຜູ້ໃຊ້ນັ້ນ."
|
||||
|
||||
#~ msgid "Grant UCI access for luci-app-nut"
|
||||
#~ msgstr "ອະນຸຍາດການເຂົ້າເຖິງ UCI ສຳລັບ luci-app-nut"
|
||||
|
||||
#~ msgid "UPS Monitor User Settings)"
|
||||
#~ msgstr "ການຕັ້ງຄ່າຜູ້ໃຊ້ UPS Monitor"
|
||||
|
||||
@@ -13,7 +13,7 @@ msgstr ""
|
||||
"(n%100<10 || n%100>=20) ? 1 : 2);\n"
|
||||
"X-Generator: Weblate 2026.5.dev0\n"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:254
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:242
|
||||
msgid "Additional Shutdown Time(s)"
|
||||
msgstr "Papildomas/-i išjungimo laikas/-ai"
|
||||
|
||||
@@ -26,7 +26,7 @@ msgid "Allowed actions"
|
||||
msgstr "Leidžiami veiksmai"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_cgi.js:21
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:26
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:25
|
||||
msgid "As configured by NUT"
|
||||
msgstr "Taip, Kaip sukonfigūravo – „NUT“"
|
||||
|
||||
@@ -38,47 +38,47 @@ msgstr "Pagalbinis/-ė"
|
||||
msgid "Auxiliary (Deprecated)"
|
||||
msgstr "Pagalbinis (nebenaudojamas)"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:190
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:178
|
||||
msgid "Bytes to read from interrupt pipe"
|
||||
msgstr "Baitai, kuriuos reikia perskaityti iš pertraukimo vamzdelio"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:110
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:99
|
||||
msgid "CA Certificate path"
|
||||
msgstr "„CA sertifikato“ kelias"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:111
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:103
|
||||
msgid "Certificate file (SSL)"
|
||||
msgstr "Sertifikatų failas („SSL“)"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_cgi.js:36
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_cgi_admin.js:17
|
||||
msgid "Control UPS via CGI"
|
||||
msgstr ""
|
||||
"Valdyti nenutrūkstamo maitinimo šaltinį per – Tipine tinklo tarpuvartes; "
|
||||
"kompiuterijos sąsają"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:124
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:113
|
||||
msgid "Custom notification message for message type"
|
||||
msgstr "Pasirinktinė pranešimo žinutė, skirta žinutės tipui"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:104
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:93
|
||||
msgid "Deadtime"
|
||||
msgstr "„Deadtime“"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:126
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:118
|
||||
msgid "Default for UPSes without this field."
|
||||
msgstr "Numatyti nenutrūkstamo maitinimo šaltiniai, be šio lauko."
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:217
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:205
|
||||
msgid "Delay for kill power command"
|
||||
msgstr "Elektros sustabdymo atidėjimo komanda"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:226
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:214
|
||||
msgid "Delay to power on UPS if power returns after kill power"
|
||||
msgstr ""
|
||||
"Nenutrūkstamo maitinimo šaltinio elektros atidėjimas, jeigu elektra grįžta "
|
||||
"po jos nutrūkimo"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:167
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:155
|
||||
msgid "Description (Display)"
|
||||
msgstr "Aprašymas (Rodymas/-ti)"
|
||||
|
||||
@@ -86,45 +86,45 @@ msgstr "Aprašymas (Rodymas/-ti)"
|
||||
msgid "Display name"
|
||||
msgstr "Rodomasis pavadinimas/vardas"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:209
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:197
|
||||
msgid "Do not lock port when starting driver"
|
||||
msgstr "Neužrakinti prievado, kai pajungiama tvarkyklė"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:170
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:158
|
||||
msgid "Driver"
|
||||
msgstr "Tvarkyklė"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:154
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:142
|
||||
msgid "Driver Configuration"
|
||||
msgstr "Tvarkyklės konfigūracija"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:116
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:108
|
||||
msgid "Driver Global Settings"
|
||||
msgstr "Bendri tvarkyklės nustatymai"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:122
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:114
|
||||
msgid "Driver Path"
|
||||
msgstr "Tvarkyklės kelias"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:250
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:238
|
||||
msgid "Driver Shutdown Order"
|
||||
msgstr "Tvarkyklių išjungimo tvarka"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:145
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:282
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:137
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:270
|
||||
msgid "Driver waits for data to be consumed by upsd before publishing more."
|
||||
msgstr ""
|
||||
"Prieš paskelbdamas daugiau, tvarkyklė laukia, kol „upsd“ sunaudos duomenis."
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:97
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server_admin.js:20
|
||||
msgid "Drop privileges to this user"
|
||||
msgstr "Mesti/Šalinti šio naudotojo/vartotojo privilegijas"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_cgi.js:41
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_cgi_admin.js:22
|
||||
msgid "Enable"
|
||||
msgstr "Įjungti/Įgalinti"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:178
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:166
|
||||
msgid ""
|
||||
"Enables a hotplug script that makes all ttyUSB devices (e.g. serial USB) "
|
||||
"group read-write as user %s"
|
||||
@@ -141,23 +141,29 @@ msgstr "Vykdyti pranešimo komandą"
|
||||
msgid "Forced Shutdown"
|
||||
msgstr "Priverstas išjungimas"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:71
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:70
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor_admin.js:16
|
||||
msgid "Global Settings"
|
||||
msgstr "Pagrindiniai/Visuotiniai nustatymai"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_cgi.js:15
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_cgi_admin.js:15
|
||||
msgid "Go to NUT CGI"
|
||||
msgstr "Eiti į – „NUT CGI“"
|
||||
|
||||
#: applications/luci-app-nut/root/usr/share/rpcd/acl.d/luci-app-nut.json:15
|
||||
msgid "Grant admin UCI access for luci-app-nut"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/root/usr/share/rpcd/acl.d/luci-app-nut.json:3
|
||||
msgid "Grant UCI access for luci-app-nut"
|
||||
msgstr "Suteikti „UCI“ prieigą – „luci-app-nut“"
|
||||
msgid "Grant limited UCI read access for luci-app-nut"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_cgi.js:17
|
||||
msgid "Host"
|
||||
msgstr "Skleidėjas/Vedėjas"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:100
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:89
|
||||
msgid "Host Sync"
|
||||
msgstr "Skleidėjo/Vedėjo sinchronizavimas"
|
||||
|
||||
@@ -165,7 +171,7 @@ msgstr "Skleidėjo/Vedėjo sinchronizavimas"
|
||||
msgid "Hostname or IP address"
|
||||
msgstr "Įrenginio (t.y skleidėjo/vedėjo) pavadinimas arba IP adresas"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:29
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:28
|
||||
msgid "Hostname or address of UPS"
|
||||
msgstr ""
|
||||
"Nenutrūkstamo maitinimo šaltinio įrenginio (t.y skleidėjo/vedėjo) "
|
||||
@@ -175,7 +181,7 @@ msgstr ""
|
||||
msgid "IP Address"
|
||||
msgstr "IP adresas"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:171
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:159
|
||||
msgid "If this list is empty you need to %s"
|
||||
msgstr "Jei šis sąrašas yra tuščias, Jūs turite – „%s“"
|
||||
|
||||
@@ -183,7 +189,7 @@ msgstr "Jei šis sąrašas yra tuščias, Jūs turite – „%s“"
|
||||
msgid "Ignore"
|
||||
msgstr "Ignoruoti"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:182
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:170
|
||||
msgid "Ignore Low Battery"
|
||||
msgstr "Ignoruoti mažos baterijos/akumuliatoriaus būseną"
|
||||
|
||||
@@ -191,19 +197,19 @@ msgstr "Ignoruoti mažos baterijos/akumuliatoriaus būseną"
|
||||
msgid "Instant commands"
|
||||
msgstr "Akimirkos komandos"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:186
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:174
|
||||
msgid "Interrupt Only"
|
||||
msgstr "Tik pertraukimas"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:190
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:178
|
||||
msgid "Interrupt Size"
|
||||
msgstr "Pertraukimo dydis"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:203
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:191
|
||||
msgid "Manufacturer (Display)"
|
||||
msgstr "Gamintojas (Rodymas/-ti)"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:194
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:182
|
||||
msgid "Max USB HID Length Reported"
|
||||
msgstr "Praneštas maksimalus „USB HID“ ilgis"
|
||||
|
||||
@@ -211,51 +217,59 @@ msgstr "Praneštas maksimalus „USB HID“ ilgis"
|
||||
msgid "Maximum Age of Data"
|
||||
msgstr "Maksimalus duomenų amžius"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:130
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:122
|
||||
msgid "Maximum Retries"
|
||||
msgstr "Maksimalus pakartojimų/bandymų iš naujo skaičius"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:126
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:198
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:118
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:186
|
||||
msgid "Maximum Start Delay"
|
||||
msgstr "Maksimalus paleidimo/-sties atidėjimas"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:105
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:97
|
||||
msgid "Maximum connections"
|
||||
msgstr "Maksimalus prisijungimų skaičius"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:130
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:122
|
||||
msgid "Maximum number of times to try starting a driver."
|
||||
msgstr "Maksimalus bandymų paleisti tvarkyklę skaičius."
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:140
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:132
|
||||
msgid "Maximum time in seconds between refresh of UPS status"
|
||||
msgstr ""
|
||||
"Maksimalus laikas sekundėmis, tarp nenutrūkstamo maitinimo šaltinio būklės/"
|
||||
"būsenos atnaujinimo"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:78
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:74
|
||||
msgid "Minimum required number or power supplies"
|
||||
msgstr "Minimalus reikalingas skaičius arba maitinimo šaltiniai"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:206
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:194
|
||||
msgid "Model (Display)"
|
||||
msgstr "Modelis (Rodymas/-ti)"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_cgi.js:13
|
||||
#: applications/luci-app-nut/root/usr/share/luci/menu.d/luci-app-nut.json:42
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_cgi_admin.js:13
|
||||
msgid "NUT CGI"
|
||||
msgstr ""
|
||||
"(„NUT“) – Tinklo nenutrūkstamo maitinimo šaltinio įrankiai (tipinė tinklo "
|
||||
"tarpuvartės; kompiuterijos sąsaja („CGI“))"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:68
|
||||
#: applications/luci-app-nut/root/usr/share/luci/menu.d/luci-app-nut.json:30
|
||||
#: applications/luci-app-nut/root/usr/share/luci/menu.d/luci-app-nut.json:100
|
||||
msgid "NUT CGI - admin"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/root/usr/share/luci/menu.d/luci-app-nut.json:85
|
||||
msgid "NUT CGI - main"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:67
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor_admin.js:13
|
||||
msgid "NUT Monitor"
|
||||
msgstr "Tinklo nenutrūkstamo maitinimo šaltinio įrankiai (Monitorius)"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:42
|
||||
#: applications/luci-app-nut/root/usr/share/luci/menu.d/luci-app-nut.json:18
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server_admin.js:13
|
||||
msgid "NUT Server"
|
||||
msgstr "Tinklo nenutrūkstamo maitinimo šaltinio įrankiai (Serveris)"
|
||||
|
||||
@@ -263,7 +277,23 @@ msgstr "Tinklo nenutrūkstamo maitinimo šaltinio įrankiai (Serveris)"
|
||||
msgid "NUT Users"
|
||||
msgstr "„NUT“ naudotojai/vartotojai"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:26
|
||||
#: applications/luci-app-nut/root/usr/share/luci/menu.d/luci-app-nut.json:69
|
||||
msgid "NUT monitor - admin"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/root/usr/share/luci/menu.d/luci-app-nut.json:54
|
||||
msgid "NUT monitor - main"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/root/usr/share/luci/menu.d/luci-app-nut.json:38
|
||||
msgid "NUT server - admin"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/root/usr/share/luci/menu.d/luci-app-nut.json:23
|
||||
msgid "NUT server - main"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:25
|
||||
msgid "Name of UPS"
|
||||
msgstr "Nenutrūkstamo maitinimo šaltinio pavadinimas"
|
||||
|
||||
@@ -272,67 +302,70 @@ msgid "Network UPS Tools"
|
||||
msgstr "Tinklo nenutrūkstamo maitinimo šaltinio įrankiai"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_cgi.js:14
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_cgi_admin.js:14
|
||||
msgid "Network UPS Tools CGI Configuration"
|
||||
msgstr ""
|
||||
"Tinklo nenutrūkstamo maitinimo šaltinio įrankiai; tipinė tinklo tarpuvartės; "
|
||||
"kompiuterijos sąsajos konfigūracija"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:69
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:68
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor_admin.js:14
|
||||
msgid "Network UPS Tools Monitoring Configuration"
|
||||
msgstr ""
|
||||
"Tinklo nenutrūkstamo maitinimo šaltinio įrankių stebėjimo konfigūracija"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:43
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server_admin.js:14
|
||||
msgid "Network UPS Tools Server Configuration"
|
||||
msgstr ""
|
||||
"Tinklo nenutrūkstamo maitinimo šaltinio įrankiai; serverio konfigūracija"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:209
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:197
|
||||
msgid "No Lock"
|
||||
msgstr "Jokio užrakto"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:213
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:201
|
||||
msgid "No low/high voltage transfer OIDs"
|
||||
msgstr ""
|
||||
"Nėra žemos/aukštos įtampos perdavime; objektų atributikų identifikatorių "
|
||||
"(„OID“)"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:127
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:116
|
||||
msgid "Notification flags"
|
||||
msgstr "Pranešimo vėliavos"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:119
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:108
|
||||
msgid "Notifications settings"
|
||||
msgstr "Pranešimų nustatymai"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:87
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor_admin.js:23
|
||||
msgid "Notify command"
|
||||
msgstr "Pranešimo komanda"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:217
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:205
|
||||
msgid "Off Delay(s)"
|
||||
msgstr "Išjungimo atidėjimas/-ai"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:226
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:214
|
||||
msgid "On Delay(s)"
|
||||
msgstr "Įjungimo atidėjimas/-ai"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:46
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:45
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:53
|
||||
msgid "Password"
|
||||
msgstr "Slaptažodis"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:110
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:99
|
||||
msgid "Path containing ca certificates to match against host certificate"
|
||||
msgstr ""
|
||||
"Kelias, kuriame yra – „CA“ sertifikatai, atitinkantys skleidėjo/vedėjo "
|
||||
"sertifikatą"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:122
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:114
|
||||
msgid "Path to drivers (instead of default)"
|
||||
msgstr "Kelias į tvarkykles (vietoj numatyto)"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:101
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server_admin.js:24
|
||||
msgid "Path to state file"
|
||||
msgstr "Kelias į būsenos/būklės failą"
|
||||
|
||||
@@ -340,30 +373,30 @@ msgstr "Kelias į būsenos/būklės failą"
|
||||
msgid "Period after which data is considered stale"
|
||||
msgstr "Laikotarpis, po kurio duomenys yra laikomi pasenusiais"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:140
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:132
|
||||
msgid "Poll Interval"
|
||||
msgstr "Apklausos intervalas"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:90
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:79
|
||||
msgid "Poll frequency"
|
||||
msgstr "Apklausos dažnis"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:95
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:84
|
||||
msgid "Poll frequency alert"
|
||||
msgstr "Apklausos dažnio įspėjimas"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:235
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:223
|
||||
msgid "Polling Frequency(s)"
|
||||
msgstr "Apklausos dažnis (-iai)"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_cgi.js:28
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:33
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:32
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:83
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:240
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:228
|
||||
msgid "Port"
|
||||
msgstr "Prievadas"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:38
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:37
|
||||
msgid "Power value"
|
||||
msgstr "Galios reikšmė"
|
||||
|
||||
@@ -375,17 +408,17 @@ msgstr "Pirminis/Pagrindinis"
|
||||
msgid "Primary (Deprecated)"
|
||||
msgstr "Pirminis/Pagrindinis (nebenaudojamas)"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:244
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:232
|
||||
msgid "Product (regex)"
|
||||
msgstr "Produktas (reguliarusis reiškinys)"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:114
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:103
|
||||
msgid "Require SSL and make sure server CN matches hostname"
|
||||
msgstr ""
|
||||
"Reikalauti „SSL“ ir įsitikinti, kad serverio „CN“ sulygina įrenginio (t.y "
|
||||
"skleidėjo/vedėjo) pavadinimą"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:135
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:127
|
||||
msgid "Retry Delay"
|
||||
msgstr "Pakartojimo/Bandymo iš naujo atidėjimas"
|
||||
|
||||
@@ -393,49 +426,48 @@ msgstr "Pakartojimo/Bandymo iš naujo atidėjimas"
|
||||
msgid "Role"
|
||||
msgstr "Vaidmuo"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:119
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:111
|
||||
msgid "Run drivers in a chroot(2) environment"
|
||||
msgstr "Vykdyti tvarkykles „chroot(2)“ sąsajoje"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:75
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:97
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:149
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor_admin.js:20
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server_admin.js:20
|
||||
msgid "RunAs User"
|
||||
msgstr "Vykdyti kaip naudotojas/vartotojas"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:163
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:151
|
||||
msgid "SNMP Community"
|
||||
msgstr "„SNMP“ bendruomenė"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:260
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:248
|
||||
msgid "SNMP retries"
|
||||
msgstr "„SNMP“ bandymai iš naujo"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:264
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:252
|
||||
msgid "SNMP timeout(s)"
|
||||
msgstr "„SNMP“ pasibaigusios užklausos laikas (-ai)"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:268
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:256
|
||||
msgid "SNMP version"
|
||||
msgstr "„SNMP“ versija"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:270
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:258
|
||||
msgid "SNMPv1"
|
||||
msgstr "„SNMPv1“"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:271
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:259
|
||||
msgid "SNMPv2c"
|
||||
msgstr "„SNMPv2c“"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:272
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:260
|
||||
msgid "SNMPv3"
|
||||
msgstr "„SNMPv3“"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:257
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:245
|
||||
msgid "Serial Number"
|
||||
msgstr "Serijos numeris"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:177
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:165
|
||||
msgid "Set USB serial port permissions"
|
||||
msgstr "Nustatyti „USB“ nuoseklaus/-iojo prievado leidimus"
|
||||
|
||||
@@ -443,25 +475,25 @@ msgstr "Nustatyti „USB“ nuoseklaus/-iojo prievado leidimus"
|
||||
msgid "Set variables"
|
||||
msgstr "Nustatyti kintamuosius"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:83
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor_admin.js:26
|
||||
msgid "Shutdown command"
|
||||
msgstr "Išjungimo komanda"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:145
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:282
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:137
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:270
|
||||
msgid "Synchronous Communication"
|
||||
msgstr "Sinchroninė komunikacija"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:155
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:143
|
||||
msgid "The name of this section will be used as UPS name elsewhere"
|
||||
msgstr ""
|
||||
"Šio skyriaus pavadinimas bus naudojamas kaip nenutrūkstamo maitinimo "
|
||||
"šaltinio pavadinimas kitur"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:167
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:203
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:206
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:257
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:155
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:191
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:194
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:245
|
||||
msgid ""
|
||||
"This is passed through to the driver, so make sure your driver supports this "
|
||||
"option"
|
||||
@@ -469,30 +501,31 @@ msgstr ""
|
||||
"Tai yra perduodama tvarkyklei, todėl įsitikinkite, kad Jūsų tvarkyklė "
|
||||
"palaiko šią parinktį"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:135
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:127
|
||||
msgid "Time in seconds between driver start retry attempts."
|
||||
msgstr ""
|
||||
"Laikas sekundėmis, tarp tvarkyklės paleidimo/-sties pakartojimų/bandymų iš "
|
||||
"naujo."
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:198
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:186
|
||||
msgid "Time in seconds that upsdrvctl will wait for driver to finish starting"
|
||||
msgstr ""
|
||||
"Laikas sekundėmis, kurį „upsdrvctl“ lauks, kol tvarkyklė baigs pasikrauti"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:142
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:131
|
||||
msgid "UPS Auxiliary (Deprecated)"
|
||||
msgstr "Nenutrūkstamo maitinimo šaltinio pagalbinis (nebenaudojamas)"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:130
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:119
|
||||
msgid "UPS Monitor User Settings"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:139
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:128
|
||||
msgid "UPS Primary (Deprecated)"
|
||||
msgstr "Nenutrūkstamo maitinimo šaltinio pirminis/pagrindinis (nebenaudojamas)"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:89
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server_admin.js:17
|
||||
msgid "UPS Server Global Settings"
|
||||
msgstr "Visuotiniai nenutrūkstamo maitinimo šaltinio serverio nustatymai"
|
||||
|
||||
@@ -500,19 +533,19 @@ msgstr "Visuotiniai nenutrūkstamo maitinimo šaltinio serverio nustatymai"
|
||||
msgid "UPS name"
|
||||
msgstr "Nenutrūkstamo maitinimo šaltinio pavadinimas"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:159
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:147
|
||||
msgid "USB Bus(es) (regex)"
|
||||
msgstr "„USB“ (reguliarusis reiškinys)"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:247
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:235
|
||||
msgid "USB Product Id"
|
||||
msgstr "„USB“ produkto ID"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:279
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:267
|
||||
msgid "USB Vendor Id"
|
||||
msgstr "„USB“ pardavėjo/tiekėjo ID"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:57
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:56
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:28
|
||||
msgid "Unable to run ldd: %s"
|
||||
msgstr "Nepavyksta/Negalima paleisti – „ldd: %s“"
|
||||
@@ -524,33 +557,24 @@ msgstr ""
|
||||
"Naudokite – „%s“, kad pamatytumėte visą – nenutrūkstamo maitinimo šaltinio "
|
||||
"palaikomų komandų sąrašą (reikalingas – „%s“ paketas)"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:149
|
||||
msgid ""
|
||||
"User as which to execute driver; requires device file accessed by driver to "
|
||||
"be read-write for that user."
|
||||
msgstr ""
|
||||
"Naudotojas/Vartotojas, kuriam reikia vykdyti tvarkyklę; reikalauja, kad "
|
||||
"įrenginio failas, kurį pasiekia tvarkyklė, būtų skaitomas ir rašomas tam "
|
||||
"naudotojui/vartotojui."
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:133
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:122
|
||||
msgid "User type (Primary/Auxiliary)"
|
||||
msgstr "Naudotojo/Vartotojo tipas (pirminis/pagrindinis┃pagalbinis)"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:43
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:42
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:50
|
||||
msgid "Username"
|
||||
msgstr "Naudotojo/Vartotojo vardas (t.y. Slapyvardis)"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:276
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:264
|
||||
msgid "Vendor (regex)"
|
||||
msgstr "Pardavėjas/Tiekėjas (reguliarusis reiškinys)"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:114
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:103
|
||||
msgid "Verify all connection with SSL"
|
||||
msgstr "Patvirtinti visus prisijungimus su „SSL“"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:194
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:182
|
||||
msgid "Workaround for buggy firmware"
|
||||
msgstr "Klaidingos programinės įrangos laikinas apėjimas"
|
||||
|
||||
@@ -562,18 +586,29 @@ msgstr "Rašyti į „syslog“"
|
||||
msgid "Write to syslog and execute notify command"
|
||||
msgstr "Rašyti į – „syslog“ ir vykdyti komandą – „notify“"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:119
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:111
|
||||
msgid "chroot"
|
||||
msgstr "„chroot“"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:171
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:159
|
||||
msgid "install drivers"
|
||||
msgstr "įdiegti tvarkykles"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:75
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor_admin.js:20
|
||||
msgid "upsmon drops privileges to this user"
|
||||
msgstr "„upsmon“ atmeta šio naudotojo/vartotojo privilegijas"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "User as which to execute driver; requires device file accessed by driver "
|
||||
#~ "to be read-write for that user."
|
||||
#~ msgstr ""
|
||||
#~ "Naudotojas/Vartotojas, kuriam reikia vykdyti tvarkyklę; reikalauja, kad "
|
||||
#~ "įrenginio failas, kurį pasiekia tvarkyklė, būtų skaitomas ir rašomas tam "
|
||||
#~ "naudotojui/vartotojui."
|
||||
|
||||
#~ msgid "Grant UCI access for luci-app-nut"
|
||||
#~ msgstr "Suteikti „UCI“ prieigą – „luci-app-nut“"
|
||||
|
||||
#~ msgid "UPS Monitor User Settings)"
|
||||
#~ msgstr ""
|
||||
#~ "Nenutrūkstamo maitinimo šaltinio stebėjimo naudotojo/vartotojo nustatymai"
|
||||
|
||||
@@ -12,7 +12,7 @@ msgstr ""
|
||||
"Plural-Forms: nplurals=2; plural=n > 1;\n"
|
||||
"X-Generator: Weblate 3.11-dev\n"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:254
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:242
|
||||
msgid "Additional Shutdown Time(s)"
|
||||
msgstr ""
|
||||
|
||||
@@ -25,7 +25,7 @@ msgid "Allowed actions"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_cgi.js:21
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:26
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:25
|
||||
msgid "As configured by NUT"
|
||||
msgstr ""
|
||||
|
||||
@@ -37,43 +37,43 @@ msgstr ""
|
||||
msgid "Auxiliary (Deprecated)"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:190
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:178
|
||||
msgid "Bytes to read from interrupt pipe"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:110
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:99
|
||||
msgid "CA Certificate path"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:111
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:103
|
||||
msgid "Certificate file (SSL)"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_cgi.js:36
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_cgi_admin.js:17
|
||||
msgid "Control UPS via CGI"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:124
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:113
|
||||
msgid "Custom notification message for message type"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:104
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:93
|
||||
msgid "Deadtime"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:126
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:118
|
||||
msgid "Default for UPSes without this field."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:217
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:205
|
||||
msgid "Delay for kill power command"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:226
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:214
|
||||
msgid "Delay to power on UPS if power returns after kill power"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:167
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:155
|
||||
msgid "Description (Display)"
|
||||
msgstr ""
|
||||
|
||||
@@ -81,44 +81,44 @@ msgstr ""
|
||||
msgid "Display name"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:209
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:197
|
||||
msgid "Do not lock port when starting driver"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:170
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:158
|
||||
msgid "Driver"
|
||||
msgstr "ड्रायव्हर"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:154
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:142
|
||||
msgid "Driver Configuration"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:116
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:108
|
||||
msgid "Driver Global Settings"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:122
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:114
|
||||
msgid "Driver Path"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:250
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:238
|
||||
msgid "Driver Shutdown Order"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:145
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:282
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:137
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:270
|
||||
msgid "Driver waits for data to be consumed by upsd before publishing more."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:97
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server_admin.js:20
|
||||
msgid "Drop privileges to this user"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_cgi.js:41
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_cgi_admin.js:22
|
||||
msgid "Enable"
|
||||
msgstr "सक्षम करा"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:178
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:166
|
||||
msgid ""
|
||||
"Enables a hotplug script that makes all ttyUSB devices (e.g. serial USB) "
|
||||
"group read-write as user %s"
|
||||
@@ -132,23 +132,29 @@ msgstr ""
|
||||
msgid "Forced Shutdown"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:71
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:70
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor_admin.js:16
|
||||
msgid "Global Settings"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_cgi.js:15
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_cgi_admin.js:15
|
||||
msgid "Go to NUT CGI"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/root/usr/share/rpcd/acl.d/luci-app-nut.json:15
|
||||
msgid "Grant admin UCI access for luci-app-nut"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/root/usr/share/rpcd/acl.d/luci-app-nut.json:3
|
||||
msgid "Grant UCI access for luci-app-nut"
|
||||
msgid "Grant limited UCI read access for luci-app-nut"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_cgi.js:17
|
||||
msgid "Host"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:100
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:89
|
||||
msgid "Host Sync"
|
||||
msgstr ""
|
||||
|
||||
@@ -156,7 +162,7 @@ msgstr ""
|
||||
msgid "Hostname or IP address"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:29
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:28
|
||||
msgid "Hostname or address of UPS"
|
||||
msgstr ""
|
||||
|
||||
@@ -164,7 +170,7 @@ msgstr ""
|
||||
msgid "IP Address"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:171
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:159
|
||||
msgid "If this list is empty you need to %s"
|
||||
msgstr ""
|
||||
|
||||
@@ -172,7 +178,7 @@ msgstr ""
|
||||
msgid "Ignore"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:182
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:170
|
||||
msgid "Ignore Low Battery"
|
||||
msgstr ""
|
||||
|
||||
@@ -180,19 +186,19 @@ msgstr ""
|
||||
msgid "Instant commands"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:186
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:174
|
||||
msgid "Interrupt Only"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:190
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:178
|
||||
msgid "Interrupt Size"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:203
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:191
|
||||
msgid "Manufacturer (Display)"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:194
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:182
|
||||
msgid "Max USB HID Length Reported"
|
||||
msgstr ""
|
||||
|
||||
@@ -200,47 +206,55 @@ msgstr ""
|
||||
msgid "Maximum Age of Data"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:130
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:122
|
||||
msgid "Maximum Retries"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:126
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:198
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:118
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:186
|
||||
msgid "Maximum Start Delay"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:105
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:97
|
||||
msgid "Maximum connections"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:130
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:122
|
||||
msgid "Maximum number of times to try starting a driver."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:140
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:132
|
||||
msgid "Maximum time in seconds between refresh of UPS status"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:78
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:74
|
||||
msgid "Minimum required number or power supplies"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:206
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:194
|
||||
msgid "Model (Display)"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_cgi.js:13
|
||||
#: applications/luci-app-nut/root/usr/share/luci/menu.d/luci-app-nut.json:42
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_cgi_admin.js:13
|
||||
msgid "NUT CGI"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:68
|
||||
#: applications/luci-app-nut/root/usr/share/luci/menu.d/luci-app-nut.json:30
|
||||
#: applications/luci-app-nut/root/usr/share/luci/menu.d/luci-app-nut.json:100
|
||||
msgid "NUT CGI - admin"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/root/usr/share/luci/menu.d/luci-app-nut.json:85
|
||||
msgid "NUT CGI - main"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:67
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor_admin.js:13
|
||||
msgid "NUT Monitor"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:42
|
||||
#: applications/luci-app-nut/root/usr/share/luci/menu.d/luci-app-nut.json:18
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server_admin.js:13
|
||||
msgid "NUT Server"
|
||||
msgstr ""
|
||||
|
||||
@@ -248,7 +262,23 @@ msgstr ""
|
||||
msgid "NUT Users"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:26
|
||||
#: applications/luci-app-nut/root/usr/share/luci/menu.d/luci-app-nut.json:69
|
||||
msgid "NUT monitor - admin"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/root/usr/share/luci/menu.d/luci-app-nut.json:54
|
||||
msgid "NUT monitor - main"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/root/usr/share/luci/menu.d/luci-app-nut.json:38
|
||||
msgid "NUT server - admin"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/root/usr/share/luci/menu.d/luci-app-nut.json:23
|
||||
msgid "NUT server - main"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:25
|
||||
msgid "Name of UPS"
|
||||
msgstr ""
|
||||
|
||||
@@ -257,59 +287,62 @@ msgid "Network UPS Tools"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_cgi.js:14
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_cgi_admin.js:14
|
||||
msgid "Network UPS Tools CGI Configuration"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:69
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:68
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor_admin.js:14
|
||||
msgid "Network UPS Tools Monitoring Configuration"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:43
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server_admin.js:14
|
||||
msgid "Network UPS Tools Server Configuration"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:209
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:197
|
||||
msgid "No Lock"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:213
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:201
|
||||
msgid "No low/high voltage transfer OIDs"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:127
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:116
|
||||
msgid "Notification flags"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:119
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:108
|
||||
msgid "Notifications settings"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:87
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor_admin.js:23
|
||||
msgid "Notify command"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:217
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:205
|
||||
msgid "Off Delay(s)"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:226
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:214
|
||||
msgid "On Delay(s)"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:46
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:45
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:53
|
||||
msgid "Password"
|
||||
msgstr "संकेतशब्द"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:110
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:99
|
||||
msgid "Path containing ca certificates to match against host certificate"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:122
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:114
|
||||
msgid "Path to drivers (instead of default)"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:101
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server_admin.js:24
|
||||
msgid "Path to state file"
|
||||
msgstr ""
|
||||
|
||||
@@ -317,30 +350,30 @@ msgstr ""
|
||||
msgid "Period after which data is considered stale"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:140
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:132
|
||||
msgid "Poll Interval"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:90
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:79
|
||||
msgid "Poll frequency"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:95
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:84
|
||||
msgid "Poll frequency alert"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:235
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:223
|
||||
msgid "Polling Frequency(s)"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_cgi.js:28
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:33
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:32
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:83
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:240
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:228
|
||||
msgid "Port"
|
||||
msgstr "पोर्ट"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:38
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:37
|
||||
msgid "Power value"
|
||||
msgstr ""
|
||||
|
||||
@@ -352,15 +385,15 @@ msgstr ""
|
||||
msgid "Primary (Deprecated)"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:244
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:232
|
||||
msgid "Product (regex)"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:114
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:103
|
||||
msgid "Require SSL and make sure server CN matches hostname"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:135
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:127
|
||||
msgid "Retry Delay"
|
||||
msgstr ""
|
||||
|
||||
@@ -368,49 +401,48 @@ msgstr ""
|
||||
msgid "Role"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:119
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:111
|
||||
msgid "Run drivers in a chroot(2) environment"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:75
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:97
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:149
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor_admin.js:20
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server_admin.js:20
|
||||
msgid "RunAs User"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:163
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:151
|
||||
msgid "SNMP Community"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:260
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:248
|
||||
msgid "SNMP retries"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:264
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:252
|
||||
msgid "SNMP timeout(s)"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:268
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:256
|
||||
msgid "SNMP version"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:270
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:258
|
||||
msgid "SNMPv1"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:271
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:259
|
||||
msgid "SNMPv2c"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:272
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:260
|
||||
msgid "SNMPv3"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:257
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:245
|
||||
msgid "Serial Number"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:177
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:165
|
||||
msgid "Set USB serial port permissions"
|
||||
msgstr ""
|
||||
|
||||
@@ -418,49 +450,50 @@ msgstr ""
|
||||
msgid "Set variables"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:83
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor_admin.js:26
|
||||
msgid "Shutdown command"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:145
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:282
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:137
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:270
|
||||
msgid "Synchronous Communication"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:155
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:143
|
||||
msgid "The name of this section will be used as UPS name elsewhere"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:167
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:203
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:206
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:257
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:155
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:191
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:194
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:245
|
||||
msgid ""
|
||||
"This is passed through to the driver, so make sure your driver supports this "
|
||||
"option"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:135
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:127
|
||||
msgid "Time in seconds between driver start retry attempts."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:198
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:186
|
||||
msgid "Time in seconds that upsdrvctl will wait for driver to finish starting"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:142
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:131
|
||||
msgid "UPS Auxiliary (Deprecated)"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:130
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:119
|
||||
msgid "UPS Monitor User Settings"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:139
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:128
|
||||
msgid "UPS Primary (Deprecated)"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:89
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server_admin.js:17
|
||||
msgid "UPS Server Global Settings"
|
||||
msgstr ""
|
||||
|
||||
@@ -468,19 +501,19 @@ msgstr ""
|
||||
msgid "UPS name"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:159
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:147
|
||||
msgid "USB Bus(es) (regex)"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:247
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:235
|
||||
msgid "USB Product Id"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:279
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:267
|
||||
msgid "USB Vendor Id"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:57
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:56
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:28
|
||||
msgid "Unable to run ldd: %s"
|
||||
msgstr ""
|
||||
@@ -490,30 +523,24 @@ msgid ""
|
||||
"Use %s to see full list of commands your UPS supports (requires %s package)"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:149
|
||||
msgid ""
|
||||
"User as which to execute driver; requires device file accessed by driver to "
|
||||
"be read-write for that user."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:133
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:122
|
||||
msgid "User type (Primary/Auxiliary)"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:43
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:42
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:50
|
||||
msgid "Username"
|
||||
msgstr "वापरकर्तानाव"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:276
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:264
|
||||
msgid "Vendor (regex)"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:114
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:103
|
||||
msgid "Verify all connection with SSL"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:194
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:182
|
||||
msgid "Workaround for buggy firmware"
|
||||
msgstr ""
|
||||
|
||||
@@ -525,14 +552,14 @@ msgstr ""
|
||||
msgid "Write to syslog and execute notify command"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:119
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:111
|
||||
msgid "chroot"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:171
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:159
|
||||
msgid "install drivers"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:75
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor_admin.js:20
|
||||
msgid "upsmon drops privileges to this user"
|
||||
msgstr ""
|
||||
|
||||
@@ -12,7 +12,7 @@ msgstr ""
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
"X-Generator: Weblate 5.12-dev\n"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:254
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:242
|
||||
msgid "Additional Shutdown Time(s)"
|
||||
msgstr ""
|
||||
|
||||
@@ -25,7 +25,7 @@ msgid "Allowed actions"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_cgi.js:21
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:26
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:25
|
||||
msgid "As configured by NUT"
|
||||
msgstr ""
|
||||
|
||||
@@ -37,43 +37,43 @@ msgstr ""
|
||||
msgid "Auxiliary (Deprecated)"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:190
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:178
|
||||
msgid "Bytes to read from interrupt pipe"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:110
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:99
|
||||
msgid "CA Certificate path"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:111
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:103
|
||||
msgid "Certificate file (SSL)"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_cgi.js:36
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_cgi_admin.js:17
|
||||
msgid "Control UPS via CGI"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:124
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:113
|
||||
msgid "Custom notification message for message type"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:104
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:93
|
||||
msgid "Deadtime"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:126
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:118
|
||||
msgid "Default for UPSes without this field."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:217
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:205
|
||||
msgid "Delay for kill power command"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:226
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:214
|
||||
msgid "Delay to power on UPS if power returns after kill power"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:167
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:155
|
||||
msgid "Description (Display)"
|
||||
msgstr ""
|
||||
|
||||
@@ -81,44 +81,44 @@ msgstr ""
|
||||
msgid "Display name"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:209
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:197
|
||||
msgid "Do not lock port when starting driver"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:170
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:158
|
||||
msgid "Driver"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:154
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:142
|
||||
msgid "Driver Configuration"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:116
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:108
|
||||
msgid "Driver Global Settings"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:122
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:114
|
||||
msgid "Driver Path"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:250
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:238
|
||||
msgid "Driver Shutdown Order"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:145
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:282
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:137
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:270
|
||||
msgid "Driver waits for data to be consumed by upsd before publishing more."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:97
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server_admin.js:20
|
||||
msgid "Drop privileges to this user"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_cgi.js:41
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_cgi_admin.js:22
|
||||
msgid "Enable"
|
||||
msgstr "Pemboleh"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:178
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:166
|
||||
msgid ""
|
||||
"Enables a hotplug script that makes all ttyUSB devices (e.g. serial USB) "
|
||||
"group read-write as user %s"
|
||||
@@ -132,23 +132,29 @@ msgstr ""
|
||||
msgid "Forced Shutdown"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:71
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:70
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor_admin.js:16
|
||||
msgid "Global Settings"
|
||||
msgstr "Tetapan Global"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_cgi.js:15
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_cgi_admin.js:15
|
||||
msgid "Go to NUT CGI"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/root/usr/share/rpcd/acl.d/luci-app-nut.json:15
|
||||
msgid "Grant admin UCI access for luci-app-nut"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/root/usr/share/rpcd/acl.d/luci-app-nut.json:3
|
||||
msgid "Grant UCI access for luci-app-nut"
|
||||
msgid "Grant limited UCI read access for luci-app-nut"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_cgi.js:17
|
||||
msgid "Host"
|
||||
msgstr "Hos"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:100
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:89
|
||||
msgid "Host Sync"
|
||||
msgstr ""
|
||||
|
||||
@@ -156,7 +162,7 @@ msgstr ""
|
||||
msgid "Hostname or IP address"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:29
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:28
|
||||
msgid "Hostname or address of UPS"
|
||||
msgstr ""
|
||||
|
||||
@@ -164,7 +170,7 @@ msgstr ""
|
||||
msgid "IP Address"
|
||||
msgstr "Alamat IP"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:171
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:159
|
||||
msgid "If this list is empty you need to %s"
|
||||
msgstr ""
|
||||
|
||||
@@ -172,7 +178,7 @@ msgstr ""
|
||||
msgid "Ignore"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:182
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:170
|
||||
msgid "Ignore Low Battery"
|
||||
msgstr ""
|
||||
|
||||
@@ -180,19 +186,19 @@ msgstr ""
|
||||
msgid "Instant commands"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:186
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:174
|
||||
msgid "Interrupt Only"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:190
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:178
|
||||
msgid "Interrupt Size"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:203
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:191
|
||||
msgid "Manufacturer (Display)"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:194
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:182
|
||||
msgid "Max USB HID Length Reported"
|
||||
msgstr ""
|
||||
|
||||
@@ -200,47 +206,55 @@ msgstr ""
|
||||
msgid "Maximum Age of Data"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:130
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:122
|
||||
msgid "Maximum Retries"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:126
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:198
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:118
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:186
|
||||
msgid "Maximum Start Delay"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:105
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:97
|
||||
msgid "Maximum connections"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:130
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:122
|
||||
msgid "Maximum number of times to try starting a driver."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:140
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:132
|
||||
msgid "Maximum time in seconds between refresh of UPS status"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:78
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:74
|
||||
msgid "Minimum required number or power supplies"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:206
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:194
|
||||
msgid "Model (Display)"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_cgi.js:13
|
||||
#: applications/luci-app-nut/root/usr/share/luci/menu.d/luci-app-nut.json:42
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_cgi_admin.js:13
|
||||
msgid "NUT CGI"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:68
|
||||
#: applications/luci-app-nut/root/usr/share/luci/menu.d/luci-app-nut.json:30
|
||||
#: applications/luci-app-nut/root/usr/share/luci/menu.d/luci-app-nut.json:100
|
||||
msgid "NUT CGI - admin"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/root/usr/share/luci/menu.d/luci-app-nut.json:85
|
||||
msgid "NUT CGI - main"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:67
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor_admin.js:13
|
||||
msgid "NUT Monitor"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:42
|
||||
#: applications/luci-app-nut/root/usr/share/luci/menu.d/luci-app-nut.json:18
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server_admin.js:13
|
||||
msgid "NUT Server"
|
||||
msgstr ""
|
||||
|
||||
@@ -248,7 +262,23 @@ msgstr ""
|
||||
msgid "NUT Users"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:26
|
||||
#: applications/luci-app-nut/root/usr/share/luci/menu.d/luci-app-nut.json:69
|
||||
msgid "NUT monitor - admin"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/root/usr/share/luci/menu.d/luci-app-nut.json:54
|
||||
msgid "NUT monitor - main"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/root/usr/share/luci/menu.d/luci-app-nut.json:38
|
||||
msgid "NUT server - admin"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/root/usr/share/luci/menu.d/luci-app-nut.json:23
|
||||
msgid "NUT server - main"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:25
|
||||
msgid "Name of UPS"
|
||||
msgstr ""
|
||||
|
||||
@@ -257,59 +287,62 @@ msgid "Network UPS Tools"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_cgi.js:14
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_cgi_admin.js:14
|
||||
msgid "Network UPS Tools CGI Configuration"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:69
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:68
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor_admin.js:14
|
||||
msgid "Network UPS Tools Monitoring Configuration"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:43
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server_admin.js:14
|
||||
msgid "Network UPS Tools Server Configuration"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:209
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:197
|
||||
msgid "No Lock"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:213
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:201
|
||||
msgid "No low/high voltage transfer OIDs"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:127
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:116
|
||||
msgid "Notification flags"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:119
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:108
|
||||
msgid "Notifications settings"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:87
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor_admin.js:23
|
||||
msgid "Notify command"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:217
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:205
|
||||
msgid "Off Delay(s)"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:226
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:214
|
||||
msgid "On Delay(s)"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:46
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:45
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:53
|
||||
msgid "Password"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:110
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:99
|
||||
msgid "Path containing ca certificates to match against host certificate"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:122
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:114
|
||||
msgid "Path to drivers (instead of default)"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:101
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server_admin.js:24
|
||||
msgid "Path to state file"
|
||||
msgstr ""
|
||||
|
||||
@@ -317,30 +350,30 @@ msgstr ""
|
||||
msgid "Period after which data is considered stale"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:140
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:132
|
||||
msgid "Poll Interval"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:90
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:79
|
||||
msgid "Poll frequency"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:95
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:84
|
||||
msgid "Poll frequency alert"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:235
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:223
|
||||
msgid "Polling Frequency(s)"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_cgi.js:28
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:33
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:32
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:83
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:240
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:228
|
||||
msgid "Port"
|
||||
msgstr "Port"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:38
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:37
|
||||
msgid "Power value"
|
||||
msgstr ""
|
||||
|
||||
@@ -352,15 +385,15 @@ msgstr ""
|
||||
msgid "Primary (Deprecated)"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:244
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:232
|
||||
msgid "Product (regex)"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:114
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:103
|
||||
msgid "Require SSL and make sure server CN matches hostname"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:135
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:127
|
||||
msgid "Retry Delay"
|
||||
msgstr ""
|
||||
|
||||
@@ -368,49 +401,48 @@ msgstr ""
|
||||
msgid "Role"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:119
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:111
|
||||
msgid "Run drivers in a chroot(2) environment"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:75
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:97
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:149
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor_admin.js:20
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server_admin.js:20
|
||||
msgid "RunAs User"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:163
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:151
|
||||
msgid "SNMP Community"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:260
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:248
|
||||
msgid "SNMP retries"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:264
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:252
|
||||
msgid "SNMP timeout(s)"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:268
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:256
|
||||
msgid "SNMP version"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:270
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:258
|
||||
msgid "SNMPv1"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:271
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:259
|
||||
msgid "SNMPv2c"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:272
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:260
|
||||
msgid "SNMPv3"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:257
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:245
|
||||
msgid "Serial Number"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:177
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:165
|
||||
msgid "Set USB serial port permissions"
|
||||
msgstr ""
|
||||
|
||||
@@ -418,49 +450,50 @@ msgstr ""
|
||||
msgid "Set variables"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:83
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor_admin.js:26
|
||||
msgid "Shutdown command"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:145
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:282
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:137
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:270
|
||||
msgid "Synchronous Communication"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:155
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:143
|
||||
msgid "The name of this section will be used as UPS name elsewhere"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:167
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:203
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:206
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:257
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:155
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:191
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:194
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:245
|
||||
msgid ""
|
||||
"This is passed through to the driver, so make sure your driver supports this "
|
||||
"option"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:135
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:127
|
||||
msgid "Time in seconds between driver start retry attempts."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:198
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:186
|
||||
msgid "Time in seconds that upsdrvctl will wait for driver to finish starting"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:142
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:131
|
||||
msgid "UPS Auxiliary (Deprecated)"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:130
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:119
|
||||
msgid "UPS Monitor User Settings"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:139
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:128
|
||||
msgid "UPS Primary (Deprecated)"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:89
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server_admin.js:17
|
||||
msgid "UPS Server Global Settings"
|
||||
msgstr ""
|
||||
|
||||
@@ -468,19 +501,19 @@ msgstr ""
|
||||
msgid "UPS name"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:159
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:147
|
||||
msgid "USB Bus(es) (regex)"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:247
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:235
|
||||
msgid "USB Product Id"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:279
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:267
|
||||
msgid "USB Vendor Id"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:57
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:56
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:28
|
||||
msgid "Unable to run ldd: %s"
|
||||
msgstr ""
|
||||
@@ -490,30 +523,24 @@ msgid ""
|
||||
"Use %s to see full list of commands your UPS supports (requires %s package)"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:149
|
||||
msgid ""
|
||||
"User as which to execute driver; requires device file accessed by driver to "
|
||||
"be read-write for that user."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:133
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:122
|
||||
msgid "User type (Primary/Auxiliary)"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:43
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:42
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:50
|
||||
msgid "Username"
|
||||
msgstr "Nama pengguna"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:276
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:264
|
||||
msgid "Vendor (regex)"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:114
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:103
|
||||
msgid "Verify all connection with SSL"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:194
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:182
|
||||
msgid "Workaround for buggy firmware"
|
||||
msgstr ""
|
||||
|
||||
@@ -525,14 +552,14 @@ msgstr ""
|
||||
msgid "Write to syslog and execute notify command"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:119
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:111
|
||||
msgid "chroot"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:171
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:159
|
||||
msgid "install drivers"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:75
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor_admin.js:20
|
||||
msgid "upsmon drops privileges to this user"
|
||||
msgstr ""
|
||||
|
||||
@@ -12,7 +12,7 @@ msgstr ""
|
||||
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
||||
"X-Generator: Weblate 5.0-dev\n"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:254
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:242
|
||||
msgid "Additional Shutdown Time(s)"
|
||||
msgstr ""
|
||||
|
||||
@@ -25,7 +25,7 @@ msgid "Allowed actions"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_cgi.js:21
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:26
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:25
|
||||
msgid "As configured by NUT"
|
||||
msgstr ""
|
||||
|
||||
@@ -37,43 +37,43 @@ msgstr ""
|
||||
msgid "Auxiliary (Deprecated)"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:190
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:178
|
||||
msgid "Bytes to read from interrupt pipe"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:110
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:99
|
||||
msgid "CA Certificate path"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:111
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:103
|
||||
msgid "Certificate file (SSL)"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_cgi.js:36
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_cgi_admin.js:17
|
||||
msgid "Control UPS via CGI"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:124
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:113
|
||||
msgid "Custom notification message for message type"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:104
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:93
|
||||
msgid "Deadtime"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:126
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:118
|
||||
msgid "Default for UPSes without this field."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:217
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:205
|
||||
msgid "Delay for kill power command"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:226
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:214
|
||||
msgid "Delay to power on UPS if power returns after kill power"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:167
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:155
|
||||
msgid "Description (Display)"
|
||||
msgstr ""
|
||||
|
||||
@@ -81,44 +81,44 @@ msgstr ""
|
||||
msgid "Display name"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:209
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:197
|
||||
msgid "Do not lock port when starting driver"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:170
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:158
|
||||
msgid "Driver"
|
||||
msgstr "Driver"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:154
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:142
|
||||
msgid "Driver Configuration"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:116
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:108
|
||||
msgid "Driver Global Settings"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:122
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:114
|
||||
msgid "Driver Path"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:250
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:238
|
||||
msgid "Driver Shutdown Order"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:145
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:282
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:137
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:270
|
||||
msgid "Driver waits for data to be consumed by upsd before publishing more."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:97
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server_admin.js:20
|
||||
msgid "Drop privileges to this user"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_cgi.js:41
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_cgi_admin.js:22
|
||||
msgid "Enable"
|
||||
msgstr "Skru på"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:178
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:166
|
||||
msgid ""
|
||||
"Enables a hotplug script that makes all ttyUSB devices (e.g. serial USB) "
|
||||
"group read-write as user %s"
|
||||
@@ -132,23 +132,29 @@ msgstr ""
|
||||
msgid "Forced Shutdown"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:71
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:70
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor_admin.js:16
|
||||
msgid "Global Settings"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_cgi.js:15
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_cgi_admin.js:15
|
||||
msgid "Go to NUT CGI"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/root/usr/share/rpcd/acl.d/luci-app-nut.json:15
|
||||
msgid "Grant admin UCI access for luci-app-nut"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/root/usr/share/rpcd/acl.d/luci-app-nut.json:3
|
||||
msgid "Grant UCI access for luci-app-nut"
|
||||
msgid "Grant limited UCI read access for luci-app-nut"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_cgi.js:17
|
||||
msgid "Host"
|
||||
msgstr "Vert"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:100
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:89
|
||||
msgid "Host Sync"
|
||||
msgstr ""
|
||||
|
||||
@@ -156,7 +162,7 @@ msgstr ""
|
||||
msgid "Hostname or IP address"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:29
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:28
|
||||
msgid "Hostname or address of UPS"
|
||||
msgstr ""
|
||||
|
||||
@@ -164,7 +170,7 @@ msgstr ""
|
||||
msgid "IP Address"
|
||||
msgstr "IP-adresse"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:171
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:159
|
||||
msgid "If this list is empty you need to %s"
|
||||
msgstr ""
|
||||
|
||||
@@ -172,7 +178,7 @@ msgstr ""
|
||||
msgid "Ignore"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:182
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:170
|
||||
msgid "Ignore Low Battery"
|
||||
msgstr ""
|
||||
|
||||
@@ -180,19 +186,19 @@ msgstr ""
|
||||
msgid "Instant commands"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:186
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:174
|
||||
msgid "Interrupt Only"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:190
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:178
|
||||
msgid "Interrupt Size"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:203
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:191
|
||||
msgid "Manufacturer (Display)"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:194
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:182
|
||||
msgid "Max USB HID Length Reported"
|
||||
msgstr ""
|
||||
|
||||
@@ -200,47 +206,55 @@ msgstr ""
|
||||
msgid "Maximum Age of Data"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:130
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:122
|
||||
msgid "Maximum Retries"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:126
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:198
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:118
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:186
|
||||
msgid "Maximum Start Delay"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:105
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:97
|
||||
msgid "Maximum connections"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:130
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:122
|
||||
msgid "Maximum number of times to try starting a driver."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:140
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:132
|
||||
msgid "Maximum time in seconds between refresh of UPS status"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:78
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:74
|
||||
msgid "Minimum required number or power supplies"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:206
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:194
|
||||
msgid "Model (Display)"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_cgi.js:13
|
||||
#: applications/luci-app-nut/root/usr/share/luci/menu.d/luci-app-nut.json:42
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_cgi_admin.js:13
|
||||
msgid "NUT CGI"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:68
|
||||
#: applications/luci-app-nut/root/usr/share/luci/menu.d/luci-app-nut.json:30
|
||||
#: applications/luci-app-nut/root/usr/share/luci/menu.d/luci-app-nut.json:100
|
||||
msgid "NUT CGI - admin"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/root/usr/share/luci/menu.d/luci-app-nut.json:85
|
||||
msgid "NUT CGI - main"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:67
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor_admin.js:13
|
||||
msgid "NUT Monitor"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:42
|
||||
#: applications/luci-app-nut/root/usr/share/luci/menu.d/luci-app-nut.json:18
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server_admin.js:13
|
||||
msgid "NUT Server"
|
||||
msgstr ""
|
||||
|
||||
@@ -248,7 +262,23 @@ msgstr ""
|
||||
msgid "NUT Users"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:26
|
||||
#: applications/luci-app-nut/root/usr/share/luci/menu.d/luci-app-nut.json:69
|
||||
msgid "NUT monitor - admin"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/root/usr/share/luci/menu.d/luci-app-nut.json:54
|
||||
msgid "NUT monitor - main"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/root/usr/share/luci/menu.d/luci-app-nut.json:38
|
||||
msgid "NUT server - admin"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/root/usr/share/luci/menu.d/luci-app-nut.json:23
|
||||
msgid "NUT server - main"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:25
|
||||
msgid "Name of UPS"
|
||||
msgstr ""
|
||||
|
||||
@@ -257,59 +287,62 @@ msgid "Network UPS Tools"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_cgi.js:14
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_cgi_admin.js:14
|
||||
msgid "Network UPS Tools CGI Configuration"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:69
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:68
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor_admin.js:14
|
||||
msgid "Network UPS Tools Monitoring Configuration"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:43
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server_admin.js:14
|
||||
msgid "Network UPS Tools Server Configuration"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:209
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:197
|
||||
msgid "No Lock"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:213
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:201
|
||||
msgid "No low/high voltage transfer OIDs"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:127
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:116
|
||||
msgid "Notification flags"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:119
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:108
|
||||
msgid "Notifications settings"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:87
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor_admin.js:23
|
||||
msgid "Notify command"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:217
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:205
|
||||
msgid "Off Delay(s)"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:226
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:214
|
||||
msgid "On Delay(s)"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:46
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:45
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:53
|
||||
msgid "Password"
|
||||
msgstr "Passord"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:110
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:99
|
||||
msgid "Path containing ca certificates to match against host certificate"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:122
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:114
|
||||
msgid "Path to drivers (instead of default)"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:101
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server_admin.js:24
|
||||
msgid "Path to state file"
|
||||
msgstr ""
|
||||
|
||||
@@ -317,30 +350,30 @@ msgstr ""
|
||||
msgid "Period after which data is considered stale"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:140
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:132
|
||||
msgid "Poll Interval"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:90
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:79
|
||||
msgid "Poll frequency"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:95
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:84
|
||||
msgid "Poll frequency alert"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:235
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:223
|
||||
msgid "Polling Frequency(s)"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_cgi.js:28
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:33
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:32
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:83
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:240
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:228
|
||||
msgid "Port"
|
||||
msgstr "Port"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:38
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:37
|
||||
msgid "Power value"
|
||||
msgstr ""
|
||||
|
||||
@@ -352,15 +385,15 @@ msgstr ""
|
||||
msgid "Primary (Deprecated)"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:244
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:232
|
||||
msgid "Product (regex)"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:114
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:103
|
||||
msgid "Require SSL and make sure server CN matches hostname"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:135
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:127
|
||||
msgid "Retry Delay"
|
||||
msgstr ""
|
||||
|
||||
@@ -368,49 +401,48 @@ msgstr ""
|
||||
msgid "Role"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:119
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:111
|
||||
msgid "Run drivers in a chroot(2) environment"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:75
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:97
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:149
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor_admin.js:20
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server_admin.js:20
|
||||
msgid "RunAs User"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:163
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:151
|
||||
msgid "SNMP Community"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:260
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:248
|
||||
msgid "SNMP retries"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:264
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:252
|
||||
msgid "SNMP timeout(s)"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:268
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:256
|
||||
msgid "SNMP version"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:270
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:258
|
||||
msgid "SNMPv1"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:271
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:259
|
||||
msgid "SNMPv2c"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:272
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:260
|
||||
msgid "SNMPv3"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:257
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:245
|
||||
msgid "Serial Number"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:177
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:165
|
||||
msgid "Set USB serial port permissions"
|
||||
msgstr ""
|
||||
|
||||
@@ -418,49 +450,50 @@ msgstr ""
|
||||
msgid "Set variables"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:83
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor_admin.js:26
|
||||
msgid "Shutdown command"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:145
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:282
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:137
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:270
|
||||
msgid "Synchronous Communication"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:155
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:143
|
||||
msgid "The name of this section will be used as UPS name elsewhere"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:167
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:203
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:206
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:257
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:155
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:191
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:194
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:245
|
||||
msgid ""
|
||||
"This is passed through to the driver, so make sure your driver supports this "
|
||||
"option"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:135
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:127
|
||||
msgid "Time in seconds between driver start retry attempts."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:198
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:186
|
||||
msgid "Time in seconds that upsdrvctl will wait for driver to finish starting"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:142
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:131
|
||||
msgid "UPS Auxiliary (Deprecated)"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:130
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:119
|
||||
msgid "UPS Monitor User Settings"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:139
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:128
|
||||
msgid "UPS Primary (Deprecated)"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:89
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server_admin.js:17
|
||||
msgid "UPS Server Global Settings"
|
||||
msgstr ""
|
||||
|
||||
@@ -468,19 +501,19 @@ msgstr ""
|
||||
msgid "UPS name"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:159
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:147
|
||||
msgid "USB Bus(es) (regex)"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:247
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:235
|
||||
msgid "USB Product Id"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:279
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:267
|
||||
msgid "USB Vendor Id"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:57
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:56
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:28
|
||||
msgid "Unable to run ldd: %s"
|
||||
msgstr ""
|
||||
@@ -490,30 +523,24 @@ msgid ""
|
||||
"Use %s to see full list of commands your UPS supports (requires %s package)"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:149
|
||||
msgid ""
|
||||
"User as which to execute driver; requires device file accessed by driver to "
|
||||
"be read-write for that user."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:133
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:122
|
||||
msgid "User type (Primary/Auxiliary)"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:43
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:42
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:50
|
||||
msgid "Username"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:276
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:264
|
||||
msgid "Vendor (regex)"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:114
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:103
|
||||
msgid "Verify all connection with SSL"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:194
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:182
|
||||
msgid "Workaround for buggy firmware"
|
||||
msgstr ""
|
||||
|
||||
@@ -525,14 +552,14 @@ msgstr ""
|
||||
msgid "Write to syslog and execute notify command"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:119
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:111
|
||||
msgid "chroot"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:171
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:159
|
||||
msgid "install drivers"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:75
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor_admin.js:20
|
||||
msgid "upsmon drops privileges to this user"
|
||||
msgstr ""
|
||||
|
||||
@@ -12,7 +12,7 @@ msgstr ""
|
||||
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
||||
"X-Generator: Weblate 5.15.1\n"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:254
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:242
|
||||
msgid "Additional Shutdown Time(s)"
|
||||
msgstr "Additionele Afsluit Tijd(en)"
|
||||
|
||||
@@ -25,7 +25,7 @@ msgid "Allowed actions"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_cgi.js:21
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:26
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:25
|
||||
msgid "As configured by NUT"
|
||||
msgstr ""
|
||||
|
||||
@@ -37,43 +37,43 @@ msgstr ""
|
||||
msgid "Auxiliary (Deprecated)"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:190
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:178
|
||||
msgid "Bytes to read from interrupt pipe"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:110
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:99
|
||||
msgid "CA Certificate path"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:111
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:103
|
||||
msgid "Certificate file (SSL)"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_cgi.js:36
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_cgi_admin.js:17
|
||||
msgid "Control UPS via CGI"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:124
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:113
|
||||
msgid "Custom notification message for message type"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:104
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:93
|
||||
msgid "Deadtime"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:126
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:118
|
||||
msgid "Default for UPSes without this field."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:217
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:205
|
||||
msgid "Delay for kill power command"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:226
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:214
|
||||
msgid "Delay to power on UPS if power returns after kill power"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:167
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:155
|
||||
msgid "Description (Display)"
|
||||
msgstr ""
|
||||
|
||||
@@ -81,44 +81,44 @@ msgstr ""
|
||||
msgid "Display name"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:209
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:197
|
||||
msgid "Do not lock port when starting driver"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:170
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:158
|
||||
msgid "Driver"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:154
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:142
|
||||
msgid "Driver Configuration"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:116
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:108
|
||||
msgid "Driver Global Settings"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:122
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:114
|
||||
msgid "Driver Path"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:250
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:238
|
||||
msgid "Driver Shutdown Order"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:145
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:282
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:137
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:270
|
||||
msgid "Driver waits for data to be consumed by upsd before publishing more."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:97
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server_admin.js:20
|
||||
msgid "Drop privileges to this user"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_cgi.js:41
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_cgi_admin.js:22
|
||||
msgid "Enable"
|
||||
msgstr "Inschakelen"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:178
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:166
|
||||
msgid ""
|
||||
"Enables a hotplug script that makes all ttyUSB devices (e.g. serial USB) "
|
||||
"group read-write as user %s"
|
||||
@@ -132,23 +132,29 @@ msgstr ""
|
||||
msgid "Forced Shutdown"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:71
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:70
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor_admin.js:16
|
||||
msgid "Global Settings"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_cgi.js:15
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_cgi_admin.js:15
|
||||
msgid "Go to NUT CGI"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/root/usr/share/rpcd/acl.d/luci-app-nut.json:15
|
||||
msgid "Grant admin UCI access for luci-app-nut"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/root/usr/share/rpcd/acl.d/luci-app-nut.json:3
|
||||
msgid "Grant UCI access for luci-app-nut"
|
||||
msgid "Grant limited UCI read access for luci-app-nut"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_cgi.js:17
|
||||
msgid "Host"
|
||||
msgstr "Hostnaam"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:100
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:89
|
||||
msgid "Host Sync"
|
||||
msgstr ""
|
||||
|
||||
@@ -156,7 +162,7 @@ msgstr ""
|
||||
msgid "Hostname or IP address"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:29
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:28
|
||||
msgid "Hostname or address of UPS"
|
||||
msgstr ""
|
||||
|
||||
@@ -164,7 +170,7 @@ msgstr ""
|
||||
msgid "IP Address"
|
||||
msgstr "IP adres"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:171
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:159
|
||||
msgid "If this list is empty you need to %s"
|
||||
msgstr ""
|
||||
|
||||
@@ -172,7 +178,7 @@ msgstr ""
|
||||
msgid "Ignore"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:182
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:170
|
||||
msgid "Ignore Low Battery"
|
||||
msgstr ""
|
||||
|
||||
@@ -180,19 +186,19 @@ msgstr ""
|
||||
msgid "Instant commands"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:186
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:174
|
||||
msgid "Interrupt Only"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:190
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:178
|
||||
msgid "Interrupt Size"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:203
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:191
|
||||
msgid "Manufacturer (Display)"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:194
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:182
|
||||
msgid "Max USB HID Length Reported"
|
||||
msgstr ""
|
||||
|
||||
@@ -200,47 +206,55 @@ msgstr ""
|
||||
msgid "Maximum Age of Data"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:130
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:122
|
||||
msgid "Maximum Retries"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:126
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:198
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:118
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:186
|
||||
msgid "Maximum Start Delay"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:105
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:97
|
||||
msgid "Maximum connections"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:130
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:122
|
||||
msgid "Maximum number of times to try starting a driver."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:140
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:132
|
||||
msgid "Maximum time in seconds between refresh of UPS status"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:78
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:74
|
||||
msgid "Minimum required number or power supplies"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:206
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:194
|
||||
msgid "Model (Display)"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_cgi.js:13
|
||||
#: applications/luci-app-nut/root/usr/share/luci/menu.d/luci-app-nut.json:42
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_cgi_admin.js:13
|
||||
msgid "NUT CGI"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:68
|
||||
#: applications/luci-app-nut/root/usr/share/luci/menu.d/luci-app-nut.json:30
|
||||
#: applications/luci-app-nut/root/usr/share/luci/menu.d/luci-app-nut.json:100
|
||||
msgid "NUT CGI - admin"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/root/usr/share/luci/menu.d/luci-app-nut.json:85
|
||||
msgid "NUT CGI - main"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:67
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor_admin.js:13
|
||||
msgid "NUT Monitor"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:42
|
||||
#: applications/luci-app-nut/root/usr/share/luci/menu.d/luci-app-nut.json:18
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server_admin.js:13
|
||||
msgid "NUT Server"
|
||||
msgstr ""
|
||||
|
||||
@@ -248,7 +262,23 @@ msgstr ""
|
||||
msgid "NUT Users"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:26
|
||||
#: applications/luci-app-nut/root/usr/share/luci/menu.d/luci-app-nut.json:69
|
||||
msgid "NUT monitor - admin"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/root/usr/share/luci/menu.d/luci-app-nut.json:54
|
||||
msgid "NUT monitor - main"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/root/usr/share/luci/menu.d/luci-app-nut.json:38
|
||||
msgid "NUT server - admin"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/root/usr/share/luci/menu.d/luci-app-nut.json:23
|
||||
msgid "NUT server - main"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:25
|
||||
msgid "Name of UPS"
|
||||
msgstr ""
|
||||
|
||||
@@ -257,59 +287,62 @@ msgid "Network UPS Tools"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_cgi.js:14
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_cgi_admin.js:14
|
||||
msgid "Network UPS Tools CGI Configuration"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:69
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:68
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor_admin.js:14
|
||||
msgid "Network UPS Tools Monitoring Configuration"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:43
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server_admin.js:14
|
||||
msgid "Network UPS Tools Server Configuration"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:209
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:197
|
||||
msgid "No Lock"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:213
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:201
|
||||
msgid "No low/high voltage transfer OIDs"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:127
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:116
|
||||
msgid "Notification flags"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:119
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:108
|
||||
msgid "Notifications settings"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:87
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor_admin.js:23
|
||||
msgid "Notify command"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:217
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:205
|
||||
msgid "Off Delay(s)"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:226
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:214
|
||||
msgid "On Delay(s)"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:46
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:45
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:53
|
||||
msgid "Password"
|
||||
msgstr "Wachtwoord"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:110
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:99
|
||||
msgid "Path containing ca certificates to match against host certificate"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:122
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:114
|
||||
msgid "Path to drivers (instead of default)"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:101
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server_admin.js:24
|
||||
msgid "Path to state file"
|
||||
msgstr ""
|
||||
|
||||
@@ -317,30 +350,30 @@ msgstr ""
|
||||
msgid "Period after which data is considered stale"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:140
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:132
|
||||
msgid "Poll Interval"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:90
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:79
|
||||
msgid "Poll frequency"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:95
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:84
|
||||
msgid "Poll frequency alert"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:235
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:223
|
||||
msgid "Polling Frequency(s)"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_cgi.js:28
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:33
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:32
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:83
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:240
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:228
|
||||
msgid "Port"
|
||||
msgstr "Poort"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:38
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:37
|
||||
msgid "Power value"
|
||||
msgstr ""
|
||||
|
||||
@@ -352,15 +385,15 @@ msgstr ""
|
||||
msgid "Primary (Deprecated)"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:244
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:232
|
||||
msgid "Product (regex)"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:114
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:103
|
||||
msgid "Require SSL and make sure server CN matches hostname"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:135
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:127
|
||||
msgid "Retry Delay"
|
||||
msgstr ""
|
||||
|
||||
@@ -368,49 +401,48 @@ msgstr ""
|
||||
msgid "Role"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:119
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:111
|
||||
msgid "Run drivers in a chroot(2) environment"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:75
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:97
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:149
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor_admin.js:20
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server_admin.js:20
|
||||
msgid "RunAs User"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:163
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:151
|
||||
msgid "SNMP Community"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:260
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:248
|
||||
msgid "SNMP retries"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:264
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:252
|
||||
msgid "SNMP timeout(s)"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:268
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:256
|
||||
msgid "SNMP version"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:270
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:258
|
||||
msgid "SNMPv1"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:271
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:259
|
||||
msgid "SNMPv2c"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:272
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:260
|
||||
msgid "SNMPv3"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:257
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:245
|
||||
msgid "Serial Number"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:177
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:165
|
||||
msgid "Set USB serial port permissions"
|
||||
msgstr ""
|
||||
|
||||
@@ -418,49 +450,50 @@ msgstr ""
|
||||
msgid "Set variables"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:83
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor_admin.js:26
|
||||
msgid "Shutdown command"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:145
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:282
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:137
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:270
|
||||
msgid "Synchronous Communication"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:155
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:143
|
||||
msgid "The name of this section will be used as UPS name elsewhere"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:167
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:203
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:206
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:257
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:155
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:191
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:194
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:245
|
||||
msgid ""
|
||||
"This is passed through to the driver, so make sure your driver supports this "
|
||||
"option"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:135
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:127
|
||||
msgid "Time in seconds between driver start retry attempts."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:198
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:186
|
||||
msgid "Time in seconds that upsdrvctl will wait for driver to finish starting"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:142
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:131
|
||||
msgid "UPS Auxiliary (Deprecated)"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:130
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:119
|
||||
msgid "UPS Monitor User Settings"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:139
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:128
|
||||
msgid "UPS Primary (Deprecated)"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:89
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server_admin.js:17
|
||||
msgid "UPS Server Global Settings"
|
||||
msgstr ""
|
||||
|
||||
@@ -468,19 +501,19 @@ msgstr ""
|
||||
msgid "UPS name"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:159
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:147
|
||||
msgid "USB Bus(es) (regex)"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:247
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:235
|
||||
msgid "USB Product Id"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:279
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:267
|
||||
msgid "USB Vendor Id"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:57
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:56
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:28
|
||||
msgid "Unable to run ldd: %s"
|
||||
msgstr ""
|
||||
@@ -490,30 +523,24 @@ msgid ""
|
||||
"Use %s to see full list of commands your UPS supports (requires %s package)"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:149
|
||||
msgid ""
|
||||
"User as which to execute driver; requires device file accessed by driver to "
|
||||
"be read-write for that user."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:133
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:122
|
||||
msgid "User type (Primary/Auxiliary)"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:43
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:42
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:50
|
||||
msgid "Username"
|
||||
msgstr "Gebruikersnaam"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:276
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:264
|
||||
msgid "Vendor (regex)"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:114
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:103
|
||||
msgid "Verify all connection with SSL"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:194
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:182
|
||||
msgid "Workaround for buggy firmware"
|
||||
msgstr ""
|
||||
|
||||
@@ -525,15 +552,15 @@ msgstr ""
|
||||
msgid "Write to syslog and execute notify command"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:119
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:111
|
||||
msgid "chroot"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:171
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:159
|
||||
msgid "install drivers"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:75
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor_admin.js:20
|
||||
msgid "upsmon drops privileges to this user"
|
||||
msgstr ""
|
||||
|
||||
|
||||
@@ -13,7 +13,7 @@ msgstr ""
|
||||
"|| n%100>=20) ? 1 : 2);\n"
|
||||
"X-Generator: Weblate 2026.7.dev0\n"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:254
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:242
|
||||
msgid "Additional Shutdown Time(s)"
|
||||
msgstr "Dodatkowy(-e) czas(y) wyłączenia"
|
||||
|
||||
@@ -26,7 +26,7 @@ msgid "Allowed actions"
|
||||
msgstr "Dozwolone akcje"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_cgi.js:21
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:26
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:25
|
||||
msgid "As configured by NUT"
|
||||
msgstr "Zgodnie z konfiguracją NUT"
|
||||
|
||||
@@ -38,45 +38,45 @@ msgstr "Dodatkowy"
|
||||
msgid "Auxiliary (Deprecated)"
|
||||
msgstr "Dodatkowy (przestarzały)"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:190
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:178
|
||||
msgid "Bytes to read from interrupt pipe"
|
||||
msgstr "Bajty do odczytania z potoku przerwań"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:110
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:99
|
||||
msgid "CA Certificate path"
|
||||
msgstr "Ścieżka certyfikatu CA"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:111
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:103
|
||||
msgid "Certificate file (SSL)"
|
||||
msgstr "Plik certyfikatu (SSL)"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_cgi.js:36
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_cgi_admin.js:17
|
||||
msgid "Control UPS via CGI"
|
||||
msgstr "Sterowanie zasilaczem UPS przez CGI"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:124
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:113
|
||||
msgid "Custom notification message for message type"
|
||||
msgstr "Niestandardowy komunikat powiadomienia dla typu wiadomości"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:104
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:93
|
||||
msgid "Deadtime"
|
||||
msgstr "Czas zwłoki"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:126
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:118
|
||||
msgid "Default for UPSes without this field."
|
||||
msgstr "Domyślnie dla zasilaczy UPS bez tego pola."
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:217
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:205
|
||||
msgid "Delay for kill power command"
|
||||
msgstr "Opóźnienie komendy zabijania zasilania"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:226
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:214
|
||||
msgid "Delay to power on UPS if power returns after kill power"
|
||||
msgstr ""
|
||||
"Opóźnienie włączenia zasilania UPS w przypadku powrotu zasilania po zabiciu "
|
||||
"zasilania"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:167
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:155
|
||||
msgid "Description (Display)"
|
||||
msgstr "Opis"
|
||||
|
||||
@@ -84,46 +84,46 @@ msgstr "Opis"
|
||||
msgid "Display name"
|
||||
msgstr "Wyświetlana nazwa"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:209
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:197
|
||||
msgid "Do not lock port when starting driver"
|
||||
msgstr "Nie blokuj portu podczas uruchamiania sterownika"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:170
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:158
|
||||
msgid "Driver"
|
||||
msgstr "Sterownik"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:154
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:142
|
||||
msgid "Driver Configuration"
|
||||
msgstr "Konfiguracja sterownika"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:116
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:108
|
||||
msgid "Driver Global Settings"
|
||||
msgstr "Ustawienia globalne sterownika"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:122
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:114
|
||||
msgid "Driver Path"
|
||||
msgstr "Ścieżka sterownika"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:250
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:238
|
||||
msgid "Driver Shutdown Order"
|
||||
msgstr "Rozkaz wyłączenia sterownika"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:145
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:282
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:137
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:270
|
||||
msgid "Driver waits for data to be consumed by upsd before publishing more."
|
||||
msgstr ""
|
||||
"Sterownik czeka na dane, które zostaną zużyte przez upsd, zanim opublikuje "
|
||||
"ich więcej."
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:97
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server_admin.js:20
|
||||
msgid "Drop privileges to this user"
|
||||
msgstr "Porzuć przywileje dla tego użytkownika"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_cgi.js:41
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_cgi_admin.js:22
|
||||
msgid "Enable"
|
||||
msgstr "Włącz"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:178
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:166
|
||||
msgid ""
|
||||
"Enables a hotplug script that makes all ttyUSB devices (e.g. serial USB) "
|
||||
"group read-write as user %s"
|
||||
@@ -140,23 +140,29 @@ msgstr "Wykonaj polecenie powiadomienia"
|
||||
msgid "Forced Shutdown"
|
||||
msgstr "Wymuszone wyłączenie"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:71
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:70
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor_admin.js:16
|
||||
msgid "Global Settings"
|
||||
msgstr "Ustawienia globalne"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_cgi.js:15
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_cgi_admin.js:15
|
||||
msgid "Go to NUT CGI"
|
||||
msgstr "Idź do CGI NUT"
|
||||
|
||||
#: applications/luci-app-nut/root/usr/share/rpcd/acl.d/luci-app-nut.json:15
|
||||
msgid "Grant admin UCI access for luci-app-nut"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/root/usr/share/rpcd/acl.d/luci-app-nut.json:3
|
||||
msgid "Grant UCI access for luci-app-nut"
|
||||
msgstr "Przyznaj luci-app-nut dostęp do UCI"
|
||||
msgid "Grant limited UCI read access for luci-app-nut"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_cgi.js:17
|
||||
msgid "Host"
|
||||
msgstr "Host"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:100
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:89
|
||||
msgid "Host Sync"
|
||||
msgstr "Synchronizacja hosta"
|
||||
|
||||
@@ -164,7 +170,7 @@ msgstr "Synchronizacja hosta"
|
||||
msgid "Hostname or IP address"
|
||||
msgstr "Nazwa hosta lub adres IP"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:29
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:28
|
||||
msgid "Hostname or address of UPS"
|
||||
msgstr "Nazwa hosta lub adres zasilacza UPS"
|
||||
|
||||
@@ -172,7 +178,7 @@ msgstr "Nazwa hosta lub adres zasilacza UPS"
|
||||
msgid "IP Address"
|
||||
msgstr "Adres IP"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:171
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:159
|
||||
msgid "If this list is empty you need to %s"
|
||||
msgstr "Jeśli ta lista jest pusta, musisz %s"
|
||||
|
||||
@@ -180,7 +186,7 @@ msgstr "Jeśli ta lista jest pusta, musisz %s"
|
||||
msgid "Ignore"
|
||||
msgstr "Ignoruj"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:182
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:170
|
||||
msgid "Ignore Low Battery"
|
||||
msgstr "Ignoruj niski poziom baterii"
|
||||
|
||||
@@ -188,19 +194,19 @@ msgstr "Ignoruj niski poziom baterii"
|
||||
msgid "Instant commands"
|
||||
msgstr "Szybkie komendy"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:186
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:174
|
||||
msgid "Interrupt Only"
|
||||
msgstr "Tylko przerwanie"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:190
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:178
|
||||
msgid "Interrupt Size"
|
||||
msgstr "Rozmiar przerwania"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:203
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:191
|
||||
msgid "Manufacturer (Display)"
|
||||
msgstr "Producent"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:194
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:182
|
||||
msgid "Max USB HID Length Reported"
|
||||
msgstr "Maksymalna zgłoszona długość USB HID"
|
||||
|
||||
@@ -208,47 +214,55 @@ msgstr "Maksymalna zgłoszona długość USB HID"
|
||||
msgid "Maximum Age of Data"
|
||||
msgstr "Maksymalny okres ważności danych"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:130
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:122
|
||||
msgid "Maximum Retries"
|
||||
msgstr "Maksymalna liczba powtórzeń"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:126
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:198
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:118
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:186
|
||||
msgid "Maximum Start Delay"
|
||||
msgstr "Maksymalne opóźnienie startu"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:105
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:97
|
||||
msgid "Maximum connections"
|
||||
msgstr "Maksymalna liczba połączeń"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:130
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:122
|
||||
msgid "Maximum number of times to try starting a driver."
|
||||
msgstr "Maksymalna liczba prób uruchomienia sterownika."
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:140
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:132
|
||||
msgid "Maximum time in seconds between refresh of UPS status"
|
||||
msgstr "Maksymalny czas w sekundach miedzy odświeżaniem informacji o UPS"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:78
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:74
|
||||
msgid "Minimum required number or power supplies"
|
||||
msgstr "Minimalna wymagana liczba lub zasilacze"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:206
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:194
|
||||
msgid "Model (Display)"
|
||||
msgstr "Model"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_cgi.js:13
|
||||
#: applications/luci-app-nut/root/usr/share/luci/menu.d/luci-app-nut.json:42
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_cgi_admin.js:13
|
||||
msgid "NUT CGI"
|
||||
msgstr "CGI NUT"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:68
|
||||
#: applications/luci-app-nut/root/usr/share/luci/menu.d/luci-app-nut.json:30
|
||||
#: applications/luci-app-nut/root/usr/share/luci/menu.d/luci-app-nut.json:100
|
||||
msgid "NUT CGI - admin"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/root/usr/share/luci/menu.d/luci-app-nut.json:85
|
||||
msgid "NUT CGI - main"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:67
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor_admin.js:13
|
||||
msgid "NUT Monitor"
|
||||
msgstr "Monitor NUT"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:42
|
||||
#: applications/luci-app-nut/root/usr/share/luci/menu.d/luci-app-nut.json:18
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server_admin.js:13
|
||||
msgid "NUT Server"
|
||||
msgstr "Serwer NUT"
|
||||
|
||||
@@ -256,7 +270,23 @@ msgstr "Serwer NUT"
|
||||
msgid "NUT Users"
|
||||
msgstr "Użytkownicy NUT"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:26
|
||||
#: applications/luci-app-nut/root/usr/share/luci/menu.d/luci-app-nut.json:69
|
||||
msgid "NUT monitor - admin"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/root/usr/share/luci/menu.d/luci-app-nut.json:54
|
||||
msgid "NUT monitor - main"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/root/usr/share/luci/menu.d/luci-app-nut.json:38
|
||||
msgid "NUT server - admin"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/root/usr/share/luci/menu.d/luci-app-nut.json:23
|
||||
msgid "NUT server - main"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:25
|
||||
msgid "Name of UPS"
|
||||
msgstr "Nazwa UPS"
|
||||
|
||||
@@ -265,61 +295,64 @@ msgid "Network UPS Tools"
|
||||
msgstr "Sieciowe narzędzia UPS"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_cgi.js:14
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_cgi_admin.js:14
|
||||
msgid "Network UPS Tools CGI Configuration"
|
||||
msgstr "Konfiguracja CGI narzędzi sieciowych UPS"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:69
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:68
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor_admin.js:14
|
||||
msgid "Network UPS Tools Monitoring Configuration"
|
||||
msgstr "Konfiguracja monitorowania narzędzi sieciowych UPS"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:43
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server_admin.js:14
|
||||
msgid "Network UPS Tools Server Configuration"
|
||||
msgstr "Konfiguracja serwera narzędzi sieciowych UPS"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:209
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:197
|
||||
msgid "No Lock"
|
||||
msgstr "Bez blokady"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:213
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:201
|
||||
msgid "No low/high voltage transfer OIDs"
|
||||
msgstr "Brak OID-ów transferu niskiego/wysokiego napięcia"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:127
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:116
|
||||
msgid "Notification flags"
|
||||
msgstr "Flagi powiadomień"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:119
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:108
|
||||
msgid "Notifications settings"
|
||||
msgstr "Ustawienia powiadomień"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:87
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor_admin.js:23
|
||||
msgid "Notify command"
|
||||
msgstr "Polecenie powiadomienia"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:217
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:205
|
||||
msgid "Off Delay(s)"
|
||||
msgstr "Opóźnienie wyłączenia"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:226
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:214
|
||||
msgid "On Delay(s)"
|
||||
msgstr "Opóźnienie włączenia"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:46
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:45
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:53
|
||||
msgid "Password"
|
||||
msgstr "Hasło"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:110
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:99
|
||||
msgid "Path containing ca certificates to match against host certificate"
|
||||
msgstr ""
|
||||
"Ścieżka zawierająca certyfikaty urzędów certyfikacji, które odpowiadają "
|
||||
"certyfikatowi hosta"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:122
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:114
|
||||
msgid "Path to drivers (instead of default)"
|
||||
msgstr "Ścieżka do sterowników (zamiast domyślnego)"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:101
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server_admin.js:24
|
||||
msgid "Path to state file"
|
||||
msgstr "Ścieżka do pliku stanu"
|
||||
|
||||
@@ -327,30 +360,30 @@ msgstr "Ścieżka do pliku stanu"
|
||||
msgid "Period after which data is considered stale"
|
||||
msgstr "Okres, po którym dane są uznawane za nieaktualne"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:140
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:132
|
||||
msgid "Poll Interval"
|
||||
msgstr "Interwał sondowania"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:90
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:79
|
||||
msgid "Poll frequency"
|
||||
msgstr "Częstotliwość sondowania"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:95
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:84
|
||||
msgid "Poll frequency alert"
|
||||
msgstr "Alert o częstotliwości sondowania"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:235
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:223
|
||||
msgid "Polling Frequency(s)"
|
||||
msgstr "Częstotliwość sondowań"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_cgi.js:28
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:33
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:32
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:83
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:240
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:228
|
||||
msgid "Port"
|
||||
msgstr "Port"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:38
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:37
|
||||
msgid "Power value"
|
||||
msgstr "Wartość mocy"
|
||||
|
||||
@@ -362,15 +395,15 @@ msgstr "Główny"
|
||||
msgid "Primary (Deprecated)"
|
||||
msgstr "Główny (przestarzały)"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:244
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:232
|
||||
msgid "Product (regex)"
|
||||
msgstr "Produkt (regex)"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:114
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:103
|
||||
msgid "Require SSL and make sure server CN matches hostname"
|
||||
msgstr "Wymagaj SSL i upewnij się, że serwer CN pasuje do nazwy hosta"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:135
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:127
|
||||
msgid "Retry Delay"
|
||||
msgstr "Opóźnienie powtarzania"
|
||||
|
||||
@@ -378,49 +411,48 @@ msgstr "Opóźnienie powtarzania"
|
||||
msgid "Role"
|
||||
msgstr "Rola"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:119
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:111
|
||||
msgid "Run drivers in a chroot(2) environment"
|
||||
msgstr "Uruchom sterowniki w środowisku chroot(2)"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:75
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:97
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:149
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor_admin.js:20
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server_admin.js:20
|
||||
msgid "RunAs User"
|
||||
msgstr "Użytkownik RunAs"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:163
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:151
|
||||
msgid "SNMP Community"
|
||||
msgstr "Społeczność SNMP"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:260
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:248
|
||||
msgid "SNMP retries"
|
||||
msgstr "Próby SNMP"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:264
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:252
|
||||
msgid "SNMP timeout(s)"
|
||||
msgstr "Limit czasu SNMP"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:268
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:256
|
||||
msgid "SNMP version"
|
||||
msgstr "Wersja SNMP"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:270
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:258
|
||||
msgid "SNMPv1"
|
||||
msgstr "SNMPv1"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:271
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:259
|
||||
msgid "SNMPv2c"
|
||||
msgstr "SNMPv2c"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:272
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:260
|
||||
msgid "SNMPv3"
|
||||
msgstr "SNMPv3"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:257
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:245
|
||||
msgid "Serial Number"
|
||||
msgstr "Numer seryjny"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:177
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:165
|
||||
msgid "Set USB serial port permissions"
|
||||
msgstr "Ustawienie uprawnień portu szeregowego USB"
|
||||
|
||||
@@ -428,23 +460,23 @@ msgstr "Ustawienie uprawnień portu szeregowego USB"
|
||||
msgid "Set variables"
|
||||
msgstr "Ustaw zmienne"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:83
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor_admin.js:26
|
||||
msgid "Shutdown command"
|
||||
msgstr "Polecenie wyłączenia"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:145
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:282
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:137
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:270
|
||||
msgid "Synchronous Communication"
|
||||
msgstr "Komunikacja synchroniczna"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:155
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:143
|
||||
msgid "The name of this section will be used as UPS name elsewhere"
|
||||
msgstr "Nazwa tej sekcji będzie używana jako nazwa UPS w innych miejscach"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:167
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:203
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:206
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:257
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:155
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:191
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:194
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:245
|
||||
msgid ""
|
||||
"This is passed through to the driver, so make sure your driver supports this "
|
||||
"option"
|
||||
@@ -452,28 +484,29 @@ msgstr ""
|
||||
"Przekazywane jest to do sterownika, więc upewnij się, że obsługuje on tę "
|
||||
"opcję"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:135
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:127
|
||||
msgid "Time in seconds between driver start retry attempts."
|
||||
msgstr "Czas w sekundach między ponownymi próbami uruchomienia sterownika."
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:198
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:186
|
||||
msgid "Time in seconds that upsdrvctl will wait for driver to finish starting"
|
||||
msgstr ""
|
||||
"Czas w sekundach, jaki upsdrvctl będzie czekać na zakończenie uruchamiania"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:142
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:131
|
||||
msgid "UPS Auxiliary (Deprecated)"
|
||||
msgstr "Dodatkowy UPS (przestarzały)"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:130
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:119
|
||||
msgid "UPS Monitor User Settings"
|
||||
msgstr "Ustawienia użytkownika monitora UPS"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:139
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:128
|
||||
msgid "UPS Primary (Deprecated)"
|
||||
msgstr "Główny UPS (przestarzały)"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:89
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server_admin.js:17
|
||||
msgid "UPS Server Global Settings"
|
||||
msgstr "Ustawienia globalne serwera UPS"
|
||||
|
||||
@@ -481,19 +514,19 @@ msgstr "Ustawienia globalne serwera UPS"
|
||||
msgid "UPS name"
|
||||
msgstr "Nazwa UPS"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:159
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:147
|
||||
msgid "USB Bus(es) (regex)"
|
||||
msgstr "Magistrala(-e) USB (regex)"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:247
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:235
|
||||
msgid "USB Product Id"
|
||||
msgstr "Identyfikator produktu USB"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:279
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:267
|
||||
msgid "USB Vendor Id"
|
||||
msgstr "Identyfikator dostawcy USB"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:57
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:56
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:28
|
||||
msgid "Unable to run ldd: %s"
|
||||
msgstr "Nie można uruchomić ldd: %s"
|
||||
@@ -505,33 +538,24 @@ msgstr ""
|
||||
"Użyj %s, aby zobaczyć pełną listę poleceń obsługiwanych przez UPS (wymaga "
|
||||
"pakietu %s)"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:149
|
||||
msgid ""
|
||||
"User as which to execute driver; requires device file accessed by driver to "
|
||||
"be read-write for that user."
|
||||
msgstr ""
|
||||
"Użytkownik, jako który ma wykonać sterownik; wymaga, aby plik urządzenia, do "
|
||||
"którego sterownik ma dostęp, był dla tego użytkownika odczytywany i "
|
||||
"zapisywany."
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:133
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:122
|
||||
msgid "User type (Primary/Auxiliary)"
|
||||
msgstr "Typ użytkownika (Główny/Dodatkowy)"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:43
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:42
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:50
|
||||
msgid "Username"
|
||||
msgstr "Nazwa użytkownika"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:276
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:264
|
||||
msgid "Vendor (regex)"
|
||||
msgstr "Dostawca (regex)"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:114
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:103
|
||||
msgid "Verify all connection with SSL"
|
||||
msgstr "Zweryfikuj wszystkie połączenia z SSL"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:194
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:182
|
||||
msgid "Workaround for buggy firmware"
|
||||
msgstr "Obejście dla błędnego firmware"
|
||||
|
||||
@@ -543,18 +567,29 @@ msgstr "Zapis do dziennika systemowego"
|
||||
msgid "Write to syslog and execute notify command"
|
||||
msgstr "Zapisz do dziennika systemowego i wykonaj polecenie powiadomienia"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:119
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:111
|
||||
msgid "chroot"
|
||||
msgstr "chroot"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:171
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:159
|
||||
msgid "install drivers"
|
||||
msgstr "zainstalować sterowniki"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:75
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor_admin.js:20
|
||||
msgid "upsmon drops privileges to this user"
|
||||
msgstr "upsmon porzuca uprawnienia dla tego użytkownika"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "User as which to execute driver; requires device file accessed by driver "
|
||||
#~ "to be read-write for that user."
|
||||
#~ msgstr ""
|
||||
#~ "Użytkownik, jako który ma wykonać sterownik; wymaga, aby plik urządzenia, "
|
||||
#~ "do którego sterownik ma dostęp, był dla tego użytkownika odczytywany i "
|
||||
#~ "zapisywany."
|
||||
|
||||
#~ msgid "Grant UCI access for luci-app-nut"
|
||||
#~ msgstr "Przyznaj luci-app-nut dostęp do UCI"
|
||||
|
||||
#~ msgid "UPS Monitor User Settings)"
|
||||
#~ msgstr "Ustawienia użytkownika monitora UPS"
|
||||
|
||||
|
||||
@@ -12,7 +12,7 @@ msgstr ""
|
||||
"Plural-Forms: nplurals=2; plural=n > 1;\n"
|
||||
"X-Generator: Weblate 2026.6.dev0\n"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:254
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:242
|
||||
msgid "Additional Shutdown Time(s)"
|
||||
msgstr "Tempo(s) adicionais para desligamento"
|
||||
|
||||
@@ -25,7 +25,7 @@ msgid "Allowed actions"
|
||||
msgstr "Ações permitidas"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_cgi.js:21
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:26
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:25
|
||||
msgid "As configured by NUT"
|
||||
msgstr "Como configurado pelo NUT"
|
||||
|
||||
@@ -37,45 +37,45 @@ msgstr "Escravo"
|
||||
msgid "Auxiliary (Deprecated)"
|
||||
msgstr "Auxiliar (Obsoleto)"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:190
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:178
|
||||
msgid "Bytes to read from interrupt pipe"
|
||||
msgstr "Bytes a serem lidos do pipe de interrupção"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:110
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:99
|
||||
msgid "CA Certificate path"
|
||||
msgstr "Caminho do Certificado CA"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:111
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:103
|
||||
msgid "Certificate file (SSL)"
|
||||
msgstr "Ficheiro do certificado (SSL)"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_cgi.js:36
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_cgi_admin.js:17
|
||||
msgid "Control UPS via CGI"
|
||||
msgstr "Controle do UPS via CGI"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:124
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:113
|
||||
msgid "Custom notification message for message type"
|
||||
msgstr "Mensagem de notificação personalizada para tipo de mensagem"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:104
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:93
|
||||
msgid "Deadtime"
|
||||
msgstr "Tempo inerte"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:126
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:118
|
||||
msgid "Default for UPSes without this field."
|
||||
msgstr "Predefinição para UPSs sem este campo."
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:217
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:205
|
||||
msgid "Delay for kill power command"
|
||||
msgstr "Atraso para desligar forçadamente via comando"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:226
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:214
|
||||
msgid "Delay to power on UPS if power returns after kill power"
|
||||
msgstr ""
|
||||
"Atraso para ligar o UPS caso a energia volte depois de um comando de "
|
||||
"desligamento"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:167
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:155
|
||||
msgid "Description (Display)"
|
||||
msgstr "Descrição (Display)"
|
||||
|
||||
@@ -83,46 +83,46 @@ msgstr "Descrição (Display)"
|
||||
msgid "Display name"
|
||||
msgstr "Nome de exibição"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:209
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:197
|
||||
msgid "Do not lock port when starting driver"
|
||||
msgstr "Não bloquear a porta ao iniciar o driver"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:170
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:158
|
||||
msgid "Driver"
|
||||
msgstr "Driver"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:154
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:142
|
||||
msgid "Driver Configuration"
|
||||
msgstr "Configuração do Driver"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:116
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:108
|
||||
msgid "Driver Global Settings"
|
||||
msgstr "Configurações Globais do Driver"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:122
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:114
|
||||
msgid "Driver Path"
|
||||
msgstr "Caminho do Driver"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:250
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:238
|
||||
msgid "Driver Shutdown Order"
|
||||
msgstr "Ordem de Desligamento do Driver"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:145
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:282
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:137
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:270
|
||||
msgid "Driver waits for data to be consumed by upsd before publishing more."
|
||||
msgstr ""
|
||||
"O driver espera que os dados sejam consumidos pelo upsd antes de publicar "
|
||||
"mais."
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:97
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server_admin.js:20
|
||||
msgid "Drop privileges to this user"
|
||||
msgstr "Derrubar os privilégios deste utilizador"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_cgi.js:41
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_cgi_admin.js:22
|
||||
msgid "Enable"
|
||||
msgstr "Ativar"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:178
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:166
|
||||
msgid ""
|
||||
"Enables a hotplug script that makes all ttyUSB devices (e.g. serial USB) "
|
||||
"group read-write as user %s"
|
||||
@@ -138,23 +138,29 @@ msgstr "Executar um comando de notificação"
|
||||
msgid "Forced Shutdown"
|
||||
msgstr "Desligamento Forçado"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:71
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:70
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor_admin.js:16
|
||||
msgid "Global Settings"
|
||||
msgstr "Configurações Globais"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_cgi.js:15
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_cgi_admin.js:15
|
||||
msgid "Go to NUT CGI"
|
||||
msgstr "Ir para o NUT CGI"
|
||||
|
||||
#: applications/luci-app-nut/root/usr/share/rpcd/acl.d/luci-app-nut.json:15
|
||||
msgid "Grant admin UCI access for luci-app-nut"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/root/usr/share/rpcd/acl.d/luci-app-nut.json:3
|
||||
msgid "Grant UCI access for luci-app-nut"
|
||||
msgstr "Conceder UCI acesso ao luci-app-nut"
|
||||
msgid "Grant limited UCI read access for luci-app-nut"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_cgi.js:17
|
||||
msgid "Host"
|
||||
msgstr "Host"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:100
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:89
|
||||
msgid "Host Sync"
|
||||
msgstr "Sincronização de anfitrião"
|
||||
|
||||
@@ -162,7 +168,7 @@ msgstr "Sincronização de anfitrião"
|
||||
msgid "Hostname or IP address"
|
||||
msgstr "Nome de host ou endereço IP"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:29
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:28
|
||||
msgid "Hostname or address of UPS"
|
||||
msgstr "Nome de host ou endereço do UPS"
|
||||
|
||||
@@ -170,7 +176,7 @@ msgstr "Nome de host ou endereço do UPS"
|
||||
msgid "IP Address"
|
||||
msgstr "Endereço IP"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:171
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:159
|
||||
msgid "If this list is empty you need to %s"
|
||||
msgstr "Se esta lista estiver vazia, precisa de %s"
|
||||
|
||||
@@ -178,7 +184,7 @@ msgstr "Se esta lista estiver vazia, precisa de %s"
|
||||
msgid "Ignore"
|
||||
msgstr "Ignorar"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:182
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:170
|
||||
msgid "Ignore Low Battery"
|
||||
msgstr "Ignorar o Nível de Bateria Fraca"
|
||||
|
||||
@@ -186,19 +192,19 @@ msgstr "Ignorar o Nível de Bateria Fraca"
|
||||
msgid "Instant commands"
|
||||
msgstr "Comandos instantâneos"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:186
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:174
|
||||
msgid "Interrupt Only"
|
||||
msgstr "Apenas Interromper"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:190
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:178
|
||||
msgid "Interrupt Size"
|
||||
msgstr "Tamanho da Interrupção"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:203
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:191
|
||||
msgid "Manufacturer (Display)"
|
||||
msgstr "Fabricante (Display)"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:194
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:182
|
||||
msgid "Max USB HID Length Reported"
|
||||
msgstr "Relatório de comprimento máximo do USB HID"
|
||||
|
||||
@@ -206,47 +212,55 @@ msgstr "Relatório de comprimento máximo do USB HID"
|
||||
msgid "Maximum Age of Data"
|
||||
msgstr "Idade Máxima dos Dados"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:130
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:122
|
||||
msgid "Maximum Retries"
|
||||
msgstr "Quantidade Máxima de Tentativas"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:126
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:198
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:118
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:186
|
||||
msgid "Maximum Start Delay"
|
||||
msgstr "Atraso Máximo de Arranque"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:105
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:97
|
||||
msgid "Maximum connections"
|
||||
msgstr "Quantidade máxima de conexões"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:130
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:122
|
||||
msgid "Maximum number of times to try starting a driver."
|
||||
msgstr "Quantidade máxima de vezes para tentar iniciar o driver."
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:140
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:132
|
||||
msgid "Maximum time in seconds between refresh of UPS status"
|
||||
msgstr "Tempo máximo em segundos para atualizar a condição do estado do UPS"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:78
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:74
|
||||
msgid "Minimum required number or power supplies"
|
||||
msgstr "Número de quantidade mínima necessária ou fontes de alimentação"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:206
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:194
|
||||
msgid "Model (Display)"
|
||||
msgstr "Modelo (Display)"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_cgi.js:13
|
||||
#: applications/luci-app-nut/root/usr/share/luci/menu.d/luci-app-nut.json:42
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_cgi_admin.js:13
|
||||
msgid "NUT CGI"
|
||||
msgstr "Ferramentas de Rede do UPS (CGI)"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:68
|
||||
#: applications/luci-app-nut/root/usr/share/luci/menu.d/luci-app-nut.json:30
|
||||
#: applications/luci-app-nut/root/usr/share/luci/menu.d/luci-app-nut.json:100
|
||||
msgid "NUT CGI - admin"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/root/usr/share/luci/menu.d/luci-app-nut.json:85
|
||||
msgid "NUT CGI - main"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:67
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor_admin.js:13
|
||||
msgid "NUT Monitor"
|
||||
msgstr "Ferramentas de Rede do UPS (Monitoramento)"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:42
|
||||
#: applications/luci-app-nut/root/usr/share/luci/menu.d/luci-app-nut.json:18
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server_admin.js:13
|
||||
msgid "NUT Server"
|
||||
msgstr "Ferramentas de Rede do UPS (Servidor)"
|
||||
|
||||
@@ -254,7 +268,23 @@ msgstr "Ferramentas de Rede do UPS (Servidor)"
|
||||
msgid "NUT Users"
|
||||
msgstr "Utilizadores NUT"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:26
|
||||
#: applications/luci-app-nut/root/usr/share/luci/menu.d/luci-app-nut.json:69
|
||||
msgid "NUT monitor - admin"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/root/usr/share/luci/menu.d/luci-app-nut.json:54
|
||||
msgid "NUT monitor - main"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/root/usr/share/luci/menu.d/luci-app-nut.json:38
|
||||
msgid "NUT server - admin"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/root/usr/share/luci/menu.d/luci-app-nut.json:23
|
||||
msgid "NUT server - main"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:25
|
||||
msgid "Name of UPS"
|
||||
msgstr "Nome do UPS"
|
||||
|
||||
@@ -263,61 +293,64 @@ msgid "Network UPS Tools"
|
||||
msgstr "Ferramentas de Rede do UPS"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_cgi.js:14
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_cgi_admin.js:14
|
||||
msgid "Network UPS Tools CGI Configuration"
|
||||
msgstr "Configuração CGI das Ferramentas de Rede do UPS"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:69
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:68
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor_admin.js:14
|
||||
msgid "Network UPS Tools Monitoring Configuration"
|
||||
msgstr "Configuração das Ferramentas de Monitoramento da Rede do UPS"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:43
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server_admin.js:14
|
||||
msgid "Network UPS Tools Server Configuration"
|
||||
msgstr "Configuração do Servidor das Ferramentas de Rede do UPS"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:209
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:197
|
||||
msgid "No Lock"
|
||||
msgstr "Sem Bloqueio"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:213
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:201
|
||||
msgid "No low/high voltage transfer OIDs"
|
||||
msgstr "Não há OIDs de transferência de baixa/alta tensão"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:127
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:116
|
||||
msgid "Notification flags"
|
||||
msgstr "Sinalizadores de notificação"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:119
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:108
|
||||
msgid "Notifications settings"
|
||||
msgstr "Configurações de notificação"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:87
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor_admin.js:23
|
||||
msgid "Notify command"
|
||||
msgstr "Comando de notificação"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:217
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:205
|
||||
msgid "Off Delay(s)"
|
||||
msgstr "Atraso(s) para desligamento"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:226
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:214
|
||||
msgid "On Delay(s)"
|
||||
msgstr "Atraso(s) para Ligar"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:46
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:45
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:53
|
||||
msgid "Password"
|
||||
msgstr "Palavra-passe"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:110
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:99
|
||||
msgid "Path containing ca certificates to match against host certificate"
|
||||
msgstr ""
|
||||
"Caminho contendo os certificados AC para combinar com o certificado do "
|
||||
"equipamento"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:122
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:114
|
||||
msgid "Path to drivers (instead of default)"
|
||||
msgstr "Caminho para os drivers (em vez do padrão)"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:101
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server_admin.js:24
|
||||
msgid "Path to state file"
|
||||
msgstr "Caminho para o ficheiro de estado"
|
||||
|
||||
@@ -325,30 +358,30 @@ msgstr "Caminho para o ficheiro de estado"
|
||||
msgid "Period after which data is considered stale"
|
||||
msgstr "Período quando os dados serão considerados obsoletos"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:140
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:132
|
||||
msgid "Poll Interval"
|
||||
msgstr "Intervalo de Sondagem"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:90
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:79
|
||||
msgid "Poll frequency"
|
||||
msgstr "Frequência da sondagem"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:95
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:84
|
||||
msgid "Poll frequency alert"
|
||||
msgstr "Frequência de alerta da sondagem"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:235
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:223
|
||||
msgid "Polling Frequency(s)"
|
||||
msgstr "Frequência(s) da sondagem"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_cgi.js:28
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:33
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:32
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:83
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:240
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:228
|
||||
msgid "Port"
|
||||
msgstr "Porta"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:38
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:37
|
||||
msgid "Power value"
|
||||
msgstr "Valor de potência"
|
||||
|
||||
@@ -360,17 +393,17 @@ msgstr "Primário"
|
||||
msgid "Primary (Deprecated)"
|
||||
msgstr "Primário (Obsoleto)"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:244
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:232
|
||||
msgid "Product (regex)"
|
||||
msgstr "Produto (regex)"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:114
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:103
|
||||
msgid "Require SSL and make sure server CN matches hostname"
|
||||
msgstr ""
|
||||
"Exigir o SSL e certificar-se de que o servidor CN corresponde com o nome do "
|
||||
"host"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:135
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:127
|
||||
msgid "Retry Delay"
|
||||
msgstr "Atraso de Nova Tentativa"
|
||||
|
||||
@@ -378,49 +411,48 @@ msgstr "Atraso de Nova Tentativa"
|
||||
msgid "Role"
|
||||
msgstr "Função"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:119
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:111
|
||||
msgid "Run drivers in a chroot(2) environment"
|
||||
msgstr "Executar o driver num ambiente chroot(2)"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:75
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:97
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:149
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor_admin.js:20
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server_admin.js:20
|
||||
msgid "RunAs User"
|
||||
msgstr "Executar como o Utilizador"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:163
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:151
|
||||
msgid "SNMP Community"
|
||||
msgstr "Comunicação SNMP"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:260
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:248
|
||||
msgid "SNMP retries"
|
||||
msgstr "Tentativas SNMP"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:264
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:252
|
||||
msgid "SNMP timeout(s)"
|
||||
msgstr "Tempo limite do SNMP"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:268
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:256
|
||||
msgid "SNMP version"
|
||||
msgstr "Versão do SNMP"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:270
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:258
|
||||
msgid "SNMPv1"
|
||||
msgstr "SNMPv1"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:271
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:259
|
||||
msgid "SNMPv2c"
|
||||
msgstr "SNMPv2c"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:272
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:260
|
||||
msgid "SNMPv3"
|
||||
msgstr "SNMPv3"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:257
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:245
|
||||
msgid "Serial Number"
|
||||
msgstr "Número de Série"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:177
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:165
|
||||
msgid "Set USB serial port permissions"
|
||||
msgstr "Definir as permissões da porta serial USB"
|
||||
|
||||
@@ -428,23 +460,23 @@ msgstr "Definir as permissões da porta serial USB"
|
||||
msgid "Set variables"
|
||||
msgstr "Definir as variáveis"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:83
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor_admin.js:26
|
||||
msgid "Shutdown command"
|
||||
msgstr "Comando de desligamento"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:145
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:282
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:137
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:270
|
||||
msgid "Synchronous Communication"
|
||||
msgstr "Comunicação Síncrona"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:155
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:143
|
||||
msgid "The name of this section will be used as UPS name elsewhere"
|
||||
msgstr "O nome desta secção será usado como o nome do UPS em outros lugares"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:167
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:203
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:206
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:257
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:155
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:191
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:194
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:245
|
||||
msgid ""
|
||||
"This is passed through to the driver, so make sure your driver supports this "
|
||||
"option"
|
||||
@@ -452,29 +484,30 @@ msgstr ""
|
||||
"Isto é passado para o driver, então certifique-se de que o driver suporte "
|
||||
"esta opção"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:135
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:127
|
||||
msgid "Time in seconds between driver start retry attempts."
|
||||
msgstr "Tempo em segundos entre as tentativas de reinício do driver."
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:198
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:186
|
||||
msgid "Time in seconds that upsdrvctl will wait for driver to finish starting"
|
||||
msgstr ""
|
||||
"Tempo de espera em segundos onde o upsdrvctl irá aguardar que o driver "
|
||||
"finalize a inicialização"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:142
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:131
|
||||
msgid "UPS Auxiliary (Deprecated)"
|
||||
msgstr "Auxiliar UPS (Obsoleto)"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:130
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:119
|
||||
msgid "UPS Monitor User Settings"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:139
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:128
|
||||
msgid "UPS Primary (Deprecated)"
|
||||
msgstr "UPS Primário (Obsoleto)"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:89
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server_admin.js:17
|
||||
msgid "UPS Server Global Settings"
|
||||
msgstr "Configurações Globais do Servidor UPS"
|
||||
|
||||
@@ -482,19 +515,19 @@ msgstr "Configurações Globais do Servidor UPS"
|
||||
msgid "UPS name"
|
||||
msgstr "Nome do UPS"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:159
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:147
|
||||
msgid "USB Bus(es) (regex)"
|
||||
msgstr "Bus(es) USB (regex)"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:247
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:235
|
||||
msgid "USB Product Id"
|
||||
msgstr "ID do Produto USB"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:279
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:267
|
||||
msgid "USB Vendor Id"
|
||||
msgstr "ID do Fornecedor USB"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:57
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:56
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:28
|
||||
msgid "Unable to run ldd: %s"
|
||||
msgstr "Incapaz de executar ldd: %s"
|
||||
@@ -506,32 +539,24 @@ msgstr ""
|
||||
"Use %s para ver a lista completa dos comandos compatíveis com o seu UPS "
|
||||
"(requer o pacote '%s')"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:149
|
||||
msgid ""
|
||||
"User as which to execute driver; requires device file accessed by driver to "
|
||||
"be read-write for that user."
|
||||
msgstr ""
|
||||
"Utilizador como qual executar o driver; requer que o ficheiro do aparleho "
|
||||
"acessado pelo driver tenha permissão do utilizador para leitura e escrita."
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:133
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:122
|
||||
msgid "User type (Primary/Auxiliary)"
|
||||
msgstr "Tipo de utilizador (Primário/Auxiliar)"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:43
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:42
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:50
|
||||
msgid "Username"
|
||||
msgstr "Nome do utilizador"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:276
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:264
|
||||
msgid "Vendor (regex)"
|
||||
msgstr "Fornecedor (regex)"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:114
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:103
|
||||
msgid "Verify all connection with SSL"
|
||||
msgstr "Verificar todas as conexões com SSL"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:194
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:182
|
||||
msgid "Workaround for buggy firmware"
|
||||
msgstr "Solução alternativa para firmware com problemas"
|
||||
|
||||
@@ -543,18 +568,28 @@ msgstr "Registar no syslog"
|
||||
msgid "Write to syslog and execute notify command"
|
||||
msgstr "Escrever para syslog e executar o comando notify"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:119
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:111
|
||||
msgid "chroot"
|
||||
msgstr "chroot"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:171
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:159
|
||||
msgid "install drivers"
|
||||
msgstr "instalar drivers"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:75
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor_admin.js:20
|
||||
msgid "upsmon drops privileges to this user"
|
||||
msgstr "O upsmon derrubou os privilégios para este utilizador"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "User as which to execute driver; requires device file accessed by driver "
|
||||
#~ "to be read-write for that user."
|
||||
#~ msgstr ""
|
||||
#~ "Utilizador como qual executar o driver; requer que o ficheiro do aparleho "
|
||||
#~ "acessado pelo driver tenha permissão do utilizador para leitura e escrita."
|
||||
|
||||
#~ msgid "Grant UCI access for luci-app-nut"
|
||||
#~ msgstr "Conceder UCI acesso ao luci-app-nut"
|
||||
|
||||
#~ msgid "UPS Monitor User Settings)"
|
||||
#~ msgstr "Configurações do utilizador do monitor UPS)"
|
||||
|
||||
|
||||
@@ -12,7 +12,7 @@ msgstr ""
|
||||
"Plural-Forms: nplurals=2; plural=n > 1;\n"
|
||||
"X-Generator: Weblate 2026.6.dev0\n"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:254
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:242
|
||||
msgid "Additional Shutdown Time(s)"
|
||||
msgstr "Tempo(s) adicionais para desligamento"
|
||||
|
||||
@@ -25,7 +25,7 @@ msgid "Allowed actions"
|
||||
msgstr "Ações permitidas"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_cgi.js:21
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:26
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:25
|
||||
msgid "As configured by NUT"
|
||||
msgstr "Como configurado pelo NUT"
|
||||
|
||||
@@ -37,45 +37,45 @@ msgstr "Escravo"
|
||||
msgid "Auxiliary (Deprecated)"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:190
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:178
|
||||
msgid "Bytes to read from interrupt pipe"
|
||||
msgstr "Bytes a serem lidos do pipe de interrupção"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:110
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:99
|
||||
msgid "CA Certificate path"
|
||||
msgstr "Caminho do Certificado CA"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:111
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:103
|
||||
msgid "Certificate file (SSL)"
|
||||
msgstr "Arquivo do certificado (SSL)"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_cgi.js:36
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_cgi_admin.js:17
|
||||
msgid "Control UPS via CGI"
|
||||
msgstr "Controle do Nobreak via CGI"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:124
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:113
|
||||
msgid "Custom notification message for message type"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:104
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:93
|
||||
msgid "Deadtime"
|
||||
msgstr "Tempo inerte"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:126
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:118
|
||||
msgid "Default for UPSes without this field."
|
||||
msgstr "Predefinição para Nobreaks sem este campo."
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:217
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:205
|
||||
msgid "Delay for kill power command"
|
||||
msgstr "Atraso para desligar a força via comando"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:226
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:214
|
||||
msgid "Delay to power on UPS if power returns after kill power"
|
||||
msgstr ""
|
||||
"Atraso para ligar o Nobreak caso a energia volte depois de um comando de "
|
||||
"desligamento"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:167
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:155
|
||||
msgid "Description (Display)"
|
||||
msgstr "Descrição (Display)"
|
||||
|
||||
@@ -83,46 +83,46 @@ msgstr "Descrição (Display)"
|
||||
msgid "Display name"
|
||||
msgstr "Nome de exibição"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:209
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:197
|
||||
msgid "Do not lock port when starting driver"
|
||||
msgstr "Não bloqueie a porta ao iniciar o driver"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:170
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:158
|
||||
msgid "Driver"
|
||||
msgstr "Controlador"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:154
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:142
|
||||
msgid "Driver Configuration"
|
||||
msgstr "Configuração do Driver"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:116
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:108
|
||||
msgid "Driver Global Settings"
|
||||
msgstr "Configurações Globais do Driver"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:122
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:114
|
||||
msgid "Driver Path"
|
||||
msgstr "Caminho do Driver"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:250
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:238
|
||||
msgid "Driver Shutdown Order"
|
||||
msgstr "Ordem de Desligamento do Driver"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:145
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:282
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:137
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:270
|
||||
msgid "Driver waits for data to be consumed by upsd before publishing more."
|
||||
msgstr ""
|
||||
"O driver espera que os dados sejam consumidos pelo nobreak antes de publicar "
|
||||
"mais."
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:97
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server_admin.js:20
|
||||
msgid "Drop privileges to this user"
|
||||
msgstr "Derrubar os privilégios deste usuário"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_cgi.js:41
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_cgi_admin.js:22
|
||||
msgid "Enable"
|
||||
msgstr "Ativar"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:178
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:166
|
||||
msgid ""
|
||||
"Enables a hotplug script that makes all ttyUSB devices (e.g. serial USB) "
|
||||
"group read-write as user %s"
|
||||
@@ -138,23 +138,29 @@ msgstr "Executar um comando de notificação"
|
||||
msgid "Forced Shutdown"
|
||||
msgstr "Desligamento Forçado"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:71
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:70
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor_admin.js:16
|
||||
msgid "Global Settings"
|
||||
msgstr "Configurações Globais"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_cgi.js:15
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_cgi_admin.js:15
|
||||
msgid "Go to NUT CGI"
|
||||
msgstr "Ir para o NUT CGI"
|
||||
|
||||
#: applications/luci-app-nut/root/usr/share/rpcd/acl.d/luci-app-nut.json:15
|
||||
msgid "Grant admin UCI access for luci-app-nut"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/root/usr/share/rpcd/acl.d/luci-app-nut.json:3
|
||||
msgid "Grant UCI access for luci-app-nut"
|
||||
msgstr "Conceder acesso UCI ao luci-app-nut"
|
||||
msgid "Grant limited UCI read access for luci-app-nut"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_cgi.js:17
|
||||
msgid "Host"
|
||||
msgstr "Host"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:100
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:89
|
||||
msgid "Host Sync"
|
||||
msgstr ""
|
||||
|
||||
@@ -162,7 +168,7 @@ msgstr ""
|
||||
msgid "Hostname or IP address"
|
||||
msgstr "Nome de host ou endereço IP"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:29
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:28
|
||||
msgid "Hostname or address of UPS"
|
||||
msgstr "Nome de host ou endereço do Nobreak"
|
||||
|
||||
@@ -170,7 +176,7 @@ msgstr "Nome de host ou endereço do Nobreak"
|
||||
msgid "IP Address"
|
||||
msgstr "Endereço IP"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:171
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:159
|
||||
msgid "If this list is empty you need to %s"
|
||||
msgstr "Se esta lista estiver vazia, você precisa %s"
|
||||
|
||||
@@ -178,7 +184,7 @@ msgstr "Se esta lista estiver vazia, você precisa %s"
|
||||
msgid "Ignore"
|
||||
msgstr "Ignorar"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:182
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:170
|
||||
msgid "Ignore Low Battery"
|
||||
msgstr "Ignorar o Nível de Bateria Fraca"
|
||||
|
||||
@@ -186,19 +192,19 @@ msgstr "Ignorar o Nível de Bateria Fraca"
|
||||
msgid "Instant commands"
|
||||
msgstr "Comandos instantâneos"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:186
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:174
|
||||
msgid "Interrupt Only"
|
||||
msgstr "Interromper Apenas"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:190
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:178
|
||||
msgid "Interrupt Size"
|
||||
msgstr "Tamanho da Interrupção"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:203
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:191
|
||||
msgid "Manufacturer (Display)"
|
||||
msgstr "Fabricante (Display)"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:194
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:182
|
||||
msgid "Max USB HID Length Reported"
|
||||
msgstr "Relatório de comprimento máximo do USB HID"
|
||||
|
||||
@@ -206,48 +212,56 @@ msgstr "Relatório de comprimento máximo do USB HID"
|
||||
msgid "Maximum Age of Data"
|
||||
msgstr "Idade Máxima dos Dados"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:130
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:122
|
||||
msgid "Maximum Retries"
|
||||
msgstr "Quantidade Máxima de Tentativas"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:126
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:198
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:118
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:186
|
||||
msgid "Maximum Start Delay"
|
||||
msgstr "Atraso Máximo de Arranque"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:105
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:97
|
||||
msgid "Maximum connections"
|
||||
msgstr "Quantidade máxima de conexões"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:130
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:122
|
||||
msgid "Maximum number of times to try starting a driver."
|
||||
msgstr "Quantidade máxima de vezes para tentar iniciar o driver."
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:140
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:132
|
||||
msgid "Maximum time in seconds between refresh of UPS status"
|
||||
msgstr ""
|
||||
"Tempo máximo em segundos para atualizar a condição do estado do Nobreak"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:78
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:74
|
||||
msgid "Minimum required number or power supplies"
|
||||
msgstr "Número de quantidade mínima necessária ou fontes de alimentação"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:206
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:194
|
||||
msgid "Model (Display)"
|
||||
msgstr "Modelo (Display)"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_cgi.js:13
|
||||
#: applications/luci-app-nut/root/usr/share/luci/menu.d/luci-app-nut.json:42
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_cgi_admin.js:13
|
||||
msgid "NUT CGI"
|
||||
msgstr "Ferramentas de Rede do Nobreak (CGI)"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:68
|
||||
#: applications/luci-app-nut/root/usr/share/luci/menu.d/luci-app-nut.json:30
|
||||
#: applications/luci-app-nut/root/usr/share/luci/menu.d/luci-app-nut.json:100
|
||||
msgid "NUT CGI - admin"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/root/usr/share/luci/menu.d/luci-app-nut.json:85
|
||||
msgid "NUT CGI - main"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:67
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor_admin.js:13
|
||||
msgid "NUT Monitor"
|
||||
msgstr "Ferramentas de Rede do Nobreak (Monitoramento)"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:42
|
||||
#: applications/luci-app-nut/root/usr/share/luci/menu.d/luci-app-nut.json:18
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server_admin.js:13
|
||||
msgid "NUT Server"
|
||||
msgstr "Ferramentas de Rede do Nobreak (Servidor)"
|
||||
|
||||
@@ -255,7 +269,23 @@ msgstr "Ferramentas de Rede do Nobreak (Servidor)"
|
||||
msgid "NUT Users"
|
||||
msgstr "Usuários NUT"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:26
|
||||
#: applications/luci-app-nut/root/usr/share/luci/menu.d/luci-app-nut.json:69
|
||||
msgid "NUT monitor - admin"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/root/usr/share/luci/menu.d/luci-app-nut.json:54
|
||||
msgid "NUT monitor - main"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/root/usr/share/luci/menu.d/luci-app-nut.json:38
|
||||
msgid "NUT server - admin"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/root/usr/share/luci/menu.d/luci-app-nut.json:23
|
||||
msgid "NUT server - main"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:25
|
||||
msgid "Name of UPS"
|
||||
msgstr "Nome do Nobreak"
|
||||
|
||||
@@ -264,61 +294,64 @@ msgid "Network UPS Tools"
|
||||
msgstr "Ferramentas de Rede do Nobreak"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_cgi.js:14
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_cgi_admin.js:14
|
||||
msgid "Network UPS Tools CGI Configuration"
|
||||
msgstr "Configuração CGI das Ferramentas de Rede do Nobreak"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:69
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:68
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor_admin.js:14
|
||||
msgid "Network UPS Tools Monitoring Configuration"
|
||||
msgstr "Configuração das Ferramentas de Monitoramento da Rede do Nobreak"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:43
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server_admin.js:14
|
||||
msgid "Network UPS Tools Server Configuration"
|
||||
msgstr "Configuração do Servidor das Ferramentas de Rede do Nobreak"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:209
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:197
|
||||
msgid "No Lock"
|
||||
msgstr "Sem Bloqueio"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:213
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:201
|
||||
msgid "No low/high voltage transfer OIDs"
|
||||
msgstr "Não há OIDs de transferência de baixa/alta tensão"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:127
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:116
|
||||
msgid "Notification flags"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:119
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:108
|
||||
msgid "Notifications settings"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:87
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor_admin.js:23
|
||||
msgid "Notify command"
|
||||
msgstr "Comando de notificação"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:217
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:205
|
||||
msgid "Off Delay(s)"
|
||||
msgstr "Atraso(s) para desligamento"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:226
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:214
|
||||
msgid "On Delay(s)"
|
||||
msgstr "Atraso(s) para Ligar"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:46
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:45
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:53
|
||||
msgid "Password"
|
||||
msgstr "Senha"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:110
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:99
|
||||
msgid "Path containing ca certificates to match against host certificate"
|
||||
msgstr ""
|
||||
"Caminho contendo os certificados CA para combinar com o certificado do "
|
||||
"equipamento"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:122
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:114
|
||||
msgid "Path to drivers (instead of default)"
|
||||
msgstr "Caminho para os drivers (em vez do padrão)"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:101
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server_admin.js:24
|
||||
msgid "Path to state file"
|
||||
msgstr "Caminho para o arquivo de estado"
|
||||
|
||||
@@ -326,30 +359,30 @@ msgstr "Caminho para o arquivo de estado"
|
||||
msgid "Period after which data is considered stale"
|
||||
msgstr "Período onde os dados serão considerados obsoletos"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:140
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:132
|
||||
msgid "Poll Interval"
|
||||
msgstr "Intervalo do poll"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:90
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:79
|
||||
msgid "Poll frequency"
|
||||
msgstr "Frequência do poll"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:95
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:84
|
||||
msgid "Poll frequency alert"
|
||||
msgstr "Frequência de alerta do Pool"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:235
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:223
|
||||
msgid "Polling Frequency(s)"
|
||||
msgstr "Frequência(s) do poll"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_cgi.js:28
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:33
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:32
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:83
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:240
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:228
|
||||
msgid "Port"
|
||||
msgstr "Porta"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:38
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:37
|
||||
msgid "Power value"
|
||||
msgstr "Valor de potência"
|
||||
|
||||
@@ -361,16 +394,16 @@ msgstr "Primário"
|
||||
msgid "Primary (Deprecated)"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:244
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:232
|
||||
msgid "Product (regex)"
|
||||
msgstr "Produto (regex)"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:114
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:103
|
||||
msgid "Require SSL and make sure server CN matches hostname"
|
||||
msgstr ""
|
||||
"Exigir o SSL e certificar-se de que o servidor CN coincide com o nome do host"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:135
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:127
|
||||
msgid "Retry Delay"
|
||||
msgstr "Atraso de Tentativas"
|
||||
|
||||
@@ -378,49 +411,48 @@ msgstr "Atraso de Tentativas"
|
||||
msgid "Role"
|
||||
msgstr "Papel"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:119
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:111
|
||||
msgid "Run drivers in a chroot(2) environment"
|
||||
msgstr "Executar o driver em um ambiente chroot(2)"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:75
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:97
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:149
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor_admin.js:20
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server_admin.js:20
|
||||
msgid "RunAs User"
|
||||
msgstr "Executar como um Usuário"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:163
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:151
|
||||
msgid "SNMP Community"
|
||||
msgstr "Comunicação SNMP"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:260
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:248
|
||||
msgid "SNMP retries"
|
||||
msgstr "Tentativas SNMP"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:264
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:252
|
||||
msgid "SNMP timeout(s)"
|
||||
msgstr "Tempo limite do SNMP"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:268
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:256
|
||||
msgid "SNMP version"
|
||||
msgstr "Versão do SNMP"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:270
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:258
|
||||
msgid "SNMPv1"
|
||||
msgstr "SNMPv1"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:271
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:259
|
||||
msgid "SNMPv2c"
|
||||
msgstr "SNMPv2c"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:272
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:260
|
||||
msgid "SNMPv3"
|
||||
msgstr "SNMPv3"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:257
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:245
|
||||
msgid "Serial Number"
|
||||
msgstr "Número de Série"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:177
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:165
|
||||
msgid "Set USB serial port permissions"
|
||||
msgstr "Definir as permissões da porta serial USB"
|
||||
|
||||
@@ -428,51 +460,52 @@ msgstr "Definir as permissões da porta serial USB"
|
||||
msgid "Set variables"
|
||||
msgstr "Definir as variáveis"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:83
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor_admin.js:26
|
||||
msgid "Shutdown command"
|
||||
msgstr "Comando de desligamento"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:145
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:282
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:137
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:270
|
||||
msgid "Synchronous Communication"
|
||||
msgstr "Comunicação Síncrona"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:155
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:143
|
||||
msgid "The name of this section will be used as UPS name elsewhere"
|
||||
msgstr "O nome desta seção será usado como o nome do Nobreak em outros lugares"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:167
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:203
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:206
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:257
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:155
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:191
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:194
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:245
|
||||
msgid ""
|
||||
"This is passed through to the driver, so make sure your driver supports this "
|
||||
"option"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:135
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:127
|
||||
msgid "Time in seconds between driver start retry attempts."
|
||||
msgstr "Tempo em segundos entre as tentativas de reinício do driver."
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:198
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:186
|
||||
msgid "Time in seconds that upsdrvctl will wait for driver to finish starting"
|
||||
msgstr ""
|
||||
"Tempo de espera em segundos onde o upsdrvctl vai aguardar o driver para "
|
||||
"finalizar a inicialização"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:142
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:131
|
||||
msgid "UPS Auxiliary (Deprecated)"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:130
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:119
|
||||
msgid "UPS Monitor User Settings"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:139
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:128
|
||||
msgid "UPS Primary (Deprecated)"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:89
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server_admin.js:17
|
||||
msgid "UPS Server Global Settings"
|
||||
msgstr "Configurações Globais do Servidor Nobreak"
|
||||
|
||||
@@ -480,19 +513,19 @@ msgstr "Configurações Globais do Servidor Nobreak"
|
||||
msgid "UPS name"
|
||||
msgstr "Nome do Nobreak"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:159
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:147
|
||||
msgid "USB Bus(es) (regex)"
|
||||
msgstr "Barramento(s) USB (regex)"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:247
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:235
|
||||
msgid "USB Product Id"
|
||||
msgstr "ID do Produto USB"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:279
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:267
|
||||
msgid "USB Vendor Id"
|
||||
msgstr "ID do Fornecedor USB"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:57
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:56
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:28
|
||||
msgid "Unable to run ldd: %s"
|
||||
msgstr "Não foi possível executar o ldd: %s"
|
||||
@@ -504,32 +537,24 @@ msgstr ""
|
||||
"Use %s para ver a lista completa dos comandos compatíveis com o seu Nobreak "
|
||||
"(requer o pacote '%s')"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:149
|
||||
msgid ""
|
||||
"User as which to execute driver; requires device file accessed by driver to "
|
||||
"be read-write for that user."
|
||||
msgstr ""
|
||||
"Usuário como qual executar o driver; requer que o arquivo do dispositivo "
|
||||
"acessado pelo driver tenha permissão do usuário para leitura e escrita."
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:133
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:122
|
||||
msgid "User type (Primary/Auxiliary)"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:43
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:42
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:50
|
||||
msgid "Username"
|
||||
msgstr "Nome de usuário"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:276
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:264
|
||||
msgid "Vendor (regex)"
|
||||
msgstr "Fornecedor (regex)"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:114
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:103
|
||||
msgid "Verify all connection with SSL"
|
||||
msgstr "Verifique todas as conexões com SSL"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:194
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:182
|
||||
msgid "Workaround for buggy firmware"
|
||||
msgstr "Solução alternativa para firmware com problemas"
|
||||
|
||||
@@ -541,18 +566,28 @@ msgstr "Registrar no syslog"
|
||||
msgid "Write to syslog and execute notify command"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:119
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:111
|
||||
msgid "chroot"
|
||||
msgstr "chroot"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:171
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:159
|
||||
msgid "install drivers"
|
||||
msgstr "Instalar controladores"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:75
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor_admin.js:20
|
||||
msgid "upsmon drops privileges to this user"
|
||||
msgstr "O upsmon derrubou os privilégios para este usuário"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "User as which to execute driver; requires device file accessed by driver "
|
||||
#~ "to be read-write for that user."
|
||||
#~ msgstr ""
|
||||
#~ "Usuário como qual executar o driver; requer que o arquivo do dispositivo "
|
||||
#~ "acessado pelo driver tenha permissão do usuário para leitura e escrita."
|
||||
|
||||
#~ msgid "Grant UCI access for luci-app-nut"
|
||||
#~ msgstr "Conceder acesso UCI ao luci-app-nut"
|
||||
|
||||
#~ msgid "%s is mutually exclusive to other choices"
|
||||
#~ msgstr "%s é mutuamente exclusivo em relação às outras opções"
|
||||
|
||||
|
||||
@@ -13,7 +13,7 @@ msgstr ""
|
||||
"(n==0 || (n%100 > 0 && n%100 < 20)) ? 1 : 2;\n"
|
||||
"X-Generator: Weblate 5.14.1-dev\n"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:254
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:242
|
||||
msgid "Additional Shutdown Time(s)"
|
||||
msgstr "Timp(i) suplimentar(i) de oprire"
|
||||
|
||||
@@ -26,7 +26,7 @@ msgid "Allowed actions"
|
||||
msgstr "Acțiuni permise"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_cgi.js:21
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:26
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:25
|
||||
msgid "As configured by NUT"
|
||||
msgstr "După cum este configurat de NUT"
|
||||
|
||||
@@ -38,45 +38,45 @@ msgstr "Secundar"
|
||||
msgid "Auxiliary (Deprecated)"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:190
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:178
|
||||
msgid "Bytes to read from interrupt pipe"
|
||||
msgstr "Byte de citit din conducta de întrerupere"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:110
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:99
|
||||
msgid "CA Certificate path"
|
||||
msgstr "Calea certificatului CA"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:111
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:103
|
||||
msgid "Certificate file (SSL)"
|
||||
msgstr "Fișier de certificat (SSL)"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_cgi.js:36
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_cgi_admin.js:17
|
||||
msgid "Control UPS via CGI"
|
||||
msgstr "Controlul UPS prin CGI"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:124
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:113
|
||||
msgid "Custom notification message for message type"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:104
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:93
|
||||
msgid "Deadtime"
|
||||
msgstr "Timp mort"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:126
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:118
|
||||
msgid "Default for UPSes without this field."
|
||||
msgstr "Implicit pentru UPS-urile fără acest câmp."
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:217
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:205
|
||||
msgid "Delay for kill power command"
|
||||
msgstr "Întârziere pentru comanda de oprire a puterii"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:226
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:214
|
||||
msgid "Delay to power on UPS if power returns after kill power"
|
||||
msgstr ""
|
||||
"Întârzierea de a porni UPS-ul în cazul în care revine curentul după "
|
||||
"întreruperea alimentării"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:167
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:155
|
||||
msgid "Description (Display)"
|
||||
msgstr "Descriere (Afișare)"
|
||||
|
||||
@@ -84,46 +84,46 @@ msgstr "Descriere (Afișare)"
|
||||
msgid "Display name"
|
||||
msgstr "Afișați numele"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:209
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:197
|
||||
msgid "Do not lock port when starting driver"
|
||||
msgstr "Nu blocați portul la pornirea driverului"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:170
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:158
|
||||
msgid "Driver"
|
||||
msgstr "Driver"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:154
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:142
|
||||
msgid "Driver Configuration"
|
||||
msgstr "Configurația șoferului"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:116
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:108
|
||||
msgid "Driver Global Settings"
|
||||
msgstr "Setări globale ale driverului"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:122
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:114
|
||||
msgid "Driver Path"
|
||||
msgstr "Traiectoria șoferului"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:250
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:238
|
||||
msgid "Driver Shutdown Order"
|
||||
msgstr "Ordinul de oprire a șoferului"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:145
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:282
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:137
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:270
|
||||
msgid "Driver waits for data to be consumed by upsd before publishing more."
|
||||
msgstr ""
|
||||
"Driverul așteaptă ca datele să fie consumate de upsd înainte de a publica "
|
||||
"mai multe."
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:97
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server_admin.js:20
|
||||
msgid "Drop privileges to this user"
|
||||
msgstr "Eliminați privilegiile acestui utilizator"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_cgi.js:41
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_cgi_admin.js:22
|
||||
msgid "Enable"
|
||||
msgstr "Activați"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:178
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:166
|
||||
msgid ""
|
||||
"Enables a hotplug script that makes all ttyUSB devices (e.g. serial USB) "
|
||||
"group read-write as user %s"
|
||||
@@ -139,23 +139,29 @@ msgstr "Executarea comenzii de notificare"
|
||||
msgid "Forced Shutdown"
|
||||
msgstr "Oprire forțată"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:71
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:70
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor_admin.js:16
|
||||
msgid "Global Settings"
|
||||
msgstr "Setări generale"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_cgi.js:15
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_cgi_admin.js:15
|
||||
msgid "Go to NUT CGI"
|
||||
msgstr "Mergeți la NUT CGI"
|
||||
|
||||
#: applications/luci-app-nut/root/usr/share/rpcd/acl.d/luci-app-nut.json:15
|
||||
msgid "Grant admin UCI access for luci-app-nut"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/root/usr/share/rpcd/acl.d/luci-app-nut.json:3
|
||||
msgid "Grant UCI access for luci-app-nut"
|
||||
msgstr "Acordă acces la UCI pentru luci-app-nut"
|
||||
msgid "Grant limited UCI read access for luci-app-nut"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_cgi.js:17
|
||||
msgid "Host"
|
||||
msgstr "Gazdă"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:100
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:89
|
||||
msgid "Host Sync"
|
||||
msgstr ""
|
||||
|
||||
@@ -163,7 +169,7 @@ msgstr ""
|
||||
msgid "Hostname or IP address"
|
||||
msgstr "Numele de gazdă sau adresa IP"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:29
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:28
|
||||
msgid "Hostname or address of UPS"
|
||||
msgstr "Numele de gazdă sau adresa UPS-ului"
|
||||
|
||||
@@ -171,7 +177,7 @@ msgstr "Numele de gazdă sau adresa UPS-ului"
|
||||
msgid "IP Address"
|
||||
msgstr "Adresă IP"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:171
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:159
|
||||
msgid "If this list is empty you need to %s"
|
||||
msgstr ""
|
||||
|
||||
@@ -179,7 +185,7 @@ msgstr ""
|
||||
msgid "Ignore"
|
||||
msgstr "Ignoră"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:182
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:170
|
||||
msgid "Ignore Low Battery"
|
||||
msgstr "Ignoră bateria descărcată"
|
||||
|
||||
@@ -187,19 +193,19 @@ msgstr "Ignoră bateria descărcată"
|
||||
msgid "Instant commands"
|
||||
msgstr "Comenzi instantanee"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:186
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:174
|
||||
msgid "Interrupt Only"
|
||||
msgstr "Numai întrerupere"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:190
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:178
|
||||
msgid "Interrupt Size"
|
||||
msgstr "Dimensiunea întreruperii"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:203
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:191
|
||||
msgid "Manufacturer (Display)"
|
||||
msgstr "Producător (Afișaj)"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:194
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:182
|
||||
msgid "Max USB HID Length Reported"
|
||||
msgstr "Lungimea maximă USB HID raportată"
|
||||
|
||||
@@ -207,47 +213,55 @@ msgstr "Lungimea maximă USB HID raportată"
|
||||
msgid "Maximum Age of Data"
|
||||
msgstr "Vârsta maximă a datelor"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:130
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:122
|
||||
msgid "Maximum Retries"
|
||||
msgstr "Reîncercări maxime"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:126
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:198
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:118
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:186
|
||||
msgid "Maximum Start Delay"
|
||||
msgstr "Întârziere maximă de pornire"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:105
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:97
|
||||
msgid "Maximum connections"
|
||||
msgstr "Conexiuni maxime"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:130
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:122
|
||||
msgid "Maximum number of times to try starting a driver."
|
||||
msgstr "Numărul maxim de încercări de pornire a unui driver."
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:140
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:132
|
||||
msgid "Maximum time in seconds between refresh of UPS status"
|
||||
msgstr "Timp maxim în secunde între actualizarea stării UPS"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:78
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:74
|
||||
msgid "Minimum required number or power supplies"
|
||||
msgstr "Numărul minim necesar de surse de alimentare"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:206
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:194
|
||||
msgid "Model (Display)"
|
||||
msgstr "Model (Afișaj)"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_cgi.js:13
|
||||
#: applications/luci-app-nut/root/usr/share/luci/menu.d/luci-app-nut.json:42
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_cgi_admin.js:13
|
||||
msgid "NUT CGI"
|
||||
msgstr "Instrumente de rețea UPS (CGI)"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:68
|
||||
#: applications/luci-app-nut/root/usr/share/luci/menu.d/luci-app-nut.json:30
|
||||
#: applications/luci-app-nut/root/usr/share/luci/menu.d/luci-app-nut.json:100
|
||||
msgid "NUT CGI - admin"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/root/usr/share/luci/menu.d/luci-app-nut.json:85
|
||||
msgid "NUT CGI - main"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:67
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor_admin.js:13
|
||||
msgid "NUT Monitor"
|
||||
msgstr "Instrumente de rețea UPS (Monitor)"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:42
|
||||
#: applications/luci-app-nut/root/usr/share/luci/menu.d/luci-app-nut.json:18
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server_admin.js:13
|
||||
msgid "NUT Server"
|
||||
msgstr "Instrumente de rețea UPS (server)"
|
||||
|
||||
@@ -255,7 +269,23 @@ msgstr "Instrumente de rețea UPS (server)"
|
||||
msgid "NUT Users"
|
||||
msgstr "Utilizatori NUT"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:26
|
||||
#: applications/luci-app-nut/root/usr/share/luci/menu.d/luci-app-nut.json:69
|
||||
msgid "NUT monitor - admin"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/root/usr/share/luci/menu.d/luci-app-nut.json:54
|
||||
msgid "NUT monitor - main"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/root/usr/share/luci/menu.d/luci-app-nut.json:38
|
||||
msgid "NUT server - admin"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/root/usr/share/luci/menu.d/luci-app-nut.json:23
|
||||
msgid "NUT server - main"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:25
|
||||
msgid "Name of UPS"
|
||||
msgstr "Numele UPS"
|
||||
|
||||
@@ -264,61 +294,64 @@ msgid "Network UPS Tools"
|
||||
msgstr "Instrumente de rețea UPS"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_cgi.js:14
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_cgi_admin.js:14
|
||||
msgid "Network UPS Tools CGI Configuration"
|
||||
msgstr "Instrumente de rețea UPS Instrumente de configurare CGI"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:69
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:68
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor_admin.js:14
|
||||
msgid "Network UPS Tools Monitoring Configuration"
|
||||
msgstr "Rețea UPS Instrumente de monitorizare Configurație"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:43
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server_admin.js:14
|
||||
msgid "Network UPS Tools Server Configuration"
|
||||
msgstr "Rețeaua UPS Tools Configurarea serverului"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:209
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:197
|
||||
msgid "No Lock"
|
||||
msgstr "Fără blocare"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:213
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:201
|
||||
msgid "No low/high voltage transfer OIDs"
|
||||
msgstr "Nu există OID-uri de transfer de tensiune joasă/înaltă"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:127
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:116
|
||||
msgid "Notification flags"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:119
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:108
|
||||
msgid "Notifications settings"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:87
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor_admin.js:23
|
||||
msgid "Notify command"
|
||||
msgstr "Comanda de notificare"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:217
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:205
|
||||
msgid "Off Delay(s)"
|
||||
msgstr "Oprire Întârziere (s)"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:226
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:214
|
||||
msgid "On Delay(s)"
|
||||
msgstr "Întârziere de pornire (s)"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:46
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:45
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:53
|
||||
msgid "Password"
|
||||
msgstr "Parolă"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:110
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:99
|
||||
msgid "Path containing ca certificates to match against host certificate"
|
||||
msgstr ""
|
||||
"Calea care conține certificatele ca pentru a se compara cu certificatul de "
|
||||
"gazdă"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:122
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:114
|
||||
msgid "Path to drivers (instead of default)"
|
||||
msgstr "Cale de acces la drivere (în loc de cea implicită)"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:101
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server_admin.js:24
|
||||
msgid "Path to state file"
|
||||
msgstr "Calea către fișierul de stare"
|
||||
|
||||
@@ -326,30 +359,30 @@ msgstr "Calea către fișierul de stare"
|
||||
msgid "Period after which data is considered stale"
|
||||
msgstr "Perioada după care datele sunt considerate expirate"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:140
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:132
|
||||
msgid "Poll Interval"
|
||||
msgstr "Intervalul de interogare"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:90
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:79
|
||||
msgid "Poll frequency"
|
||||
msgstr "Frecvența sondajului"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:95
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:84
|
||||
msgid "Poll frequency alert"
|
||||
msgstr "Alertă de frecvență a sondajului"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:235
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:223
|
||||
msgid "Polling Frequency(s)"
|
||||
msgstr "Frecvența de interogare (s)"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_cgi.js:28
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:33
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:32
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:83
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:240
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:228
|
||||
msgid "Port"
|
||||
msgstr "Port"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:38
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:37
|
||||
msgid "Power value"
|
||||
msgstr "Valoarea puterii"
|
||||
|
||||
@@ -361,16 +394,16 @@ msgstr "Principal"
|
||||
msgid "Primary (Deprecated)"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:244
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:232
|
||||
msgid "Product (regex)"
|
||||
msgstr "Produs (regex)"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:114
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:103
|
||||
msgid "Require SSL and make sure server CN matches hostname"
|
||||
msgstr ""
|
||||
"Cereți SSL și asigurați-vă că CN-ul serverului corespunde cu numele de gazdă"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:135
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:127
|
||||
msgid "Retry Delay"
|
||||
msgstr "Întârziere de reîncercare"
|
||||
|
||||
@@ -378,49 +411,48 @@ msgstr "Întârziere de reîncercare"
|
||||
msgid "Role"
|
||||
msgstr "Rol"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:119
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:111
|
||||
msgid "Run drivers in a chroot(2) environment"
|
||||
msgstr "Rulați driverele într-un mediu chroot(2)"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:75
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:97
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:149
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor_admin.js:20
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server_admin.js:20
|
||||
msgid "RunAs User"
|
||||
msgstr "RunAs Utilizator"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:163
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:151
|
||||
msgid "SNMP Community"
|
||||
msgstr "Comunitatea SNMP"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:260
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:248
|
||||
msgid "SNMP retries"
|
||||
msgstr "Reîncercări SNMP"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:264
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:252
|
||||
msgid "SNMP timeout(s)"
|
||||
msgstr "Timpul de așteptare SNMP (s)"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:268
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:256
|
||||
msgid "SNMP version"
|
||||
msgstr "Versiunea SNMP"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:270
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:258
|
||||
msgid "SNMPv1"
|
||||
msgstr "SNMPv1"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:271
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:259
|
||||
msgid "SNMPv2c"
|
||||
msgstr "SNMPv2c"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:272
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:260
|
||||
msgid "SNMPv3"
|
||||
msgstr "SNMPv3"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:257
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:245
|
||||
msgid "Serial Number"
|
||||
msgstr "Numărul de serie"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:177
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:165
|
||||
msgid "Set USB serial port permissions"
|
||||
msgstr "Setați permisiunile pentru portul serial USB"
|
||||
|
||||
@@ -428,53 +460,54 @@ msgstr "Setați permisiunile pentru portul serial USB"
|
||||
msgid "Set variables"
|
||||
msgstr "Setați variabilele"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:83
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor_admin.js:26
|
||||
msgid "Shutdown command"
|
||||
msgstr "Comandă de oprire"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:145
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:282
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:137
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:270
|
||||
msgid "Synchronous Communication"
|
||||
msgstr "Comunicare sincronă"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:155
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:143
|
||||
msgid "The name of this section will be used as UPS name elsewhere"
|
||||
msgstr "Numele acestei secțiuni va fi folosit ca nume UPS în altă parte"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:167
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:203
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:206
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:257
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:155
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:191
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:194
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:245
|
||||
msgid ""
|
||||
"This is passed through to the driver, so make sure your driver supports this "
|
||||
"option"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:135
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:127
|
||||
msgid "Time in seconds between driver start retry attempts."
|
||||
msgstr ""
|
||||
"Timpul, exprimat în secunde, dintre încercările de reluare a pornirii "
|
||||
"șoferului."
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:198
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:186
|
||||
msgid "Time in seconds that upsdrvctl will wait for driver to finish starting"
|
||||
msgstr ""
|
||||
"Timpul în secunde în care upsdrvctl va aștepta ca driverul să termine de "
|
||||
"pornit"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:142
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:131
|
||||
msgid "UPS Auxiliary (Deprecated)"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:130
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:119
|
||||
msgid "UPS Monitor User Settings"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:139
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:128
|
||||
msgid "UPS Primary (Deprecated)"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:89
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server_admin.js:17
|
||||
msgid "UPS Server Global Settings"
|
||||
msgstr "Setări globale ale serverului UPS"
|
||||
|
||||
@@ -482,19 +515,19 @@ msgstr "Setări globale ale serverului UPS"
|
||||
msgid "UPS name"
|
||||
msgstr "UPS nume"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:159
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:147
|
||||
msgid "USB Bus(es) (regex)"
|
||||
msgstr "USB Bus(e) (regex)"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:247
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:235
|
||||
msgid "USB Product Id"
|
||||
msgstr "ID produs USB"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:279
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:267
|
||||
msgid "USB Vendor Id"
|
||||
msgstr "Identitatea furnizorului USB"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:57
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:56
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:28
|
||||
msgid "Unable to run ldd: %s"
|
||||
msgstr ""
|
||||
@@ -506,33 +539,24 @@ msgstr ""
|
||||
"Folosiți %s pentru a vedea lista completă a comenzilor pe care le suportă "
|
||||
"UPS-ul dumneavoastră (necesită pachetul %s)"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:149
|
||||
msgid ""
|
||||
"User as which to execute driver; requires device file accessed by driver to "
|
||||
"be read-write for that user."
|
||||
msgstr ""
|
||||
"Utilizator în calitate de utilizator care execută driverul; necesită ca "
|
||||
"fișierul de dispozitiv accesat de driver să fie de citire-scriere pentru "
|
||||
"acel utilizator."
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:133
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:122
|
||||
msgid "User type (Primary/Auxiliary)"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:43
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:42
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:50
|
||||
msgid "Username"
|
||||
msgstr "Nume Utilizator"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:276
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:264
|
||||
msgid "Vendor (regex)"
|
||||
msgstr "Furnizor (regex)"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:114
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:103
|
||||
msgid "Verify all connection with SSL"
|
||||
msgstr "Verifică toate conexiunile cu SSL"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:194
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:182
|
||||
msgid "Workaround for buggy firmware"
|
||||
msgstr "Soluție de rezolvare pentru firmware-ul eronat"
|
||||
|
||||
@@ -544,18 +568,29 @@ msgstr "Scrieți în syslog"
|
||||
msgid "Write to syslog and execute notify command"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:119
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:111
|
||||
msgid "chroot"
|
||||
msgstr "chroot"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:171
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:159
|
||||
msgid "install drivers"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:75
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor_admin.js:20
|
||||
msgid "upsmon drops privileges to this user"
|
||||
msgstr "upsmon renunță privilegiile pentru acest utilizator"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "User as which to execute driver; requires device file accessed by driver "
|
||||
#~ "to be read-write for that user."
|
||||
#~ msgstr ""
|
||||
#~ "Utilizator în calitate de utilizator care execută driverul; necesită ca "
|
||||
#~ "fișierul de dispozitiv accesat de driver să fie de citire-scriere pentru "
|
||||
#~ "acel utilizator."
|
||||
|
||||
#~ msgid "Grant UCI access for luci-app-nut"
|
||||
#~ msgstr "Acordă acces la UCI pentru luci-app-nut"
|
||||
|
||||
#~ msgid "%s is mutually exclusive to other choices"
|
||||
#~ msgstr "%s este exclusiv față de alte opțiuni"
|
||||
|
||||
|
||||
@@ -13,7 +13,7 @@ msgstr ""
|
||||
"n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
|
||||
"X-Generator: Weblate 2026.7.1.dev0\n"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:254
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:242
|
||||
msgid "Additional Shutdown Time(s)"
|
||||
msgstr "Дополнительное время выключения"
|
||||
|
||||
@@ -26,7 +26,7 @@ msgid "Allowed actions"
|
||||
msgstr "Разрешённые действия"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_cgi.js:21
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:26
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:25
|
||||
msgid "As configured by NUT"
|
||||
msgstr "Настройка с помощью NUT"
|
||||
|
||||
@@ -38,45 +38,45 @@ msgstr "Слейв"
|
||||
msgid "Auxiliary (Deprecated)"
|
||||
msgstr "Вспомогательный (устарело)"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:190
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:178
|
||||
msgid "Bytes to read from interrupt pipe"
|
||||
msgstr "Байты для чтения из канала прерывания"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:110
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:99
|
||||
msgid "CA Certificate path"
|
||||
msgstr "Путь к сертификату CA"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:111
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:103
|
||||
msgid "Certificate file (SSL)"
|
||||
msgstr "Файл сертификата (SSL)"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_cgi.js:36
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_cgi_admin.js:17
|
||||
msgid "Control UPS via CGI"
|
||||
msgstr "Управление ИБП через CGI"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:124
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:113
|
||||
msgid "Custom notification message for message type"
|
||||
msgstr "Пользовательское сообщение для типа события"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:104
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:93
|
||||
msgid "Deadtime"
|
||||
msgstr "Простой"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:126
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:118
|
||||
msgid "Default for UPSes without this field."
|
||||
msgstr "По умолчанию для ИБП без этого поля."
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:217
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:205
|
||||
msgid "Delay for kill power command"
|
||||
msgstr "Задержка для команды отключения питания"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:226
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:214
|
||||
msgid "Delay to power on UPS if power returns after kill power"
|
||||
msgstr ""
|
||||
"Задержка включения ИБП при возобновлении подачи питания после отключения "
|
||||
"питания"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:167
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:155
|
||||
msgid "Description (Display)"
|
||||
msgstr "Описание (показать)"
|
||||
|
||||
@@ -84,45 +84,45 @@ msgstr "Описание (показать)"
|
||||
msgid "Display name"
|
||||
msgstr "Отображаемое название"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:209
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:197
|
||||
msgid "Do not lock port when starting driver"
|
||||
msgstr "Не блокировать порт при запуске драйвера"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:170
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:158
|
||||
msgid "Driver"
|
||||
msgstr "Драйвер"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:154
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:142
|
||||
msgid "Driver Configuration"
|
||||
msgstr "Настройки драйвера"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:116
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:108
|
||||
msgid "Driver Global Settings"
|
||||
msgstr "Глобальные настройки драйвера"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:122
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:114
|
||||
msgid "Driver Path"
|
||||
msgstr "Путь к драйверу"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:250
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:238
|
||||
msgid "Driver Shutdown Order"
|
||||
msgstr "Порядок выключения драйвера"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:145
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:282
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:137
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:270
|
||||
msgid "Driver waits for data to be consumed by upsd before publishing more."
|
||||
msgstr ""
|
||||
"Драйвер ожидает пока upsd обработает новые данных перед их публикацией."
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:97
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server_admin.js:20
|
||||
msgid "Drop privileges to this user"
|
||||
msgstr "Сбросить привилегии для этого пользователя"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_cgi.js:41
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_cgi_admin.js:22
|
||||
msgid "Enable"
|
||||
msgstr "Включить"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:178
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:166
|
||||
msgid ""
|
||||
"Enables a hotplug script that makes all ttyUSB devices (e.g. serial USB) "
|
||||
"group read-write as user %s"
|
||||
@@ -138,23 +138,29 @@ msgstr "Выполнить команду уведомления"
|
||||
msgid "Forced Shutdown"
|
||||
msgstr "Принудительное выключение"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:71
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:70
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor_admin.js:16
|
||||
msgid "Global Settings"
|
||||
msgstr "Глобальные настройки"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_cgi.js:15
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_cgi_admin.js:15
|
||||
msgid "Go to NUT CGI"
|
||||
msgstr "Перейти к NUT CGI"
|
||||
|
||||
#: applications/luci-app-nut/root/usr/share/rpcd/acl.d/luci-app-nut.json:15
|
||||
msgid "Grant admin UCI access for luci-app-nut"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/root/usr/share/rpcd/acl.d/luci-app-nut.json:3
|
||||
msgid "Grant UCI access for luci-app-nut"
|
||||
msgstr "Предоставить доступ к UCI для luci-app-nut"
|
||||
msgid "Grant limited UCI read access for luci-app-nut"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_cgi.js:17
|
||||
msgid "Host"
|
||||
msgstr "Хост"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:100
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:89
|
||||
msgid "Host Sync"
|
||||
msgstr "Синхронизация хоста"
|
||||
|
||||
@@ -162,7 +168,7 @@ msgstr "Синхронизация хоста"
|
||||
msgid "Hostname or IP address"
|
||||
msgstr "Имя хоста или IP адрес"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:29
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:28
|
||||
msgid "Hostname or address of UPS"
|
||||
msgstr "Имя или адрес хоста UPS"
|
||||
|
||||
@@ -170,7 +176,7 @@ msgstr "Имя или адрес хоста UPS"
|
||||
msgid "IP Address"
|
||||
msgstr "IP-адрес"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:171
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:159
|
||||
msgid "If this list is empty you need to %s"
|
||||
msgstr "Если этот список пуст, вам нужно %s"
|
||||
|
||||
@@ -178,7 +184,7 @@ msgstr "Если этот список пуст, вам нужно %s"
|
||||
msgid "Ignore"
|
||||
msgstr "Игнорировать"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:182
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:170
|
||||
msgid "Ignore Low Battery"
|
||||
msgstr "Игнорировать низкий уровень заряда батареи"
|
||||
|
||||
@@ -186,19 +192,19 @@ msgstr "Игнорировать низкий уровень заряда бат
|
||||
msgid "Instant commands"
|
||||
msgstr "Мгновенные команды"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:186
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:174
|
||||
msgid "Interrupt Only"
|
||||
msgstr "Только прерывания"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:190
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:178
|
||||
msgid "Interrupt Size"
|
||||
msgstr "Размер прерывания"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:203
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:191
|
||||
msgid "Manufacturer (Display)"
|
||||
msgstr "Производитель (отображаемый)"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:194
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:182
|
||||
msgid "Max USB HID Length Reported"
|
||||
msgstr "Максимальная заявленная длина USB HID"
|
||||
|
||||
@@ -206,47 +212,55 @@ msgstr "Максимальная заявленная длина USB HID"
|
||||
msgid "Maximum Age of Data"
|
||||
msgstr "Максимальный срок хранения"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:130
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:122
|
||||
msgid "Maximum Retries"
|
||||
msgstr "Максимальное количество попыток"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:126
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:198
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:118
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:186
|
||||
msgid "Maximum Start Delay"
|
||||
msgstr "Максимальная задержка запуска"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:105
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:97
|
||||
msgid "Maximum connections"
|
||||
msgstr "Максимальное количество подключений"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:130
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:122
|
||||
msgid "Maximum number of times to try starting a driver."
|
||||
msgstr "Максимальное количество попыток запуска драйвера."
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:140
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:132
|
||||
msgid "Maximum time in seconds between refresh of UPS status"
|
||||
msgstr "Максимальное количество секунд между обновлением статуса UPS"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:78
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:74
|
||||
msgid "Minimum required number or power supplies"
|
||||
msgstr "Минимально необходимое количество источников питания"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:206
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:194
|
||||
msgid "Model (Display)"
|
||||
msgstr "Модель (дисплей)"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_cgi.js:13
|
||||
#: applications/luci-app-nut/root/usr/share/luci/menu.d/luci-app-nut.json:42
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_cgi_admin.js:13
|
||||
msgid "NUT CGI"
|
||||
msgstr "Сетевые инструменты ИБП (CGI)"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:68
|
||||
#: applications/luci-app-nut/root/usr/share/luci/menu.d/luci-app-nut.json:30
|
||||
#: applications/luci-app-nut/root/usr/share/luci/menu.d/luci-app-nut.json:100
|
||||
msgid "NUT CGI - admin"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/root/usr/share/luci/menu.d/luci-app-nut.json:85
|
||||
msgid "NUT CGI - main"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:67
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor_admin.js:13
|
||||
msgid "NUT Monitor"
|
||||
msgstr "Сетевые инструменты ИБП (монитор)"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:42
|
||||
#: applications/luci-app-nut/root/usr/share/luci/menu.d/luci-app-nut.json:18
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server_admin.js:13
|
||||
msgid "NUT Server"
|
||||
msgstr "Сетевые инструменты ИБП (сервер)"
|
||||
|
||||
@@ -254,7 +268,23 @@ msgstr "Сетевые инструменты ИБП (сервер)"
|
||||
msgid "NUT Users"
|
||||
msgstr "Пользователи NUT"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:26
|
||||
#: applications/luci-app-nut/root/usr/share/luci/menu.d/luci-app-nut.json:69
|
||||
msgid "NUT monitor - admin"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/root/usr/share/luci/menu.d/luci-app-nut.json:54
|
||||
msgid "NUT monitor - main"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/root/usr/share/luci/menu.d/luci-app-nut.json:38
|
||||
msgid "NUT server - admin"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/root/usr/share/luci/menu.d/luci-app-nut.json:23
|
||||
msgid "NUT server - main"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:25
|
||||
msgid "Name of UPS"
|
||||
msgstr "Имя ИБП"
|
||||
|
||||
@@ -263,59 +293,62 @@ msgid "Network UPS Tools"
|
||||
msgstr "Утилиты Сетевого ИБП"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_cgi.js:14
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_cgi_admin.js:14
|
||||
msgid "Network UPS Tools CGI Configuration"
|
||||
msgstr "Сетевые инструменты ИБП Конфигурация CGI"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:69
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:68
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor_admin.js:14
|
||||
msgid "Network UPS Tools Monitoring Configuration"
|
||||
msgstr "Сетевые инструменты ИБП Настройка мониторинга"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:43
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server_admin.js:14
|
||||
msgid "Network UPS Tools Server Configuration"
|
||||
msgstr "Сетевые инструменты ИБП Конфигурация сервера"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:209
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:197
|
||||
msgid "No Lock"
|
||||
msgstr "Нет защиты"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:213
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:201
|
||||
msgid "No low/high voltage transfer OIDs"
|
||||
msgstr "Отсутствие OID для передачи низкого/высокого напряжения"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:127
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:116
|
||||
msgid "Notification flags"
|
||||
msgstr "Флаги уведомлений"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:119
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:108
|
||||
msgid "Notifications settings"
|
||||
msgstr "Настройки уведомлений"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:87
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor_admin.js:23
|
||||
msgid "Notify command"
|
||||
msgstr "Команда уведомления"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:217
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:205
|
||||
msgid "Off Delay(s)"
|
||||
msgstr "Задержка выключения (сек.)"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:226
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:214
|
||||
msgid "On Delay(s)"
|
||||
msgstr "Задержка включения (сек.)"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:46
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:45
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:53
|
||||
msgid "Password"
|
||||
msgstr "Пароль"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:110
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:99
|
||||
msgid "Path containing ca certificates to match against host certificate"
|
||||
msgstr "Путь, содержащий CA-сертификаты для сопоставления с сертификатом хоста"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:122
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:114
|
||||
msgid "Path to drivers (instead of default)"
|
||||
msgstr "Путь к драйверам (вместо пути по умолчанию)"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:101
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server_admin.js:24
|
||||
msgid "Path to state file"
|
||||
msgstr "Путь к файлу состояния"
|
||||
|
||||
@@ -323,30 +356,30 @@ msgstr "Путь к файлу состояния"
|
||||
msgid "Period after which data is considered stale"
|
||||
msgstr "Период, после которого данные считаются устаревшими"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:140
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:132
|
||||
msgid "Poll Interval"
|
||||
msgstr "Интервал опроса"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:90
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:79
|
||||
msgid "Poll frequency"
|
||||
msgstr "Частота опроса"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:95
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:84
|
||||
msgid "Poll frequency alert"
|
||||
msgstr "Оповещение о частоте опроса"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:235
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:223
|
||||
msgid "Polling Frequency(s)"
|
||||
msgstr "Частота опроса"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_cgi.js:28
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:33
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:32
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:83
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:240
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:228
|
||||
msgid "Port"
|
||||
msgstr "Порт"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:38
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:37
|
||||
msgid "Power value"
|
||||
msgstr "Значение мощности"
|
||||
|
||||
@@ -358,15 +391,15 @@ msgstr "Мастер"
|
||||
msgid "Primary (Deprecated)"
|
||||
msgstr "Основной (устарело)"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:244
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:232
|
||||
msgid "Product (regex)"
|
||||
msgstr "Продукт (регулярное выражение)"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:114
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:103
|
||||
msgid "Require SSL and make sure server CN matches hostname"
|
||||
msgstr "Требовать SSL и проверять соответствие CN-сервера имени хоста"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:135
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:127
|
||||
msgid "Retry Delay"
|
||||
msgstr "Задержка повтора"
|
||||
|
||||
@@ -374,49 +407,48 @@ msgstr "Задержка повтора"
|
||||
msgid "Role"
|
||||
msgstr "Роль"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:119
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:111
|
||||
msgid "Run drivers in a chroot(2) environment"
|
||||
msgstr "Запуск драйверов в среде chroot(2)"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:75
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:97
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:149
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor_admin.js:20
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server_admin.js:20
|
||||
msgid "RunAs User"
|
||||
msgstr "Выполнить как пользователь"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:163
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:151
|
||||
msgid "SNMP Community"
|
||||
msgstr "SNMP-сообщество"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:260
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:248
|
||||
msgid "SNMP retries"
|
||||
msgstr "Повторные попытки SNMP"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:264
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:252
|
||||
msgid "SNMP timeout(s)"
|
||||
msgstr "Время ожидания SNMP"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:268
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:256
|
||||
msgid "SNMP version"
|
||||
msgstr "Версия SNMP"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:270
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:258
|
||||
msgid "SNMPv1"
|
||||
msgstr "SNMPv1"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:271
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:259
|
||||
msgid "SNMPv2c"
|
||||
msgstr "SNMPv2c"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:272
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:260
|
||||
msgid "SNMPv3"
|
||||
msgstr "SNMPv3"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:257
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:245
|
||||
msgid "Serial Number"
|
||||
msgstr "Серийный номер"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:177
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:165
|
||||
msgid "Set USB serial port permissions"
|
||||
msgstr "Установите разрешения последовательного порта USB"
|
||||
|
||||
@@ -424,25 +456,25 @@ msgstr "Установите разрешения последовательно
|
||||
msgid "Set variables"
|
||||
msgstr "Объявить переменные"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:83
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor_admin.js:26
|
||||
msgid "Shutdown command"
|
||||
msgstr "Команда выключения"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:145
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:282
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:137
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:270
|
||||
msgid "Synchronous Communication"
|
||||
msgstr "Синхронная связь"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:155
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:143
|
||||
msgid "The name of this section will be used as UPS name elsewhere"
|
||||
msgstr ""
|
||||
"Название этого раздела будет использоваться в качестве названия ИБП в других "
|
||||
"местах"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:167
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:203
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:206
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:257
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:155
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:191
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:194
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:245
|
||||
msgid ""
|
||||
"This is passed through to the driver, so make sure your driver supports this "
|
||||
"option"
|
||||
@@ -450,30 +482,31 @@ msgstr ""
|
||||
"Параметр передаётся драйверу напрямую. Убедитесь, что ваш драйвер "
|
||||
"поддерживает эту опцию"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:135
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:127
|
||||
msgid "Time in seconds between driver start retry attempts."
|
||||
msgstr "Время в секундах между повторными попытками запуска драйвера."
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:198
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:186
|
||||
msgid "Time in seconds that upsdrvctl will wait for driver to finish starting"
|
||||
msgstr ""
|
||||
"Время в секундах, в течение которого upsdrvctl будет ждать завершения "
|
||||
"запуска драйвера"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:142
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:131
|
||||
msgid "UPS Auxiliary (Deprecated)"
|
||||
msgstr "Вспомогательный ИБП (устарело)"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:130
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:119
|
||||
msgid "UPS Monitor User Settings"
|
||||
msgstr ""
|
||||
"Настройки пользователя мониторинга источника бесперебойного питания (UPS)"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:139
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:128
|
||||
msgid "UPS Primary (Deprecated)"
|
||||
msgstr "Основной ИБП (устарело)"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:89
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server_admin.js:17
|
||||
msgid "UPS Server Global Settings"
|
||||
msgstr "Глобальные настройки сервера ИБП"
|
||||
|
||||
@@ -481,19 +514,19 @@ msgstr "Глобальные настройки сервера ИБП"
|
||||
msgid "UPS name"
|
||||
msgstr "Имя ИБП"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:159
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:147
|
||||
msgid "USB Bus(es) (regex)"
|
||||
msgstr "USB шина(шины) (regex)"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:247
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:235
|
||||
msgid "USB Product Id"
|
||||
msgstr "USB ИД устройства"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:279
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:267
|
||||
msgid "USB Vendor Id"
|
||||
msgstr "USB ИД Вендора"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:57
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:56
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:28
|
||||
msgid "Unable to run ldd: %s"
|
||||
msgstr "Невозможно запустить ldd: %s"
|
||||
@@ -505,33 +538,24 @@ msgstr ""
|
||||
"Используйте %s для просмотра полного списка команд, которые поддерживает ваш "
|
||||
"ИБП (требуется пакет %s)"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:149
|
||||
msgid ""
|
||||
"User as which to execute driver; requires device file accessed by driver to "
|
||||
"be read-write for that user."
|
||||
msgstr ""
|
||||
"Пользователь, от имени которого выполняется драйвер; требует, чтобы файл "
|
||||
"устройства, к которому обращается драйвер, был доступен для чтения и записи "
|
||||
"для этого пользователя."
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:133
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:122
|
||||
msgid "User type (Primary/Auxiliary)"
|
||||
msgstr "Тип пользователя (основной/вспомогательный)"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:43
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:42
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:50
|
||||
msgid "Username"
|
||||
msgstr "Имя пользователя"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:276
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:264
|
||||
msgid "Vendor (regex)"
|
||||
msgstr "Вендор (regex)"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:114
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:103
|
||||
msgid "Verify all connection with SSL"
|
||||
msgstr "Проверка всех соединений с помощью SSL"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:194
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:182
|
||||
msgid "Workaround for buggy firmware"
|
||||
msgstr "Костыль для кривой прошивки"
|
||||
|
||||
@@ -543,18 +567,29 @@ msgstr "Запись в syslog"
|
||||
msgid "Write to syslog and execute notify command"
|
||||
msgstr "Записать в syslog и выполнить команду уведомления"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:119
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:111
|
||||
msgid "chroot"
|
||||
msgstr "chroot"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:171
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:159
|
||||
msgid "install drivers"
|
||||
msgstr "установить драйверы"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:75
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor_admin.js:20
|
||||
msgid "upsmon drops privileges to this user"
|
||||
msgstr "upsmon передаёт привилегии этому пользователю"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "User as which to execute driver; requires device file accessed by driver "
|
||||
#~ "to be read-write for that user."
|
||||
#~ msgstr ""
|
||||
#~ "Пользователь, от имени которого выполняется драйвер; требует, чтобы файл "
|
||||
#~ "устройства, к которому обращается драйвер, был доступен для чтения и "
|
||||
#~ "записи для этого пользователя."
|
||||
|
||||
#~ msgid "Grant UCI access for luci-app-nut"
|
||||
#~ msgstr "Предоставить доступ к UCI для luci-app-nut"
|
||||
|
||||
#~ msgid "UPS Monitor User Settings)"
|
||||
#~ msgstr "Пользовательские настройки мониторинга ИБП"
|
||||
|
||||
|
||||
@@ -12,7 +12,7 @@ msgstr ""
|
||||
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
||||
"X-Generator: Weblate 5.7-dev\n"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:254
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:242
|
||||
msgid "Additional Shutdown Time(s)"
|
||||
msgstr ""
|
||||
|
||||
@@ -25,7 +25,7 @@ msgid "Allowed actions"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_cgi.js:21
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:26
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:25
|
||||
msgid "As configured by NUT"
|
||||
msgstr ""
|
||||
|
||||
@@ -37,43 +37,43 @@ msgstr ""
|
||||
msgid "Auxiliary (Deprecated)"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:190
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:178
|
||||
msgid "Bytes to read from interrupt pipe"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:110
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:99
|
||||
msgid "CA Certificate path"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:111
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:103
|
||||
msgid "Certificate file (SSL)"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_cgi.js:36
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_cgi_admin.js:17
|
||||
msgid "Control UPS via CGI"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:124
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:113
|
||||
msgid "Custom notification message for message type"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:104
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:93
|
||||
msgid "Deadtime"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:126
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:118
|
||||
msgid "Default for UPSes without this field."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:217
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:205
|
||||
msgid "Delay for kill power command"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:226
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:214
|
||||
msgid "Delay to power on UPS if power returns after kill power"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:167
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:155
|
||||
msgid "Description (Display)"
|
||||
msgstr ""
|
||||
|
||||
@@ -81,44 +81,44 @@ msgstr ""
|
||||
msgid "Display name"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:209
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:197
|
||||
msgid "Do not lock port when starting driver"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:170
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:158
|
||||
msgid "Driver"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:154
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:142
|
||||
msgid "Driver Configuration"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:116
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:108
|
||||
msgid "Driver Global Settings"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:122
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:114
|
||||
msgid "Driver Path"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:250
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:238
|
||||
msgid "Driver Shutdown Order"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:145
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:282
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:137
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:270
|
||||
msgid "Driver waits for data to be consumed by upsd before publishing more."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:97
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server_admin.js:20
|
||||
msgid "Drop privileges to this user"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_cgi.js:41
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_cgi_admin.js:22
|
||||
msgid "Enable"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:178
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:166
|
||||
msgid ""
|
||||
"Enables a hotplug script that makes all ttyUSB devices (e.g. serial USB) "
|
||||
"group read-write as user %s"
|
||||
@@ -132,23 +132,29 @@ msgstr ""
|
||||
msgid "Forced Shutdown"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:71
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:70
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor_admin.js:16
|
||||
msgid "Global Settings"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_cgi.js:15
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_cgi_admin.js:15
|
||||
msgid "Go to NUT CGI"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/root/usr/share/rpcd/acl.d/luci-app-nut.json:15
|
||||
msgid "Grant admin UCI access for luci-app-nut"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/root/usr/share/rpcd/acl.d/luci-app-nut.json:3
|
||||
msgid "Grant UCI access for luci-app-nut"
|
||||
msgid "Grant limited UCI read access for luci-app-nut"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_cgi.js:17
|
||||
msgid "Host"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:100
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:89
|
||||
msgid "Host Sync"
|
||||
msgstr ""
|
||||
|
||||
@@ -156,7 +162,7 @@ msgstr ""
|
||||
msgid "Hostname or IP address"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:29
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:28
|
||||
msgid "Hostname or address of UPS"
|
||||
msgstr ""
|
||||
|
||||
@@ -164,7 +170,7 @@ msgstr ""
|
||||
msgid "IP Address"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:171
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:159
|
||||
msgid "If this list is empty you need to %s"
|
||||
msgstr ""
|
||||
|
||||
@@ -172,7 +178,7 @@ msgstr ""
|
||||
msgid "Ignore"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:182
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:170
|
||||
msgid "Ignore Low Battery"
|
||||
msgstr ""
|
||||
|
||||
@@ -180,19 +186,19 @@ msgstr ""
|
||||
msgid "Instant commands"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:186
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:174
|
||||
msgid "Interrupt Only"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:190
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:178
|
||||
msgid "Interrupt Size"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:203
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:191
|
||||
msgid "Manufacturer (Display)"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:194
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:182
|
||||
msgid "Max USB HID Length Reported"
|
||||
msgstr ""
|
||||
|
||||
@@ -200,47 +206,55 @@ msgstr ""
|
||||
msgid "Maximum Age of Data"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:130
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:122
|
||||
msgid "Maximum Retries"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:126
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:198
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:118
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:186
|
||||
msgid "Maximum Start Delay"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:105
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:97
|
||||
msgid "Maximum connections"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:130
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:122
|
||||
msgid "Maximum number of times to try starting a driver."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:140
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:132
|
||||
msgid "Maximum time in seconds between refresh of UPS status"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:78
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:74
|
||||
msgid "Minimum required number or power supplies"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:206
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:194
|
||||
msgid "Model (Display)"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_cgi.js:13
|
||||
#: applications/luci-app-nut/root/usr/share/luci/menu.d/luci-app-nut.json:42
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_cgi_admin.js:13
|
||||
msgid "NUT CGI"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:68
|
||||
#: applications/luci-app-nut/root/usr/share/luci/menu.d/luci-app-nut.json:30
|
||||
#: applications/luci-app-nut/root/usr/share/luci/menu.d/luci-app-nut.json:100
|
||||
msgid "NUT CGI - admin"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/root/usr/share/luci/menu.d/luci-app-nut.json:85
|
||||
msgid "NUT CGI - main"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:67
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor_admin.js:13
|
||||
msgid "NUT Monitor"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:42
|
||||
#: applications/luci-app-nut/root/usr/share/luci/menu.d/luci-app-nut.json:18
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server_admin.js:13
|
||||
msgid "NUT Server"
|
||||
msgstr ""
|
||||
|
||||
@@ -248,7 +262,23 @@ msgstr ""
|
||||
msgid "NUT Users"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:26
|
||||
#: applications/luci-app-nut/root/usr/share/luci/menu.d/luci-app-nut.json:69
|
||||
msgid "NUT monitor - admin"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/root/usr/share/luci/menu.d/luci-app-nut.json:54
|
||||
msgid "NUT monitor - main"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/root/usr/share/luci/menu.d/luci-app-nut.json:38
|
||||
msgid "NUT server - admin"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/root/usr/share/luci/menu.d/luci-app-nut.json:23
|
||||
msgid "NUT server - main"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:25
|
||||
msgid "Name of UPS"
|
||||
msgstr ""
|
||||
|
||||
@@ -257,59 +287,62 @@ msgid "Network UPS Tools"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_cgi.js:14
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_cgi_admin.js:14
|
||||
msgid "Network UPS Tools CGI Configuration"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:69
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:68
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor_admin.js:14
|
||||
msgid "Network UPS Tools Monitoring Configuration"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:43
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server_admin.js:14
|
||||
msgid "Network UPS Tools Server Configuration"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:209
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:197
|
||||
msgid "No Lock"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:213
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:201
|
||||
msgid "No low/high voltage transfer OIDs"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:127
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:116
|
||||
msgid "Notification flags"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:119
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:108
|
||||
msgid "Notifications settings"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:87
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor_admin.js:23
|
||||
msgid "Notify command"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:217
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:205
|
||||
msgid "Off Delay(s)"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:226
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:214
|
||||
msgid "On Delay(s)"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:46
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:45
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:53
|
||||
msgid "Password"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:110
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:99
|
||||
msgid "Path containing ca certificates to match against host certificate"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:122
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:114
|
||||
msgid "Path to drivers (instead of default)"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:101
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server_admin.js:24
|
||||
msgid "Path to state file"
|
||||
msgstr ""
|
||||
|
||||
@@ -317,30 +350,30 @@ msgstr ""
|
||||
msgid "Period after which data is considered stale"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:140
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:132
|
||||
msgid "Poll Interval"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:90
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:79
|
||||
msgid "Poll frequency"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:95
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:84
|
||||
msgid "Poll frequency alert"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:235
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:223
|
||||
msgid "Polling Frequency(s)"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_cgi.js:28
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:33
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:32
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:83
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:240
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:228
|
||||
msgid "Port"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:38
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:37
|
||||
msgid "Power value"
|
||||
msgstr ""
|
||||
|
||||
@@ -352,15 +385,15 @@ msgstr ""
|
||||
msgid "Primary (Deprecated)"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:244
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:232
|
||||
msgid "Product (regex)"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:114
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:103
|
||||
msgid "Require SSL and make sure server CN matches hostname"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:135
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:127
|
||||
msgid "Retry Delay"
|
||||
msgstr ""
|
||||
|
||||
@@ -368,49 +401,48 @@ msgstr ""
|
||||
msgid "Role"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:119
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:111
|
||||
msgid "Run drivers in a chroot(2) environment"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:75
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:97
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:149
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor_admin.js:20
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server_admin.js:20
|
||||
msgid "RunAs User"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:163
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:151
|
||||
msgid "SNMP Community"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:260
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:248
|
||||
msgid "SNMP retries"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:264
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:252
|
||||
msgid "SNMP timeout(s)"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:268
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:256
|
||||
msgid "SNMP version"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:270
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:258
|
||||
msgid "SNMPv1"
|
||||
msgstr "„SNMPv1“"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:271
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:259
|
||||
msgid "SNMPv2c"
|
||||
msgstr "„SNMPv2c“"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:272
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:260
|
||||
msgid "SNMPv3"
|
||||
msgstr "„SNMPv3“"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:257
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:245
|
||||
msgid "Serial Number"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:177
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:165
|
||||
msgid "Set USB serial port permissions"
|
||||
msgstr ""
|
||||
|
||||
@@ -418,49 +450,50 @@ msgstr ""
|
||||
msgid "Set variables"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:83
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor_admin.js:26
|
||||
msgid "Shutdown command"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:145
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:282
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:137
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:270
|
||||
msgid "Synchronous Communication"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:155
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:143
|
||||
msgid "The name of this section will be used as UPS name elsewhere"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:167
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:203
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:206
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:257
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:155
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:191
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:194
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:245
|
||||
msgid ""
|
||||
"This is passed through to the driver, so make sure your driver supports this "
|
||||
"option"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:135
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:127
|
||||
msgid "Time in seconds between driver start retry attempts."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:198
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:186
|
||||
msgid "Time in seconds that upsdrvctl will wait for driver to finish starting"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:142
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:131
|
||||
msgid "UPS Auxiliary (Deprecated)"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:130
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:119
|
||||
msgid "UPS Monitor User Settings"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:139
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:128
|
||||
msgid "UPS Primary (Deprecated)"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:89
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server_admin.js:17
|
||||
msgid "UPS Server Global Settings"
|
||||
msgstr ""
|
||||
|
||||
@@ -468,19 +501,19 @@ msgstr ""
|
||||
msgid "UPS name"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:159
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:147
|
||||
msgid "USB Bus(es) (regex)"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:247
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:235
|
||||
msgid "USB Product Id"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:279
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:267
|
||||
msgid "USB Vendor Id"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:57
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:56
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:28
|
||||
msgid "Unable to run ldd: %s"
|
||||
msgstr ""
|
||||
@@ -490,30 +523,24 @@ msgid ""
|
||||
"Use %s to see full list of commands your UPS supports (requires %s package)"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:149
|
||||
msgid ""
|
||||
"User as which to execute driver; requires device file accessed by driver to "
|
||||
"be read-write for that user."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:133
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:122
|
||||
msgid "User type (Primary/Auxiliary)"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:43
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:42
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:50
|
||||
msgid "Username"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:276
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:264
|
||||
msgid "Vendor (regex)"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:114
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:103
|
||||
msgid "Verify all connection with SSL"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:194
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:182
|
||||
msgid "Workaround for buggy firmware"
|
||||
msgstr ""
|
||||
|
||||
@@ -525,14 +552,14 @@ msgstr ""
|
||||
msgid "Write to syslog and execute notify command"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:119
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:111
|
||||
msgid "chroot"
|
||||
msgstr "„chroot“"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:171
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:159
|
||||
msgid "install drivers"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:75
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor_admin.js:20
|
||||
msgid "upsmon drops privileges to this user"
|
||||
msgstr ""
|
||||
|
||||
@@ -12,7 +12,7 @@ msgstr ""
|
||||
"Plural-Forms: nplurals=3; plural=((n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2);\n"
|
||||
"X-Generator: Weblate 5.12-dev\n"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:254
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:242
|
||||
msgid "Additional Shutdown Time(s)"
|
||||
msgstr "Dodatočný čas vypnutia"
|
||||
|
||||
@@ -25,7 +25,7 @@ msgid "Allowed actions"
|
||||
msgstr "Povolené akcie"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_cgi.js:21
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:26
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:25
|
||||
msgid "As configured by NUT"
|
||||
msgstr ""
|
||||
|
||||
@@ -37,43 +37,43 @@ msgstr ""
|
||||
msgid "Auxiliary (Deprecated)"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:190
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:178
|
||||
msgid "Bytes to read from interrupt pipe"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:110
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:99
|
||||
msgid "CA Certificate path"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:111
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:103
|
||||
msgid "Certificate file (SSL)"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_cgi.js:36
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_cgi_admin.js:17
|
||||
msgid "Control UPS via CGI"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:124
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:113
|
||||
msgid "Custom notification message for message type"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:104
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:93
|
||||
msgid "Deadtime"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:126
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:118
|
||||
msgid "Default for UPSes without this field."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:217
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:205
|
||||
msgid "Delay for kill power command"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:226
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:214
|
||||
msgid "Delay to power on UPS if power returns after kill power"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:167
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:155
|
||||
msgid "Description (Display)"
|
||||
msgstr ""
|
||||
|
||||
@@ -81,44 +81,44 @@ msgstr ""
|
||||
msgid "Display name"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:209
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:197
|
||||
msgid "Do not lock port when starting driver"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:170
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:158
|
||||
msgid "Driver"
|
||||
msgstr "Ovládač"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:154
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:142
|
||||
msgid "Driver Configuration"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:116
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:108
|
||||
msgid "Driver Global Settings"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:122
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:114
|
||||
msgid "Driver Path"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:250
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:238
|
||||
msgid "Driver Shutdown Order"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:145
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:282
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:137
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:270
|
||||
msgid "Driver waits for data to be consumed by upsd before publishing more."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:97
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server_admin.js:20
|
||||
msgid "Drop privileges to this user"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_cgi.js:41
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_cgi_admin.js:22
|
||||
msgid "Enable"
|
||||
msgstr "Povoliť"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:178
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:166
|
||||
msgid ""
|
||||
"Enables a hotplug script that makes all ttyUSB devices (e.g. serial USB) "
|
||||
"group read-write as user %s"
|
||||
@@ -132,23 +132,29 @@ msgstr ""
|
||||
msgid "Forced Shutdown"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:71
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:70
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor_admin.js:16
|
||||
msgid "Global Settings"
|
||||
msgstr "Globálne nastavenia"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_cgi.js:15
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_cgi_admin.js:15
|
||||
msgid "Go to NUT CGI"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/root/usr/share/rpcd/acl.d/luci-app-nut.json:15
|
||||
msgid "Grant admin UCI access for luci-app-nut"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/root/usr/share/rpcd/acl.d/luci-app-nut.json:3
|
||||
msgid "Grant UCI access for luci-app-nut"
|
||||
msgid "Grant limited UCI read access for luci-app-nut"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_cgi.js:17
|
||||
msgid "Host"
|
||||
msgstr "Hostiteľ"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:100
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:89
|
||||
msgid "Host Sync"
|
||||
msgstr ""
|
||||
|
||||
@@ -156,7 +162,7 @@ msgstr ""
|
||||
msgid "Hostname or IP address"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:29
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:28
|
||||
msgid "Hostname or address of UPS"
|
||||
msgstr ""
|
||||
|
||||
@@ -164,7 +170,7 @@ msgstr ""
|
||||
msgid "IP Address"
|
||||
msgstr "Adresa IP"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:171
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:159
|
||||
msgid "If this list is empty you need to %s"
|
||||
msgstr ""
|
||||
|
||||
@@ -172,7 +178,7 @@ msgstr ""
|
||||
msgid "Ignore"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:182
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:170
|
||||
msgid "Ignore Low Battery"
|
||||
msgstr ""
|
||||
|
||||
@@ -180,19 +186,19 @@ msgstr ""
|
||||
msgid "Instant commands"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:186
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:174
|
||||
msgid "Interrupt Only"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:190
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:178
|
||||
msgid "Interrupt Size"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:203
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:191
|
||||
msgid "Manufacturer (Display)"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:194
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:182
|
||||
msgid "Max USB HID Length Reported"
|
||||
msgstr ""
|
||||
|
||||
@@ -200,47 +206,55 @@ msgstr ""
|
||||
msgid "Maximum Age of Data"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:130
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:122
|
||||
msgid "Maximum Retries"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:126
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:198
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:118
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:186
|
||||
msgid "Maximum Start Delay"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:105
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:97
|
||||
msgid "Maximum connections"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:130
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:122
|
||||
msgid "Maximum number of times to try starting a driver."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:140
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:132
|
||||
msgid "Maximum time in seconds between refresh of UPS status"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:78
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:74
|
||||
msgid "Minimum required number or power supplies"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:206
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:194
|
||||
msgid "Model (Display)"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_cgi.js:13
|
||||
#: applications/luci-app-nut/root/usr/share/luci/menu.d/luci-app-nut.json:42
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_cgi_admin.js:13
|
||||
msgid "NUT CGI"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:68
|
||||
#: applications/luci-app-nut/root/usr/share/luci/menu.d/luci-app-nut.json:30
|
||||
#: applications/luci-app-nut/root/usr/share/luci/menu.d/luci-app-nut.json:100
|
||||
msgid "NUT CGI - admin"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/root/usr/share/luci/menu.d/luci-app-nut.json:85
|
||||
msgid "NUT CGI - main"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:67
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor_admin.js:13
|
||||
msgid "NUT Monitor"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:42
|
||||
#: applications/luci-app-nut/root/usr/share/luci/menu.d/luci-app-nut.json:18
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server_admin.js:13
|
||||
msgid "NUT Server"
|
||||
msgstr ""
|
||||
|
||||
@@ -248,7 +262,23 @@ msgstr ""
|
||||
msgid "NUT Users"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:26
|
||||
#: applications/luci-app-nut/root/usr/share/luci/menu.d/luci-app-nut.json:69
|
||||
msgid "NUT monitor - admin"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/root/usr/share/luci/menu.d/luci-app-nut.json:54
|
||||
msgid "NUT monitor - main"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/root/usr/share/luci/menu.d/luci-app-nut.json:38
|
||||
msgid "NUT server - admin"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/root/usr/share/luci/menu.d/luci-app-nut.json:23
|
||||
msgid "NUT server - main"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:25
|
||||
msgid "Name of UPS"
|
||||
msgstr ""
|
||||
|
||||
@@ -257,59 +287,62 @@ msgid "Network UPS Tools"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_cgi.js:14
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_cgi_admin.js:14
|
||||
msgid "Network UPS Tools CGI Configuration"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:69
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:68
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor_admin.js:14
|
||||
msgid "Network UPS Tools Monitoring Configuration"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:43
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server_admin.js:14
|
||||
msgid "Network UPS Tools Server Configuration"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:209
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:197
|
||||
msgid "No Lock"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:213
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:201
|
||||
msgid "No low/high voltage transfer OIDs"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:127
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:116
|
||||
msgid "Notification flags"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:119
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:108
|
||||
msgid "Notifications settings"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:87
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor_admin.js:23
|
||||
msgid "Notify command"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:217
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:205
|
||||
msgid "Off Delay(s)"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:226
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:214
|
||||
msgid "On Delay(s)"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:46
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:45
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:53
|
||||
msgid "Password"
|
||||
msgstr "Heslo"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:110
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:99
|
||||
msgid "Path containing ca certificates to match against host certificate"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:122
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:114
|
||||
msgid "Path to drivers (instead of default)"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:101
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server_admin.js:24
|
||||
msgid "Path to state file"
|
||||
msgstr ""
|
||||
|
||||
@@ -317,30 +350,30 @@ msgstr ""
|
||||
msgid "Period after which data is considered stale"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:140
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:132
|
||||
msgid "Poll Interval"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:90
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:79
|
||||
msgid "Poll frequency"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:95
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:84
|
||||
msgid "Poll frequency alert"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:235
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:223
|
||||
msgid "Polling Frequency(s)"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_cgi.js:28
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:33
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:32
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:83
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:240
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:228
|
||||
msgid "Port"
|
||||
msgstr "Port"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:38
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:37
|
||||
msgid "Power value"
|
||||
msgstr ""
|
||||
|
||||
@@ -352,15 +385,15 @@ msgstr ""
|
||||
msgid "Primary (Deprecated)"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:244
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:232
|
||||
msgid "Product (regex)"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:114
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:103
|
||||
msgid "Require SSL and make sure server CN matches hostname"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:135
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:127
|
||||
msgid "Retry Delay"
|
||||
msgstr ""
|
||||
|
||||
@@ -368,49 +401,48 @@ msgstr ""
|
||||
msgid "Role"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:119
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:111
|
||||
msgid "Run drivers in a chroot(2) environment"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:75
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:97
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:149
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor_admin.js:20
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server_admin.js:20
|
||||
msgid "RunAs User"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:163
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:151
|
||||
msgid "SNMP Community"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:260
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:248
|
||||
msgid "SNMP retries"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:264
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:252
|
||||
msgid "SNMP timeout(s)"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:268
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:256
|
||||
msgid "SNMP version"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:270
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:258
|
||||
msgid "SNMPv1"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:271
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:259
|
||||
msgid "SNMPv2c"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:272
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:260
|
||||
msgid "SNMPv3"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:257
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:245
|
||||
msgid "Serial Number"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:177
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:165
|
||||
msgid "Set USB serial port permissions"
|
||||
msgstr ""
|
||||
|
||||
@@ -418,49 +450,50 @@ msgstr ""
|
||||
msgid "Set variables"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:83
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor_admin.js:26
|
||||
msgid "Shutdown command"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:145
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:282
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:137
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:270
|
||||
msgid "Synchronous Communication"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:155
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:143
|
||||
msgid "The name of this section will be used as UPS name elsewhere"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:167
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:203
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:206
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:257
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:155
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:191
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:194
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:245
|
||||
msgid ""
|
||||
"This is passed through to the driver, so make sure your driver supports this "
|
||||
"option"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:135
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:127
|
||||
msgid "Time in seconds between driver start retry attempts."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:198
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:186
|
||||
msgid "Time in seconds that upsdrvctl will wait for driver to finish starting"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:142
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:131
|
||||
msgid "UPS Auxiliary (Deprecated)"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:130
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:119
|
||||
msgid "UPS Monitor User Settings"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:139
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:128
|
||||
msgid "UPS Primary (Deprecated)"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:89
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server_admin.js:17
|
||||
msgid "UPS Server Global Settings"
|
||||
msgstr ""
|
||||
|
||||
@@ -468,19 +501,19 @@ msgstr ""
|
||||
msgid "UPS name"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:159
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:147
|
||||
msgid "USB Bus(es) (regex)"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:247
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:235
|
||||
msgid "USB Product Id"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:279
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:267
|
||||
msgid "USB Vendor Id"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:57
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:56
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:28
|
||||
msgid "Unable to run ldd: %s"
|
||||
msgstr ""
|
||||
@@ -490,30 +523,24 @@ msgid ""
|
||||
"Use %s to see full list of commands your UPS supports (requires %s package)"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:149
|
||||
msgid ""
|
||||
"User as which to execute driver; requires device file accessed by driver to "
|
||||
"be read-write for that user."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:133
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:122
|
||||
msgid "User type (Primary/Auxiliary)"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:43
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:42
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:50
|
||||
msgid "Username"
|
||||
msgstr "Používateľské meno"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:276
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:264
|
||||
msgid "Vendor (regex)"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:114
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:103
|
||||
msgid "Verify all connection with SSL"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:194
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:182
|
||||
msgid "Workaround for buggy firmware"
|
||||
msgstr ""
|
||||
|
||||
@@ -525,15 +552,15 @@ msgstr ""
|
||||
msgid "Write to syslog and execute notify command"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:119
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:111
|
||||
msgid "chroot"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:171
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:159
|
||||
msgid "install drivers"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:75
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor_admin.js:20
|
||||
msgid "upsmon drops privileges to this user"
|
||||
msgstr ""
|
||||
|
||||
|
||||
@@ -13,7 +13,7 @@ msgstr ""
|
||||
"n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
|
||||
"X-Generator: Weblate 5.13-dev\n"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:254
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:242
|
||||
msgid "Additional Shutdown Time(s)"
|
||||
msgstr "Dodatno Ugasi Vreme(na)"
|
||||
|
||||
@@ -26,7 +26,7 @@ msgid "Allowed actions"
|
||||
msgstr "Dozvoljene akcije"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_cgi.js:21
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:26
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:25
|
||||
msgid "As configured by NUT"
|
||||
msgstr "Kao konfigurisano po NUT"
|
||||
|
||||
@@ -38,43 +38,43 @@ msgstr "Pomocni"
|
||||
msgid "Auxiliary (Deprecated)"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:190
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:178
|
||||
msgid "Bytes to read from interrupt pipe"
|
||||
msgstr "Бајтови за читање из цеви прекида"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:110
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:99
|
||||
msgid "CA Certificate path"
|
||||
msgstr "Путања CA сертификата"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:111
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:103
|
||||
msgid "Certificate file (SSL)"
|
||||
msgstr "Датотека сертификата (SSL)"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_cgi.js:36
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_cgi_admin.js:17
|
||||
msgid "Control UPS via CGI"
|
||||
msgstr "Контролишите UPS преко CGI-ја"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:124
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:113
|
||||
msgid "Custom notification message for message type"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:104
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:93
|
||||
msgid "Deadtime"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:126
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:118
|
||||
msgid "Default for UPSes without this field."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:217
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:205
|
||||
msgid "Delay for kill power command"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:226
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:214
|
||||
msgid "Delay to power on UPS if power returns after kill power"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:167
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:155
|
||||
msgid "Description (Display)"
|
||||
msgstr ""
|
||||
|
||||
@@ -82,44 +82,44 @@ msgstr ""
|
||||
msgid "Display name"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:209
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:197
|
||||
msgid "Do not lock port when starting driver"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:170
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:158
|
||||
msgid "Driver"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:154
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:142
|
||||
msgid "Driver Configuration"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:116
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:108
|
||||
msgid "Driver Global Settings"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:122
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:114
|
||||
msgid "Driver Path"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:250
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:238
|
||||
msgid "Driver Shutdown Order"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:145
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:282
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:137
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:270
|
||||
msgid "Driver waits for data to be consumed by upsd before publishing more."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:97
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server_admin.js:20
|
||||
msgid "Drop privileges to this user"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_cgi.js:41
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_cgi_admin.js:22
|
||||
msgid "Enable"
|
||||
msgstr "Омогући"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:178
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:166
|
||||
msgid ""
|
||||
"Enables a hotplug script that makes all ttyUSB devices (e.g. serial USB) "
|
||||
"group read-write as user %s"
|
||||
@@ -133,23 +133,29 @@ msgstr ""
|
||||
msgid "Forced Shutdown"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:71
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:70
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor_admin.js:16
|
||||
msgid "Global Settings"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_cgi.js:15
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_cgi_admin.js:15
|
||||
msgid "Go to NUT CGI"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/root/usr/share/rpcd/acl.d/luci-app-nut.json:15
|
||||
msgid "Grant admin UCI access for luci-app-nut"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/root/usr/share/rpcd/acl.d/luci-app-nut.json:3
|
||||
msgid "Grant UCI access for luci-app-nut"
|
||||
msgid "Grant limited UCI read access for luci-app-nut"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_cgi.js:17
|
||||
msgid "Host"
|
||||
msgstr "Домаћин"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:100
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:89
|
||||
msgid "Host Sync"
|
||||
msgstr ""
|
||||
|
||||
@@ -157,7 +163,7 @@ msgstr ""
|
||||
msgid "Hostname or IP address"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:29
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:28
|
||||
msgid "Hostname or address of UPS"
|
||||
msgstr ""
|
||||
|
||||
@@ -165,7 +171,7 @@ msgstr ""
|
||||
msgid "IP Address"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:171
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:159
|
||||
msgid "If this list is empty you need to %s"
|
||||
msgstr ""
|
||||
|
||||
@@ -173,7 +179,7 @@ msgstr ""
|
||||
msgid "Ignore"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:182
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:170
|
||||
msgid "Ignore Low Battery"
|
||||
msgstr ""
|
||||
|
||||
@@ -181,19 +187,19 @@ msgstr ""
|
||||
msgid "Instant commands"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:186
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:174
|
||||
msgid "Interrupt Only"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:190
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:178
|
||||
msgid "Interrupt Size"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:203
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:191
|
||||
msgid "Manufacturer (Display)"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:194
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:182
|
||||
msgid "Max USB HID Length Reported"
|
||||
msgstr ""
|
||||
|
||||
@@ -201,47 +207,55 @@ msgstr ""
|
||||
msgid "Maximum Age of Data"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:130
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:122
|
||||
msgid "Maximum Retries"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:126
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:198
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:118
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:186
|
||||
msgid "Maximum Start Delay"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:105
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:97
|
||||
msgid "Maximum connections"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:130
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:122
|
||||
msgid "Maximum number of times to try starting a driver."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:140
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:132
|
||||
msgid "Maximum time in seconds between refresh of UPS status"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:78
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:74
|
||||
msgid "Minimum required number or power supplies"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:206
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:194
|
||||
msgid "Model (Display)"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_cgi.js:13
|
||||
#: applications/luci-app-nut/root/usr/share/luci/menu.d/luci-app-nut.json:42
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_cgi_admin.js:13
|
||||
msgid "NUT CGI"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:68
|
||||
#: applications/luci-app-nut/root/usr/share/luci/menu.d/luci-app-nut.json:30
|
||||
#: applications/luci-app-nut/root/usr/share/luci/menu.d/luci-app-nut.json:100
|
||||
msgid "NUT CGI - admin"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/root/usr/share/luci/menu.d/luci-app-nut.json:85
|
||||
msgid "NUT CGI - main"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:67
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor_admin.js:13
|
||||
msgid "NUT Monitor"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:42
|
||||
#: applications/luci-app-nut/root/usr/share/luci/menu.d/luci-app-nut.json:18
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server_admin.js:13
|
||||
msgid "NUT Server"
|
||||
msgstr ""
|
||||
|
||||
@@ -249,7 +263,23 @@ msgstr ""
|
||||
msgid "NUT Users"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:26
|
||||
#: applications/luci-app-nut/root/usr/share/luci/menu.d/luci-app-nut.json:69
|
||||
msgid "NUT monitor - admin"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/root/usr/share/luci/menu.d/luci-app-nut.json:54
|
||||
msgid "NUT monitor - main"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/root/usr/share/luci/menu.d/luci-app-nut.json:38
|
||||
msgid "NUT server - admin"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/root/usr/share/luci/menu.d/luci-app-nut.json:23
|
||||
msgid "NUT server - main"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:25
|
||||
msgid "Name of UPS"
|
||||
msgstr ""
|
||||
|
||||
@@ -258,59 +288,62 @@ msgid "Network UPS Tools"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_cgi.js:14
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_cgi_admin.js:14
|
||||
msgid "Network UPS Tools CGI Configuration"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:69
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:68
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor_admin.js:14
|
||||
msgid "Network UPS Tools Monitoring Configuration"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:43
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server_admin.js:14
|
||||
msgid "Network UPS Tools Server Configuration"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:209
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:197
|
||||
msgid "No Lock"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:213
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:201
|
||||
msgid "No low/high voltage transfer OIDs"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:127
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:116
|
||||
msgid "Notification flags"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:119
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:108
|
||||
msgid "Notifications settings"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:87
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor_admin.js:23
|
||||
msgid "Notify command"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:217
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:205
|
||||
msgid "Off Delay(s)"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:226
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:214
|
||||
msgid "On Delay(s)"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:46
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:45
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:53
|
||||
msgid "Password"
|
||||
msgstr "Лозинка"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:110
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:99
|
||||
msgid "Path containing ca certificates to match against host certificate"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:122
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:114
|
||||
msgid "Path to drivers (instead of default)"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:101
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server_admin.js:24
|
||||
msgid "Path to state file"
|
||||
msgstr ""
|
||||
|
||||
@@ -318,30 +351,30 @@ msgstr ""
|
||||
msgid "Period after which data is considered stale"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:140
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:132
|
||||
msgid "Poll Interval"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:90
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:79
|
||||
msgid "Poll frequency"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:95
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:84
|
||||
msgid "Poll frequency alert"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:235
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:223
|
||||
msgid "Polling Frequency(s)"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_cgi.js:28
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:33
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:32
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:83
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:240
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:228
|
||||
msgid "Port"
|
||||
msgstr "Порт"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:38
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:37
|
||||
msgid "Power value"
|
||||
msgstr ""
|
||||
|
||||
@@ -353,15 +386,15 @@ msgstr ""
|
||||
msgid "Primary (Deprecated)"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:244
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:232
|
||||
msgid "Product (regex)"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:114
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:103
|
||||
msgid "Require SSL and make sure server CN matches hostname"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:135
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:127
|
||||
msgid "Retry Delay"
|
||||
msgstr ""
|
||||
|
||||
@@ -369,49 +402,48 @@ msgstr ""
|
||||
msgid "Role"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:119
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:111
|
||||
msgid "Run drivers in a chroot(2) environment"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:75
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:97
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:149
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor_admin.js:20
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server_admin.js:20
|
||||
msgid "RunAs User"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:163
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:151
|
||||
msgid "SNMP Community"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:260
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:248
|
||||
msgid "SNMP retries"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:264
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:252
|
||||
msgid "SNMP timeout(s)"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:268
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:256
|
||||
msgid "SNMP version"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:270
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:258
|
||||
msgid "SNMPv1"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:271
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:259
|
||||
msgid "SNMPv2c"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:272
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:260
|
||||
msgid "SNMPv3"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:257
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:245
|
||||
msgid "Serial Number"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:177
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:165
|
||||
msgid "Set USB serial port permissions"
|
||||
msgstr ""
|
||||
|
||||
@@ -419,49 +451,50 @@ msgstr ""
|
||||
msgid "Set variables"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:83
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor_admin.js:26
|
||||
msgid "Shutdown command"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:145
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:282
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:137
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:270
|
||||
msgid "Synchronous Communication"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:155
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:143
|
||||
msgid "The name of this section will be used as UPS name elsewhere"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:167
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:203
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:206
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:257
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:155
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:191
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:194
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:245
|
||||
msgid ""
|
||||
"This is passed through to the driver, so make sure your driver supports this "
|
||||
"option"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:135
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:127
|
||||
msgid "Time in seconds between driver start retry attempts."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:198
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:186
|
||||
msgid "Time in seconds that upsdrvctl will wait for driver to finish starting"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:142
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:131
|
||||
msgid "UPS Auxiliary (Deprecated)"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:130
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:119
|
||||
msgid "UPS Monitor User Settings"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:139
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:128
|
||||
msgid "UPS Primary (Deprecated)"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:89
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server_admin.js:17
|
||||
msgid "UPS Server Global Settings"
|
||||
msgstr ""
|
||||
|
||||
@@ -469,19 +502,19 @@ msgstr ""
|
||||
msgid "UPS name"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:159
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:147
|
||||
msgid "USB Bus(es) (regex)"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:247
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:235
|
||||
msgid "USB Product Id"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:279
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:267
|
||||
msgid "USB Vendor Id"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:57
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:56
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:28
|
||||
msgid "Unable to run ldd: %s"
|
||||
msgstr ""
|
||||
@@ -491,30 +524,24 @@ msgid ""
|
||||
"Use %s to see full list of commands your UPS supports (requires %s package)"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:149
|
||||
msgid ""
|
||||
"User as which to execute driver; requires device file accessed by driver to "
|
||||
"be read-write for that user."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:133
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:122
|
||||
msgid "User type (Primary/Auxiliary)"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:43
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:42
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:50
|
||||
msgid "Username"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:276
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:264
|
||||
msgid "Vendor (regex)"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:114
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:103
|
||||
msgid "Verify all connection with SSL"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:194
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:182
|
||||
msgid "Workaround for buggy firmware"
|
||||
msgstr ""
|
||||
|
||||
@@ -526,15 +553,15 @@ msgstr ""
|
||||
msgid "Write to syslog and execute notify command"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:119
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:111
|
||||
msgid "chroot"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:171
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:159
|
||||
msgid "install drivers"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:75
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor_admin.js:20
|
||||
msgid "upsmon drops privileges to this user"
|
||||
msgstr ""
|
||||
|
||||
|
||||
@@ -12,7 +12,7 @@ msgstr ""
|
||||
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
||||
"X-Generator: Weblate 5.17-dev\n"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:254
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:242
|
||||
msgid "Additional Shutdown Time(s)"
|
||||
msgstr "Ytterligare avstängningstid(er)"
|
||||
|
||||
@@ -25,7 +25,7 @@ msgid "Allowed actions"
|
||||
msgstr "Tillåtna åtgärder"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_cgi.js:21
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:26
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:25
|
||||
msgid "As configured by NUT"
|
||||
msgstr "Som konfigurerade av NUT"
|
||||
|
||||
@@ -37,43 +37,43 @@ msgstr ""
|
||||
msgid "Auxiliary (Deprecated)"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:190
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:178
|
||||
msgid "Bytes to read from interrupt pipe"
|
||||
msgstr "Bytes att läsa från det avbrutna röret"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:110
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:99
|
||||
msgid "CA Certificate path"
|
||||
msgstr "Genväg för CA-certifikat"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:111
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:103
|
||||
msgid "Certificate file (SSL)"
|
||||
msgstr "Certifikat-fil (SSL)"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_cgi.js:36
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_cgi_admin.js:17
|
||||
msgid "Control UPS via CGI"
|
||||
msgstr "Kontrollera UPS via CGI"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:124
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:113
|
||||
msgid "Custom notification message for message type"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:104
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:93
|
||||
msgid "Deadtime"
|
||||
msgstr "Dödtid"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:126
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:118
|
||||
msgid "Default for UPSes without this field."
|
||||
msgstr "Standard för UPSer utan det här fältet."
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:217
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:205
|
||||
msgid "Delay for kill power command"
|
||||
msgstr "Fördröjning för döda ström-kommando"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:226
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:214
|
||||
msgid "Delay to power on UPS if power returns after kill power"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:167
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:155
|
||||
msgid "Description (Display)"
|
||||
msgstr "Beskrivning (Skärm)"
|
||||
|
||||
@@ -81,44 +81,44 @@ msgstr "Beskrivning (Skärm)"
|
||||
msgid "Display name"
|
||||
msgstr "Namn på skärm"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:209
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:197
|
||||
msgid "Do not lock port when starting driver"
|
||||
msgstr "Lås inte porten när drivrutinen startas"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:170
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:158
|
||||
msgid "Driver"
|
||||
msgstr "Drivrutin"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:154
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:142
|
||||
msgid "Driver Configuration"
|
||||
msgstr "Konfiguration för drivrutin"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:116
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:108
|
||||
msgid "Driver Global Settings"
|
||||
msgstr "Globala inställningar för drivrutin"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:122
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:114
|
||||
msgid "Driver Path"
|
||||
msgstr "Genväg för drivrutin"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:250
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:238
|
||||
msgid "Driver Shutdown Order"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:145
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:282
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:137
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:270
|
||||
msgid "Driver waits for data to be consumed by upsd before publishing more."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:97
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server_admin.js:20
|
||||
msgid "Drop privileges to this user"
|
||||
msgstr "Släpp privilegier till den här användaren"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_cgi.js:41
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_cgi_admin.js:22
|
||||
msgid "Enable"
|
||||
msgstr "Aktivera"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:178
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:166
|
||||
msgid ""
|
||||
"Enables a hotplug script that makes all ttyUSB devices (e.g. serial USB) "
|
||||
"group read-write as user %s"
|
||||
@@ -134,23 +134,29 @@ msgstr "Kör aviseringskommando"
|
||||
msgid "Forced Shutdown"
|
||||
msgstr "Påtvingad nerstängning"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:71
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:70
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor_admin.js:16
|
||||
msgid "Global Settings"
|
||||
msgstr "Globala inställningar"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_cgi.js:15
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_cgi_admin.js:15
|
||||
msgid "Go to NUT CGI"
|
||||
msgstr "Gå till CGI för NUT"
|
||||
|
||||
#: applications/luci-app-nut/root/usr/share/rpcd/acl.d/luci-app-nut.json:15
|
||||
msgid "Grant admin UCI access for luci-app-nut"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/root/usr/share/rpcd/acl.d/luci-app-nut.json:3
|
||||
msgid "Grant UCI access for luci-app-nut"
|
||||
msgstr "Godkänn UCI-åtkomst för luci-app-nut"
|
||||
msgid "Grant limited UCI read access for luci-app-nut"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_cgi.js:17
|
||||
msgid "Host"
|
||||
msgstr "Värd"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:100
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:89
|
||||
msgid "Host Sync"
|
||||
msgstr ""
|
||||
|
||||
@@ -158,7 +164,7 @@ msgstr ""
|
||||
msgid "Hostname or IP address"
|
||||
msgstr "Värdnamn eller IP-adress"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:29
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:28
|
||||
msgid "Hostname or address of UPS"
|
||||
msgstr "Värdnamn eller adressen för UPS"
|
||||
|
||||
@@ -166,7 +172,7 @@ msgstr "Värdnamn eller adressen för UPS"
|
||||
msgid "IP Address"
|
||||
msgstr "IP-adress"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:171
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:159
|
||||
msgid "If this list is empty you need to %s"
|
||||
msgstr ""
|
||||
|
||||
@@ -174,7 +180,7 @@ msgstr ""
|
||||
msgid "Ignore"
|
||||
msgstr "Ignorera"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:182
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:170
|
||||
msgid "Ignore Low Battery"
|
||||
msgstr "Ignorera lågt batteri"
|
||||
|
||||
@@ -182,19 +188,19 @@ msgstr "Ignorera lågt batteri"
|
||||
msgid "Instant commands"
|
||||
msgstr "Direktkommandon"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:186
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:174
|
||||
msgid "Interrupt Only"
|
||||
msgstr "Stör enbart"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:190
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:178
|
||||
msgid "Interrupt Size"
|
||||
msgstr "Storlek för störning"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:203
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:191
|
||||
msgid "Manufacturer (Display)"
|
||||
msgstr "Tillverkare (Skärm)"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:194
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:182
|
||||
msgid "Max USB HID Length Reported"
|
||||
msgstr ""
|
||||
|
||||
@@ -202,47 +208,55 @@ msgstr ""
|
||||
msgid "Maximum Age of Data"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:130
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:122
|
||||
msgid "Maximum Retries"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:126
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:198
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:118
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:186
|
||||
msgid "Maximum Start Delay"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:105
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:97
|
||||
msgid "Maximum connections"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:130
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:122
|
||||
msgid "Maximum number of times to try starting a driver."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:140
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:132
|
||||
msgid "Maximum time in seconds between refresh of UPS status"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:78
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:74
|
||||
msgid "Minimum required number or power supplies"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:206
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:194
|
||||
msgid "Model (Display)"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_cgi.js:13
|
||||
#: applications/luci-app-nut/root/usr/share/luci/menu.d/luci-app-nut.json:42
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_cgi_admin.js:13
|
||||
msgid "NUT CGI"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:68
|
||||
#: applications/luci-app-nut/root/usr/share/luci/menu.d/luci-app-nut.json:30
|
||||
#: applications/luci-app-nut/root/usr/share/luci/menu.d/luci-app-nut.json:100
|
||||
msgid "NUT CGI - admin"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/root/usr/share/luci/menu.d/luci-app-nut.json:85
|
||||
msgid "NUT CGI - main"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:67
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor_admin.js:13
|
||||
msgid "NUT Monitor"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:42
|
||||
#: applications/luci-app-nut/root/usr/share/luci/menu.d/luci-app-nut.json:18
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server_admin.js:13
|
||||
msgid "NUT Server"
|
||||
msgstr ""
|
||||
|
||||
@@ -250,7 +264,23 @@ msgstr ""
|
||||
msgid "NUT Users"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:26
|
||||
#: applications/luci-app-nut/root/usr/share/luci/menu.d/luci-app-nut.json:69
|
||||
msgid "NUT monitor - admin"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/root/usr/share/luci/menu.d/luci-app-nut.json:54
|
||||
msgid "NUT monitor - main"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/root/usr/share/luci/menu.d/luci-app-nut.json:38
|
||||
msgid "NUT server - admin"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/root/usr/share/luci/menu.d/luci-app-nut.json:23
|
||||
msgid "NUT server - main"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:25
|
||||
msgid "Name of UPS"
|
||||
msgstr ""
|
||||
|
||||
@@ -259,59 +289,62 @@ msgid "Network UPS Tools"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_cgi.js:14
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_cgi_admin.js:14
|
||||
msgid "Network UPS Tools CGI Configuration"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:69
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:68
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor_admin.js:14
|
||||
msgid "Network UPS Tools Monitoring Configuration"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:43
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server_admin.js:14
|
||||
msgid "Network UPS Tools Server Configuration"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:209
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:197
|
||||
msgid "No Lock"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:213
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:201
|
||||
msgid "No low/high voltage transfer OIDs"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:127
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:116
|
||||
msgid "Notification flags"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:119
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:108
|
||||
msgid "Notifications settings"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:87
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor_admin.js:23
|
||||
msgid "Notify command"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:217
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:205
|
||||
msgid "Off Delay(s)"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:226
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:214
|
||||
msgid "On Delay(s)"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:46
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:45
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:53
|
||||
msgid "Password"
|
||||
msgstr "Lösenord"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:110
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:99
|
||||
msgid "Path containing ca certificates to match against host certificate"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:122
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:114
|
||||
msgid "Path to drivers (instead of default)"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:101
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server_admin.js:24
|
||||
msgid "Path to state file"
|
||||
msgstr ""
|
||||
|
||||
@@ -319,30 +352,30 @@ msgstr ""
|
||||
msgid "Period after which data is considered stale"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:140
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:132
|
||||
msgid "Poll Interval"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:90
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:79
|
||||
msgid "Poll frequency"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:95
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:84
|
||||
msgid "Poll frequency alert"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:235
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:223
|
||||
msgid "Polling Frequency(s)"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_cgi.js:28
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:33
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:32
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:83
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:240
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:228
|
||||
msgid "Port"
|
||||
msgstr "Port"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:38
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:37
|
||||
msgid "Power value"
|
||||
msgstr ""
|
||||
|
||||
@@ -354,15 +387,15 @@ msgstr "Mästare"
|
||||
msgid "Primary (Deprecated)"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:244
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:232
|
||||
msgid "Product (regex)"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:114
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:103
|
||||
msgid "Require SSL and make sure server CN matches hostname"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:135
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:127
|
||||
msgid "Retry Delay"
|
||||
msgstr ""
|
||||
|
||||
@@ -370,49 +403,48 @@ msgstr ""
|
||||
msgid "Role"
|
||||
msgstr "Roll"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:119
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:111
|
||||
msgid "Run drivers in a chroot(2) environment"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:75
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:97
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:149
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor_admin.js:20
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server_admin.js:20
|
||||
msgid "RunAs User"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:163
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:151
|
||||
msgid "SNMP Community"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:260
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:248
|
||||
msgid "SNMP retries"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:264
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:252
|
||||
msgid "SNMP timeout(s)"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:268
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:256
|
||||
msgid "SNMP version"
|
||||
msgstr "SNMP-version"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:270
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:258
|
||||
msgid "SNMPv1"
|
||||
msgstr "SNMPv1"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:271
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:259
|
||||
msgid "SNMPv2c"
|
||||
msgstr "SNMPv2c"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:272
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:260
|
||||
msgid "SNMPv3"
|
||||
msgstr "SNMPv3"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:257
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:245
|
||||
msgid "Serial Number"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:177
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:165
|
||||
msgid "Set USB serial port permissions"
|
||||
msgstr ""
|
||||
|
||||
@@ -420,49 +452,50 @@ msgstr ""
|
||||
msgid "Set variables"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:83
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor_admin.js:26
|
||||
msgid "Shutdown command"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:145
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:282
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:137
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:270
|
||||
msgid "Synchronous Communication"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:155
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:143
|
||||
msgid "The name of this section will be used as UPS name elsewhere"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:167
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:203
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:206
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:257
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:155
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:191
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:194
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:245
|
||||
msgid ""
|
||||
"This is passed through to the driver, so make sure your driver supports this "
|
||||
"option"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:135
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:127
|
||||
msgid "Time in seconds between driver start retry attempts."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:198
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:186
|
||||
msgid "Time in seconds that upsdrvctl will wait for driver to finish starting"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:142
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:131
|
||||
msgid "UPS Auxiliary (Deprecated)"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:130
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:119
|
||||
msgid "UPS Monitor User Settings"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:139
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:128
|
||||
msgid "UPS Primary (Deprecated)"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:89
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server_admin.js:17
|
||||
msgid "UPS Server Global Settings"
|
||||
msgstr ""
|
||||
|
||||
@@ -470,19 +503,19 @@ msgstr ""
|
||||
msgid "UPS name"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:159
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:147
|
||||
msgid "USB Bus(es) (regex)"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:247
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:235
|
||||
msgid "USB Product Id"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:279
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:267
|
||||
msgid "USB Vendor Id"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:57
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:56
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:28
|
||||
msgid "Unable to run ldd: %s"
|
||||
msgstr ""
|
||||
@@ -492,30 +525,24 @@ msgid ""
|
||||
"Use %s to see full list of commands your UPS supports (requires %s package)"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:149
|
||||
msgid ""
|
||||
"User as which to execute driver; requires device file accessed by driver to "
|
||||
"be read-write for that user."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:133
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:122
|
||||
msgid "User type (Primary/Auxiliary)"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:43
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:42
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:50
|
||||
msgid "Username"
|
||||
msgstr "Användarnamn"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:276
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:264
|
||||
msgid "Vendor (regex)"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:114
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:103
|
||||
msgid "Verify all connection with SSL"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:194
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:182
|
||||
msgid "Workaround for buggy firmware"
|
||||
msgstr ""
|
||||
|
||||
@@ -527,18 +554,21 @@ msgstr ""
|
||||
msgid "Write to syslog and execute notify command"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:119
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:111
|
||||
msgid "chroot"
|
||||
msgstr "chroot"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:171
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:159
|
||||
msgid "install drivers"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:75
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor_admin.js:20
|
||||
msgid "upsmon drops privileges to this user"
|
||||
msgstr ""
|
||||
|
||||
#~ msgid "Grant UCI access for luci-app-nut"
|
||||
#~ msgstr "Godkänn UCI-åtkomst för luci-app-nut"
|
||||
|
||||
#~ msgid "%s is mutually exclusive to other choices"
|
||||
#~ msgstr "% är ömsesidigt exklusivt för andra val"
|
||||
|
||||
|
||||
@@ -10,7 +10,7 @@ msgstr ""
|
||||
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
||||
"X-Generator: Weblate 5.12-dev\n"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:254
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:242
|
||||
msgid "Additional Shutdown Time(s)"
|
||||
msgstr "கூடுதல் பணிநிறுத்தம் நேரம் (கள்)"
|
||||
|
||||
@@ -23,7 +23,7 @@ msgid "Allowed actions"
|
||||
msgstr "அனுமதிக்கப்பட்ட செயல்கள்"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_cgi.js:21
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:26
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:25
|
||||
msgid "As configured by NUT"
|
||||
msgstr "நட்டு கட்டமைக்கப்பட்டபடி"
|
||||
|
||||
@@ -35,43 +35,43 @@ msgstr "துணை"
|
||||
msgid "Auxiliary (Deprecated)"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:190
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:178
|
||||
msgid "Bytes to read from interrupt pipe"
|
||||
msgstr "குறுக்கீடு குழாயிலிருந்து படிக்க பைட்டுகள்"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:110
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:99
|
||||
msgid "CA Certificate path"
|
||||
msgstr "CA சான்றிதழ் பாதை"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:111
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:103
|
||||
msgid "Certificate file (SSL)"
|
||||
msgstr "சான்றிதழ் கோப்பு (எச்.எச்.எல்)"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_cgi.js:36
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_cgi_admin.js:17
|
||||
msgid "Control UPS via CGI"
|
||||
msgstr "சிசிஐ வழியாக அப்களை கட்டுப்படுத்தவும்"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:124
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:113
|
||||
msgid "Custom notification message for message type"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:104
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:93
|
||||
msgid "Deadtime"
|
||||
msgstr "காலக்கெடு"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:126
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:118
|
||||
msgid "Default for UPSes without this field."
|
||||
msgstr "இந்த புலம் இல்லாமல் அப்சசுக்கு இயல்புநிலை."
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:217
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:205
|
||||
msgid "Delay for kill power command"
|
||||
msgstr "பவர் கட்டளையை கொல்ல நேரந்தவறுகை"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:226
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:214
|
||||
msgid "Delay to power on UPS if power returns after kill power"
|
||||
msgstr "சக்தியைக் கொன்ற பிறகு ஆற்றல் திரும்பினால் யுபிஎச் மீது அதிகாரத்திற்கு நேரந்தவறுகை"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:167
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:155
|
||||
msgid "Description (Display)"
|
||||
msgstr "விளக்கம் (காட்சி)"
|
||||
|
||||
@@ -79,44 +79,44 @@ msgstr "விளக்கம் (காட்சி)"
|
||||
msgid "Display name"
|
||||
msgstr "காட்சி பெயர்"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:209
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:197
|
||||
msgid "Do not lock port when starting driver"
|
||||
msgstr "டிரைவரைத் தொடங்கும்போது துறைமுகத்தை பூட்ட வேண்டாம்"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:170
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:158
|
||||
msgid "Driver"
|
||||
msgstr "இயக்கி"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:154
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:142
|
||||
msgid "Driver Configuration"
|
||||
msgstr "இயக்கி உள்ளமைவு"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:116
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:108
|
||||
msgid "Driver Global Settings"
|
||||
msgstr "டிரைவர் உலகளாவிய அமைப்புகள்"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:122
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:114
|
||||
msgid "Driver Path"
|
||||
msgstr "இயக்கி பாதை"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:250
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:238
|
||||
msgid "Driver Shutdown Order"
|
||||
msgstr "இயக்கி பணிநிறுத்தம் ஆர்டர்"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:145
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:282
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:137
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:270
|
||||
msgid "Driver waits for data to be consumed by upsd before publishing more."
|
||||
msgstr "மேலும் வெளியிடுவதற்கு முன்பு தரவுகளை யுபிஎச்டி நுகர இயக்கி காத்திருக்கிறது."
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:97
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server_admin.js:20
|
||||
msgid "Drop privileges to this user"
|
||||
msgstr "இந்த பயனருக்கு சலுகைகளை விடுங்கள்"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_cgi.js:41
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_cgi_admin.js:22
|
||||
msgid "Enable"
|
||||
msgstr "இயக்கு"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:178
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:166
|
||||
msgid ""
|
||||
"Enables a hotplug script that makes all ttyUSB devices (e.g. serial USB) "
|
||||
"group read-write as user %s"
|
||||
@@ -132,23 +132,29 @@ msgstr "அறிவிப்பு கட்டளையை செயல்ப
|
||||
msgid "Forced Shutdown"
|
||||
msgstr "கட்டாய பணிநிறுத்தம்"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:71
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:70
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor_admin.js:16
|
||||
msgid "Global Settings"
|
||||
msgstr "உலகளாவிய அமைப்புகள்"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_cgi.js:15
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_cgi_admin.js:15
|
||||
msgid "Go to NUT CGI"
|
||||
msgstr "நட் சிசிஐக்குச் செல்லுங்கள்"
|
||||
|
||||
#: applications/luci-app-nut/root/usr/share/rpcd/acl.d/luci-app-nut.json:15
|
||||
msgid "Grant admin UCI access for luci-app-nut"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/root/usr/share/rpcd/acl.d/luci-app-nut.json:3
|
||||
msgid "Grant UCI access for luci-app-nut"
|
||||
msgstr "லூசி-ஆப்-நட்டுக்கு யுசிஐ அணுகல் வழங்கவும்"
|
||||
msgid "Grant limited UCI read access for luci-app-nut"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_cgi.js:17
|
||||
msgid "Host"
|
||||
msgstr "விருந்தோம்பி"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:100
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:89
|
||||
msgid "Host Sync"
|
||||
msgstr ""
|
||||
|
||||
@@ -156,7 +162,7 @@ msgstr ""
|
||||
msgid "Hostname or IP address"
|
||||
msgstr "ஓச்ட்பெயர் அல்லது ஐபி முகவரி"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:29
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:28
|
||||
msgid "Hostname or address of UPS"
|
||||
msgstr "ஓச்ட்பெயர் அல்லது யுபிஎச் முகவரி"
|
||||
|
||||
@@ -164,7 +170,7 @@ msgstr "ஓச்ட்பெயர் அல்லது யுபிஎச்
|
||||
msgid "IP Address"
|
||||
msgstr "ஐபி முகவரி"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:171
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:159
|
||||
msgid "If this list is empty you need to %s"
|
||||
msgstr "இந்த பட்டியல் காலியாக இருந்தால் நீங்கள் %s தேவை"
|
||||
|
||||
@@ -172,7 +178,7 @@ msgstr "இந்த பட்டியல் காலியாக இருந
|
||||
msgid "Ignore"
|
||||
msgstr "புறக்கணிக்கவும்"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:182
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:170
|
||||
msgid "Ignore Low Battery"
|
||||
msgstr "குறைந்த பேட்டரியை புறக்கணிக்கவும்"
|
||||
|
||||
@@ -180,19 +186,19 @@ msgstr "குறைந்த பேட்டரியை புறக்கண
|
||||
msgid "Instant commands"
|
||||
msgstr "உடனடி கட்டளைகள்"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:186
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:174
|
||||
msgid "Interrupt Only"
|
||||
msgstr "குறுக்கீடு மட்டுமே"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:190
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:178
|
||||
msgid "Interrupt Size"
|
||||
msgstr "குறுக்கீடு அளவு"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:203
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:191
|
||||
msgid "Manufacturer (Display)"
|
||||
msgstr "உற்பத்தியாளர் (காட்சி)"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:194
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:182
|
||||
msgid "Max USB HID Length Reported"
|
||||
msgstr "மேக்ச் யூ.எச்.பி மறைக்கப்பட்ட நீளம்"
|
||||
|
||||
@@ -200,47 +206,55 @@ msgstr "மேக்ச் யூ.எச்.பி மறைக்கப்ப
|
||||
msgid "Maximum Age of Data"
|
||||
msgstr "தரவின் அதிகபட்ச அகவை"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:130
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:122
|
||||
msgid "Maximum Retries"
|
||||
msgstr "அதிகபட்ச முயற்சிகள்"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:126
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:198
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:118
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:186
|
||||
msgid "Maximum Start Delay"
|
||||
msgstr "அதிகபட்ச தொடக்க நேரந்தவறுகை"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:105
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:97
|
||||
msgid "Maximum connections"
|
||||
msgstr "அதிகபட்ச இணைப்புகள்"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:130
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:122
|
||||
msgid "Maximum number of times to try starting a driver."
|
||||
msgstr "இயக்கி தொடங்க முயற்சிக்க அதிகபட்சம்."
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:140
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:132
|
||||
msgid "Maximum time in seconds between refresh of UPS status"
|
||||
msgstr "யுபிஎச் நிலையின் புதுப்பிப்புக்கு இடையில் விநாடிகளில் அதிகபட்ச நேரம்"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:78
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:74
|
||||
msgid "Minimum required number or power supplies"
|
||||
msgstr "குறைந்தபட்ச தேவையான எண் அல்லது மின்சாரம்"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:206
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:194
|
||||
msgid "Model (Display)"
|
||||
msgstr "மாதிரி (காட்சி)"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_cgi.js:13
|
||||
#: applications/luci-app-nut/root/usr/share/luci/menu.d/luci-app-nut.json:42
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_cgi_admin.js:13
|
||||
msgid "NUT CGI"
|
||||
msgstr "நட்டு சிசிஐ"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:68
|
||||
#: applications/luci-app-nut/root/usr/share/luci/menu.d/luci-app-nut.json:30
|
||||
#: applications/luci-app-nut/root/usr/share/luci/menu.d/luci-app-nut.json:100
|
||||
msgid "NUT CGI - admin"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/root/usr/share/luci/menu.d/luci-app-nut.json:85
|
||||
msgid "NUT CGI - main"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:67
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor_admin.js:13
|
||||
msgid "NUT Monitor"
|
||||
msgstr "நட்டு மானிட்டர்"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:42
|
||||
#: applications/luci-app-nut/root/usr/share/luci/menu.d/luci-app-nut.json:18
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server_admin.js:13
|
||||
msgid "NUT Server"
|
||||
msgstr "நட்டு சேவையகம்"
|
||||
|
||||
@@ -248,7 +262,23 @@ msgstr "நட்டு சேவையகம்"
|
||||
msgid "NUT Users"
|
||||
msgstr "நட்டு பயனர்கள்"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:26
|
||||
#: applications/luci-app-nut/root/usr/share/luci/menu.d/luci-app-nut.json:69
|
||||
msgid "NUT monitor - admin"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/root/usr/share/luci/menu.d/luci-app-nut.json:54
|
||||
msgid "NUT monitor - main"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/root/usr/share/luci/menu.d/luci-app-nut.json:38
|
||||
msgid "NUT server - admin"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/root/usr/share/luci/menu.d/luci-app-nut.json:23
|
||||
msgid "NUT server - main"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:25
|
||||
msgid "Name of UPS"
|
||||
msgstr "யுபிஎச் பெயர்"
|
||||
|
||||
@@ -257,59 +287,62 @@ msgid "Network UPS Tools"
|
||||
msgstr "பிணையம் யுபிஎச் கருவிகள்"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_cgi.js:14
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_cgi_admin.js:14
|
||||
msgid "Network UPS Tools CGI Configuration"
|
||||
msgstr "பிணையம் யுபிஎச் கருவிகள் சிசிஐ உள்ளமைவு"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:69
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:68
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor_admin.js:14
|
||||
msgid "Network UPS Tools Monitoring Configuration"
|
||||
msgstr "பிணையம் யுபிஎச் கருவிகள் கண்காணிப்பு உள்ளமைவு"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:43
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server_admin.js:14
|
||||
msgid "Network UPS Tools Server Configuration"
|
||||
msgstr "பிணையம் யுபிஎச் கருவிகள் சேவையக உள்ளமைவு"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:209
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:197
|
||||
msgid "No Lock"
|
||||
msgstr "பூட்டு இல்லை"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:213
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:201
|
||||
msgid "No low/high voltage transfer OIDs"
|
||||
msgstr "குறைந்த/உயர் மின்னழுத்த பரிமாற்ற OIDS இல்லை"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:127
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:116
|
||||
msgid "Notification flags"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:119
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:108
|
||||
msgid "Notifications settings"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:87
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor_admin.js:23
|
||||
msgid "Notify command"
|
||||
msgstr "கட்டளைக்கு அறிவிக்கவும்"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:217
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:205
|
||||
msgid "Off Delay(s)"
|
||||
msgstr "முடக்கப்பட்ட நேரந்தவறுகை (கள்)"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:226
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:214
|
||||
msgid "On Delay(s)"
|
||||
msgstr "நேரந்தவறுகை (கள்) மீது"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:46
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:45
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:53
|
||||
msgid "Password"
|
||||
msgstr "கடவுச்சொல்"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:110
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:99
|
||||
msgid "Path containing ca certificates to match against host certificate"
|
||||
msgstr "புரவலன் சான்றிதழுடன் பொருந்தக்கூடிய CA சான்றிதழ்கள் கொண்ட பாதை"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:122
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:114
|
||||
msgid "Path to drivers (instead of default)"
|
||||
msgstr "இயக்கிகளுக்கான பாதை (இயல்புநிலைக்கு பதிலாக)"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:101
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server_admin.js:24
|
||||
msgid "Path to state file"
|
||||
msgstr "மாநில கோப்பிற்கான பாதை"
|
||||
|
||||
@@ -317,30 +350,30 @@ msgstr "மாநில கோப்பிற்கான பாதை"
|
||||
msgid "Period after which data is considered stale"
|
||||
msgstr "தரவு பழையதாகக் கருதப்படும் காலம்"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:140
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:132
|
||||
msgid "Poll Interval"
|
||||
msgstr "வாக்கெடுப்பு இடைவெளி"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:90
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:79
|
||||
msgid "Poll frequency"
|
||||
msgstr "வாக்கெடுப்பு அதிர்வெண்"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:95
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:84
|
||||
msgid "Poll frequency alert"
|
||||
msgstr "வாக்கெடுப்பு அதிர்வெண் எச்சரிக்கை"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:235
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:223
|
||||
msgid "Polling Frequency(s)"
|
||||
msgstr "வாக்களிப்பு அதிர்வெண்"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_cgi.js:28
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:33
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:32
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:83
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:240
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:228
|
||||
msgid "Port"
|
||||
msgstr "துறைமுகம்"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:38
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:37
|
||||
msgid "Power value"
|
||||
msgstr "ஆற்றல் மதிப்பு"
|
||||
|
||||
@@ -352,16 +385,16 @@ msgstr "முதன்மை"
|
||||
msgid "Primary (Deprecated)"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:244
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:232
|
||||
msgid "Product (regex)"
|
||||
msgstr "தயாரிப்பு (ரீசெக்ச்)"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:114
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:103
|
||||
msgid "Require SSL and make sure server CN matches hostname"
|
||||
msgstr ""
|
||||
"எச்.எச்.எல் தேவை மற்றும் சேவையக சி.என் ஓச்ட்பெயருடன் பொருந்துகிறது என்பதை உறுதிப்படுத்தவும்"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:135
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:127
|
||||
msgid "Retry Delay"
|
||||
msgstr "தாமதத்தை மீண்டும் முயற்சிக்கவும்"
|
||||
|
||||
@@ -369,49 +402,48 @@ msgstr "தாமதத்தை மீண்டும் முயற்சி
|
||||
msgid "Role"
|
||||
msgstr "பங்கு"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:119
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:111
|
||||
msgid "Run drivers in a chroot(2) environment"
|
||||
msgstr "க்ரூட் (2) சூழலில் டிரைவர்களை இயக்கவும்"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:75
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:97
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:149
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor_admin.js:20
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server_admin.js:20
|
||||
msgid "RunAs User"
|
||||
msgstr "ரனாச் பயனர்"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:163
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:151
|
||||
msgid "SNMP Community"
|
||||
msgstr "எச்.என்.எம்.பி சமூகம்"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:260
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:248
|
||||
msgid "SNMP retries"
|
||||
msgstr "SNMP முயற்சிகள்"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:264
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:252
|
||||
msgid "SNMP timeout(s)"
|
||||
msgstr "SNMP நேரம் முடிந்தது (கள்)"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:268
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:256
|
||||
msgid "SNMP version"
|
||||
msgstr "SNMP பதிப்பு"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:270
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:258
|
||||
msgid "SNMPv1"
|
||||
msgstr "SNMPV1"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:271
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:259
|
||||
msgid "SNMPv2c"
|
||||
msgstr "SNMPV2C"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:272
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:260
|
||||
msgid "SNMPv3"
|
||||
msgstr "SNMPV3"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:257
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:245
|
||||
msgid "Serial Number"
|
||||
msgstr "வரிசை எண்"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:177
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:165
|
||||
msgid "Set USB serial port permissions"
|
||||
msgstr "யூ.எச்.பி சீரியல் துறைமுகம் அனுமதிகளை அமைக்கவும்"
|
||||
|
||||
@@ -419,49 +451,50 @@ msgstr "யூ.எச்.பி சீரியல் துறைமுகம
|
||||
msgid "Set variables"
|
||||
msgstr "மாறிகள் அமைக்கவும்"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:83
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor_admin.js:26
|
||||
msgid "Shutdown command"
|
||||
msgstr "பணிநிறுத்தம் கட்டளை"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:145
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:282
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:137
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:270
|
||||
msgid "Synchronous Communication"
|
||||
msgstr "ஒத்திசைவான தொடர்பு"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:155
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:143
|
||||
msgid "The name of this section will be used as UPS name elsewhere"
|
||||
msgstr "இந்த பிரிவின் பெயர் வேறு இடங்களில் யுபிஎச் பெயராகப் பயன்படுத்தப்படும்"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:167
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:203
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:206
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:257
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:155
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:191
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:194
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:245
|
||||
msgid ""
|
||||
"This is passed through to the driver, so make sure your driver supports this "
|
||||
"option"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:135
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:127
|
||||
msgid "Time in seconds between driver start retry attempts."
|
||||
msgstr "ஓட்டுநருக்கு இடையிலான விநாடிகளில் நேரம் மீண்டும் முயற்சிகளைத் தொடங்குகிறது."
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:198
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:186
|
||||
msgid "Time in seconds that upsdrvctl will wait for driver to finish starting"
|
||||
msgstr "இயக்கி தொடங்கும் வரை அப்ச்டிர்விசிடிஎல் காத்திருக்கும் விநாடிகளில் நேரம்"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:142
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:131
|
||||
msgid "UPS Auxiliary (Deprecated)"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:130
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:119
|
||||
msgid "UPS Monitor User Settings"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:139
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:128
|
||||
msgid "UPS Primary (Deprecated)"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:89
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server_admin.js:17
|
||||
msgid "UPS Server Global Settings"
|
||||
msgstr "யுபிஎச் சேவையகம் உலகளாவிய அமைப்புகள்"
|
||||
|
||||
@@ -469,19 +502,19 @@ msgstr "யுபிஎச் சேவையகம் உலகளாவிய
|
||||
msgid "UPS name"
|
||||
msgstr "யுபிஎச் பெயர்"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:159
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:147
|
||||
msgid "USB Bus(es) (regex)"
|
||||
msgstr "யூ.எச்.பி பச் (எச்) (ரீசெக்ச்)"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:247
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:235
|
||||
msgid "USB Product Id"
|
||||
msgstr "யூ.எச்.பி தயாரிப்பு ஐடி"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:279
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:267
|
||||
msgid "USB Vendor Id"
|
||||
msgstr "யூ.எச்.பி விற்பனையாளர் ஐடி"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:57
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:56
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:28
|
||||
msgid "Unable to run ldd: %s"
|
||||
msgstr "எல்.டி.டி இயக்க முடியவில்லை: %s"
|
||||
@@ -493,32 +526,24 @@ msgstr ""
|
||||
"உங்கள் யுபிஎச் ஆதரிக்கும் கட்டளைகளின் முழு பட்டியலையும் காண %s ஐப் பயன்படுத்தவும் ( %s "
|
||||
"தொகுப்பு தேவை)"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:149
|
||||
msgid ""
|
||||
"User as which to execute driver; requires device file accessed by driver to "
|
||||
"be read-write for that user."
|
||||
msgstr ""
|
||||
"இயக்கி இயக்க வேண்டிய பயனர்; அந்த பயனருக்கு படிக்க-எழுத இயக்கி அணுகும் சாதனக் கோப்பு "
|
||||
"தேவை."
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:133
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:122
|
||||
msgid "User type (Primary/Auxiliary)"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:43
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:42
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:50
|
||||
msgid "Username"
|
||||
msgstr "பயனர்பெயர்"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:276
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:264
|
||||
msgid "Vendor (regex)"
|
||||
msgstr "விற்பனையாளர் (ரீசெக்ச்)"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:114
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:103
|
||||
msgid "Verify all connection with SSL"
|
||||
msgstr "SSL உடனான அனைத்து தொடர்புகளையும் சரிபார்க்கவும்"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:194
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:182
|
||||
msgid "Workaround for buggy firmware"
|
||||
msgstr "தரமற்ற ஃபார்ம்வேர்க்கான பணித்தொகுப்பு"
|
||||
|
||||
@@ -530,18 +555,28 @@ msgstr "சிச்லாக் எழுதுங்கள்"
|
||||
msgid "Write to syslog and execute notify command"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:119
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:111
|
||||
msgid "chroot"
|
||||
msgstr "க்ரூட்"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:171
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:159
|
||||
msgid "install drivers"
|
||||
msgstr "இயக்கிகளை நிறுவவும்"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:75
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor_admin.js:20
|
||||
msgid "upsmon drops privileges to this user"
|
||||
msgstr "இந்த பயனருக்கு யுப்ச்மோன் சலுகைகளை குறைக்கிறது"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "User as which to execute driver; requires device file accessed by driver "
|
||||
#~ "to be read-write for that user."
|
||||
#~ msgstr ""
|
||||
#~ "இயக்கி இயக்க வேண்டிய பயனர்; அந்த பயனருக்கு படிக்க-எழுத இயக்கி அணுகும் சாதனக் கோப்பு "
|
||||
#~ "தேவை."
|
||||
|
||||
#~ msgid "Grant UCI access for luci-app-nut"
|
||||
#~ msgstr "லூசி-ஆப்-நட்டுக்கு யுசிஐ அணுகல் வழங்கவும்"
|
||||
|
||||
#~ msgid "%s is mutually exclusive to other choices"
|
||||
#~ msgstr "%s பிற தேர்வுகளுக்கு இருவழி"
|
||||
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
msgid ""
|
||||
msgstr "Content-Type: text/plain; charset=UTF-8"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:254
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:242
|
||||
msgid "Additional Shutdown Time(s)"
|
||||
msgstr ""
|
||||
|
||||
@@ -14,7 +14,7 @@ msgid "Allowed actions"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_cgi.js:21
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:26
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:25
|
||||
msgid "As configured by NUT"
|
||||
msgstr ""
|
||||
|
||||
@@ -26,43 +26,43 @@ msgstr ""
|
||||
msgid "Auxiliary (Deprecated)"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:190
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:178
|
||||
msgid "Bytes to read from interrupt pipe"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:110
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:99
|
||||
msgid "CA Certificate path"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:111
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:103
|
||||
msgid "Certificate file (SSL)"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_cgi.js:36
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_cgi_admin.js:17
|
||||
msgid "Control UPS via CGI"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:124
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:113
|
||||
msgid "Custom notification message for message type"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:104
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:93
|
||||
msgid "Deadtime"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:126
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:118
|
||||
msgid "Default for UPSes without this field."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:217
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:205
|
||||
msgid "Delay for kill power command"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:226
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:214
|
||||
msgid "Delay to power on UPS if power returns after kill power"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:167
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:155
|
||||
msgid "Description (Display)"
|
||||
msgstr ""
|
||||
|
||||
@@ -70,44 +70,44 @@ msgstr ""
|
||||
msgid "Display name"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:209
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:197
|
||||
msgid "Do not lock port when starting driver"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:170
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:158
|
||||
msgid "Driver"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:154
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:142
|
||||
msgid "Driver Configuration"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:116
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:108
|
||||
msgid "Driver Global Settings"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:122
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:114
|
||||
msgid "Driver Path"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:250
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:238
|
||||
msgid "Driver Shutdown Order"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:145
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:282
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:137
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:270
|
||||
msgid "Driver waits for data to be consumed by upsd before publishing more."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:97
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server_admin.js:20
|
||||
msgid "Drop privileges to this user"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_cgi.js:41
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_cgi_admin.js:22
|
||||
msgid "Enable"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:178
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:166
|
||||
msgid ""
|
||||
"Enables a hotplug script that makes all ttyUSB devices (e.g. serial USB) "
|
||||
"group read-write as user %s"
|
||||
@@ -121,23 +121,29 @@ msgstr ""
|
||||
msgid "Forced Shutdown"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:71
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:70
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor_admin.js:16
|
||||
msgid "Global Settings"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_cgi.js:15
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_cgi_admin.js:15
|
||||
msgid "Go to NUT CGI"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/root/usr/share/rpcd/acl.d/luci-app-nut.json:15
|
||||
msgid "Grant admin UCI access for luci-app-nut"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/root/usr/share/rpcd/acl.d/luci-app-nut.json:3
|
||||
msgid "Grant UCI access for luci-app-nut"
|
||||
msgid "Grant limited UCI read access for luci-app-nut"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_cgi.js:17
|
||||
msgid "Host"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:100
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:89
|
||||
msgid "Host Sync"
|
||||
msgstr ""
|
||||
|
||||
@@ -145,7 +151,7 @@ msgstr ""
|
||||
msgid "Hostname or IP address"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:29
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:28
|
||||
msgid "Hostname or address of UPS"
|
||||
msgstr ""
|
||||
|
||||
@@ -153,7 +159,7 @@ msgstr ""
|
||||
msgid "IP Address"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:171
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:159
|
||||
msgid "If this list is empty you need to %s"
|
||||
msgstr ""
|
||||
|
||||
@@ -161,7 +167,7 @@ msgstr ""
|
||||
msgid "Ignore"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:182
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:170
|
||||
msgid "Ignore Low Battery"
|
||||
msgstr ""
|
||||
|
||||
@@ -169,19 +175,19 @@ msgstr ""
|
||||
msgid "Instant commands"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:186
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:174
|
||||
msgid "Interrupt Only"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:190
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:178
|
||||
msgid "Interrupt Size"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:203
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:191
|
||||
msgid "Manufacturer (Display)"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:194
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:182
|
||||
msgid "Max USB HID Length Reported"
|
||||
msgstr ""
|
||||
|
||||
@@ -189,47 +195,55 @@ msgstr ""
|
||||
msgid "Maximum Age of Data"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:130
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:122
|
||||
msgid "Maximum Retries"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:126
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:198
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:118
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:186
|
||||
msgid "Maximum Start Delay"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:105
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:97
|
||||
msgid "Maximum connections"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:130
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:122
|
||||
msgid "Maximum number of times to try starting a driver."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:140
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:132
|
||||
msgid "Maximum time in seconds between refresh of UPS status"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:78
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:74
|
||||
msgid "Minimum required number or power supplies"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:206
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:194
|
||||
msgid "Model (Display)"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_cgi.js:13
|
||||
#: applications/luci-app-nut/root/usr/share/luci/menu.d/luci-app-nut.json:42
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_cgi_admin.js:13
|
||||
msgid "NUT CGI"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:68
|
||||
#: applications/luci-app-nut/root/usr/share/luci/menu.d/luci-app-nut.json:30
|
||||
#: applications/luci-app-nut/root/usr/share/luci/menu.d/luci-app-nut.json:100
|
||||
msgid "NUT CGI - admin"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/root/usr/share/luci/menu.d/luci-app-nut.json:85
|
||||
msgid "NUT CGI - main"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:67
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor_admin.js:13
|
||||
msgid "NUT Monitor"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:42
|
||||
#: applications/luci-app-nut/root/usr/share/luci/menu.d/luci-app-nut.json:18
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server_admin.js:13
|
||||
msgid "NUT Server"
|
||||
msgstr ""
|
||||
|
||||
@@ -237,7 +251,23 @@ msgstr ""
|
||||
msgid "NUT Users"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:26
|
||||
#: applications/luci-app-nut/root/usr/share/luci/menu.d/luci-app-nut.json:69
|
||||
msgid "NUT monitor - admin"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/root/usr/share/luci/menu.d/luci-app-nut.json:54
|
||||
msgid "NUT monitor - main"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/root/usr/share/luci/menu.d/luci-app-nut.json:38
|
||||
msgid "NUT server - admin"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/root/usr/share/luci/menu.d/luci-app-nut.json:23
|
||||
msgid "NUT server - main"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:25
|
||||
msgid "Name of UPS"
|
||||
msgstr ""
|
||||
|
||||
@@ -246,59 +276,62 @@ msgid "Network UPS Tools"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_cgi.js:14
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_cgi_admin.js:14
|
||||
msgid "Network UPS Tools CGI Configuration"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:69
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:68
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor_admin.js:14
|
||||
msgid "Network UPS Tools Monitoring Configuration"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:43
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server_admin.js:14
|
||||
msgid "Network UPS Tools Server Configuration"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:209
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:197
|
||||
msgid "No Lock"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:213
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:201
|
||||
msgid "No low/high voltage transfer OIDs"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:127
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:116
|
||||
msgid "Notification flags"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:119
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:108
|
||||
msgid "Notifications settings"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:87
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor_admin.js:23
|
||||
msgid "Notify command"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:217
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:205
|
||||
msgid "Off Delay(s)"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:226
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:214
|
||||
msgid "On Delay(s)"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:46
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:45
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:53
|
||||
msgid "Password"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:110
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:99
|
||||
msgid "Path containing ca certificates to match against host certificate"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:122
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:114
|
||||
msgid "Path to drivers (instead of default)"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:101
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server_admin.js:24
|
||||
msgid "Path to state file"
|
||||
msgstr ""
|
||||
|
||||
@@ -306,30 +339,30 @@ msgstr ""
|
||||
msgid "Period after which data is considered stale"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:140
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:132
|
||||
msgid "Poll Interval"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:90
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:79
|
||||
msgid "Poll frequency"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:95
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:84
|
||||
msgid "Poll frequency alert"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:235
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:223
|
||||
msgid "Polling Frequency(s)"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_cgi.js:28
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:33
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:32
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:83
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:240
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:228
|
||||
msgid "Port"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:38
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:37
|
||||
msgid "Power value"
|
||||
msgstr ""
|
||||
|
||||
@@ -341,15 +374,15 @@ msgstr ""
|
||||
msgid "Primary (Deprecated)"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:244
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:232
|
||||
msgid "Product (regex)"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:114
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:103
|
||||
msgid "Require SSL and make sure server CN matches hostname"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:135
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:127
|
||||
msgid "Retry Delay"
|
||||
msgstr ""
|
||||
|
||||
@@ -357,49 +390,48 @@ msgstr ""
|
||||
msgid "Role"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:119
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:111
|
||||
msgid "Run drivers in a chroot(2) environment"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:75
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:97
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:149
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor_admin.js:20
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server_admin.js:20
|
||||
msgid "RunAs User"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:163
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:151
|
||||
msgid "SNMP Community"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:260
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:248
|
||||
msgid "SNMP retries"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:264
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:252
|
||||
msgid "SNMP timeout(s)"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:268
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:256
|
||||
msgid "SNMP version"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:270
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:258
|
||||
msgid "SNMPv1"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:271
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:259
|
||||
msgid "SNMPv2c"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:272
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:260
|
||||
msgid "SNMPv3"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:257
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:245
|
||||
msgid "Serial Number"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:177
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:165
|
||||
msgid "Set USB serial port permissions"
|
||||
msgstr ""
|
||||
|
||||
@@ -407,49 +439,50 @@ msgstr ""
|
||||
msgid "Set variables"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:83
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor_admin.js:26
|
||||
msgid "Shutdown command"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:145
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:282
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:137
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:270
|
||||
msgid "Synchronous Communication"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:155
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:143
|
||||
msgid "The name of this section will be used as UPS name elsewhere"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:167
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:203
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:206
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:257
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:155
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:191
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:194
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:245
|
||||
msgid ""
|
||||
"This is passed through to the driver, so make sure your driver supports this "
|
||||
"option"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:135
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:127
|
||||
msgid "Time in seconds between driver start retry attempts."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:198
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:186
|
||||
msgid "Time in seconds that upsdrvctl will wait for driver to finish starting"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:142
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:131
|
||||
msgid "UPS Auxiliary (Deprecated)"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:130
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:119
|
||||
msgid "UPS Monitor User Settings"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:139
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:128
|
||||
msgid "UPS Primary (Deprecated)"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:89
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server_admin.js:17
|
||||
msgid "UPS Server Global Settings"
|
||||
msgstr ""
|
||||
|
||||
@@ -457,19 +490,19 @@ msgstr ""
|
||||
msgid "UPS name"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:159
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:147
|
||||
msgid "USB Bus(es) (regex)"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:247
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:235
|
||||
msgid "USB Product Id"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:279
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:267
|
||||
msgid "USB Vendor Id"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:57
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:56
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:28
|
||||
msgid "Unable to run ldd: %s"
|
||||
msgstr ""
|
||||
@@ -479,30 +512,24 @@ msgid ""
|
||||
"Use %s to see full list of commands your UPS supports (requires %s package)"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:149
|
||||
msgid ""
|
||||
"User as which to execute driver; requires device file accessed by driver to "
|
||||
"be read-write for that user."
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:133
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:122
|
||||
msgid "User type (Primary/Auxiliary)"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:43
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:42
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:50
|
||||
msgid "Username"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:276
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:264
|
||||
msgid "Vendor (regex)"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:114
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:103
|
||||
msgid "Verify all connection with SSL"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:194
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:182
|
||||
msgid "Workaround for buggy firmware"
|
||||
msgstr ""
|
||||
|
||||
@@ -514,14 +541,14 @@ msgstr ""
|
||||
msgid "Write to syslog and execute notify command"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:119
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:111
|
||||
msgid "chroot"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:171
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:159
|
||||
msgid "install drivers"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:75
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor_admin.js:20
|
||||
msgid "upsmon drops privileges to this user"
|
||||
msgstr ""
|
||||
|
||||
@@ -12,7 +12,7 @@ msgstr ""
|
||||
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
||||
"X-Generator: Weblate 5.17.1-dev\n"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:254
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:242
|
||||
msgid "Additional Shutdown Time(s)"
|
||||
msgstr "Ek Kapanma Süre(leri)"
|
||||
|
||||
@@ -25,7 +25,7 @@ msgid "Allowed actions"
|
||||
msgstr "İzin verilen eylemler"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_cgi.js:21
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:26
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:25
|
||||
msgid "As configured by NUT"
|
||||
msgstr "NUT tarafından yapılandırıldığı gibi"
|
||||
|
||||
@@ -37,43 +37,43 @@ msgstr "İkincil"
|
||||
msgid "Auxiliary (Deprecated)"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:190
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:178
|
||||
msgid "Bytes to read from interrupt pipe"
|
||||
msgstr "Kesinti hattından okunacak bayt sayısı"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:110
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:99
|
||||
msgid "CA Certificate path"
|
||||
msgstr "CA Sertifikası yolu"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:111
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:103
|
||||
msgid "Certificate file (SSL)"
|
||||
msgstr "Sertifika dosyası (SSL)"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_cgi.js:36
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_cgi_admin.js:17
|
||||
msgid "Control UPS via CGI"
|
||||
msgstr "UPS'i CGI aracılığıyla kontrol edin"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:124
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:113
|
||||
msgid "Custom notification message for message type"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:104
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:93
|
||||
msgid "Deadtime"
|
||||
msgstr "Ölü zaman"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:126
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:118
|
||||
msgid "Default for UPSes without this field."
|
||||
msgstr "Bu alanı olmayan UPS'ler için varsayılan."
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:217
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:205
|
||||
msgid "Delay for kill power command"
|
||||
msgstr "Güç kesme komutu için gecikme"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:226
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:214
|
||||
msgid "Delay to power on UPS if power returns after kill power"
|
||||
msgstr "Kapatma gücünden sonra güç geri gelirse UPS'i çalıştırma gecikmesi"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:167
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:155
|
||||
msgid "Description (Display)"
|
||||
msgstr "Açıklama (Ekran)"
|
||||
|
||||
@@ -81,46 +81,46 @@ msgstr "Açıklama (Ekran)"
|
||||
msgid "Display name"
|
||||
msgstr "Ekran adı"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:209
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:197
|
||||
msgid "Do not lock port when starting driver"
|
||||
msgstr "Sürücüyü başlatırken bağlantı noktasını kilitlemeyin"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:170
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:158
|
||||
msgid "Driver"
|
||||
msgstr "Sürücü"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:154
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:142
|
||||
msgid "Driver Configuration"
|
||||
msgstr "Sürücü Yapılandırması"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:116
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:108
|
||||
msgid "Driver Global Settings"
|
||||
msgstr "Sürücü Global Ayarları"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:122
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:114
|
||||
msgid "Driver Path"
|
||||
msgstr "Sürücü Yolu"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:250
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:238
|
||||
msgid "Driver Shutdown Order"
|
||||
msgstr "Sürücü Kapatma Sırası"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:145
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:282
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:137
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:270
|
||||
msgid "Driver waits for data to be consumed by upsd before publishing more."
|
||||
msgstr ""
|
||||
"Sürücü, daha fazla yayınlamadan önce verilerin upsd tarafından tüketilmesini "
|
||||
"bekler."
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:97
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server_admin.js:20
|
||||
msgid "Drop privileges to this user"
|
||||
msgstr "Bu kullanıcıya ayrıcalıkları bırakın"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_cgi.js:41
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_cgi_admin.js:22
|
||||
msgid "Enable"
|
||||
msgstr "Etkinleştir"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:178
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:166
|
||||
msgid ""
|
||||
"Enables a hotplug script that makes all ttyUSB devices (e.g. serial USB) "
|
||||
"group read-write as user %s"
|
||||
@@ -136,23 +136,29 @@ msgstr "Bildirim komutunu yürütün"
|
||||
msgid "Forced Shutdown"
|
||||
msgstr "Zorla Kapatma"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:71
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:70
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor_admin.js:16
|
||||
msgid "Global Settings"
|
||||
msgstr "Genel Ayarlar"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_cgi.js:15
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_cgi_admin.js:15
|
||||
msgid "Go to NUT CGI"
|
||||
msgstr "NUT CGI'ye git"
|
||||
|
||||
#: applications/luci-app-nut/root/usr/share/rpcd/acl.d/luci-app-nut.json:15
|
||||
msgid "Grant admin UCI access for luci-app-nut"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/root/usr/share/rpcd/acl.d/luci-app-nut.json:3
|
||||
msgid "Grant UCI access for luci-app-nut"
|
||||
msgstr "luci-app-nut için UCI erişimi verin"
|
||||
msgid "Grant limited UCI read access for luci-app-nut"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_cgi.js:17
|
||||
msgid "Host"
|
||||
msgstr "Ana bilgisayar"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:100
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:89
|
||||
msgid "Host Sync"
|
||||
msgstr ""
|
||||
|
||||
@@ -160,7 +166,7 @@ msgstr ""
|
||||
msgid "Hostname or IP address"
|
||||
msgstr "Ana makine adı veya IP adresi"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:29
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:28
|
||||
msgid "Hostname or address of UPS"
|
||||
msgstr "UPS'in ana bilgisayar adı veya adresi"
|
||||
|
||||
@@ -168,7 +174,7 @@ msgstr "UPS'in ana bilgisayar adı veya adresi"
|
||||
msgid "IP Address"
|
||||
msgstr "IP Adresi"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:171
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:159
|
||||
msgid "If this list is empty you need to %s"
|
||||
msgstr ""
|
||||
|
||||
@@ -176,7 +182,7 @@ msgstr ""
|
||||
msgid "Ignore"
|
||||
msgstr "Göz ardı et"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:182
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:170
|
||||
msgid "Ignore Low Battery"
|
||||
msgstr "Düşük Bataryayı Göz ardı et"
|
||||
|
||||
@@ -184,19 +190,19 @@ msgstr "Düşük Bataryayı Göz ardı et"
|
||||
msgid "Instant commands"
|
||||
msgstr "Anında komutlar"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:186
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:174
|
||||
msgid "Interrupt Only"
|
||||
msgstr "Yalnızca Kes"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:190
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:178
|
||||
msgid "Interrupt Size"
|
||||
msgstr "Kesme Boyutu"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:203
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:191
|
||||
msgid "Manufacturer (Display)"
|
||||
msgstr "Üretici (Ekran)"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:194
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:182
|
||||
msgid "Max USB HID Length Reported"
|
||||
msgstr "Maks.USB HID Uzunluğu Bildirildi"
|
||||
|
||||
@@ -204,47 +210,55 @@ msgstr "Maks.USB HID Uzunluğu Bildirildi"
|
||||
msgid "Maximum Age of Data"
|
||||
msgstr "Maksimum Veri Yaşı"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:130
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:122
|
||||
msgid "Maximum Retries"
|
||||
msgstr "Maksimum Yeniden Deneme"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:126
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:198
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:118
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:186
|
||||
msgid "Maximum Start Delay"
|
||||
msgstr "Maksimum Başlatma Gecikmesi"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:105
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:97
|
||||
msgid "Maximum connections"
|
||||
msgstr "Maksimum bağlantı"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:130
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:122
|
||||
msgid "Maximum number of times to try starting a driver."
|
||||
msgstr "Bir sürücüyü başlatmayı denemek için maksimum sayı."
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:140
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:132
|
||||
msgid "Maximum time in seconds between refresh of UPS status"
|
||||
msgstr "UPS durumunun yenilenmesi arasındaki saniye cinsinden maksimum süre"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:78
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:74
|
||||
msgid "Minimum required number or power supplies"
|
||||
msgstr "Minimum gerekli sayı veya güç kaynakları"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:206
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:194
|
||||
msgid "Model (Display)"
|
||||
msgstr "Model (Ekran)"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_cgi.js:13
|
||||
#: applications/luci-app-nut/root/usr/share/luci/menu.d/luci-app-nut.json:42
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_cgi_admin.js:13
|
||||
msgid "NUT CGI"
|
||||
msgstr "Ağ UPS Araçları (CGI)"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:68
|
||||
#: applications/luci-app-nut/root/usr/share/luci/menu.d/luci-app-nut.json:30
|
||||
#: applications/luci-app-nut/root/usr/share/luci/menu.d/luci-app-nut.json:100
|
||||
msgid "NUT CGI - admin"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/root/usr/share/luci/menu.d/luci-app-nut.json:85
|
||||
msgid "NUT CGI - main"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:67
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor_admin.js:13
|
||||
msgid "NUT Monitor"
|
||||
msgstr "Ağ UPS Araçları (İzleme)"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:42
|
||||
#: applications/luci-app-nut/root/usr/share/luci/menu.d/luci-app-nut.json:18
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server_admin.js:13
|
||||
msgid "NUT Server"
|
||||
msgstr "Ağ UPS Araçları (Sunucu)"
|
||||
|
||||
@@ -252,7 +266,23 @@ msgstr "Ağ UPS Araçları (Sunucu)"
|
||||
msgid "NUT Users"
|
||||
msgstr "NUT Kullanıcıları"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:26
|
||||
#: applications/luci-app-nut/root/usr/share/luci/menu.d/luci-app-nut.json:69
|
||||
msgid "NUT monitor - admin"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/root/usr/share/luci/menu.d/luci-app-nut.json:54
|
||||
msgid "NUT monitor - main"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/root/usr/share/luci/menu.d/luci-app-nut.json:38
|
||||
msgid "NUT server - admin"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/root/usr/share/luci/menu.d/luci-app-nut.json:23
|
||||
msgid "NUT server - main"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:25
|
||||
msgid "Name of UPS"
|
||||
msgstr "UPS adı"
|
||||
|
||||
@@ -261,60 +291,63 @@ msgid "Network UPS Tools"
|
||||
msgstr "Ağ UPS Araçları"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_cgi.js:14
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_cgi_admin.js:14
|
||||
msgid "Network UPS Tools CGI Configuration"
|
||||
msgstr "Ağ UPS Araçları CGI Yapılandırması"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:69
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:68
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor_admin.js:14
|
||||
msgid "Network UPS Tools Monitoring Configuration"
|
||||
msgstr "Ağ UPS Araçları İzleme Yapılandırması"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:43
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server_admin.js:14
|
||||
msgid "Network UPS Tools Server Configuration"
|
||||
msgstr "Ağ UPS Araçları Sunucu Yapılandırması"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:209
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:197
|
||||
msgid "No Lock"
|
||||
msgstr "Kilit yok"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:213
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:201
|
||||
msgid "No low/high voltage transfer OIDs"
|
||||
msgstr "Düşük / yüksek voltaj transfer OID'leri yok"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:127
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:116
|
||||
msgid "Notification flags"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:119
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:108
|
||||
msgid "Notifications settings"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:87
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor_admin.js:23
|
||||
msgid "Notify command"
|
||||
msgstr "Bildir komutu"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:217
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:205
|
||||
msgid "Off Delay(s)"
|
||||
msgstr "Kapatma Gecikmesi (s)"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:226
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:214
|
||||
msgid "On Delay(s)"
|
||||
msgstr "Açma Gecikmesi (s)"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:46
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:45
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:53
|
||||
msgid "Password"
|
||||
msgstr "Parola"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:110
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:99
|
||||
msgid "Path containing ca certificates to match against host certificate"
|
||||
msgstr ""
|
||||
"Ana bilgisayar sertifikasıyla eşleştirmek için ca sertifikalarını içeren yol"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:122
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:114
|
||||
msgid "Path to drivers (instead of default)"
|
||||
msgstr "Sürücülere giden yol (varsayılan yerine)"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:101
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server_admin.js:24
|
||||
msgid "Path to state file"
|
||||
msgstr "Durum dosyasına giden yol"
|
||||
|
||||
@@ -322,30 +355,30 @@ msgstr "Durum dosyasına giden yol"
|
||||
msgid "Period after which data is considered stale"
|
||||
msgstr "Verilerin eski olarak kabul edilmesi için geçmesi gereken süre"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:140
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:132
|
||||
msgid "Poll Interval"
|
||||
msgstr "Örnek alma Aralığı"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:90
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:79
|
||||
msgid "Poll frequency"
|
||||
msgstr "Örnek alma sıklığı"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:95
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:84
|
||||
msgid "Poll frequency alert"
|
||||
msgstr "Örnek alma sıklığı uyarısı"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:235
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:223
|
||||
msgid "Polling Frequency(s)"
|
||||
msgstr "Örnek alma sıklığı(s)"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_cgi.js:28
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:33
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:32
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:83
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:240
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:228
|
||||
msgid "Port"
|
||||
msgstr "Bağlantı Noktası"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:38
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:37
|
||||
msgid "Power value"
|
||||
msgstr "Güç değeri"
|
||||
|
||||
@@ -357,16 +390,16 @@ msgstr "Ana"
|
||||
msgid "Primary (Deprecated)"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:244
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:232
|
||||
msgid "Product (regex)"
|
||||
msgstr "Ürün (regex)"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:114
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:103
|
||||
msgid "Require SSL and make sure server CN matches hostname"
|
||||
msgstr ""
|
||||
"SSL gerektir ve sunucu CN'nin ana bilgisayar adıyla eşleştiğinden emin ol"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:135
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:127
|
||||
msgid "Retry Delay"
|
||||
msgstr "Yeniden Deneme Gecikmesi"
|
||||
|
||||
@@ -374,49 +407,48 @@ msgstr "Yeniden Deneme Gecikmesi"
|
||||
msgid "Role"
|
||||
msgstr "Rol"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:119
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:111
|
||||
msgid "Run drivers in a chroot(2) environment"
|
||||
msgstr "Sürücüleri chroot(2) ortamında çalıştırın"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:75
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:97
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:149
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor_admin.js:20
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server_admin.js:20
|
||||
msgid "RunAs User"
|
||||
msgstr "Kullanıcı Olarak Çalıştır"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:163
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:151
|
||||
msgid "SNMP Community"
|
||||
msgstr "SNMP Topluluğu"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:260
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:248
|
||||
msgid "SNMP retries"
|
||||
msgstr "SNMP yeniden deneme sayısı"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:264
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:252
|
||||
msgid "SNMP timeout(s)"
|
||||
msgstr "SNMP zaman aşımı(s)"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:268
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:256
|
||||
msgid "SNMP version"
|
||||
msgstr "SNMP versiyonu"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:270
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:258
|
||||
msgid "SNMPv1"
|
||||
msgstr "SNMPv1"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:271
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:259
|
||||
msgid "SNMPv2c"
|
||||
msgstr "SNMPv2c"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:272
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:260
|
||||
msgid "SNMPv3"
|
||||
msgstr "SNMPv3"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:257
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:245
|
||||
msgid "Serial Number"
|
||||
msgstr "Seri numarası"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:177
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:165
|
||||
msgid "Set USB serial port permissions"
|
||||
msgstr "USB seri bağlantı noktası izinlerini ayarlayın"
|
||||
|
||||
@@ -424,52 +456,53 @@ msgstr "USB seri bağlantı noktası izinlerini ayarlayın"
|
||||
msgid "Set variables"
|
||||
msgstr "Değişkenleri ayarlayın"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:83
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor_admin.js:26
|
||||
msgid "Shutdown command"
|
||||
msgstr "Kapatma komutu"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:145
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:282
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:137
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:270
|
||||
msgid "Synchronous Communication"
|
||||
msgstr "Senkronize İletişim"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:155
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:143
|
||||
msgid "The name of this section will be used as UPS name elsewhere"
|
||||
msgstr "Bu bölümün adı, başka bir yerde UPS adı olarak kullanılacaktır"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:167
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:203
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:206
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:257
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:155
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:191
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:194
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:245
|
||||
msgid ""
|
||||
"This is passed through to the driver, so make sure your driver supports this "
|
||||
"option"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:135
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:127
|
||||
msgid "Time in seconds between driver start retry attempts."
|
||||
msgstr ""
|
||||
"Sürücünün yeniden başlatma denemeleri arasındaki saniye cinsinden süre."
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:198
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:186
|
||||
msgid "Time in seconds that upsdrvctl will wait for driver to finish starting"
|
||||
msgstr ""
|
||||
"Upsdrvctl'nin sürücünün başlatmayı bitirmesini bekleyeceği saniye cinsinden "
|
||||
"süre"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:142
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:131
|
||||
msgid "UPS Auxiliary (Deprecated)"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:130
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:119
|
||||
msgid "UPS Monitor User Settings"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:139
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:128
|
||||
msgid "UPS Primary (Deprecated)"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:89
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server_admin.js:17
|
||||
msgid "UPS Server Global Settings"
|
||||
msgstr "UPS Sunucusu Global Ayarları"
|
||||
|
||||
@@ -477,19 +510,19 @@ msgstr "UPS Sunucusu Global Ayarları"
|
||||
msgid "UPS name"
|
||||
msgstr "UPS adı"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:159
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:147
|
||||
msgid "USB Bus(es) (regex)"
|
||||
msgstr "USB Veriyolu(lar) (regex)"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:247
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:235
|
||||
msgid "USB Product Id"
|
||||
msgstr "USB Ürün Kimliği"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:279
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:267
|
||||
msgid "USB Vendor Id"
|
||||
msgstr "USB Satıcı Kimliği"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:57
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:56
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:28
|
||||
msgid "Unable to run ldd: %s"
|
||||
msgstr ""
|
||||
@@ -501,32 +534,24 @@ msgstr ""
|
||||
"UPS'inizin desteklediği komutların tam listesini görmek için %s kullanın (%s "
|
||||
"paketi gerektirir)"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:149
|
||||
msgid ""
|
||||
"User as which to execute driver; requires device file accessed by driver to "
|
||||
"be read-write for that user."
|
||||
msgstr ""
|
||||
"Sürücünün çalıştırılacağı kullanıcı; sürücü tarafından erişilen aygıt "
|
||||
"dosyasının o kullanıcı için okuma-yazma özelliğine sahip olmasını gerektirir."
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:133
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:122
|
||||
msgid "User type (Primary/Auxiliary)"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:43
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:42
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:50
|
||||
msgid "Username"
|
||||
msgstr "Kullanıcı Adı"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:276
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:264
|
||||
msgid "Vendor (regex)"
|
||||
msgstr "Satıcı (regex)"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:114
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:103
|
||||
msgid "Verify all connection with SSL"
|
||||
msgstr "Tüm bağlantıyı SSL ile doğrulayın"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:194
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:182
|
||||
msgid "Workaround for buggy firmware"
|
||||
msgstr "Hatalı ürün yazılımı için geçici çözüm"
|
||||
|
||||
@@ -538,18 +563,29 @@ msgstr "Sistem günlüğüne yaz"
|
||||
msgid "Write to syslog and execute notify command"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:119
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:111
|
||||
msgid "chroot"
|
||||
msgstr "chroot"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:171
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:159
|
||||
msgid "install drivers"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:75
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor_admin.js:20
|
||||
msgid "upsmon drops privileges to this user"
|
||||
msgstr "upsmon bu kullanıcıya ayrıcalıklar bırakır"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "User as which to execute driver; requires device file accessed by driver "
|
||||
#~ "to be read-write for that user."
|
||||
#~ msgstr ""
|
||||
#~ "Sürücünün çalıştırılacağı kullanıcı; sürücü tarafından erişilen aygıt "
|
||||
#~ "dosyasının o kullanıcı için okuma-yazma özelliğine sahip olmasını "
|
||||
#~ "gerektirir."
|
||||
|
||||
#~ msgid "Grant UCI access for luci-app-nut"
|
||||
#~ msgstr "luci-app-nut için UCI erişimi verin"
|
||||
|
||||
#~ msgid "%s is mutually exclusive to other choices"
|
||||
#~ msgstr "%s diğer seçeneklerle birlikte kullanılamaz"
|
||||
|
||||
|
||||
@@ -13,7 +13,7 @@ msgstr ""
|
||||
"n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
|
||||
"X-Generator: Weblate 2026.7.1.dev0\n"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:254
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:242
|
||||
msgid "Additional Shutdown Time(s)"
|
||||
msgstr "Додатковий час вимкнення (с)"
|
||||
|
||||
@@ -26,7 +26,7 @@ msgid "Allowed actions"
|
||||
msgstr "Дозволені дії"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_cgi.js:21
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:26
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:25
|
||||
msgid "As configured by NUT"
|
||||
msgstr "Як налаштовано NUT"
|
||||
|
||||
@@ -38,45 +38,45 @@ msgstr "Допоміжний"
|
||||
msgid "Auxiliary (Deprecated)"
|
||||
msgstr "Допоміжний (застаріле)"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:190
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:178
|
||||
msgid "Bytes to read from interrupt pipe"
|
||||
msgstr "Байти для читання з каналу переривання"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:110
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:99
|
||||
msgid "CA Certificate path"
|
||||
msgstr "Шлях сертифіката ЦС"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:111
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:103
|
||||
msgid "Certificate file (SSL)"
|
||||
msgstr "Файл сертифікату (SSL)"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_cgi.js:36
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_cgi_admin.js:17
|
||||
msgid "Control UPS via CGI"
|
||||
msgstr "Керувати ПБЖ за допомогою CGI"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:124
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:113
|
||||
msgid "Custom notification message for message type"
|
||||
msgstr "Власне повідомлення для типу сповіщення"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:104
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:93
|
||||
msgid "Deadtime"
|
||||
msgstr "Мертвий час"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:126
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:118
|
||||
msgid "Default for UPSes without this field."
|
||||
msgstr "Типово для UPS без цього поля."
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:217
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:205
|
||||
msgid "Delay for kill power command"
|
||||
msgstr "Затримка для команди вимкнення живлення"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:226
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:214
|
||||
msgid "Delay to power on UPS if power returns after kill power"
|
||||
msgstr ""
|
||||
"Затримка вмикання UPS, якщо живлення відновиться після його примусового "
|
||||
"вимкнення"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:167
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:155
|
||||
msgid "Description (Display)"
|
||||
msgstr "Опис (відображення)"
|
||||
|
||||
@@ -84,44 +84,44 @@ msgstr "Опис (відображення)"
|
||||
msgid "Display name"
|
||||
msgstr "Відображуване імʼя"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:209
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:197
|
||||
msgid "Do not lock port when starting driver"
|
||||
msgstr "Не блокувати порт під час запуску драйвера"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:170
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:158
|
||||
msgid "Driver"
|
||||
msgstr "Драйвер"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:154
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:142
|
||||
msgid "Driver Configuration"
|
||||
msgstr "Конфігурація драйвера"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:116
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:108
|
||||
msgid "Driver Global Settings"
|
||||
msgstr "Глобальні налаштування драйвера"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:122
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:114
|
||||
msgid "Driver Path"
|
||||
msgstr "Шлях до драйвера"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:250
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:238
|
||||
msgid "Driver Shutdown Order"
|
||||
msgstr "Послідовність вимкнення драйвера"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:145
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:282
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:137
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:270
|
||||
msgid "Driver waits for data to be consumed by upsd before publishing more."
|
||||
msgstr "Перед публікацією драйвер очікує, поки дані будуть використані upsd."
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:97
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server_admin.js:20
|
||||
msgid "Drop privileges to this user"
|
||||
msgstr "Знизити привілеї до цього користувача"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_cgi.js:41
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_cgi_admin.js:22
|
||||
msgid "Enable"
|
||||
msgstr "Увімкнути"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:178
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:166
|
||||
msgid ""
|
||||
"Enables a hotplug script that makes all ttyUSB devices (e.g. serial USB) "
|
||||
"group read-write as user %s"
|
||||
@@ -137,23 +137,29 @@ msgstr "Виконувати команду сповіщення"
|
||||
msgid "Forced Shutdown"
|
||||
msgstr "Примусове вимкнення"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:71
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:70
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor_admin.js:16
|
||||
msgid "Global Settings"
|
||||
msgstr "Загальні налаштування"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_cgi.js:15
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_cgi_admin.js:15
|
||||
msgid "Go to NUT CGI"
|
||||
msgstr "Перейти до NUT CGI"
|
||||
|
||||
#: applications/luci-app-nut/root/usr/share/rpcd/acl.d/luci-app-nut.json:15
|
||||
msgid "Grant admin UCI access for luci-app-nut"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/root/usr/share/rpcd/acl.d/luci-app-nut.json:3
|
||||
msgid "Grant UCI access for luci-app-nut"
|
||||
msgstr "Надати доступ до UCI для luci-app-nut"
|
||||
msgid "Grant limited UCI read access for luci-app-nut"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_cgi.js:17
|
||||
msgid "Host"
|
||||
msgstr "Вузол"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:100
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:89
|
||||
msgid "Host Sync"
|
||||
msgstr "Синхронізація вузла"
|
||||
|
||||
@@ -161,7 +167,7 @@ msgstr "Синхронізація вузла"
|
||||
msgid "Hostname or IP address"
|
||||
msgstr "Імʼя вузла або IP-адреса"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:29
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:28
|
||||
msgid "Hostname or address of UPS"
|
||||
msgstr "Імʼя вузла або адреса UPS"
|
||||
|
||||
@@ -169,7 +175,7 @@ msgstr "Імʼя вузла або адреса UPS"
|
||||
msgid "IP Address"
|
||||
msgstr "IP-адреса"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:171
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:159
|
||||
msgid "If this list is empty you need to %s"
|
||||
msgstr "Якщо цей список порожній, потрібно %s"
|
||||
|
||||
@@ -177,7 +183,7 @@ msgstr "Якщо цей список порожній, потрібно %s"
|
||||
msgid "Ignore"
|
||||
msgstr "Ігнорувати"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:182
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:170
|
||||
msgid "Ignore Low Battery"
|
||||
msgstr "Ігнорувати низький рівень заряду акумулятора"
|
||||
|
||||
@@ -185,19 +191,19 @@ msgstr "Ігнорувати низький рівень заряду акуму
|
||||
msgid "Instant commands"
|
||||
msgstr "Миттєві команди"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:186
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:174
|
||||
msgid "Interrupt Only"
|
||||
msgstr "Лише переривання"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:190
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:178
|
||||
msgid "Interrupt Size"
|
||||
msgstr "Розмір переривання"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:203
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:191
|
||||
msgid "Manufacturer (Display)"
|
||||
msgstr "Виробник (відображення)"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:194
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:182
|
||||
msgid "Max USB HID Length Reported"
|
||||
msgstr "Повідомлена максимальна довжина USB HID"
|
||||
|
||||
@@ -205,47 +211,55 @@ msgstr "Повідомлена максимальна довжина USB HID"
|
||||
msgid "Maximum Age of Data"
|
||||
msgstr "Максимальний вік даних"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:130
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:122
|
||||
msgid "Maximum Retries"
|
||||
msgstr "Максимальна кількість повторних спроб"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:126
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:198
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:118
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:186
|
||||
msgid "Maximum Start Delay"
|
||||
msgstr "Максимальна затримка запуску"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:105
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:97
|
||||
msgid "Maximum connections"
|
||||
msgstr "Максимальна кількість підключень"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:130
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:122
|
||||
msgid "Maximum number of times to try starting a driver."
|
||||
msgstr "Максимальна кількість спроб запуску драйвера."
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:140
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:132
|
||||
msgid "Maximum time in seconds between refresh of UPS status"
|
||||
msgstr "Максимальний час у секундах між оновленнями стану UPS"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:78
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:74
|
||||
msgid "Minimum required number or power supplies"
|
||||
msgstr "Мінімальна потрібна кількість джерел живлення"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:206
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:194
|
||||
msgid "Model (Display)"
|
||||
msgstr "Модель (відображення)"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_cgi.js:13
|
||||
#: applications/luci-app-nut/root/usr/share/luci/menu.d/luci-app-nut.json:42
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_cgi_admin.js:13
|
||||
msgid "NUT CGI"
|
||||
msgstr "NUT CGI"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:68
|
||||
#: applications/luci-app-nut/root/usr/share/luci/menu.d/luci-app-nut.json:30
|
||||
#: applications/luci-app-nut/root/usr/share/luci/menu.d/luci-app-nut.json:100
|
||||
msgid "NUT CGI - admin"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/root/usr/share/luci/menu.d/luci-app-nut.json:85
|
||||
msgid "NUT CGI - main"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:67
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor_admin.js:13
|
||||
msgid "NUT Monitor"
|
||||
msgstr "Монітор NUT"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:42
|
||||
#: applications/luci-app-nut/root/usr/share/luci/menu.d/luci-app-nut.json:18
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server_admin.js:13
|
||||
msgid "NUT Server"
|
||||
msgstr "Сервер NUT"
|
||||
|
||||
@@ -253,7 +267,23 @@ msgstr "Сервер NUT"
|
||||
msgid "NUT Users"
|
||||
msgstr "Користувачі NUT"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:26
|
||||
#: applications/luci-app-nut/root/usr/share/luci/menu.d/luci-app-nut.json:69
|
||||
msgid "NUT monitor - admin"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/root/usr/share/luci/menu.d/luci-app-nut.json:54
|
||||
msgid "NUT monitor - main"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/root/usr/share/luci/menu.d/luci-app-nut.json:38
|
||||
msgid "NUT server - admin"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/root/usr/share/luci/menu.d/luci-app-nut.json:23
|
||||
msgid "NUT server - main"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:25
|
||||
msgid "Name of UPS"
|
||||
msgstr "Назва UPS"
|
||||
|
||||
@@ -262,59 +292,62 @@ msgid "Network UPS Tools"
|
||||
msgstr "Інструменти мережевих ДБЖ"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_cgi.js:14
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_cgi_admin.js:14
|
||||
msgid "Network UPS Tools CGI Configuration"
|
||||
msgstr "Конфігурація CGI Network UPS Tools"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:69
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:68
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor_admin.js:14
|
||||
msgid "Network UPS Tools Monitoring Configuration"
|
||||
msgstr "Конфігурація моніторингу Network UPS Tools"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:43
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server_admin.js:14
|
||||
msgid "Network UPS Tools Server Configuration"
|
||||
msgstr "Конфігурація сервера Network UPS Tools"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:209
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:197
|
||||
msgid "No Lock"
|
||||
msgstr "Без блокування"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:213
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:201
|
||||
msgid "No low/high voltage transfer OIDs"
|
||||
msgstr "Немає OID передачі низької/високої напруги"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:127
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:116
|
||||
msgid "Notification flags"
|
||||
msgstr "Прапорці сповіщень"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:119
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:108
|
||||
msgid "Notifications settings"
|
||||
msgstr "Налаштування сповіщень"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:87
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor_admin.js:23
|
||||
msgid "Notify command"
|
||||
msgstr "Команда сповіщення"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:217
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:205
|
||||
msgid "Off Delay(s)"
|
||||
msgstr "Затримка вимкнення (с)"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:226
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:214
|
||||
msgid "On Delay(s)"
|
||||
msgstr "Затримка вмикання (с)"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:46
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:45
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:53
|
||||
msgid "Password"
|
||||
msgstr "Пароль"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:110
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:99
|
||||
msgid "Path containing ca certificates to match against host certificate"
|
||||
msgstr "Шлях із сертифікатами ca для звірення з сертифікатом вузла"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:122
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:114
|
||||
msgid "Path to drivers (instead of default)"
|
||||
msgstr "Шлях до драйверів (замість типового)"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:101
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server_admin.js:24
|
||||
msgid "Path to state file"
|
||||
msgstr "Шлях до файлу стану"
|
||||
|
||||
@@ -322,30 +355,30 @@ msgstr "Шлях до файлу стану"
|
||||
msgid "Period after which data is considered stale"
|
||||
msgstr "Період, після якого дані вважаються застарілими"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:140
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:132
|
||||
msgid "Poll Interval"
|
||||
msgstr "Інтервал опитування"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:90
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:79
|
||||
msgid "Poll frequency"
|
||||
msgstr "Частота опитування"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:95
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:84
|
||||
msgid "Poll frequency alert"
|
||||
msgstr "Попередження про частоту опитування"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:235
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:223
|
||||
msgid "Polling Frequency(s)"
|
||||
msgstr "Частота(и) опитування"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_cgi.js:28
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:33
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:32
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:83
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:240
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:228
|
||||
msgid "Port"
|
||||
msgstr "Порт"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:38
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:37
|
||||
msgid "Power value"
|
||||
msgstr "Значення потужності"
|
||||
|
||||
@@ -357,15 +390,15 @@ msgstr "Основний"
|
||||
msgid "Primary (Deprecated)"
|
||||
msgstr "Основний (застаріле)"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:244
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:232
|
||||
msgid "Product (regex)"
|
||||
msgstr "Продукт (regex)"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:114
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:103
|
||||
msgid "Require SSL and make sure server CN matches hostname"
|
||||
msgstr "Вимагати SSL та упевнитися, що CN сервера відповідає імені вузла"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:135
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:127
|
||||
msgid "Retry Delay"
|
||||
msgstr "Затримка повторної спроби"
|
||||
|
||||
@@ -373,49 +406,48 @@ msgstr "Затримка повторної спроби"
|
||||
msgid "Role"
|
||||
msgstr "Роль"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:119
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:111
|
||||
msgid "Run drivers in a chroot(2) environment"
|
||||
msgstr "Запускати драйвери в середовищі chroot(2)"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:75
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:97
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:149
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor_admin.js:20
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server_admin.js:20
|
||||
msgid "RunAs User"
|
||||
msgstr "Виконувати від імені користувача"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:163
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:151
|
||||
msgid "SNMP Community"
|
||||
msgstr "Спільнота SNMP"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:260
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:248
|
||||
msgid "SNMP retries"
|
||||
msgstr "Повторні спроби SNMP"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:264
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:252
|
||||
msgid "SNMP timeout(s)"
|
||||
msgstr "Тайм-аут(и) SNMP"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:268
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:256
|
||||
msgid "SNMP version"
|
||||
msgstr "Версія SNMP"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:270
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:258
|
||||
msgid "SNMPv1"
|
||||
msgstr "SNMPv1"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:271
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:259
|
||||
msgid "SNMPv2c"
|
||||
msgstr "SNMPv2c"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:272
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:260
|
||||
msgid "SNMPv3"
|
||||
msgstr "SNMPv3"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:257
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:245
|
||||
msgid "Serial Number"
|
||||
msgstr "Серійний номер"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:177
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:165
|
||||
msgid "Set USB serial port permissions"
|
||||
msgstr "Задати дозволи для послідовного порту USB"
|
||||
|
||||
@@ -423,23 +455,23 @@ msgstr "Задати дозволи для послідовного порту U
|
||||
msgid "Set variables"
|
||||
msgstr "Задати змінні"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:83
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor_admin.js:26
|
||||
msgid "Shutdown command"
|
||||
msgstr "Команда вимкнення"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:145
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:282
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:137
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:270
|
||||
msgid "Synchronous Communication"
|
||||
msgstr "Синхронний звʼязок"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:155
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:143
|
||||
msgid "The name of this section will be used as UPS name elsewhere"
|
||||
msgstr "Назва цього розділу використовуватиметься як імʼя UPS в інших місцях"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:167
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:203
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:206
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:257
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:155
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:191
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:194
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:245
|
||||
msgid ""
|
||||
"This is passed through to the driver, so make sure your driver supports this "
|
||||
"option"
|
||||
@@ -447,29 +479,30 @@ msgstr ""
|
||||
"Це передається драйверу, тому переконайтеся, що ваш драйвер підтримує цей "
|
||||
"параметр"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:135
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:127
|
||||
msgid "Time in seconds between driver start retry attempts."
|
||||
msgstr "Час у секундах між спробами повторного запуску драйвера."
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:198
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:186
|
||||
msgid "Time in seconds that upsdrvctl will wait for driver to finish starting"
|
||||
msgstr ""
|
||||
"Час у секундах, протягом якого upsdrvctl очікуватиме завершення запуску "
|
||||
"драйвера"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:142
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:131
|
||||
msgid "UPS Auxiliary (Deprecated)"
|
||||
msgstr "Допоміжний UPS (застаріле)"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:130
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:119
|
||||
msgid "UPS Monitor User Settings"
|
||||
msgstr "Налаштування користувача для моніторингу ДБЖ"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:139
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:128
|
||||
msgid "UPS Primary (Deprecated)"
|
||||
msgstr "Основний UPS (застаріле)"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:89
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server_admin.js:17
|
||||
msgid "UPS Server Global Settings"
|
||||
msgstr "Глобальні налаштування сервера UPS"
|
||||
|
||||
@@ -477,19 +510,19 @@ msgstr "Глобальні налаштування сервера UPS"
|
||||
msgid "UPS name"
|
||||
msgstr "Імʼя UPS"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:159
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:147
|
||||
msgid "USB Bus(es) (regex)"
|
||||
msgstr "Шина(и) USB (regex)"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:247
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:235
|
||||
msgid "USB Product Id"
|
||||
msgstr "Ідентифікатор продукту USB"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:279
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:267
|
||||
msgid "USB Vendor Id"
|
||||
msgstr "Ідентифікатор постачальника USB"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:57
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:56
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:28
|
||||
msgid "Unable to run ldd: %s"
|
||||
msgstr "Не вдалося запустити ldd: %s"
|
||||
@@ -501,33 +534,24 @@ msgstr ""
|
||||
"Використовуйте %s, щоб побачити повний список команд, які підтримує ваш UPS "
|
||||
"(потрібен пакунок %s)"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:149
|
||||
msgid ""
|
||||
"User as which to execute driver; requires device file accessed by driver to "
|
||||
"be read-write for that user."
|
||||
msgstr ""
|
||||
"Користувач, від імені якого запускати драйвер; вимагає, щоб файл пристрою, "
|
||||
"до якого звертається драйвер, був доступний цьому користувачу для читання та "
|
||||
"запису."
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:133
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:122
|
||||
msgid "User type (Primary/Auxiliary)"
|
||||
msgstr "Тип користувача (Основний/Допоміжний)"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:43
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:42
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:50
|
||||
msgid "Username"
|
||||
msgstr "Імʼя користувача"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:276
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:264
|
||||
msgid "Vendor (regex)"
|
||||
msgstr "Постачальник (regex)"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:114
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:103
|
||||
msgid "Verify all connection with SSL"
|
||||
msgstr "Засвідчувати всі зʼєднання за допомогою SSL"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:194
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:182
|
||||
msgid "Workaround for buggy firmware"
|
||||
msgstr "Обхідне рішення для помилкової прошивки"
|
||||
|
||||
@@ -539,18 +563,29 @@ msgstr "Записувати в syslog"
|
||||
msgid "Write to syslog and execute notify command"
|
||||
msgstr "Записувати в syslog і виконувати команду сповіщення"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:119
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:111
|
||||
msgid "chroot"
|
||||
msgstr "chroot"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:171
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:159
|
||||
msgid "install drivers"
|
||||
msgstr "встановити драйвери"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:75
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor_admin.js:20
|
||||
msgid "upsmon drops privileges to this user"
|
||||
msgstr "upsmon знижує привілеї до цього користувача"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "User as which to execute driver; requires device file accessed by driver "
|
||||
#~ "to be read-write for that user."
|
||||
#~ msgstr ""
|
||||
#~ "Користувач, від імені якого запускати драйвер; вимагає, щоб файл "
|
||||
#~ "пристрою, до якого звертається драйвер, був доступний цьому користувачу "
|
||||
#~ "для читання та запису."
|
||||
|
||||
#~ msgid "Grant UCI access for luci-app-nut"
|
||||
#~ msgstr "Надати доступ до UCI для luci-app-nut"
|
||||
|
||||
#~ msgid "UPS Monitor User Settings)"
|
||||
#~ msgstr "Налаштування користувача UPS Monitor"
|
||||
|
||||
|
||||
@@ -12,7 +12,7 @@ msgstr ""
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
"X-Generator: Weblate 5.14-dev\n"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:254
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:242
|
||||
msgid "Additional Shutdown Time(s)"
|
||||
msgstr "(s) Thời gian Tắt máy Bổ sung"
|
||||
|
||||
@@ -25,7 +25,7 @@ msgid "Allowed actions"
|
||||
msgstr "Các hành động được cho phép"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_cgi.js:21
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:26
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:25
|
||||
msgid "As configured by NUT"
|
||||
msgstr "Như đã cấu hình bởi NUT"
|
||||
|
||||
@@ -37,43 +37,43 @@ msgstr "Phục vụ"
|
||||
msgid "Auxiliary (Deprecated)"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:190
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:178
|
||||
msgid "Bytes to read from interrupt pipe"
|
||||
msgstr "Số byte đọc từ ống nối trực tiếp"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:110
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:99
|
||||
msgid "CA Certificate path"
|
||||
msgstr "Đường dẫn Chứng chỉ CA"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:111
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:103
|
||||
msgid "Certificate file (SSL)"
|
||||
msgstr "Tệp chứng chỉ (SSL)"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_cgi.js:36
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_cgi_admin.js:17
|
||||
msgid "Control UPS via CGI"
|
||||
msgstr "Điều khiển UPS qua CGI"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:124
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:113
|
||||
msgid "Custom notification message for message type"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:104
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:93
|
||||
msgid "Deadtime"
|
||||
msgstr "Thời gian chờ tắt"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:126
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:118
|
||||
msgid "Default for UPSes without this field."
|
||||
msgstr "Giá trị mặc định cho UPS không có trường này."
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:217
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:205
|
||||
msgid "Delay for kill power command"
|
||||
msgstr "Độ trễ cho lệnh tắt nguồn"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:226
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:214
|
||||
msgid "Delay to power on UPS if power returns after kill power"
|
||||
msgstr "Độ trễ để bật nguồn UPS nếu có nguồn trở lại sau khi tắt nguồn"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:167
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:155
|
||||
msgid "Description (Display)"
|
||||
msgstr "Mô tả (Hiển thị)"
|
||||
|
||||
@@ -81,44 +81,44 @@ msgstr "Mô tả (Hiển thị)"
|
||||
msgid "Display name"
|
||||
msgstr "Tên hiển thị"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:209
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:197
|
||||
msgid "Do not lock port when starting driver"
|
||||
msgstr "Không khóa cổng khi bắt đầu driver"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:170
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:158
|
||||
msgid "Driver"
|
||||
msgstr "Driver"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:154
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:142
|
||||
msgid "Driver Configuration"
|
||||
msgstr "Cấu hình Driver"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:116
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:108
|
||||
msgid "Driver Global Settings"
|
||||
msgstr "Cài đặt Toàn cầu của Driver"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:122
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:114
|
||||
msgid "Driver Path"
|
||||
msgstr "Đường dẫn Driver"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:250
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:238
|
||||
msgid "Driver Shutdown Order"
|
||||
msgstr "Thứ tự tắt Driver"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:145
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:282
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:137
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:270
|
||||
msgid "Driver waits for data to be consumed by upsd before publishing more."
|
||||
msgstr "Driver đợi dữ liệu được tiêu thụ bởi upsd trước khi xuất bản thêm."
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:97
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server_admin.js:20
|
||||
msgid "Drop privileges to this user"
|
||||
msgstr "Giảm quyền đến người dùng này"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_cgi.js:41
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_cgi_admin.js:22
|
||||
msgid "Enable"
|
||||
msgstr "Bật lên"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:178
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:166
|
||||
msgid ""
|
||||
"Enables a hotplug script that makes all ttyUSB devices (e.g. serial USB) "
|
||||
"group read-write as user %s"
|
||||
@@ -134,23 +134,29 @@ msgstr "Thực thi lệnh notify"
|
||||
msgid "Forced Shutdown"
|
||||
msgstr "Tắt nguồn ép buộc"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:71
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:70
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor_admin.js:16
|
||||
msgid "Global Settings"
|
||||
msgstr "Cài đặt chung"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_cgi.js:15
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_cgi_admin.js:15
|
||||
msgid "Go to NUT CGI"
|
||||
msgstr "Chuyển đến NUT CGI"
|
||||
|
||||
#: applications/luci-app-nut/root/usr/share/rpcd/acl.d/luci-app-nut.json:15
|
||||
msgid "Grant admin UCI access for luci-app-nut"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/root/usr/share/rpcd/acl.d/luci-app-nut.json:3
|
||||
msgid "Grant UCI access for luci-app-nut"
|
||||
msgstr "Cấp quyền truy cập UCI cho luci-app-nut"
|
||||
msgid "Grant limited UCI read access for luci-app-nut"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_cgi.js:17
|
||||
msgid "Host"
|
||||
msgstr "Host"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:100
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:89
|
||||
msgid "Host Sync"
|
||||
msgstr ""
|
||||
|
||||
@@ -158,7 +164,7 @@ msgstr ""
|
||||
msgid "Hostname or IP address"
|
||||
msgstr "Tên máy chủ hoặc địa chỉ IP"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:29
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:28
|
||||
msgid "Hostname or address of UPS"
|
||||
msgstr "Tên máy chủ hoặc địa chỉ của UPS"
|
||||
|
||||
@@ -166,7 +172,7 @@ msgstr "Tên máy chủ hoặc địa chỉ của UPS"
|
||||
msgid "IP Address"
|
||||
msgstr "Địa chỉ IP"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:171
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:159
|
||||
msgid "If this list is empty you need to %s"
|
||||
msgstr ""
|
||||
|
||||
@@ -174,7 +180,7 @@ msgstr ""
|
||||
msgid "Ignore"
|
||||
msgstr "Bỏ qua"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:182
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:170
|
||||
msgid "Ignore Low Battery"
|
||||
msgstr "Bỏ qua Pin yếu"
|
||||
|
||||
@@ -182,19 +188,19 @@ msgstr "Bỏ qua Pin yếu"
|
||||
msgid "Instant commands"
|
||||
msgstr "Lệnh tức thì"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:186
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:174
|
||||
msgid "Interrupt Only"
|
||||
msgstr "Chỉ Ngắt"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:190
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:178
|
||||
msgid "Interrupt Size"
|
||||
msgstr "Kích thước Ngắt"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:203
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:191
|
||||
msgid "Manufacturer (Display)"
|
||||
msgstr "Nhà sản xuất (Hiển thị)"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:194
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:182
|
||||
msgid "Max USB HID Length Reported"
|
||||
msgstr "Độ dài tối đa của USB HID được báo cáo"
|
||||
|
||||
@@ -202,47 +208,55 @@ msgstr "Độ dài tối đa của USB HID được báo cáo"
|
||||
msgid "Maximum Age of Data"
|
||||
msgstr "Tuổi tối đa của Dữ liệu"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:130
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:122
|
||||
msgid "Maximum Retries"
|
||||
msgstr "Số lần thử tối đa"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:126
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:198
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:118
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:186
|
||||
msgid "Maximum Start Delay"
|
||||
msgstr "Độ trễ khởi động tối đa"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:105
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:97
|
||||
msgid "Maximum connections"
|
||||
msgstr "Số lượng kết nối tối đa"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:130
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:122
|
||||
msgid "Maximum number of times to try starting a driver."
|
||||
msgstr "Số lần tối đa để thử khởi động một driver."
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:140
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:132
|
||||
msgid "Maximum time in seconds between refresh of UPS status"
|
||||
msgstr "Thời gian tối đa tính bằng giây giữa các lần cập nhật trạng thái UPS"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:78
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:74
|
||||
msgid "Minimum required number or power supplies"
|
||||
msgstr "Số lượng nguồn cung cấp tối thiểu được yêu cầu"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:206
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:194
|
||||
msgid "Model (Display)"
|
||||
msgstr "Mô hình (Hiển thị)"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_cgi.js:13
|
||||
#: applications/luci-app-nut/root/usr/share/luci/menu.d/luci-app-nut.json:42
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_cgi_admin.js:13
|
||||
msgid "NUT CGI"
|
||||
msgstr "Công cụ UPS Mạng (CGI)"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:68
|
||||
#: applications/luci-app-nut/root/usr/share/luci/menu.d/luci-app-nut.json:30
|
||||
#: applications/luci-app-nut/root/usr/share/luci/menu.d/luci-app-nut.json:100
|
||||
msgid "NUT CGI - admin"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/root/usr/share/luci/menu.d/luci-app-nut.json:85
|
||||
msgid "NUT CGI - main"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:67
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor_admin.js:13
|
||||
msgid "NUT Monitor"
|
||||
msgstr "Công cụ UPS Mạng (Theo dõi)"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:42
|
||||
#: applications/luci-app-nut/root/usr/share/luci/menu.d/luci-app-nut.json:18
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server_admin.js:13
|
||||
msgid "NUT Server"
|
||||
msgstr "Công cụ UPS Mạng (Máy chủ)"
|
||||
|
||||
@@ -250,7 +264,23 @@ msgstr "Công cụ UPS Mạng (Máy chủ)"
|
||||
msgid "NUT Users"
|
||||
msgstr "Người dùng NUT"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:26
|
||||
#: applications/luci-app-nut/root/usr/share/luci/menu.d/luci-app-nut.json:69
|
||||
msgid "NUT monitor - admin"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/root/usr/share/luci/menu.d/luci-app-nut.json:54
|
||||
msgid "NUT monitor - main"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/root/usr/share/luci/menu.d/luci-app-nut.json:38
|
||||
msgid "NUT server - admin"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/root/usr/share/luci/menu.d/luci-app-nut.json:23
|
||||
msgid "NUT server - main"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:25
|
||||
msgid "Name of UPS"
|
||||
msgstr "Tên của UPS"
|
||||
|
||||
@@ -259,59 +289,62 @@ msgid "Network UPS Tools"
|
||||
msgstr "Công cụ UPS Mạng"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_cgi.js:14
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_cgi_admin.js:14
|
||||
msgid "Network UPS Tools CGI Configuration"
|
||||
msgstr "Cấu hình CGI Công cụ UPS Mạng"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:69
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:68
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor_admin.js:14
|
||||
msgid "Network UPS Tools Monitoring Configuration"
|
||||
msgstr "Cấu hình Giám sát Công cụ UPS Mạng"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:43
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server_admin.js:14
|
||||
msgid "Network UPS Tools Server Configuration"
|
||||
msgstr "Cấu hình Máy chủ Công cụ UPS Mạng"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:209
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:197
|
||||
msgid "No Lock"
|
||||
msgstr "Không khóa"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:213
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:201
|
||||
msgid "No low/high voltage transfer OIDs"
|
||||
msgstr "Không có OIDs chuyển đổi điện áp thấp/cao"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:127
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:116
|
||||
msgid "Notification flags"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:119
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:108
|
||||
msgid "Notifications settings"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:87
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor_admin.js:23
|
||||
msgid "Notify command"
|
||||
msgstr "Lệnh thông báo"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:217
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:205
|
||||
msgid "Off Delay(s)"
|
||||
msgstr "Độ trễ tắt (s)"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:226
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:214
|
||||
msgid "On Delay(s)"
|
||||
msgstr "Độ trễ bật (s)"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:46
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:45
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:53
|
||||
msgid "Password"
|
||||
msgstr "Mật khẩu"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:110
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:99
|
||||
msgid "Path containing ca certificates to match against host certificate"
|
||||
msgstr "Đường dẫn chứa chứng chỉ ca để so khớp với chứng chỉ máy chủ"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:122
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:114
|
||||
msgid "Path to drivers (instead of default)"
|
||||
msgstr "Đường dẫn đến các trình điều khiển (thay vì mặc định)"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:101
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server_admin.js:24
|
||||
msgid "Path to state file"
|
||||
msgstr "Đường dẫn đến tệp trạng thái"
|
||||
|
||||
@@ -319,30 +352,30 @@ msgstr "Đường dẫn đến tệp trạng thái"
|
||||
msgid "Period after which data is considered stale"
|
||||
msgstr "Thời gian sau đó dữ liệu được coi là cũ"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:140
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:132
|
||||
msgid "Poll Interval"
|
||||
msgstr "Khoảng thời gian khảo sát"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:90
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:79
|
||||
msgid "Poll frequency"
|
||||
msgstr "Tần suất khảo sát"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:95
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:84
|
||||
msgid "Poll frequency alert"
|
||||
msgstr "Thông báo tần suất khảo sát"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:235
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:223
|
||||
msgid "Polling Frequency(s)"
|
||||
msgstr "Tần suất (các) khảo sát"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_cgi.js:28
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:33
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:32
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:83
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:240
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:228
|
||||
msgid "Port"
|
||||
msgstr "Cổng"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:38
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:37
|
||||
msgid "Power value"
|
||||
msgstr "Giá trị công suất"
|
||||
|
||||
@@ -354,15 +387,15 @@ msgstr "Chủ"
|
||||
msgid "Primary (Deprecated)"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:244
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:232
|
||||
msgid "Product (regex)"
|
||||
msgstr "Sản phẩm (regex)"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:114
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:103
|
||||
msgid "Require SSL and make sure server CN matches hostname"
|
||||
msgstr "Yêu cầu SSL và đảm bảo CN máy chủ khớp với tên máy chủ"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:135
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:127
|
||||
msgid "Retry Delay"
|
||||
msgstr "Độ trễ thử lại"
|
||||
|
||||
@@ -370,49 +403,48 @@ msgstr "Độ trễ thử lại"
|
||||
msgid "Role"
|
||||
msgstr "Vai trò"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:119
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:111
|
||||
msgid "Run drivers in a chroot(2) environment"
|
||||
msgstr "Chạy các trình điều khiển trong môi trường chroot(2)"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:75
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:97
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:149
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor_admin.js:20
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server_admin.js:20
|
||||
msgid "RunAs User"
|
||||
msgstr "Chạy với tư cách người dùng"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:163
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:151
|
||||
msgid "SNMP Community"
|
||||
msgstr "Cộng đồng SNMP"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:260
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:248
|
||||
msgid "SNMP retries"
|
||||
msgstr "Số lần thử lại SNMP"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:264
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:252
|
||||
msgid "SNMP timeout(s)"
|
||||
msgstr "Thời gian chờ SNMP (s)"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:268
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:256
|
||||
msgid "SNMP version"
|
||||
msgstr "Phiên bản SNMP"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:270
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:258
|
||||
msgid "SNMPv1"
|
||||
msgstr "SNMPv1"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:271
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:259
|
||||
msgid "SNMPv2c"
|
||||
msgstr "SNMPv2c"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:272
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:260
|
||||
msgid "SNMPv3"
|
||||
msgstr "SNMPv3"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:257
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:245
|
||||
msgid "Serial Number"
|
||||
msgstr "Số Serial"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:177
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:165
|
||||
msgid "Set USB serial port permissions"
|
||||
msgstr "Đặt quyền cổng nối tiếp USB"
|
||||
|
||||
@@ -420,52 +452,53 @@ msgstr "Đặt quyền cổng nối tiếp USB"
|
||||
msgid "Set variables"
|
||||
msgstr "Đặt biến"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:83
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor_admin.js:26
|
||||
msgid "Shutdown command"
|
||||
msgstr "Lệnh tắt máy"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:145
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:282
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:137
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:270
|
||||
msgid "Synchronous Communication"
|
||||
msgstr "Giao tiếp đồng bộ"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:155
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:143
|
||||
msgid "The name of this section will be used as UPS name elsewhere"
|
||||
msgstr "Tên phần này sẽ được sử dụng làm tên UPS ở nơi khác"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:167
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:203
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:206
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:257
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:155
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:191
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:194
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:245
|
||||
msgid ""
|
||||
"This is passed through to the driver, so make sure your driver supports this "
|
||||
"option"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:135
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:127
|
||||
msgid "Time in seconds between driver start retry attempts."
|
||||
msgstr ""
|
||||
"Thời gian tính bằng giây giữa các lần thử lại khởi động trình điều khiển."
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:198
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:186
|
||||
msgid "Time in seconds that upsdrvctl will wait for driver to finish starting"
|
||||
msgstr ""
|
||||
"Thời gian tính bằng giây mà upsdrvctl sẽ chờ trình điều khiển hoàn thành quá "
|
||||
"trình khởi động"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:142
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:131
|
||||
msgid "UPS Auxiliary (Deprecated)"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:130
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:119
|
||||
msgid "UPS Monitor User Settings"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:139
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:128
|
||||
msgid "UPS Primary (Deprecated)"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:89
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server_admin.js:17
|
||||
msgid "UPS Server Global Settings"
|
||||
msgstr "Cài đặt toàn cầu của máy chủ UPS"
|
||||
|
||||
@@ -473,19 +506,19 @@ msgstr "Cài đặt toàn cầu của máy chủ UPS"
|
||||
msgid "UPS name"
|
||||
msgstr "Tên UPS"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:159
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:147
|
||||
msgid "USB Bus(es) (regex)"
|
||||
msgstr "USB Bus(es) (regex)"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:247
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:235
|
||||
msgid "USB Product Id"
|
||||
msgstr "ID Sản phẩm USB"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:279
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:267
|
||||
msgid "USB Vendor Id"
|
||||
msgstr "ID Nhà sản xuất USB"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:57
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:56
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:28
|
||||
msgid "Unable to run ldd: %s"
|
||||
msgstr ""
|
||||
@@ -497,32 +530,24 @@ msgstr ""
|
||||
"Sử dụng %s để xem danh sách đầy đủ các lệnh mà UPS của bạn hỗ trợ (yêu cầu "
|
||||
"gói %s)"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:149
|
||||
msgid ""
|
||||
"User as which to execute driver; requires device file accessed by driver to "
|
||||
"be read-write for that user."
|
||||
msgstr ""
|
||||
"Người dùng thực thi trình điều khiển; yêu cầu tệp thiết bị mà trình điều "
|
||||
"khiển truy cập phải được đọc và ghi cho người dùng đó."
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:133
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:122
|
||||
msgid "User type (Primary/Auxiliary)"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:43
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:42
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:50
|
||||
msgid "Username"
|
||||
msgstr "Tên người dùng"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:276
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:264
|
||||
msgid "Vendor (regex)"
|
||||
msgstr "Nhà sản xuất (regex)"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:114
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:103
|
||||
msgid "Verify all connection with SSL"
|
||||
msgstr "Xác minh tất cả kết nối bằng SSL"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:194
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:182
|
||||
msgid "Workaround for buggy firmware"
|
||||
msgstr "Giải pháp tạm thời cho firmware lỗi"
|
||||
|
||||
@@ -534,18 +559,28 @@ msgstr "Ghi vào syslog"
|
||||
msgid "Write to syslog and execute notify command"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:119
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:111
|
||||
msgid "chroot"
|
||||
msgstr "chroot"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:171
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:159
|
||||
msgid "install drivers"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:75
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor_admin.js:20
|
||||
msgid "upsmon drops privileges to this user"
|
||||
msgstr "upsmon từ bỏ đặc quyền của người dùng này"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "User as which to execute driver; requires device file accessed by driver "
|
||||
#~ "to be read-write for that user."
|
||||
#~ msgstr ""
|
||||
#~ "Người dùng thực thi trình điều khiển; yêu cầu tệp thiết bị mà trình điều "
|
||||
#~ "khiển truy cập phải được đọc và ghi cho người dùng đó."
|
||||
|
||||
#~ msgid "Grant UCI access for luci-app-nut"
|
||||
#~ msgstr "Cấp quyền truy cập UCI cho luci-app-nut"
|
||||
|
||||
#, fuzzy
|
||||
#~ msgid "%s is mutually exclusive to other choices"
|
||||
#~ msgstr "%s loại trừ lẫn nhau với các lựa chọn khác"
|
||||
|
||||
@@ -17,7 +17,7 @@ msgstr ""
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
"X-Generator: Weblate 2026.7.dev0\n"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:254
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:242
|
||||
msgid "Additional Shutdown Time(s)"
|
||||
msgstr "额外关机时间(秒)"
|
||||
|
||||
@@ -30,7 +30,7 @@ msgid "Allowed actions"
|
||||
msgstr "允许的动作"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_cgi.js:21
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:26
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:25
|
||||
msgid "As configured by NUT"
|
||||
msgstr "由 NUT 配置"
|
||||
|
||||
@@ -42,43 +42,43 @@ msgstr "从设备"
|
||||
msgid "Auxiliary (Deprecated)"
|
||||
msgstr "辅助的(已废弃)"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:190
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:178
|
||||
msgid "Bytes to read from interrupt pipe"
|
||||
msgstr "从中断管道读取的字节数"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:110
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:99
|
||||
msgid "CA Certificate path"
|
||||
msgstr "CA 证书路径"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:111
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:103
|
||||
msgid "Certificate file (SSL)"
|
||||
msgstr "证书文件(SSL)"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_cgi.js:36
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_cgi_admin.js:17
|
||||
msgid "Control UPS via CGI"
|
||||
msgstr "通过 CGI 控制 UPS"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:124
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:113
|
||||
msgid "Custom notification message for message type"
|
||||
msgstr "自定义消息类型的通知消息"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:104
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:93
|
||||
msgid "Deadtime"
|
||||
msgstr "无反应时间"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:126
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:118
|
||||
msgid "Default for UPSes without this field."
|
||||
msgstr "没有此字段的 UPS 的默认值。"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:217
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:205
|
||||
msgid "Delay for kill power command"
|
||||
msgstr "断电后执行命令的延时"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:226
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:214
|
||||
msgid "Delay to power on UPS if power returns after kill power"
|
||||
msgstr "如果断电后电源恢复,则延迟开启 UPS"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:167
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:155
|
||||
msgid "Description (Display)"
|
||||
msgstr "说明(显示)"
|
||||
|
||||
@@ -86,44 +86,44 @@ msgstr "说明(显示)"
|
||||
msgid "Display name"
|
||||
msgstr "显示名称"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:209
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:197
|
||||
msgid "Do not lock port when starting driver"
|
||||
msgstr "启动驱动程序时不要锁定端口"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:170
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:158
|
||||
msgid "Driver"
|
||||
msgstr "驱动"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:154
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:142
|
||||
msgid "Driver Configuration"
|
||||
msgstr "驱动程序配置"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:116
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:108
|
||||
msgid "Driver Global Settings"
|
||||
msgstr "驱动程序全局设置"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:122
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:114
|
||||
msgid "Driver Path"
|
||||
msgstr "驱动程序路径"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:250
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:238
|
||||
msgid "Driver Shutdown Order"
|
||||
msgstr "驱动程序关闭顺序"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:145
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:282
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:137
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:270
|
||||
msgid "Driver waits for data to be consumed by upsd before publishing more."
|
||||
msgstr "在发布更多内容之前,驱动程序会等待 upsd 处理完数据。"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:97
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server_admin.js:20
|
||||
msgid "Drop privileges to this user"
|
||||
msgstr "降低权限至此用户"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_cgi.js:41
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_cgi_admin.js:22
|
||||
msgid "Enable"
|
||||
msgstr "启用"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:178
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:166
|
||||
msgid ""
|
||||
"Enables a hotplug script that makes all ttyUSB devices (e.g. serial USB) "
|
||||
"group read-write as user %s"
|
||||
@@ -137,23 +137,29 @@ msgstr "执行 notify 命令"
|
||||
msgid "Forced Shutdown"
|
||||
msgstr "强制关机"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:71
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:70
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor_admin.js:16
|
||||
msgid "Global Settings"
|
||||
msgstr "全局设置"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_cgi.js:15
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_cgi_admin.js:15
|
||||
msgid "Go to NUT CGI"
|
||||
msgstr "前往 NUT CGI"
|
||||
|
||||
#: applications/luci-app-nut/root/usr/share/rpcd/acl.d/luci-app-nut.json:15
|
||||
msgid "Grant admin UCI access for luci-app-nut"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/root/usr/share/rpcd/acl.d/luci-app-nut.json:3
|
||||
msgid "Grant UCI access for luci-app-nut"
|
||||
msgstr "授予UCI访问luci-app-nut的权限"
|
||||
msgid "Grant limited UCI read access for luci-app-nut"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_cgi.js:17
|
||||
msgid "Host"
|
||||
msgstr "主机"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:100
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:89
|
||||
msgid "Host Sync"
|
||||
msgstr "主机同步"
|
||||
|
||||
@@ -161,7 +167,7 @@ msgstr "主机同步"
|
||||
msgid "Hostname or IP address"
|
||||
msgstr "主机名或 IP 地址"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:29
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:28
|
||||
msgid "Hostname or address of UPS"
|
||||
msgstr "UPS 的主机名或地址"
|
||||
|
||||
@@ -169,7 +175,7 @@ msgstr "UPS 的主机名或地址"
|
||||
msgid "IP Address"
|
||||
msgstr "IP 地址"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:171
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:159
|
||||
msgid "If this list is empty you need to %s"
|
||||
msgstr "如此列表为空,你需要 %s"
|
||||
|
||||
@@ -177,7 +183,7 @@ msgstr "如此列表为空,你需要 %s"
|
||||
msgid "Ignore"
|
||||
msgstr "忽略"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:182
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:170
|
||||
msgid "Ignore Low Battery"
|
||||
msgstr "忽略低电量"
|
||||
|
||||
@@ -185,19 +191,19 @@ msgstr "忽略低电量"
|
||||
msgid "Instant commands"
|
||||
msgstr "即时命令"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:186
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:174
|
||||
msgid "Interrupt Only"
|
||||
msgstr "仅中断"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:190
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:178
|
||||
msgid "Interrupt Size"
|
||||
msgstr "中断大小"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:203
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:191
|
||||
msgid "Manufacturer (Display)"
|
||||
msgstr "制造商(展示)"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:194
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:182
|
||||
msgid "Max USB HID Length Reported"
|
||||
msgstr "报告的最大 USB HID 长度"
|
||||
|
||||
@@ -205,47 +211,55 @@ msgstr "报告的最大 USB HID 长度"
|
||||
msgid "Maximum Age of Data"
|
||||
msgstr "最大数据年龄"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:130
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:122
|
||||
msgid "Maximum Retries"
|
||||
msgstr "最大重试次数"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:126
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:198
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:118
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:186
|
||||
msgid "Maximum Start Delay"
|
||||
msgstr "最大启动延迟"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:105
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:97
|
||||
msgid "Maximum connections"
|
||||
msgstr "最大连接数"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:130
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:122
|
||||
msgid "Maximum number of times to try starting a driver."
|
||||
msgstr "尝试启动驱动程序的最大次数。"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:140
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:132
|
||||
msgid "Maximum time in seconds between refresh of UPS status"
|
||||
msgstr "刷新 UPS 状态的最长间隔时间(秒)"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:78
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:74
|
||||
msgid "Minimum required number or power supplies"
|
||||
msgstr "所需的最低数量或电源"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:206
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:194
|
||||
msgid "Model (Display)"
|
||||
msgstr "型号(显示)"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_cgi.js:13
|
||||
#: applications/luci-app-nut/root/usr/share/luci/menu.d/luci-app-nut.json:42
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_cgi_admin.js:13
|
||||
msgid "NUT CGI"
|
||||
msgstr "网络 UPS 工具(CGI)"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:68
|
||||
#: applications/luci-app-nut/root/usr/share/luci/menu.d/luci-app-nut.json:30
|
||||
#: applications/luci-app-nut/root/usr/share/luci/menu.d/luci-app-nut.json:100
|
||||
msgid "NUT CGI - admin"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/root/usr/share/luci/menu.d/luci-app-nut.json:85
|
||||
msgid "NUT CGI - main"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:67
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor_admin.js:13
|
||||
msgid "NUT Monitor"
|
||||
msgstr "网络 UPS 工具(监控)"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:42
|
||||
#: applications/luci-app-nut/root/usr/share/luci/menu.d/luci-app-nut.json:18
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server_admin.js:13
|
||||
msgid "NUT Server"
|
||||
msgstr "网络 UPS 工具(服务器)"
|
||||
|
||||
@@ -253,7 +267,23 @@ msgstr "网络 UPS 工具(服务器)"
|
||||
msgid "NUT Users"
|
||||
msgstr "NUT 用户"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:26
|
||||
#: applications/luci-app-nut/root/usr/share/luci/menu.d/luci-app-nut.json:69
|
||||
msgid "NUT monitor - admin"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/root/usr/share/luci/menu.d/luci-app-nut.json:54
|
||||
msgid "NUT monitor - main"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/root/usr/share/luci/menu.d/luci-app-nut.json:38
|
||||
msgid "NUT server - admin"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/root/usr/share/luci/menu.d/luci-app-nut.json:23
|
||||
msgid "NUT server - main"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:25
|
||||
msgid "Name of UPS"
|
||||
msgstr "UPS 的名称"
|
||||
|
||||
@@ -262,59 +292,62 @@ msgid "Network UPS Tools"
|
||||
msgstr "网络 UPS 工具"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_cgi.js:14
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_cgi_admin.js:14
|
||||
msgid "Network UPS Tools CGI Configuration"
|
||||
msgstr "网络 UPS 工具 CGI 配置"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:69
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:68
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor_admin.js:14
|
||||
msgid "Network UPS Tools Monitoring Configuration"
|
||||
msgstr "网络 UPS 工具监控配置"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:43
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server_admin.js:14
|
||||
msgid "Network UPS Tools Server Configuration"
|
||||
msgstr "网络 UPS 工具服务器配置"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:209
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:197
|
||||
msgid "No Lock"
|
||||
msgstr "没有锁"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:213
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:201
|
||||
msgid "No low/high voltage transfer OIDs"
|
||||
msgstr "没有低压/高压传输 OID"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:127
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:116
|
||||
msgid "Notification flags"
|
||||
msgstr "通知标记"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:119
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:108
|
||||
msgid "Notifications settings"
|
||||
msgstr "通知设置"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:87
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor_admin.js:23
|
||||
msgid "Notify command"
|
||||
msgstr "通知命令"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:217
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:205
|
||||
msgid "Off Delay(s)"
|
||||
msgstr "关闭延迟(秒)"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:226
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:214
|
||||
msgid "On Delay(s)"
|
||||
msgstr "开启延迟(秒)"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:46
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:45
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:53
|
||||
msgid "Password"
|
||||
msgstr "密码"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:110
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:99
|
||||
msgid "Path containing ca certificates to match against host certificate"
|
||||
msgstr "匹配主机证书的 ca 证书路径"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:122
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:114
|
||||
msgid "Path to drivers (instead of default)"
|
||||
msgstr "驱动程序的路径(而不是默认)"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:101
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server_admin.js:24
|
||||
msgid "Path to state file"
|
||||
msgstr "状态文件的路径"
|
||||
|
||||
@@ -322,30 +355,30 @@ msgstr "状态文件的路径"
|
||||
msgid "Period after which data is considered stale"
|
||||
msgstr "数据过期时间"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:140
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:132
|
||||
msgid "Poll Interval"
|
||||
msgstr "轮询间隔"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:90
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:79
|
||||
msgid "Poll frequency"
|
||||
msgstr "轮询频率"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:95
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:84
|
||||
msgid "Poll frequency alert"
|
||||
msgstr "轮询频率警报"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:235
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:223
|
||||
msgid "Polling Frequency(s)"
|
||||
msgstr "轮询频率(秒)"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_cgi.js:28
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:33
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:32
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:83
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:240
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:228
|
||||
msgid "Port"
|
||||
msgstr "端口"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:38
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:37
|
||||
msgid "Power value"
|
||||
msgstr "功率值"
|
||||
|
||||
@@ -357,15 +390,15 @@ msgstr "主设备"
|
||||
msgid "Primary (Deprecated)"
|
||||
msgstr "主要(已废弃)"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:244
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:232
|
||||
msgid "Product (regex)"
|
||||
msgstr "产品(正则表达式)"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:114
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:103
|
||||
msgid "Require SSL and make sure server CN matches hostname"
|
||||
msgstr "需要 SSL 并确保服务器 CN 与主机名匹配"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:135
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:127
|
||||
msgid "Retry Delay"
|
||||
msgstr "重试延迟"
|
||||
|
||||
@@ -373,49 +406,48 @@ msgstr "重试延迟"
|
||||
msgid "Role"
|
||||
msgstr "角色"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:119
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:111
|
||||
msgid "Run drivers in a chroot(2) environment"
|
||||
msgstr "在 chroot(2) 环境中运行驱动程序"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:75
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:97
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:149
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor_admin.js:20
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server_admin.js:20
|
||||
msgid "RunAs User"
|
||||
msgstr "RunAs 用户"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:163
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:151
|
||||
msgid "SNMP Community"
|
||||
msgstr "SNMP 社区"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:260
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:248
|
||||
msgid "SNMP retries"
|
||||
msgstr "SNMP 重试"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:264
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:252
|
||||
msgid "SNMP timeout(s)"
|
||||
msgstr "SNMP 超时"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:268
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:256
|
||||
msgid "SNMP version"
|
||||
msgstr "SNMP 版本"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:270
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:258
|
||||
msgid "SNMPv1"
|
||||
msgstr "SNMPv1"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:271
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:259
|
||||
msgid "SNMPv2c"
|
||||
msgstr "SNMPv2c"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:272
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:260
|
||||
msgid "SNMPv3"
|
||||
msgstr "SNMPv3"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:257
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:245
|
||||
msgid "Serial Number"
|
||||
msgstr "序列号"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:177
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:165
|
||||
msgid "Set USB serial port permissions"
|
||||
msgstr "设置 USB 串口权限"
|
||||
|
||||
@@ -423,49 +455,50 @@ msgstr "设置 USB 串口权限"
|
||||
msgid "Set variables"
|
||||
msgstr "设置变量"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:83
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor_admin.js:26
|
||||
msgid "Shutdown command"
|
||||
msgstr "关机命令"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:145
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:282
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:137
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:270
|
||||
msgid "Synchronous Communication"
|
||||
msgstr "同步通信"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:155
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:143
|
||||
msgid "The name of this section will be used as UPS name elsewhere"
|
||||
msgstr "此部分的名称将在其他地方用作 UPS 名称"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:167
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:203
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:206
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:257
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:155
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:191
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:194
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:245
|
||||
msgid ""
|
||||
"This is passed through to the driver, so make sure your driver supports this "
|
||||
"option"
|
||||
msgstr "这被传递到驱动程序,因此确保驱动程序支持此选项"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:135
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:127
|
||||
msgid "Time in seconds between driver start retry attempts."
|
||||
msgstr "驱动程序重试启动的时间间隔(秒)。"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:198
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:186
|
||||
msgid "Time in seconds that upsdrvctl will wait for driver to finish starting"
|
||||
msgstr "upsdrvctl 等待驱动程序完成启动的时间(秒)"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:142
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:131
|
||||
msgid "UPS Auxiliary (Deprecated)"
|
||||
msgstr "辅助 UPS (已废弃)"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:130
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:119
|
||||
msgid "UPS Monitor User Settings"
|
||||
msgstr "UPS 监视器用户设置"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:139
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:128
|
||||
msgid "UPS Primary (Deprecated)"
|
||||
msgstr "主 UPS(已废弃)"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:89
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server_admin.js:17
|
||||
msgid "UPS Server Global Settings"
|
||||
msgstr "UPS 服务器全局设置"
|
||||
|
||||
@@ -473,19 +506,19 @@ msgstr "UPS 服务器全局设置"
|
||||
msgid "UPS name"
|
||||
msgstr "UPS 名称"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:159
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:147
|
||||
msgid "USB Bus(es) (regex)"
|
||||
msgstr "USB 总线(正则表达式)"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:247
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:235
|
||||
msgid "USB Product Id"
|
||||
msgstr "USB 产品 ID"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:279
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:267
|
||||
msgid "USB Vendor Id"
|
||||
msgstr "USB 供应商 ID"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:57
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:56
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:28
|
||||
msgid "Unable to run ldd: %s"
|
||||
msgstr "无法运行 ldd:%s"
|
||||
@@ -495,30 +528,24 @@ msgid ""
|
||||
"Use %s to see full list of commands your UPS supports (requires %s package)"
|
||||
msgstr "使用 %s 查看 UPS 支持的命令的完整列表(需要 %s包)"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:149
|
||||
msgid ""
|
||||
"User as which to execute driver; requires device file accessed by driver to "
|
||||
"be read-write for that user."
|
||||
msgstr "执行驱动程序的用户;要求驱动程序访问的设备文件对该用户是可读写的。"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:133
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:122
|
||||
msgid "User type (Primary/Auxiliary)"
|
||||
msgstr "用户类型(主要/辅助)"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:43
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:42
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:50
|
||||
msgid "Username"
|
||||
msgstr "用户名"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:276
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:264
|
||||
msgid "Vendor (regex)"
|
||||
msgstr "供应商(正则表达式)"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:114
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:103
|
||||
msgid "Verify all connection with SSL"
|
||||
msgstr "验证所有 SSL 连接"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:194
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:182
|
||||
msgid "Workaround for buggy firmware"
|
||||
msgstr "有缺陷的固件的解决方法"
|
||||
|
||||
@@ -530,18 +557,26 @@ msgstr "写入 syslog"
|
||||
msgid "Write to syslog and execute notify command"
|
||||
msgstr "写入 syslog 并执行通知命令"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:119
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:111
|
||||
msgid "chroot"
|
||||
msgstr "chroot"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:171
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:159
|
||||
msgid "install drivers"
|
||||
msgstr "安装驱动"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:75
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor_admin.js:20
|
||||
msgid "upsmon drops privileges to this user"
|
||||
msgstr "upsmon 删除此用户的权限"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "User as which to execute driver; requires device file accessed by driver "
|
||||
#~ "to be read-write for that user."
|
||||
#~ msgstr "执行驱动程序的用户;要求驱动程序访问的设备文件对该用户是可读写的。"
|
||||
|
||||
#~ msgid "Grant UCI access for luci-app-nut"
|
||||
#~ msgstr "授予UCI访问luci-app-nut的权限"
|
||||
|
||||
#~ msgid "UPS Monitor User Settings)"
|
||||
#~ msgstr "UPS 监视器用户设置"
|
||||
|
||||
|
||||
@@ -16,7 +16,7 @@ msgstr ""
|
||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||
"X-Generator: Weblate 2026.7.1.dev0\n"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:254
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:242
|
||||
msgid "Additional Shutdown Time(s)"
|
||||
msgstr "額外關機時間 (秒)"
|
||||
|
||||
@@ -29,7 +29,7 @@ msgid "Allowed actions"
|
||||
msgstr "允許的動作"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_cgi.js:21
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:26
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:25
|
||||
msgid "As configured by NUT"
|
||||
msgstr "由 NUT 配置"
|
||||
|
||||
@@ -41,43 +41,43 @@ msgstr "從裝置"
|
||||
msgid "Auxiliary (Deprecated)"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:190
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:178
|
||||
msgid "Bytes to read from interrupt pipe"
|
||||
msgstr "從中斷管道讀取的位元組數"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:110
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:99
|
||||
msgid "CA Certificate path"
|
||||
msgstr "CA 憑證路徑"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:111
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:103
|
||||
msgid "Certificate file (SSL)"
|
||||
msgstr "憑證檔案 (SSL)"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_cgi.js:36
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_cgi_admin.js:17
|
||||
msgid "Control UPS via CGI"
|
||||
msgstr "透過 CGI 控制 UPS"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:124
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:113
|
||||
msgid "Custom notification message for message type"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:104
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:93
|
||||
msgid "Deadtime"
|
||||
msgstr "無反應時間"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:126
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:118
|
||||
msgid "Default for UPSes without this field."
|
||||
msgstr "沒有此欄位的 UPS 的預設值。"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:217
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:205
|
||||
msgid "Delay for kill power command"
|
||||
msgstr "斷電後執行指令的延遲"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:226
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:214
|
||||
msgid "Delay to power on UPS if power returns after kill power"
|
||||
msgstr "若斷電後電源恢復,則延遲開啟 UPS"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:167
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:155
|
||||
msgid "Description (Display)"
|
||||
msgstr "說明 (顯示)"
|
||||
|
||||
@@ -85,44 +85,44 @@ msgstr "說明 (顯示)"
|
||||
msgid "Display name"
|
||||
msgstr "顯示名稱"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:209
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:197
|
||||
msgid "Do not lock port when starting driver"
|
||||
msgstr "啟動驅動程式時不要鎖定連接埠"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:170
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:158
|
||||
msgid "Driver"
|
||||
msgstr "驅動程式"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:154
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:142
|
||||
msgid "Driver Configuration"
|
||||
msgstr "驅動程式配置"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:116
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:108
|
||||
msgid "Driver Global Settings"
|
||||
msgstr "驅動程式全域設定"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:122
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:114
|
||||
msgid "Driver Path"
|
||||
msgstr "驅動程式路徑"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:250
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:238
|
||||
msgid "Driver Shutdown Order"
|
||||
msgstr "驅動程式關閉順序"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:145
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:282
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:137
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:270
|
||||
msgid "Driver waits for data to be consumed by upsd before publishing more."
|
||||
msgstr "在釋出更多內容之前,驅動程式會等待 upsd 處理完資料。"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:97
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server_admin.js:20
|
||||
msgid "Drop privileges to this user"
|
||||
msgstr "降低權限至此使用者"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_cgi.js:41
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_cgi_admin.js:22
|
||||
msgid "Enable"
|
||||
msgstr "啟用"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:178
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:166
|
||||
msgid ""
|
||||
"Enables a hotplug script that makes all ttyUSB devices (e.g. serial USB) "
|
||||
"group read-write as user %s"
|
||||
@@ -137,23 +137,29 @@ msgstr "執行 notify 指令"
|
||||
msgid "Forced Shutdown"
|
||||
msgstr "強制關機"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:71
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:70
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor_admin.js:16
|
||||
msgid "Global Settings"
|
||||
msgstr "全域設定"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_cgi.js:15
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_cgi_admin.js:15
|
||||
msgid "Go to NUT CGI"
|
||||
msgstr "前往 NUT CGI"
|
||||
|
||||
#: applications/luci-app-nut/root/usr/share/rpcd/acl.d/luci-app-nut.json:15
|
||||
msgid "Grant admin UCI access for luci-app-nut"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/root/usr/share/rpcd/acl.d/luci-app-nut.json:3
|
||||
msgid "Grant UCI access for luci-app-nut"
|
||||
msgstr "授予 luci-app-nut 存取 UCI 的權限"
|
||||
msgid "Grant limited UCI read access for luci-app-nut"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_cgi.js:17
|
||||
msgid "Host"
|
||||
msgstr "主機"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:100
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:89
|
||||
msgid "Host Sync"
|
||||
msgstr "主機同步"
|
||||
|
||||
@@ -161,7 +167,7 @@ msgstr "主機同步"
|
||||
msgid "Hostname or IP address"
|
||||
msgstr "主機名或 IP 位址"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:29
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:28
|
||||
msgid "Hostname or address of UPS"
|
||||
msgstr "UPS 的主機名或位址"
|
||||
|
||||
@@ -169,7 +175,7 @@ msgstr "UPS 的主機名或位址"
|
||||
msgid "IP Address"
|
||||
msgstr "IP 位址"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:171
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:159
|
||||
msgid "If this list is empty you need to %s"
|
||||
msgstr "若此清單為空您需要%s"
|
||||
|
||||
@@ -177,7 +183,7 @@ msgstr "若此清單為空您需要%s"
|
||||
msgid "Ignore"
|
||||
msgstr "忽略"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:182
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:170
|
||||
msgid "Ignore Low Battery"
|
||||
msgstr "忽略低電量"
|
||||
|
||||
@@ -185,19 +191,19 @@ msgstr "忽略低電量"
|
||||
msgid "Instant commands"
|
||||
msgstr "即時指令"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:186
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:174
|
||||
msgid "Interrupt Only"
|
||||
msgstr "僅中斷"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:190
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:178
|
||||
msgid "Interrupt Size"
|
||||
msgstr "中斷大小"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:203
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:191
|
||||
msgid "Manufacturer (Display)"
|
||||
msgstr "製造商 (顯示)"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:194
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:182
|
||||
msgid "Max USB HID Length Reported"
|
||||
msgstr "報告的最大 USB HID 長度"
|
||||
|
||||
@@ -205,47 +211,55 @@ msgstr "報告的最大 USB HID 長度"
|
||||
msgid "Maximum Age of Data"
|
||||
msgstr "最大資料年齡"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:130
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:122
|
||||
msgid "Maximum Retries"
|
||||
msgstr "最大重試次數"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:126
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:198
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:118
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:186
|
||||
msgid "Maximum Start Delay"
|
||||
msgstr "最大啟動延遲"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:105
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:97
|
||||
msgid "Maximum connections"
|
||||
msgstr "最大連線數"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:130
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:122
|
||||
msgid "Maximum number of times to try starting a driver."
|
||||
msgstr "嘗試啟動驅動程式的最大次數。"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:140
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:132
|
||||
msgid "Maximum time in seconds between refresh of UPS status"
|
||||
msgstr "重新整理 UPS 狀態之間的最長時間 (秒)"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:78
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:74
|
||||
msgid "Minimum required number or power supplies"
|
||||
msgstr "所需的最低數量或電源"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:206
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:194
|
||||
msgid "Model (Display)"
|
||||
msgstr "型號 (顯示)"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_cgi.js:13
|
||||
#: applications/luci-app-nut/root/usr/share/luci/menu.d/luci-app-nut.json:42
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_cgi_admin.js:13
|
||||
msgid "NUT CGI"
|
||||
msgstr "NUT CGI"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:68
|
||||
#: applications/luci-app-nut/root/usr/share/luci/menu.d/luci-app-nut.json:30
|
||||
#: applications/luci-app-nut/root/usr/share/luci/menu.d/luci-app-nut.json:100
|
||||
msgid "NUT CGI - admin"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/root/usr/share/luci/menu.d/luci-app-nut.json:85
|
||||
msgid "NUT CGI - main"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:67
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor_admin.js:13
|
||||
msgid "NUT Monitor"
|
||||
msgstr "NUT 監控"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:42
|
||||
#: applications/luci-app-nut/root/usr/share/luci/menu.d/luci-app-nut.json:18
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server_admin.js:13
|
||||
msgid "NUT Server"
|
||||
msgstr "NUT 伺服器"
|
||||
|
||||
@@ -253,7 +267,23 @@ msgstr "NUT 伺服器"
|
||||
msgid "NUT Users"
|
||||
msgstr "NUT 使用者"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:26
|
||||
#: applications/luci-app-nut/root/usr/share/luci/menu.d/luci-app-nut.json:69
|
||||
msgid "NUT monitor - admin"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/root/usr/share/luci/menu.d/luci-app-nut.json:54
|
||||
msgid "NUT monitor - main"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/root/usr/share/luci/menu.d/luci-app-nut.json:38
|
||||
msgid "NUT server - admin"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/root/usr/share/luci/menu.d/luci-app-nut.json:23
|
||||
msgid "NUT server - main"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:25
|
||||
msgid "Name of UPS"
|
||||
msgstr "UPS 名稱"
|
||||
|
||||
@@ -262,59 +292,62 @@ msgid "Network UPS Tools"
|
||||
msgstr "網路 UPS 工具"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_cgi.js:14
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_cgi_admin.js:14
|
||||
msgid "Network UPS Tools CGI Configuration"
|
||||
msgstr "網路 UPS 工具 CGI 配置"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:69
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:68
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor_admin.js:14
|
||||
msgid "Network UPS Tools Monitoring Configuration"
|
||||
msgstr "網路 UPS 工具監控配置"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:43
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server_admin.js:14
|
||||
msgid "Network UPS Tools Server Configuration"
|
||||
msgstr "網路 UPS 工具伺服器配置"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:209
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:197
|
||||
msgid "No Lock"
|
||||
msgstr "沒有鎖"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:213
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:201
|
||||
msgid "No low/high voltage transfer OIDs"
|
||||
msgstr "沒有低壓/高壓傳輸 OID"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:127
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:116
|
||||
msgid "Notification flags"
|
||||
msgstr "通知旗標"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:119
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:108
|
||||
msgid "Notifications settings"
|
||||
msgstr "通知設定"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:87
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor_admin.js:23
|
||||
msgid "Notify command"
|
||||
msgstr "通知指令"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:217
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:205
|
||||
msgid "Off Delay(s)"
|
||||
msgstr "關閉延遲 (秒)"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:226
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:214
|
||||
msgid "On Delay(s)"
|
||||
msgstr "開啟延遲 (秒)"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:46
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:45
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:53
|
||||
msgid "Password"
|
||||
msgstr "密碼"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:110
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:99
|
||||
msgid "Path containing ca certificates to match against host certificate"
|
||||
msgstr "匹配主機憑證的 ca 憑證路徑"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:122
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:114
|
||||
msgid "Path to drivers (instead of default)"
|
||||
msgstr "驅動程式的路徑 (而不是預設)"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:101
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server_admin.js:24
|
||||
msgid "Path to state file"
|
||||
msgstr "狀態檔案的路徑"
|
||||
|
||||
@@ -322,30 +355,30 @@ msgstr "狀態檔案的路徑"
|
||||
msgid "Period after which data is considered stale"
|
||||
msgstr "資料過期時間"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:140
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:132
|
||||
msgid "Poll Interval"
|
||||
msgstr "輪詢間隔"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:90
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:79
|
||||
msgid "Poll frequency"
|
||||
msgstr "輪詢頻率"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:95
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:84
|
||||
msgid "Poll frequency alert"
|
||||
msgstr "輪詢頻率警報"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:235
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:223
|
||||
msgid "Polling Frequency(s)"
|
||||
msgstr "輪詢頻率 (秒)"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_cgi.js:28
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:33
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:32
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:83
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:240
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:228
|
||||
msgid "Port"
|
||||
msgstr "連接埠"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:38
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:37
|
||||
msgid "Power value"
|
||||
msgstr "功率值"
|
||||
|
||||
@@ -357,15 +390,15 @@ msgstr "主要"
|
||||
msgid "Primary (Deprecated)"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:244
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:232
|
||||
msgid "Product (regex)"
|
||||
msgstr "產品 (正規表示式)"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:114
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:103
|
||||
msgid "Require SSL and make sure server CN matches hostname"
|
||||
msgstr "需要 SSL 並確保伺服器 CN 與主機名匹配"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:135
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:127
|
||||
msgid "Retry Delay"
|
||||
msgstr "重試延遲"
|
||||
|
||||
@@ -373,49 +406,48 @@ msgstr "重試延遲"
|
||||
msgid "Role"
|
||||
msgstr "角色"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:119
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:111
|
||||
msgid "Run drivers in a chroot(2) environment"
|
||||
msgstr "在 chroot(2) 環境中執行驅動程式"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:75
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:97
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:149
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor_admin.js:20
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server_admin.js:20
|
||||
msgid "RunAs User"
|
||||
msgstr "以指定使用者執行"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:163
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:151
|
||||
msgid "SNMP Community"
|
||||
msgstr "SNMP 社群"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:260
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:248
|
||||
msgid "SNMP retries"
|
||||
msgstr "SNMP 重試"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:264
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:252
|
||||
msgid "SNMP timeout(s)"
|
||||
msgstr "SNMP 逾時"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:268
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:256
|
||||
msgid "SNMP version"
|
||||
msgstr "SNMP 版本"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:270
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:258
|
||||
msgid "SNMPv1"
|
||||
msgstr "SNMPv1"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:271
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:259
|
||||
msgid "SNMPv2c"
|
||||
msgstr "SNMPv2c"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:272
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:260
|
||||
msgid "SNMPv3"
|
||||
msgstr "SNMPv3"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:257
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:245
|
||||
msgid "Serial Number"
|
||||
msgstr "序號"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:177
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:165
|
||||
msgid "Set USB serial port permissions"
|
||||
msgstr "設定 USB 串列埠權限"
|
||||
|
||||
@@ -423,49 +455,50 @@ msgstr "設定 USB 串列埠權限"
|
||||
msgid "Set variables"
|
||||
msgstr "設定變數"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:83
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor_admin.js:26
|
||||
msgid "Shutdown command"
|
||||
msgstr "關機指令"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:145
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:282
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:137
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:270
|
||||
msgid "Synchronous Communication"
|
||||
msgstr "同步通訊"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:155
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:143
|
||||
msgid "The name of this section will be used as UPS name elsewhere"
|
||||
msgstr "此部分的名稱將在其他地方用作 UPS 名稱"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:167
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:203
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:206
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:257
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:155
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:191
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:194
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:245
|
||||
msgid ""
|
||||
"This is passed through to the driver, so make sure your driver supports this "
|
||||
"option"
|
||||
msgstr "這被傳遞給驅動程式,所以請確保其支援此選項"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:135
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:127
|
||||
msgid "Time in seconds between driver start retry attempts."
|
||||
msgstr "驅動程式重試之間的間隔 (秒)。"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:198
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:186
|
||||
msgid "Time in seconds that upsdrvctl will wait for driver to finish starting"
|
||||
msgstr "upsdrvctl 等待驅動程式完成啟動的時間 (秒)"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:142
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:131
|
||||
msgid "UPS Auxiliary (Deprecated)"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:130
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:119
|
||||
msgid "UPS Monitor User Settings"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:139
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:128
|
||||
msgid "UPS Primary (Deprecated)"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:89
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server_admin.js:17
|
||||
msgid "UPS Server Global Settings"
|
||||
msgstr "UPS 伺服器全域性設定"
|
||||
|
||||
@@ -473,19 +506,19 @@ msgstr "UPS 伺服器全域性設定"
|
||||
msgid "UPS name"
|
||||
msgstr "UPS 名稱"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:159
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:147
|
||||
msgid "USB Bus(es) (regex)"
|
||||
msgstr "USB 匯流排 (正規表示式)"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:247
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:235
|
||||
msgid "USB Product Id"
|
||||
msgstr "USB 產品 ID"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:279
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:267
|
||||
msgid "USB Vendor Id"
|
||||
msgstr "USB 供應商 ID"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:57
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:56
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:28
|
||||
msgid "Unable to run ldd: %s"
|
||||
msgstr "無法執行 ldd: %s"
|
||||
@@ -495,30 +528,24 @@ msgid ""
|
||||
"Use %s to see full list of commands your UPS supports (requires %s package)"
|
||||
msgstr "使用 %s 查看 UPS 支援的完整指令清單 (需要 %s 包)"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:149
|
||||
msgid ""
|
||||
"User as which to execute driver; requires device file accessed by driver to "
|
||||
"be read-write for that user."
|
||||
msgstr "執行驅動程式的使用者;要求驅動程式存取的裝置檔案對該使用者是可讀寫的。"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:133
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:122
|
||||
msgid "User type (Primary/Auxiliary)"
|
||||
msgstr ""
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:43
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:42
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:50
|
||||
msgid "Username"
|
||||
msgstr "使用者名稱"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:276
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:264
|
||||
msgid "Vendor (regex)"
|
||||
msgstr "供應商 (正規表示式)"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:114
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:103
|
||||
msgid "Verify all connection with SSL"
|
||||
msgstr "驗證所有 SSL 連線"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:194
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:182
|
||||
msgid "Workaround for buggy firmware"
|
||||
msgstr "有缺陷的韌體的解決方法"
|
||||
|
||||
@@ -530,18 +557,27 @@ msgstr "寫入 syslog"
|
||||
msgid "Write to syslog and execute notify command"
|
||||
msgstr "寫入 syslog 並執行 notify 指令"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:119
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:111
|
||||
msgid "chroot"
|
||||
msgstr "chroot"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:171
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:159
|
||||
msgid "install drivers"
|
||||
msgstr "安裝驅動程式"
|
||||
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor.js:75
|
||||
#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_monitor_admin.js:20
|
||||
msgid "upsmon drops privileges to this user"
|
||||
msgstr "upsmon 刪除此使用者的權限"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "User as which to execute driver; requires device file accessed by driver "
|
||||
#~ "to be read-write for that user."
|
||||
#~ msgstr ""
|
||||
#~ "執行驅動程式的使用者;要求驅動程式存取的裝置檔案對該使用者是可讀寫的。"
|
||||
|
||||
#~ msgid "Grant UCI access for luci-app-nut"
|
||||
#~ msgstr "授予 luci-app-nut 存取 UCI 的權限"
|
||||
|
||||
#~ msgid "%s is mutually exclusive to other choices"
|
||||
#~ msgstr "%s 和其他選擇互斥"
|
||||
|
||||
|
||||
@@ -1,11 +1,16 @@
|
||||
{
|
||||
"admin/services/nut": {
|
||||
"title": "Network UPS Tools",
|
||||
"order": 1,
|
||||
"action": {
|
||||
"type": "firstchild"
|
||||
"type": "firstchild",
|
||||
"recurse": true,
|
||||
"preferred": "nut_server_main"
|
||||
},
|
||||
"depends": {
|
||||
"acl": [ "luci-app-nut" ],
|
||||
"acl": [
|
||||
"luci-app-nut-read"
|
||||
],
|
||||
"fs": [
|
||||
{ "/etc/config/nut_server": "file" },
|
||||
{ "/etc/config/nut_monitor": "file" },
|
||||
@@ -14,38 +19,95 @@
|
||||
}
|
||||
},
|
||||
|
||||
"admin/services/nut/server": {
|
||||
"title": "NUT Server",
|
||||
"order": 1,
|
||||
"admin/services/nut/nut_server_main": {
|
||||
"title": "NUT server - main",
|
||||
"order": 2,
|
||||
"action": {
|
||||
"type": "view",
|
||||
"path": "nut/nut_server"
|
||||
},
|
||||
"depends": {
|
||||
"acl": [
|
||||
"luci-app-nut-read"
|
||||
],
|
||||
"fs": { "/etc/config/nut_server": "file" }
|
||||
}
|
||||
},
|
||||
|
||||
"admin/services/nut/monitor": {
|
||||
"title": "NUT Monitor",
|
||||
"order": 2,
|
||||
"admin/services/nut/nut_server_admin": {
|
||||
"title": "NUT server - admin",
|
||||
"order": 3,
|
||||
"action": {
|
||||
"type": "view",
|
||||
"path": "nut/nut_server_admin"
|
||||
},
|
||||
"depends": {
|
||||
"acl": [
|
||||
"luci-app-nut-read",
|
||||
"luci-app-nut-admin"
|
||||
],
|
||||
"fs": { "/etc/config/nut_server": "file" }
|
||||
}
|
||||
},
|
||||
|
||||
"admin/services/nut/nut_monitor_main": {
|
||||
"title": "NUT monitor - main",
|
||||
"order": 4,
|
||||
"action": {
|
||||
"type": "view",
|
||||
"path": "nut/nut_monitor"
|
||||
},
|
||||
"depends": {
|
||||
"acl": [
|
||||
"luci-app-nut-read"
|
||||
],
|
||||
"fs": { "/etc/config/nut_monitor": "file" }
|
||||
}
|
||||
},
|
||||
|
||||
"admin/services/nut/cgi": {
|
||||
"title": "NUT CGI",
|
||||
"order": 3,
|
||||
"admin/services/nut/nut_monitor_admin": {
|
||||
"title": "NUT monitor - admin",
|
||||
"order": 5,
|
||||
"action": {
|
||||
"type": "view",
|
||||
"path": "nut/nut_monitor_admin"
|
||||
},
|
||||
"depends": {
|
||||
"acl": [
|
||||
"luci-app-nut-read",
|
||||
"luci-app-nut-admin"
|
||||
],
|
||||
"fs": { "/etc/config/nut_monitor": "file" }
|
||||
}
|
||||
},
|
||||
|
||||
"admin/services/nut/nut_cgi_main": {
|
||||
"title": "NUT CGI - main",
|
||||
"order": 6,
|
||||
"action": {
|
||||
"type": "view",
|
||||
"path": "nut/nut_cgi"
|
||||
},
|
||||
"depends": {
|
||||
"acl": [
|
||||
"luci-app-nut-read"
|
||||
],
|
||||
"fs": { "/etc/config/nut_cgi": "file" }
|
||||
}
|
||||
},
|
||||
|
||||
"admin/services/nut/nut_cgi_admin": {
|
||||
"title": "NUT CGI - admin",
|
||||
"order": 7,
|
||||
"action": {
|
||||
"type": "view",
|
||||
"path": "nut/nut_cgi_admin"
|
||||
},
|
||||
"depends": {
|
||||
"acl": [
|
||||
"luci-app-nut-read",
|
||||
"luci-app-nut-admin"
|
||||
],
|
||||
"fs": { "/etc/config/nut_cgi": "file" }
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1,21 +1,18 @@
|
||||
{
|
||||
"luci-app-nut": {
|
||||
"description": "Grant UCI access for luci-app-nut",
|
||||
"luci-app-nut-read": {
|
||||
"description": "Grant limited UCI read access for luci-app-nut",
|
||||
"read": {
|
||||
"file": {
|
||||
"/etc/ssl/certs": [ "read" ],
|
||||
"/tmp/*": [ "list" ],
|
||||
"/lib/lnut": [ "read" ],
|
||||
"/lib/nut/": [ "list" ],
|
||||
"/usr/libexec/nut/": [ "list" ],
|
||||
"/usr/sbin/upsd": [ "read" ],
|
||||
"/usr/sbin/upsmon": [ "read" ],
|
||||
"/var/run/nut": [ "read" ],
|
||||
"/usr/bin/ldd /usr/sbin/upsmon": ["exec"],
|
||||
"/usr/bin/ldd /usr/sbin/upsd": ["exec"]
|
||||
},
|
||||
"uci": [ "nut_cgi", "nut_monitor", "nut_server" ]
|
||||
},
|
||||
}
|
||||
},
|
||||
"luci-app-nut-admin": {
|
||||
"description": "Grant admin UCI access for luci-app-nut",
|
||||
"write": {
|
||||
"uci": [ "nut_cgi", "nut_monitor", "nut_server" ]
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user