luci-app-nut: improve confusing driver option text
authorDaniel F. Dickinson <redacted>
Sun, 25 Jan 2026 10:39:07 +0000 (05:39 -0500)
committerPaul Donald <redacted>
Mon, 26 Jan 2026 03:09:10 +0000 (04:09 +0100)
Some driver options were noted as '(Display)' even though they are
added to the `ups.conf` configuration file (this is because the drivers
use them in the messages they emit). Since not all drivers support these
options and it is quite a large job to manage the which options apply
to which of the many drivers for nut, for now we add informational
text to inform the user of the situation.

Discussed in #8200 mfr, model fields not valid on usbhid-ups driver
and #8241.

As noted in the latter's comments, more than one driver uses the
problematic options, so the solution is not as simple as hiding the
options for any driver except that one.

Signed-off-by: Daniel F. Dickinson <redacted>
41 files changed:
applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js
applications/luci-app-nut/po/ar/nut.po
applications/luci-app-nut/po/bg/nut.po
applications/luci-app-nut/po/bn_BD/nut.po
applications/luci-app-nut/po/ca/nut.po
applications/luci-app-nut/po/cs/nut.po
applications/luci-app-nut/po/da/nut.po
applications/luci-app-nut/po/de/nut.po
applications/luci-app-nut/po/el/nut.po
applications/luci-app-nut/po/es/nut.po
applications/luci-app-nut/po/et/nut.po
applications/luci-app-nut/po/fi/nut.po
applications/luci-app-nut/po/fr/nut.po
applications/luci-app-nut/po/ga/nut.po
applications/luci-app-nut/po/he/nut.po
applications/luci-app-nut/po/hi/nut.po
applications/luci-app-nut/po/hu/nut.po
applications/luci-app-nut/po/it/nut.po
applications/luci-app-nut/po/ja/nut.po
applications/luci-app-nut/po/ko/nut.po
applications/luci-app-nut/po/lt/nut.po
applications/luci-app-nut/po/mr/nut.po
applications/luci-app-nut/po/ms/nut.po
applications/luci-app-nut/po/nb_NO/nut.po
applications/luci-app-nut/po/nl/nut.po
applications/luci-app-nut/po/pl/nut.po
applications/luci-app-nut/po/pt/nut.po
applications/luci-app-nut/po/pt_BR/nut.po
applications/luci-app-nut/po/ro/nut.po
applications/luci-app-nut/po/ru/nut.po
applications/luci-app-nut/po/sgs/nut.po
applications/luci-app-nut/po/sk/nut.po
applications/luci-app-nut/po/sr/nut.po
applications/luci-app-nut/po/sv/nut.po
applications/luci-app-nut/po/ta/nut.po
applications/luci-app-nut/po/templates/nut.pot
applications/luci-app-nut/po/tr/nut.po
applications/luci-app-nut/po/uk/nut.po
applications/luci-app-nut/po/vi/nut.po
applications/luci-app-nut/po/zh_Hans/nut.po
applications/luci-app-nut/po/zh_Hant/nut.po

index 48281d3234131348c77a988f99dccf894b477900..e4229b5c19cd22b2187325be6e249c82bc37f17e 100644 (file)
@@ -154,7 +154,7 @@ return view.extend({
                o.optional = true;
                o.placeholder = 'private';
 
-               o = s.option(form.Value, 'desc', _('Description (Display)'));
+               o = s.option(form.Value, 'desc', _('Description (Display)'), _('This is passed through to the driver, so make sure your driver supports this option'));
                o.optional = true;
 
                o = s.option(form.ListValue, 'driver', _('Driver'),
@@ -190,10 +190,10 @@ return view.extend({
                o.datatype = 'uinteger';
                o.placeholder = 45;
 
-               o = s.option(form.Value, 'mfr', _('Manufacturer (Display)'));
+               o = s.option(form.Value, 'mfr', _('Manufacturer (Display)'), _('This is passed through to the driver, so make sure your driver supports this option'));
                o.optional = true;
 
-               o = s.option(form.Value, 'model', _('Model (Display)'));
+               o = s.option(form.Value, 'model', _('Model (Display)'), _('This is passed through to the driver, so make sure your driver supports this option'));
                o.optional = true;
 
                o = s.option(form.Flag, 'nolock', _('No Lock'), _('Do not lock port when starting driver'));
@@ -244,7 +244,7 @@ return view.extend({
                o = s.option(form.Value, 'sdtime', _('Additional Shutdown Time(s)'));
                o.optional = true;
 
-               o = s.option(form.Value, 'serial', _('Serial Number'));
+               o = s.option(form.Value, 'serial', _('Serial Number'),  _('This is passed through to the driver, so make sure your driver supports this option'));
                o.optional = true;
 
                o = s.option(form.Value, 'snmp_retries', _('SNMP retries'));
index 4d6ceea2a092b212ff8f3b558857177bdfdff591..8728d7ed1be1ec1ddb3fc3616833346e00d600db 100644 (file)
@@ -507,6 +507,15 @@ msgstr ""
 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:157
+#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:193
+#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:196
+#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:247
+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:125
 msgid "Time in seconds between driver start retry attempts."
 msgstr ""
index 215fdcad4ba1b45b171f35b5d0539b10e41a7810..8449f539d439f91e2e33a1660f4a2a33840bed45 100644 (file)
@@ -510,6 +510,15 @@ msgstr ""
 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:157
+#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:193
+#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:196
+#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:247
+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:125
 msgid "Time in seconds between driver start retry attempts."
 msgstr ""
index 37c82c1812cd03ac2c6de49df6f019d906911987..28b80d6240f30df91b54e6cc745fd3a847a7c81c 100644 (file)
@@ -506,6 +506,15 @@ msgstr ""
 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:157
+#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:193
+#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:196
+#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:247
+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:125
 msgid "Time in seconds between driver start retry attempts."
 msgstr ""
index 0be316de2d490960b34fc318d85536485603d339..30fc389b2ab8b23a8cb19ca1933698274368bd83 100644 (file)
@@ -506,6 +506,15 @@ msgstr ""
 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:157
+#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:193
+#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:196
+#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:247
+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:125
 msgid "Time in seconds between driver start retry attempts."
 msgstr ""
index 566f8298936d82f1a4df615a3e4b9f71b40d7824..8c26b0fd2b8f59f4dae3242e084bddca2c9fbe2b 100644 (file)
@@ -513,6 +513,15 @@ 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:157
+#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:193
+#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:196
+#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:247
+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:125
 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."
index a8d9b1a270f4df4ef7aaf5e7d98e1f2e843ea103..320cf69a67a8ebfc242960c96be9706c5b788b0e 100644 (file)
@@ -510,6 +510,15 @@ msgstr "Synkron kommunikation"
 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:157
+#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:193
+#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:196
+#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:247
+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:125
 msgid "Time in seconds between driver start retry attempts."
 msgstr "Tid i sekunder mellem forsøg på at genstarte driveren igen."
index b4f5bfd4d7cbe821b85d5af1b639f1821ae4f6ad..392977f5218178f259194e174c9ba0e6ff6040ea 100644 (file)
@@ -515,6 +515,15 @@ msgid "The name of this section will be used as UPS name elsewhere"
 msgstr ""
 "Der Name dieses Abschnitts wird an anderer Stelle als UPS-Name verwendet"
 
+#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:157
+#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:193
+#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:196
+#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:247
+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:125
 msgid "Time in seconds between driver start retry attempts."
 msgstr ""
index 907cd0f75a6641b7765038d6cf1e13d90c3bd494..89f2e8d30d914cdd59713e27cba6047b21ec97a7 100644 (file)
@@ -506,6 +506,15 @@ msgstr ""
 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:157
+#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:193
+#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:196
+#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:247
+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:125
 msgid "Time in seconds between driver start retry attempts."
 msgstr ""
index 2297169ffe8eca013c4c3ac722cb78034db561e2..ede96522c56ca334fb6199e24d436110b9ce6bc0 100644 (file)
@@ -517,6 +517,15 @@ msgstr "Comunicación sincrónica"
 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:157
+#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:193
+#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:196
+#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:247
+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:125
 msgid "Time in seconds between driver start retry attempts."
 msgstr ""
index 992de4ab86d1f5f380bf3254552808f365aed7ff..58fb7c2e5317dfa4db12d1cafba23367f89b3b52 100644 (file)
@@ -501,6 +501,15 @@ msgstr ""
 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:157
+#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:193
+#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:196
+#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:247
+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:125
 msgid "Time in seconds between driver start retry attempts."
 msgstr ""
index 84af8f38dd006b9701b499fbabd6f8c91db46373..4dd2101f03fcc73d283cffefde066093cbe0f159 100644 (file)
@@ -506,6 +506,15 @@ msgstr ""
 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:157
+#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:193
+#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:196
+#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:247
+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:125
 msgid "Time in seconds between driver start retry attempts."
 msgstr ""
index 3ce6dd6bbff38da8da76a27a78da275e12d8d417..bacdc764a2bc93d5dcee4e9ea09e7bac430926f6 100644 (file)
@@ -514,6 +514,15 @@ msgstr "Communication synchrone"
 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:157
+#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:193
+#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:196
+#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:247
+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:125
 msgid "Time in seconds between driver start retry attempts."
 msgstr "Temps en secondes entre les réessais de démarrage du pilote."
index 087374730a2161b2a78d6ae44410dbc6c23e7166..84d7a02a4631e0b8f75b90642ebd3a5e7402e5b5 100644 (file)
@@ -510,6 +510,15 @@ msgstr "Cumarsáid Sioncrónach"
 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:157
+#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:193
+#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:196
+#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:247
+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:125
 msgid "Time in seconds between driver start retry attempts."
 msgstr "Am i soicindí idir iarrachtaí arís a thosú le tiománaí."
index 9d3071c0c53c4b2f65ad03fd593648a022ddda45..14f96bf6fdd5850a2b297d8a1545ab65eb9ada4c 100644 (file)
@@ -507,6 +507,15 @@ msgstr ""
 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:157
+#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:193
+#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:196
+#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:247
+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:125
 msgid "Time in seconds between driver start retry attempts."
 msgstr ""
index 75e9b21a163719429f8e226c74dc904aae28fd9b..70ae007bded99413f06834a853f1073a0bb96637 100644 (file)
@@ -506,6 +506,15 @@ msgstr ""
 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:157
+#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:193
+#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:196
+#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:247
+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:125
 msgid "Time in seconds between driver start retry attempts."
 msgstr ""
index 0d25cd15200c5455827d5130a99a23ecee242119..264c964c6c6903c17754f2aafc911d80c3633c1a 100644 (file)
@@ -517,6 +517,15 @@ msgstr "Egyidejű kommunikáció"
 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:157
+#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:193
+#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:196
+#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:247
+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:125
 msgid "Time in seconds between driver start retry attempts."
 msgstr ""
index 2f550ad1708d7f5707018bc21d1c409c4aeaa26f..43fd2cde1afbdf3d8773446063b22cde4021b58b 100644 (file)
@@ -508,6 +508,15 @@ msgstr ""
 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:157
+#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:193
+#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:196
+#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:247
+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:125
 msgid "Time in seconds between driver start retry attempts."
 msgstr ""
index f06aaea830c133b6a8cac295bd75be50d8dafdf2..dcbd84cba727319800994f829cf9d1d88b7bb5d5 100644 (file)
@@ -506,6 +506,15 @@ msgstr ""
 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:157
+#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:193
+#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:196
+#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:247
+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:125
 msgid "Time in seconds between driver start retry attempts."
 msgstr ""
index dbeb54abcb42caa297750d01bf6be7f902edb061..db03d3c9c93a1b6258ed41f8f27255d9b85dae5a 100644 (file)
@@ -508,6 +508,15 @@ msgstr ""
 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:157
+#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:193
+#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:196
+#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:247
+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:125
 msgid "Time in seconds between driver start retry attempts."
 msgstr ""
index f6e7e51fa64ae9a203243dc687678f16f034d575..a600a971432d48590cc9cc0130108ce63979c36b 100644 (file)
@@ -533,6 +533,15 @@ 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:157
+#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:193
+#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:196
+#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:247
+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:125
 msgid "Time in seconds between driver start retry attempts."
 msgstr ""
index 255c5d89929373f1dbac10cc56443d5fad17bfa5..7a4f671815d67e25ea94936e56761bdb482e768b 100644 (file)
@@ -506,6 +506,15 @@ msgstr ""
 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:157
+#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:193
+#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:196
+#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:247
+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:125
 msgid "Time in seconds between driver start retry attempts."
 msgstr ""
index 712ea6992d9327ee229c4f1c2e7fcc267cf416c9..d00f689a5c8289d46292bd54363f0b5fa708ac76 100644 (file)
@@ -506,6 +506,15 @@ msgstr ""
 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:157
+#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:193
+#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:196
+#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:247
+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:125
 msgid "Time in seconds between driver start retry attempts."
 msgstr ""
index b8330375bb92f85e76324fd5728a641f53103f12..146f537b0b025ccafe6d801ae1cffc33b2b2c99b 100644 (file)
@@ -506,6 +506,15 @@ msgstr ""
 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:157
+#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:193
+#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:196
+#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:247
+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:125
 msgid "Time in seconds between driver start retry attempts."
 msgstr ""
index 9c261d9484da86026e5718306c66b5ba5a3cd933..ad4061d59e67fcc1c32c181e87e8f70ebf65a9d5 100644 (file)
@@ -506,6 +506,15 @@ msgstr ""
 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:157
+#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:193
+#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:196
+#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:247
+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:125
 msgid "Time in seconds between driver start retry attempts."
 msgstr ""
index eb2d7ba8bf542392f086e4d039e34c00eb3c6412..4d2cc88b85d987e337d93f0d7a576dd4a95cbf16 100644 (file)
@@ -516,6 +516,15 @@ msgstr "Komunikacja synchroniczna"
 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:157
+#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:193
+#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:196
+#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:247
+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:125
 msgid "Time in seconds between driver start retry attempts."
 msgstr "Czas w sekundach między ponownymi próbami uruchomienia sterownika."
index 1766523af8f1fc989b86b41f68138a2cff06fdb0..d1b5e4f900a90d119e615d108ef3b1402195881e 100644 (file)
@@ -516,6 +516,15 @@ msgstr "Comunicação Síncrona"
 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:157
+#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:193
+#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:196
+#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:247
+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:125
 msgid "Time in seconds between driver start retry attempts."
 msgstr "Tempo em segundos entre as tentativas de reinício do driver."
index 281ce89e08e0314ee8bca4fb2c95719b4b2e1e1a..2df90bce8e902ed415ed2b704831630a2c510d06 100644 (file)
@@ -516,6 +516,15 @@ msgstr "Comunicação Síncrona"
 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:157
+#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:193
+#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:196
+#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:247
+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:125
 msgid "Time in seconds between driver start retry attempts."
 msgstr "Tempo em segundos entre as tentativas de reinício do driver."
index 2d6fdfeeff9097d12f9df33351a98969ee1c7b74..1cc077d65e0bac90e610a76c07d2fc53692f9ed9 100644 (file)
@@ -516,6 +516,15 @@ msgstr "Comunicare sincronă"
 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:157
+#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:193
+#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:196
+#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:247
+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:125
 msgid "Time in seconds between driver start retry attempts."
 msgstr ""
index 8240280811b4f260be93d56277d0bebba75290b6..d61d46a78e29a53e04be89a9fb25fc9b9d7802ec 100644 (file)
@@ -514,6 +514,15 @@ msgstr ""
 "Название этого раздела будет использоваться в качестве названия ИБП в других "
 "местах"
 
+#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:157
+#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:193
+#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:196
+#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:247
+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:125
 msgid "Time in seconds between driver start retry attempts."
 msgstr "Время в секундах между повторными попытками запуска драйвера."
index b3747acec0a4c10e1f7fecc2e3b9de77e4968bd5..d821dbaeffb9185bda957e42a2c4ed2cb2b6a942 100644 (file)
@@ -506,6 +506,15 @@ msgstr ""
 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:157
+#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:193
+#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:196
+#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:247
+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:125
 msgid "Time in seconds between driver start retry attempts."
 msgstr ""
index 59bb81605120a043829524f5c258235f60917084..f0b1504cbc97f13d7494b2d1d1ac9eb8ffafa474 100644 (file)
@@ -506,6 +506,15 @@ msgstr ""
 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:157
+#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:193
+#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:196
+#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:247
+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:125
 msgid "Time in seconds between driver start retry attempts."
 msgstr ""
index e722aba28e40edc57eea3af527695fa78aca7545..819932ea92e53459776210bb482f5bb137e402ae 100644 (file)
@@ -507,6 +507,15 @@ msgstr ""
 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:157
+#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:193
+#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:196
+#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:247
+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:125
 msgid "Time in seconds between driver start retry attempts."
 msgstr ""
index 0a3449846b2fbc0f29f83500f227672e0b8754a2..45d589445bc057dea7b8fca627b95051e427761f 100644 (file)
@@ -508,6 +508,15 @@ msgstr ""
 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:157
+#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:193
+#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:196
+#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:247
+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:125
 msgid "Time in seconds between driver start retry attempts."
 msgstr ""
index b66df6c84bf9563b37e3c924873b8bdc08ca7ab0..5e7f8014e4e0262ae38f06efae2f595096c7fb05 100644 (file)
@@ -507,6 +507,15 @@ msgstr "ஒத்திசைவான தொடர்பு"
 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:157
+#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:193
+#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:196
+#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:247
+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:125
 msgid "Time in seconds between driver start retry attempts."
 msgstr "ஓட்டுநருக்கு இடையிலான விநாடிகளில் நேரம் மீண்டும் முயற்சிகளைத் தொடங்குகிறது."
index 06d88fd0f6a1ef1fef4aca6db7176d6ff5fe3a05..aa5c7ba9a2aba9d6be7ba856eb728a026e782ee8 100644 (file)
@@ -495,6 +495,15 @@ msgstr ""
 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:157
+#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:193
+#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:196
+#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:247
+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:125
 msgid "Time in seconds between driver start retry attempts."
 msgstr ""
index 1cbc5d94ed15a9a64e822abf504d6c5d9e457d57..b32857c07323908340ce8830a7d1e2f7c67d3170 100644 (file)
@@ -512,6 +512,15 @@ msgstr "Senkronize İletişim"
 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:157
+#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:193
+#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:196
+#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:247
+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:125
 msgid "Time in seconds between driver start retry attempts."
 msgstr ""
index a103e720d086cbee2fa752718c4ffd19ce149287..453837c0ab6fcef84f3b157405921c1ecea1eb4e 100644 (file)
@@ -510,6 +510,15 @@ msgstr "Синхронна комунікація"
 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:157
+#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:193
+#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:196
+#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:247
+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:125
 msgid "Time in seconds between driver start retry attempts."
 msgstr "Час у секундах між спробами повторного запуску драйвера."
index 18b4a87f570d040f29409540430874123c0ef09a..2dcf4df9a8261b02ca832d1aca390de1bba27ea9 100644 (file)
@@ -509,6 +509,15 @@ msgstr "Giao tiếp đồng bộ"
 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:157
+#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:193
+#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:196
+#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:247
+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:125
 msgid "Time in seconds between driver start retry attempts."
 msgstr ""
index d30bd86e16858756005a38f298059e403d6d5bcf..eb6a6a89d0f2fb79e8ab9cde198154aecb269ddb 100644 (file)
@@ -511,6 +511,15 @@ msgstr "同步通信"
 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:157
+#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:193
+#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:196
+#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:247
+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:125
 msgid "Time in seconds between driver start retry attempts."
 msgstr "驱动程序重试之间的间隔(秒)。"
index 0f59fa931f1913dd113712585ce204c76900a557..c09820d66e8dcf4514d16bff39883951dd6a6347 100644 (file)
@@ -511,6 +511,15 @@ msgstr "同步通訊"
 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:157
+#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:193
+#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:196
+#: applications/luci-app-nut/htdocs/luci-static/resources/view/nut/nut_server.js:247
+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:125
 msgid "Time in seconds between driver start retry attempts."
 msgstr "驅動程式重試之間的間隔(秒)。"
git clone https://git.99rst.org/PROJECT