luci-app-p910nd: convert to JS 6907/head
authorPaul Donald <newtwen@gmail.com>
Mon, 12 Feb 2024 15:07:58 +0000 (16:07 +0100)
committerPaul Donald <newtwen@gmail.com>
Mon, 11 Mar 2024 15:10:46 +0000 (16:10 +0100)
Simple p910nd printer management, and some level of automation that
detects whether the typically necessary kmods are installed, and if not
provides quick links to install those.

Tested on: 22.03.6, 23.05.2

Signed-off-by: Paul Donald <newtwen@gmail.com>
41 files changed:
applications/luci-app-p910nd/Makefile
applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js [new file with mode: 0644]
applications/luci-app-p910nd/luasrc/model/cbi/p910nd.lua [deleted file]
applications/luci-app-p910nd/po/ar/p910nd.po
applications/luci-app-p910nd/po/bg/p910nd.po
applications/luci-app-p910nd/po/bn_BD/p910nd.po
applications/luci-app-p910nd/po/ca/p910nd.po
applications/luci-app-p910nd/po/cs/p910nd.po
applications/luci-app-p910nd/po/da/p910nd.po
applications/luci-app-p910nd/po/de/p910nd.po
applications/luci-app-p910nd/po/el/p910nd.po
applications/luci-app-p910nd/po/en/p910nd.po
applications/luci-app-p910nd/po/es/p910nd.po
applications/luci-app-p910nd/po/fi/p910nd.po
applications/luci-app-p910nd/po/fr/p910nd.po
applications/luci-app-p910nd/po/he/p910nd.po
applications/luci-app-p910nd/po/hi/p910nd.po
applications/luci-app-p910nd/po/hu/p910nd.po
applications/luci-app-p910nd/po/it/p910nd.po
applications/luci-app-p910nd/po/ja/p910nd.po
applications/luci-app-p910nd/po/ko/p910nd.po
applications/luci-app-p910nd/po/lt/p910nd.po
applications/luci-app-p910nd/po/mr/p910nd.po
applications/luci-app-p910nd/po/ms/p910nd.po
applications/luci-app-p910nd/po/nb_NO/p910nd.po
applications/luci-app-p910nd/po/nl/p910nd.po
applications/luci-app-p910nd/po/pl/p910nd.po
applications/luci-app-p910nd/po/pt/p910nd.po
applications/luci-app-p910nd/po/pt_BR/p910nd.po
applications/luci-app-p910nd/po/ro/p910nd.po
applications/luci-app-p910nd/po/ru/p910nd.po
applications/luci-app-p910nd/po/sk/p910nd.po
applications/luci-app-p910nd/po/sv/p910nd.po
applications/luci-app-p910nd/po/templates/p910nd.pot
applications/luci-app-p910nd/po/tr/p910nd.po
applications/luci-app-p910nd/po/uk/p910nd.po
applications/luci-app-p910nd/po/vi/p910nd.po
applications/luci-app-p910nd/po/zh_Hans/p910nd.po
applications/luci-app-p910nd/po/zh_Hant/p910nd.po
applications/luci-app-p910nd/root/usr/share/luci/menu.d/luci-app-p910nd.json
applications/luci-app-p910nd/root/usr/share/rpcd/acl.d/luci-app-p910nd.json

index 4b33020cbd552322345ad448f1c189ec23ac1aa8..be3c7223a1ebc20b7c954d0bb77b1bcfb7872216 100644 (file)
@@ -1,5 +1,5 @@
 #
-# Copyright (C) 2008-2014 The LuCI Team <luci@lists.subsignal.org>
+# Copyright (C) 2024 Paul Donald <newtwen@gmail.com>
 #
 # This is free software, licensed under the Apache License, Version 2.0 .
 #
diff --git a/applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js b/applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js
new file mode 100644 (file)
index 0000000..df06232
--- /dev/null
@@ -0,0 +1,266 @@
+//
+// Copyright (c) 2024 Paul Donald <newtwen@gmail.com>
+//
+
+'use strict';
+'require fs';
+'require form';
+'require uci';
+'require ui';
+'require view';
+'require network';
+
+var pkg = {
+       get Name() { return 'p910nd'; },
+       get Description() { return _('Port 910n print daemon'); },
+       get URL() { return 'https://openwrt.org/packages/pkgdata/' + pkg.Name + '/'; }
+};
+
+return view.extend({
+
+       option_install_kmod_lp: function() {    
+               window.open(L.url('admin/system/opkg') +
+                       '?query=kmod-lp', '_blank', 'noopener');
+       },
+       option_install_kmod_usb: function() {   
+               window.open(L.url('admin/system/opkg') +
+                       '?query=kmod-usb-printer', '_blank', 'noopener');
+       },
+
+       load: function () {
+
+               return Promise.all([
+                       network.getDevices(),
+                       // data[0]
+
+                       //      # find -L /dev -maxdepth 3 -type c -name lp[0-9]
+                       fs.exec_direct('/usr/bin/find', [ '-L', '/dev', '-maxdepth', '3', '-type', 'c', '-name', 'lp[0-9]' ]).catch(function(err) {
+                               ui.addNotification(null, E('p', {}, _('Error executing "find" command: ' + err.message)));
+                                       return '';
+                       }).then(data => {
+                               if(data)
+                                       return data.trim().split('\n').sort();
+                               else
+                                       return null;
+                       }),
+                       // data[1]
+
+                       fs.exec_direct('/usr/libexec/opkg-call', [ 'list-installed' ], 'text').catch(function(err) {
+                               ui.addNotification(null, E('p', {}, _('Error calling "opkg list-installed": ' + err.message)));
+                               console.log(err);
+                                       return '';
+                       }).then(data => {return data.trim().split('\n').sort().filter((string) => string.includes(': kmod-'));}),
+                       // data[2]
+
+               ]);
+       },
+
+       render: function (data) {
+
+               var m, d, s, o;
+
+               const have_kmod_lp = data[2] ? data[2].find((string) => string.includes('kmod-lp')) ? true: false : false;
+               const have_kmod_usb_printer = data[2] ? data[2].find((string) => string.includes('kmod-usb-printer')) ? true: false : false;
+               
+               m = new form.Map(pkg.Name, pkg.Description, _('map ports 9100-9109 to local printers.'));
+               m.readonly = !L.hasViewPermission();
+
+               if ( !have_kmod_usb_printer || !have_kmod_lp ) {                        
+                       s = m.section(form.NamedSection, 'kmods', 'kmods', _(),
+                               _('One of these kernel modules is needed for p910nd to find your printer.') + '<br />' +
+                               _('It is safe to install both, even if only one is needed.')
+                               );
+                       s.render = L.bind(function(view /*, ... */) {
+                               return form.NamedSection.prototype.render.apply(this, this.varargs(arguments, 1))
+                                       .then(L.bind(function(node) {
+                                               node.appendChild(E('div', { 'class': 'control-group' }, [
+                                                       E('button', {
+                                                               'class': 'btn cbi-button-action',
+                                                               'click': ui.createHandlerFn(view, 'option_install_kmod_lp', this.map),
+                                                               'disabled': have_kmod_lp || null,
+                                                               'title': _('Parallel port line printer device support'),
+                                                       }, [ 'kmod-lp' ]),
+                                                       ' ',
+                                                       E('button', {
+                                                               'class': 'btn cbi-button-action',
+                                                               'click': ui.createHandlerFn(view, 'option_install_kmod_usb', this.map),
+                                                               'disabled': have_kmod_usb_printer || null,
+                                                               'title': _('For USB connected printers'),
+                                                       }, [ 'kmod-usb-printer' ])
+                                               ]));
+                                               node.appendChild(E('br'));
+                                               node.appendChild(E('br'));
+                                               return node;
+                                       }, this));
+                       }, s, this);
+               }
+
+               s = m.section(form.GridSection, pkg.Name);
+               s.addremove = true;
+               s.nodescriptions = true;
+               s.anonymous = true;
+               s.sortable = true;
+               s.rowcolors = true;
+               s.addbtntitle = _('Add printer config');
+               s.modaltitle = _('Settings');
+
+               o = s.option(form.Flag, 'enabled', _('Enabled'));
+               o.default = true;
+
+               o = s.option(form.Value, 'device', _('Device'),
+                       _('Note: character device assignment can change upon reboot/reconnect with multiple USB devices.') + '<br />' +
+                       _('Connected %s devices show in this list.').format('<code>lpX</code>'));
+               o.placeholder = '/dev/usb/lp*';
+               if (data[1]) {
+                       for (const chardev of data[1]) {
+                               o.value(chardev);
+                       }
+               }
+               o.rmempty = true;
+
+               o = s.option(form.ListValue, 'port', _('Port'),
+                       _('Local TCP listen port for this printer.') + '<br />' +
+                       _('Be aware: %s also listens on port 9100.').format('<code>node_exporter</code>'));
+               for (var i = 0; i < 10; i++) {
+                       o.value(i, 9100+i);
+               }
+               o.rmempty = true;
+
+               o = s.option(form.Value, 'bind', _('Listen IP'),
+                       _('Listen on a specific IP.'));
+               o.datatype = 'ipaddr("nomask")';
+               o.placeholder = _('any');
+               var net_devices = data[0];
+               net_devices.forEach(net_dev => {
+                       net_dev.getIPAddrs().forEach(addr => o.value(addr.split('/')[0], E([], [addr.split('/')[0], ' (', E('strong', {}, net_dev.getName()), ')'])));
+                       net_dev.getIP6Addrs().forEach(addr => o.value(addr.split('/')[0], E([], [addr.split('/')[0], ' (', E('strong', {}, net_dev.getName()), ')'])));
+               });
+
+               o = s.option(form.Flag, 'bidirectional',
+                       _('Bidirectional mode'),
+                       _('Whether this print port is bi-directional.')  + '<br />' +
+                       _('Note: USB hotplug correctly detects this.'));
+               o.modalonly = true;
+
+               o = s.option(form.Flag, 'runas_root', _('Run as root'),
+                       _('Overrides default of %s.').format('<code>user p910nd, group lp</code>'));
+               o.modalonly = true;
+
+               o = s.option(form.Flag, 'mdns', 'mDNS',
+                       _('Whether to advertise this printer via %s.', 'mDNS/Bonjour/ZeroConf').format('mDNS/Bonjour/ZeroConf') + '<br />' +
+                       _('Note: %s only advertises one (the first) printer on this host.', 'mDNS').format('mDNS') + '<br />' +
+                       _('Note: USB hotplug attempts to provide some of the values below.'));
+
+               /* See https://developer.apple.com/bonjour/printing-specification/ ( -> bonjourprinting-1.2.1.pdf ) for
+                * a description of the Bonjour fields a la Apple.
+                */
+               o = s.option(form.Value, 'mdns_ty', 'mdns_ty',
+                       _('The %s type element.').format('mDNS') + '<br />' +
+                       _('User readable description of maker and model.'));
+               o.placeholder = 'HP Color LaserJet CP2025dn';
+               o.rmempty = true;
+               o.optional = true;
+               o.depends({mdns: '1'});
+
+               o = s.option(form.Value, 'mdns_note', 'mdns_note',
+                       _('Serves as Location in Apple standards.'));
+               o.placeholder = _('By the router');
+               o.rmempty = true;
+               o.optional = true;
+               o.modalonly = true;
+               o.depends({mdns: '1'});
+
+               o = s.option(form.Value, 'mdns_product', 'mdns_product',
+                       _('The %s value.').format('<code>IEEE1284 Product</code>') + '<br />' +
+                       _('Note: must be %s.').format('<code>(</code>' + _('enclosed within parentheses') + '<code>)</code>'));
+               o.placeholder = '(Color LaserJet CP2025dn)';
+               o.rmempty = true;
+               o.optional = true;
+               o.modalonly = true;
+               o.depends({mdns: '1'});
+               o.write = function(section_id, value) {
+                       if (value){
+                               if (!value.startsWith('('))
+                                       value = '(' + value;
+                               if (!value.endsWith(')'))
+                                       value = value + ')';
+                               if (value === '()')
+                                       return;
+                               uci.set(pkg.Name, section_id, 'mdns_product', value);
+                       }
+               }
+
+               const string_array_convert = function(string_or_arr, uppercase=false) {
+                       if (string_or_arr && !Array.isArray(string_or_arr)) {                           
+                               return [...new Set(string_or_arr.split(',')
+                               .map(element => uppercase? element.toUpperCase().trim(): element.trim() )
+                               .filter(el => el!='')
+                               .sort() ) ];
+                       }
+                       if (string_or_arr && Array.isArray(string_or_arr)) {
+                               return string_or_arr
+                               .map(element => uppercase? element.toUpperCase().trim(): element.trim() )
+                               .filter(el => el!='')
+                               .sort()
+                               .join(',');
+                       }
+               };
+
+               o = s.option(form.Value, 'mdns_mfg', 'mdns_mfg',
+                       _('The %s value.').format('<code>IEEE1284 MANUFACTURER/MFG</code>'));
+               o.placeholder = _('Manufacturer');
+               const mfrs = string_array_convert('Apple,Brother,Canon,Deli,Epson,\
+               Hewlett-Packard,HP,Hitachi,Kyocera,Lexmark,OKI,Ricoh,Samsung,Xerox,\
+               Xprinter,Zebra');
+               for(var mfr in mfrs){
+                       o.value(mfrs[mfr]);
+               }
+
+               o.rmempty = true;
+               o.optional = true;
+               o.modalonly = true;
+               o.depends({mdns: '1'});
+
+               o = s.option(form.Value, 'mdns_mdl', 'mdns_mdl',
+                       _('The %s value.').format('<code>IEEE1284 MODEL/MDL</code>'));
+               o.placeholder = 'CP2025dn';
+               o.rmempty = true;
+               o.optional = true;
+               o.modalonly = true;
+               o.depends({mdns: '1'});
+
+               o = s.option(form.DynamicList, 'mdns_cmd', 'mdns_cmd',
+                       _('The %s value.').format('<code>IEEE1284 CMD/COMMAND SET</code>') + '<br />' +
+                       _('Some examples: ') +
+                       '<code>ACL</code>, <code>ESC/P</code>, <code>PCL</code>, <code>PDF17</code>,' +
+                       '<code>PJL</code>, <code>POSTSCRIPT</code>, <code>PS</code>' +
+                       '<br />'+
+                       _('Note: Set only CMD languages that your printer understands.'));
+
+               o.cfgvalue = function(section_id) {
+                       return string_array_convert(uci.get(pkg.Name, section_id, 'mdns_cmd'));
+               }
+               o.rmempty = true;
+               o.optional = true;
+               o.modalonly = true;
+               o.modalonly = true;
+               o.depends({mdns: '1'});
+               o.write = function(section_id, value) {
+                       uci.set(pkg.Name, section_id, 'mdns_cmd', string_array_convert(value));
+               }
+               const cmds = string_array_convert('ACL,BDC,BIDI-ECP,BSCCe,CAPT,CEZD,CPCA,CPCL,\
+               D4,D4PX,DESKJET,DOWNLOAD,DPL,DW-PCL,DYN,\
+               END4,EPL,EPSONFX,ESC/P,ESCPL2,EXT,FWV,GDI,HAPS,\
+               HBP,HBPL,HIPERMIP,IBMPPR,IPL,LIPSLX,MLC,\
+               PCL,PCL3,PCL3GUI,PCL5c,PCL5e,PCL6,PCLXL,\
+               PDF,PDF17,\
+               PJL,PML,\
+               POSTSCRIPT,PostScript Emulation,PS,\
+               PWG_RASTER,RASTER,RCS,URF,URP,XL,XPP,XPS,ZPL');
+               for(var cmd of cmds){
+                       o.value(cmd);
+               }
+
+               return Promise.all([m.render()]);
+       }
+});
diff --git a/applications/luci-app-p910nd/luasrc/model/cbi/p910nd.lua b/applications/luci-app-p910nd/luasrc/model/cbi/p910nd.lua
deleted file mode 100644 (file)
index 6a94db7..0000000
+++ /dev/null
@@ -1,48 +0,0 @@
--- Copyright 2008 Yanira <forum-2008@email.de>
--- Copyright 2012 Jo-Philipp Wich <jow@openwrt.org>
--- Licensed to the public under the Apache License 2.0.
-
-local uci = luci.model.uci.cursor_state()
-local net = require "luci.model.network"
-local m, s, p, b
-
-m = Map("p910nd", translate("p910nd - Printer server"),
-        translatef("First you have to install the packages to get support for USB (kmod-usb-printer) or parallel port (kmod-lp)."))
-
-net = net.init(m.uci)
-
-s = m:section(TypedSection, "p910nd", translate("Settings"))
-s.addremove = true
-s.anonymous = true
-
-s:option(Flag, "enabled", translate("enable"))
-
-s:option(Value, "device", translate("Device")).rmempty = true
-
-b = s:option(Value, "bind", translate("Interface"), translate("Specifies the interface to listen on."))
-b.template = "cbi/network_netlist"
-b.nocreate = true
-
-function b.cfgvalue(...)
-       local v = Value.cfgvalue(...)
-       if v then
-               return (net:get_status_by_address(v))
-       end
-end
-
-function b.write(self, section, value)
-       local n = net:get_network(value)
-       if n and n:ipaddr() then
-               Value.write(self, section, n:ipaddr())
-       end
-end
-
-p = s:option(ListValue, "port", translate("Port"), translate("TCP listener port."))
-p.rmempty = true
-for i=0,9 do
-       p:value(i, 9100+i)
-end
-
-s:option(Flag, "bidirectional", translate("Bidirectional mode"))
-
-return m
index 94d3ea9b2eccef5215e0a9dcdc66b7790b3c4217..711d3c5f3984deb1e2a92fb13e6b2b644b8736b4 100644 (file)
@@ -15,52 +15,170 @@ msgstr ""
 "&& n%100<=10 ? 3 : n%100>=11 ? 4 : 5;\n"
 "X-Generator: Weblate 4.5.1\n"
 
-#: applications/luci-app-p910nd/luasrc/model/cbi/p910nd.lua:46
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:104
+msgid "Add printer config"
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:123
+msgid "Be aware: %s also listens on port 9100."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:140
 msgid "Bidirectional mode"
 msgstr ""
 
-#: applications/luci-app-p910nd/luasrc/model/cbi/p910nd.lua:20
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:167
+msgid "By the router"
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:112
+msgid "Connected %s devices show in this list."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:110
 msgid "Device"
 msgstr "جهاز"
 
-#: applications/luci-app-p910nd/luasrc/model/cbi/p910nd.lua:10
-msgid ""
-"First you have to install the packages to get support for USB (kmod-usb-"
-"printer) or parallel port (kmod-lp)."
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:107
+msgid "Enabled"
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:49
+msgid "Error calling \"opkg list-installed\":"
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:38
+msgid "Error executing \"find\" command:"
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:88
+msgid "For USB connected printers"
 msgstr ""
 
 #: applications/luci-app-p910nd/root/usr/share/rpcd/acl.d/luci-app-p910nd.json:3
 msgid "Grant UCI access for luci-app-p910nd"
 msgstr ""
 
-#: applications/luci-app-p910nd/luasrc/model/cbi/p910nd.lua:22
-msgid "Interface"
-msgstr "واجهه"
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:71
+msgid "It is safe to install both, even if only one is needed."
+msgstr ""
 
-#: applications/luci-app-p910nd/luasrc/model/cbi/p910nd.lua:40
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:129
+msgid "Listen IP"
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:130
+msgid "Listen on a specific IP."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:122
+msgid "Local TCP listen port for this printer."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:204
+msgid "Manufacturer"
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:151
+msgctxt "mDNS"
+msgid "Note: %s only advertises one (the first) printer on this host."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:231
+msgid "Note: Set only CMD languages that your printer understands."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:152
+msgid "Note: USB hotplug attempts to provide some of the values below."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:142
+msgid "Note: USB hotplug correctly detects this."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:111
+msgid ""
+"Note: character device assignment can change upon reboot/reconnect with "
+"multiple USB devices."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:175
+msgid "Note: must be %s."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:70
+msgid "One of these kernel modules is needed for p910nd to find your printer."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:146
+msgid "Overrides default of %s."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:81
+msgid "Parallel port line printer device support"
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:121
 msgid "Port"
 msgstr "المنفذ"
 
-#: applications/luci-app-p910nd/luasrc/model/cbi/p910nd.lua:14
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:15
+msgid "Port 910n print daemon"
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:145
+msgid "Run as root"
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:166
+msgid "Serves as Location in Apple standards."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:105
 msgid "Settings"
 msgstr "إعدادات"
 
-#: applications/luci-app-p910nd/luasrc/model/cbi/p910nd.lua:22
-msgid "Specifies the interface to listen on."
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:227
+msgid "Some examples:"
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:158
+msgid "The %s type element."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:174
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:203
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:218
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:226
+msgid "The %s value."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:159
+msgid "User readable description of maker and model."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:141
+msgid "Whether this print port is bi-directional."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:150
+msgctxt "mDNS/Bonjour/ZeroConf"
+msgid "Whether to advertise this printer via %s."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:132
+msgid "any"
 msgstr ""
 
-#: applications/luci-app-p910nd/luasrc/model/cbi/p910nd.lua:40
-msgid "TCP listener port."
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:175
+msgid "enclosed within parentheses"
 msgstr ""
 
-#: applications/luci-app-p910nd/luasrc/model/cbi/p910nd.lua:18
-msgid "enable"
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:65
+msgid "map ports 9100-9109 to local printers."
 msgstr ""
 
-#: applications/luci-app-p910nd/luasrc/model/cbi/p910nd.lua:9
 #: applications/luci-app-p910nd/root/usr/share/luci/menu.d/luci-app-p910nd.json:3
 msgid "p910nd - Printer server"
 msgstr ""
 
-#~ msgid "p910nd listens on port 910+N. E.g. 9100 for the first printer."
-#~ msgstr "p910nd listens on port 910+N. E.g. 9100 for the first printer."
index 6eb9cf312672d02dc1ad11c9a6ac76223319081b..03e8d3401e60572cd80c85ef0832d5061a631835 100644 (file)
@@ -14,18 +14,44 @@ msgstr ""
 "Plural-Forms: nplurals=2; plural=n != 1;\n"
 "X-Generator: Weblate 5.5-dev\n"
 
-#: applications/luci-app-p910nd/luasrc/model/cbi/p910nd.lua:46
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:104
+msgid "Add printer config"
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:123
+msgid "Be aware: %s also listens on port 9100."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:140
 msgid "Bidirectional mode"
 msgstr "Двупосочен режим"
 
-#: applications/luci-app-p910nd/luasrc/model/cbi/p910nd.lua:20
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:167
+msgid "By the router"
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:112
+msgid "Connected %s devices show in this list."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:110
 msgid "Device"
 msgstr "Устройство"
 
-#: applications/luci-app-p910nd/luasrc/model/cbi/p910nd.lua:10
-msgid ""
-"First you have to install the packages to get support for USB (kmod-usb-"
-"printer) or parallel port (kmod-lp)."
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:107
+msgid "Enabled"
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:49
+msgid "Error calling \"opkg list-installed\":"
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:38
+msgid "Error executing \"find\" command:"
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:88
+msgid "For USB connected printers"
 msgstr ""
 "Първо трябва да инсталирате пакетите за поддръжка на USB (kmod-usb-printer) "
 "или паралелен порт (kmod-lp)."
@@ -34,34 +60,126 @@ msgstr ""
 msgid "Grant UCI access for luci-app-p910nd"
 msgstr ""
 
-#: applications/luci-app-p910nd/luasrc/model/cbi/p910nd.lua:22
-msgid "Interface"
-msgstr "Интерфейс"
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:71
+msgid "It is safe to install both, even if only one is needed."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:129
+msgid "Listen IP"
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:130
+msgid "Listen on a specific IP."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:122
+msgid "Local TCP listen port for this printer."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:204
+msgid "Manufacturer"
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:151
+msgctxt "mDNS"
+msgid "Note: %s only advertises one (the first) printer on this host."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:231
+msgid "Note: Set only CMD languages that your printer understands."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:152
+msgid "Note: USB hotplug attempts to provide some of the values below."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:142
+msgid "Note: USB hotplug correctly detects this."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:111
+msgid ""
+"Note: character device assignment can change upon reboot/reconnect with "
+"multiple USB devices."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:175
+msgid "Note: must be %s."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:70
+msgid "One of these kernel modules is needed for p910nd to find your printer."
+msgstr ""
 
-#: applications/luci-app-p910nd/luasrc/model/cbi/p910nd.lua:40
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:146
+msgid "Overrides default of %s."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:81
+msgid "Parallel port line printer device support"
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:121
 msgid "Port"
 msgstr "Порт"
 
-#: applications/luci-app-p910nd/luasrc/model/cbi/p910nd.lua:14
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:15
+msgid "Port 910n print daemon"
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:145
+msgid "Run as root"
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:166
+msgid "Serves as Location in Apple standards."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:105
 msgid "Settings"
 msgstr "Настройки"
 
-#: applications/luci-app-p910nd/luasrc/model/cbi/p910nd.lua:22
-msgid "Specifies the interface to listen on."
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:227
+msgid "Some examples:"
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:158
+msgid "The %s type element."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:174
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:203
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:218
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:226
+msgid "The %s value."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:159
+msgid "User readable description of maker and model."
 msgstr ""
 
-#: applications/luci-app-p910nd/luasrc/model/cbi/p910nd.lua:40
-msgid "TCP listener port."
-msgstr "TCP порт за слушане."
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:141
+msgid "Whether this print port is bi-directional."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:150
+msgctxt "mDNS/Bonjour/ZeroConf"
+msgid "Whether to advertise this printer via %s."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:132
+msgid "any"
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:175
+msgid "enclosed within parentheses"
+msgstr ""
 
-#: applications/luci-app-p910nd/luasrc/model/cbi/p910nd.lua:18
-msgid "enable"
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:65
+msgid "map ports 9100-9109 to local printers."
 msgstr ""
 
-#: applications/luci-app-p910nd/luasrc/model/cbi/p910nd.lua:9
 #: applications/luci-app-p910nd/root/usr/share/luci/menu.d/luci-app-p910nd.json:3
 msgid "p910nd - Printer server"
 msgstr "p910nd - Принтер сървър"
 
-#~ msgid "p910nd listens on port 910+N. E.g. 9100 for the first printer."
-#~ msgstr "p910nd listens on port 910+N. E.g. 9100 for the first printer."
index f11dd752d25813124ed0f8ed2ae73034819110a1..74f72b3e4c3b006fcf7a42e89aa09e35e27727eb 100644 (file)
@@ -14,52 +14,170 @@ msgstr ""
 "Plural-Forms: nplurals=2; plural=n != 1;\n"
 "X-Generator: Weblate 4.9-dev\n"
 
-#: applications/luci-app-p910nd/luasrc/model/cbi/p910nd.lua:46
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:104
+msgid "Add printer config"
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:123
+msgid "Be aware: %s also listens on port 9100."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:140
 msgid "Bidirectional mode"
 msgstr ""
 
-#: applications/luci-app-p910nd/luasrc/model/cbi/p910nd.lua:20
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:167
+msgid "By the router"
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:112
+msgid "Connected %s devices show in this list."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:110
 msgid "Device"
 msgstr "ডিভাইস"
 
-#: applications/luci-app-p910nd/luasrc/model/cbi/p910nd.lua:10
-msgid ""
-"First you have to install the packages to get support for USB (kmod-usb-"
-"printer) or parallel port (kmod-lp)."
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:107
+msgid "Enabled"
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:49
+msgid "Error calling \"opkg list-installed\":"
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:38
+msgid "Error executing \"find\" command:"
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:88
+msgid "For USB connected printers"
 msgstr ""
 
 #: applications/luci-app-p910nd/root/usr/share/rpcd/acl.d/luci-app-p910nd.json:3
 msgid "Grant UCI access for luci-app-p910nd"
 msgstr ""
 
-#: applications/luci-app-p910nd/luasrc/model/cbi/p910nd.lua:22
-msgid "Interface"
-msgstr "ইন্টারফেস"
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:71
+msgid "It is safe to install both, even if only one is needed."
+msgstr ""
 
-#: applications/luci-app-p910nd/luasrc/model/cbi/p910nd.lua:40
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:129
+msgid "Listen IP"
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:130
+msgid "Listen on a specific IP."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:122
+msgid "Local TCP listen port for this printer."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:204
+msgid "Manufacturer"
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:151
+msgctxt "mDNS"
+msgid "Note: %s only advertises one (the first) printer on this host."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:231
+msgid "Note: Set only CMD languages that your printer understands."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:152
+msgid "Note: USB hotplug attempts to provide some of the values below."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:142
+msgid "Note: USB hotplug correctly detects this."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:111
+msgid ""
+"Note: character device assignment can change upon reboot/reconnect with "
+"multiple USB devices."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:175
+msgid "Note: must be %s."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:70
+msgid "One of these kernel modules is needed for p910nd to find your printer."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:146
+msgid "Overrides default of %s."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:81
+msgid "Parallel port line printer device support"
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:121
 msgid "Port"
 msgstr "পোর্ট"
 
-#: applications/luci-app-p910nd/luasrc/model/cbi/p910nd.lua:14
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:15
+msgid "Port 910n print daemon"
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:145
+msgid "Run as root"
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:166
+msgid "Serves as Location in Apple standards."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:105
 msgid "Settings"
 msgstr "সেটিংস"
 
-#: applications/luci-app-p910nd/luasrc/model/cbi/p910nd.lua:22
-msgid "Specifies the interface to listen on."
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:227
+msgid "Some examples:"
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:158
+msgid "The %s type element."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:174
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:203
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:218
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:226
+msgid "The %s value."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:159
+msgid "User readable description of maker and model."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:141
+msgid "Whether this print port is bi-directional."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:150
+msgctxt "mDNS/Bonjour/ZeroConf"
+msgid "Whether to advertise this printer via %s."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:132
+msgid "any"
 msgstr ""
 
-#: applications/luci-app-p910nd/luasrc/model/cbi/p910nd.lua:40
-msgid "TCP listener port."
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:175
+msgid "enclosed within parentheses"
 msgstr ""
 
-#: applications/luci-app-p910nd/luasrc/model/cbi/p910nd.lua:18
-msgid "enable"
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:65
+msgid "map ports 9100-9109 to local printers."
 msgstr ""
 
-#: applications/luci-app-p910nd/luasrc/model/cbi/p910nd.lua:9
 #: applications/luci-app-p910nd/root/usr/share/luci/menu.d/luci-app-p910nd.json:3
 msgid "p910nd - Printer server"
 msgstr ""
 
-#~ msgid "p910nd listens on port 910+N. E.g. 9100 for the first printer."
-#~ msgstr "p910nd listens on port 910+N. E.g. 9100 for the first printer."
index 046b42f0d729ba1dc292ef5d8dd6e90c09186698..a574d19d2e4d6f274d3dcb3e91587de866704680 100644 (file)
@@ -16,56 +16,170 @@ msgstr ""
 "Plural-Forms: nplurals=2; plural=n != 1;\n"
 "X-Generator: Weblate 4.5.1\n"
 
-#: applications/luci-app-p910nd/luasrc/model/cbi/p910nd.lua:46
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:104
+msgid "Add printer config"
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:123
+msgid "Be aware: %s also listens on port 9100."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:140
 msgid "Bidirectional mode"
 msgstr "Mode bidireccional"
 
-#: applications/luci-app-p910nd/luasrc/model/cbi/p910nd.lua:20
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:167
+msgid "By the router"
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:112
+msgid "Connected %s devices show in this list."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:110
 msgid "Device"
 msgstr "Dispositiu"
 
-#: applications/luci-app-p910nd/luasrc/model/cbi/p910nd.lua:10
-msgid ""
-"First you have to install the packages to get support for USB (kmod-usb-"
-"printer) or parallel port (kmod-lp)."
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:107
+msgid "Enabled"
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:49
+msgid "Error calling \"opkg list-installed\":"
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:38
+msgid "Error executing \"find\" command:"
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:88
+msgid "For USB connected printers"
 msgstr ""
-"Primer heu d'instal·lar els paquets de suport USB (kmod-usb-printer) o de "
-"port paral·lel (kmod-lp)."
 
 #: applications/luci-app-p910nd/root/usr/share/rpcd/acl.d/luci-app-p910nd.json:3
 msgid "Grant UCI access for luci-app-p910nd"
 msgstr ""
 
-#: applications/luci-app-p910nd/luasrc/model/cbi/p910nd.lua:22
-msgid "Interface"
-msgstr "Interfície"
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:71
+msgid "It is safe to install both, even if only one is needed."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:129
+msgid "Listen IP"
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:130
+msgid "Listen on a specific IP."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:122
+msgid "Local TCP listen port for this printer."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:204
+msgid "Manufacturer"
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:151
+msgctxt "mDNS"
+msgid "Note: %s only advertises one (the first) printer on this host."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:231
+msgid "Note: Set only CMD languages that your printer understands."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:152
+msgid "Note: USB hotplug attempts to provide some of the values below."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:142
+msgid "Note: USB hotplug correctly detects this."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:111
+msgid ""
+"Note: character device assignment can change upon reboot/reconnect with "
+"multiple USB devices."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:175
+msgid "Note: must be %s."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:70
+msgid "One of these kernel modules is needed for p910nd to find your printer."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:146
+msgid "Overrides default of %s."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:81
+msgid "Parallel port line printer device support"
+msgstr ""
 
-#: applications/luci-app-p910nd/luasrc/model/cbi/p910nd.lua:40
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:121
 msgid "Port"
 msgstr "Port"
 
-#: applications/luci-app-p910nd/luasrc/model/cbi/p910nd.lua:14
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:15
+msgid "Port 910n print daemon"
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:145
+msgid "Run as root"
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:166
+msgid "Serves as Location in Apple standards."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:105
 msgid "Settings"
 msgstr "Paràmetres"
 
-#: applications/luci-app-p910nd/luasrc/model/cbi/p910nd.lua:22
-msgid "Specifies the interface to listen on."
-msgstr "Especifica la interfície en que escoltar."
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:227
+msgid "Some examples:"
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:158
+msgid "The %s type element."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:174
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:203
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:218
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:226
+msgid "The %s value."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:159
+msgid "User readable description of maker and model."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:141
+msgid "Whether this print port is bi-directional."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:150
+msgctxt "mDNS/Bonjour/ZeroConf"
+msgid "Whether to advertise this printer via %s."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:132
+msgid "any"
+msgstr ""
 
-#: applications/luci-app-p910nd/luasrc/model/cbi/p910nd.lua:40
-msgid "TCP listener port."
-msgstr "Port d'escolta TCP."
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:175
+msgid "enclosed within parentheses"
+msgstr ""
 
-#: applications/luci-app-p910nd/luasrc/model/cbi/p910nd.lua:18
-msgid "enable"
-msgstr "habilita"
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:65
+msgid "map ports 9100-9109 to local printers."
+msgstr ""
 
-#: applications/luci-app-p910nd/luasrc/model/cbi/p910nd.lua:9
 #: applications/luci-app-p910nd/root/usr/share/luci/menu.d/luci-app-p910nd.json:3
 msgid "p910nd - Printer server"
 msgstr "p910nd - Servidor d'impressió"
 
-#~ msgid "port_help"
-#~ msgstr ""
-#~ "El p910nd escolta al port 910+N. Per exemple, 9100 per la primera "
-#~ "impressora (la 0)."
index 867d363fd8e9de8d5dabb4bc8a9956656f781ee1..0ef4442afef4623443ee4851bd61a71729221d3b 100644 (file)
@@ -12,54 +12,170 @@ msgstr ""
 "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
 "X-Generator: Weblate 5.1-dev\n"
 
-#: applications/luci-app-p910nd/luasrc/model/cbi/p910nd.lua:46
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:104
+msgid "Add printer config"
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:123
+msgid "Be aware: %s also listens on port 9100."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:140
 msgid "Bidirectional mode"
 msgstr "Obousměrný režim"
 
-#: applications/luci-app-p910nd/luasrc/model/cbi/p910nd.lua:20
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:167
+msgid "By the router"
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:112
+msgid "Connected %s devices show in this list."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:110
 msgid "Device"
 msgstr "Zařízení"
 
-#: applications/luci-app-p910nd/luasrc/model/cbi/p910nd.lua:10
-msgid ""
-"First you have to install the packages to get support for USB (kmod-usb-"
-"printer) or parallel port (kmod-lp)."
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:107
+msgid "Enabled"
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:49
+msgid "Error calling \"opkg list-installed\":"
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:38
+msgid "Error executing \"find\" command:"
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:88
+msgid "For USB connected printers"
 msgstr ""
-"Nejprve je třeba nainstalovat balíčky přinášející podporu USB (kmod-usb-"
-"printer) či paralelního portu (kmod-lp)."
 
 #: applications/luci-app-p910nd/root/usr/share/rpcd/acl.d/luci-app-p910nd.json:3
 msgid "Grant UCI access for luci-app-p910nd"
 msgstr "Udělit oprávnění k UCI pro luci-app-p910nd"
 
-#: applications/luci-app-p910nd/luasrc/model/cbi/p910nd.lua:22
-msgid "Interface"
-msgstr "Rozhraní"
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:71
+msgid "It is safe to install both, even if only one is needed."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:129
+msgid "Listen IP"
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:130
+msgid "Listen on a specific IP."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:122
+msgid "Local TCP listen port for this printer."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:204
+msgid "Manufacturer"
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:151
+msgctxt "mDNS"
+msgid "Note: %s only advertises one (the first) printer on this host."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:231
+msgid "Note: Set only CMD languages that your printer understands."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:152
+msgid "Note: USB hotplug attempts to provide some of the values below."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:142
+msgid "Note: USB hotplug correctly detects this."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:111
+msgid ""
+"Note: character device assignment can change upon reboot/reconnect with "
+"multiple USB devices."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:175
+msgid "Note: must be %s."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:70
+msgid "One of these kernel modules is needed for p910nd to find your printer."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:146
+msgid "Overrides default of %s."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:81
+msgid "Parallel port line printer device support"
+msgstr ""
 
-#: applications/luci-app-p910nd/luasrc/model/cbi/p910nd.lua:40
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:121
 msgid "Port"
 msgstr "Port"
 
-#: applications/luci-app-p910nd/luasrc/model/cbi/p910nd.lua:14
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:15
+msgid "Port 910n print daemon"
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:145
+msgid "Run as root"
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:166
+msgid "Serves as Location in Apple standards."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:105
 msgid "Settings"
 msgstr "Nastavení"
 
-#: applications/luci-app-p910nd/luasrc/model/cbi/p910nd.lua:22
-msgid "Specifies the interface to listen on."
-msgstr "Určuje rozhraní, na kterém očekávat spojení."
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:227
+msgid "Some examples:"
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:158
+msgid "The %s type element."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:174
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:203
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:218
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:226
+msgid "The %s value."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:159
+msgid "User readable description of maker and model."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:141
+msgid "Whether this print port is bi-directional."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:150
+msgctxt "mDNS/Bonjour/ZeroConf"
+msgid "Whether to advertise this printer via %s."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:132
+msgid "any"
+msgstr ""
 
-#: applications/luci-app-p910nd/luasrc/model/cbi/p910nd.lua:40
-msgid "TCP listener port."
-msgstr "TCP port, na kterém očekávat spojení."
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:175
+msgid "enclosed within parentheses"
+msgstr ""
 
-#: applications/luci-app-p910nd/luasrc/model/cbi/p910nd.lua:18
-msgid "enable"
-msgstr "povolit"
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:65
+msgid "map ports 9100-9109 to local printers."
+msgstr ""
 
-#: applications/luci-app-p910nd/luasrc/model/cbi/p910nd.lua:9
 #: applications/luci-app-p910nd/root/usr/share/luci/menu.d/luci-app-p910nd.json:3
 msgid "p910nd - Printer server"
 msgstr "p910nd – tiskový server"
 
-#~ msgid "port_help"
-#~ msgstr "Nápověda pro výběr portu"
index dd9e04f1bccce6600cd4807eda205606660122bd..a752f7af353f09df522ab7f847ee971a0c4b5aaf 100644 (file)
@@ -14,54 +14,170 @@ msgstr ""
 "Plural-Forms: nplurals=2; plural=n != 1;\n"
 "X-Generator: Weblate 4.9.1-dev\n"
 
-#: applications/luci-app-p910nd/luasrc/model/cbi/p910nd.lua:46
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:104
+msgid "Add printer config"
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:123
+msgid "Be aware: %s also listens on port 9100."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:140
 msgid "Bidirectional mode"
 msgstr "Tovejstilstand"
 
-#: applications/luci-app-p910nd/luasrc/model/cbi/p910nd.lua:20
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:167
+msgid "By the router"
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:112
+msgid "Connected %s devices show in this list."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:110
 msgid "Device"
 msgstr "Enhed"
 
-#: applications/luci-app-p910nd/luasrc/model/cbi/p910nd.lua:10
-msgid ""
-"First you have to install the packages to get support for USB (kmod-usb-"
-"printer) or parallel port (kmod-lp)."
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:107
+msgid "Enabled"
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:49
+msgid "Error calling \"opkg list-installed\":"
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:38
+msgid "Error executing \"find\" command:"
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:88
+msgid "For USB connected printers"
 msgstr ""
-"Først skal du installere pakkerne for at få understøttelse af USB (kmod-usb-"
-"printer) eller parallelport (kmod-lp)."
 
 #: applications/luci-app-p910nd/root/usr/share/rpcd/acl.d/luci-app-p910nd.json:3
 msgid "Grant UCI access for luci-app-p910nd"
 msgstr "Giv UCI-adgang til luci-app-p910nd"
 
-#: applications/luci-app-p910nd/luasrc/model/cbi/p910nd.lua:22
-msgid "Interface"
-msgstr "Interface"
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:71
+msgid "It is safe to install both, even if only one is needed."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:129
+msgid "Listen IP"
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:130
+msgid "Listen on a specific IP."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:122
+msgid "Local TCP listen port for this printer."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:204
+msgid "Manufacturer"
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:151
+msgctxt "mDNS"
+msgid "Note: %s only advertises one (the first) printer on this host."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:231
+msgid "Note: Set only CMD languages that your printer understands."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:152
+msgid "Note: USB hotplug attempts to provide some of the values below."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:142
+msgid "Note: USB hotplug correctly detects this."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:111
+msgid ""
+"Note: character device assignment can change upon reboot/reconnect with "
+"multiple USB devices."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:175
+msgid "Note: must be %s."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:70
+msgid "One of these kernel modules is needed for p910nd to find your printer."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:146
+msgid "Overrides default of %s."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:81
+msgid "Parallel port line printer device support"
+msgstr ""
 
-#: applications/luci-app-p910nd/luasrc/model/cbi/p910nd.lua:40
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:121
 msgid "Port"
 msgstr "Port"
 
-#: applications/luci-app-p910nd/luasrc/model/cbi/p910nd.lua:14
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:15
+msgid "Port 910n print daemon"
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:145
+msgid "Run as root"
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:166
+msgid "Serves as Location in Apple standards."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:105
 msgid "Settings"
 msgstr "Indstillinger"
 
-#: applications/luci-app-p910nd/luasrc/model/cbi/p910nd.lua:22
-msgid "Specifies the interface to listen on."
-msgstr "Specificerer interface til at lytte på."
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:227
+msgid "Some examples:"
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:158
+msgid "The %s type element."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:174
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:203
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:218
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:226
+msgid "The %s value."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:159
+msgid "User readable description of maker and model."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:141
+msgid "Whether this print port is bi-directional."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:150
+msgctxt "mDNS/Bonjour/ZeroConf"
+msgid "Whether to advertise this printer via %s."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:132
+msgid "any"
+msgstr ""
 
-#: applications/luci-app-p910nd/luasrc/model/cbi/p910nd.lua:40
-msgid "TCP listener port."
-msgstr "TCP lytterport."
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:175
+msgid "enclosed within parentheses"
+msgstr ""
 
-#: applications/luci-app-p910nd/luasrc/model/cbi/p910nd.lua:18
-msgid "enable"
-msgstr "Aktiver"
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:65
+msgid "map ports 9100-9109 to local printers."
+msgstr ""
 
-#: applications/luci-app-p910nd/luasrc/model/cbi/p910nd.lua:9
 #: applications/luci-app-p910nd/root/usr/share/luci/menu.d/luci-app-p910nd.json:3
 msgid "p910nd - Printer server"
 msgstr "p910nd - Printerserver"
 
-#~ msgid "p910nd listens on port 910+N. E.g. 9100 for the first printer."
-#~ msgstr "p910nd listens on port 910+N. E.g. 9100 for the first printer."
index 438f20a00875a55c0caaa107efc411c80f4cec60..f7cb71b95908c11120c7aa3b5c150f136094706d 100644 (file)
@@ -14,54 +14,170 @@ msgstr ""
 "Plural-Forms: nplurals=2; plural=n != 1;\n"
 "X-Generator: Weblate 4.2-dev\n"
 
-#: applications/luci-app-p910nd/luasrc/model/cbi/p910nd.lua:46
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:104
+msgid "Add printer config"
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:123
+msgid "Be aware: %s also listens on port 9100."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:140
 msgid "Bidirectional mode"
 msgstr "Bidirektionaler Modus"
 
-#: applications/luci-app-p910nd/luasrc/model/cbi/p910nd.lua:20
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:167
+msgid "By the router"
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:112
+msgid "Connected %s devices show in this list."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:110
 msgid "Device"
 msgstr "Gerät"
 
-#: applications/luci-app-p910nd/luasrc/model/cbi/p910nd.lua:10
-msgid ""
-"First you have to install the packages to get support for USB (kmod-usb-"
-"printer) or parallel port (kmod-lp)."
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:107
+msgid "Enabled"
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:49
+msgid "Error calling \"opkg list-installed\":"
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:38
+msgid "Error executing \"find\" command:"
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:88
+msgid "For USB connected printers"
 msgstr ""
-"Bevor p910nd verwendet werden kann müssen Pakete für USB (kmod-usb-printer) "
-"und Parallelport (kmod-lp)-Support installiert werden."
 
 #: applications/luci-app-p910nd/root/usr/share/rpcd/acl.d/luci-app-p910nd.json:3
 msgid "Grant UCI access for luci-app-p910nd"
 msgstr "Gewähre UCI Zugriff auf luci-app-p910nd"
 
-#: applications/luci-app-p910nd/luasrc/model/cbi/p910nd.lua:22
-msgid "Interface"
-msgstr "Schnittstelle"
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:71
+msgid "It is safe to install both, even if only one is needed."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:129
+msgid "Listen IP"
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:130
+msgid "Listen on a specific IP."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:122
+msgid "Local TCP listen port for this printer."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:204
+msgid "Manufacturer"
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:151
+msgctxt "mDNS"
+msgid "Note: %s only advertises one (the first) printer on this host."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:231
+msgid "Note: Set only CMD languages that your printer understands."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:152
+msgid "Note: USB hotplug attempts to provide some of the values below."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:142
+msgid "Note: USB hotplug correctly detects this."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:111
+msgid ""
+"Note: character device assignment can change upon reboot/reconnect with "
+"multiple USB devices."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:175
+msgid "Note: must be %s."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:70
+msgid "One of these kernel modules is needed for p910nd to find your printer."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:146
+msgid "Overrides default of %s."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:81
+msgid "Parallel port line printer device support"
+msgstr ""
 
-#: applications/luci-app-p910nd/luasrc/model/cbi/p910nd.lua:40
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:121
 msgid "Port"
 msgstr "Port"
 
-#: applications/luci-app-p910nd/luasrc/model/cbi/p910nd.lua:14
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:15
+msgid "Port 910n print daemon"
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:145
+msgid "Run as root"
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:166
+msgid "Serves as Location in Apple standards."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:105
 msgid "Settings"
 msgstr "Einstellungen"
 
-#: applications/luci-app-p910nd/luasrc/model/cbi/p910nd.lua:22
-msgid "Specifies the interface to listen on."
-msgstr "Gibt die zu überwachende Schnittstelle an."
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:227
+msgid "Some examples:"
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:158
+msgid "The %s type element."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:174
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:203
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:218
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:226
+msgid "The %s value."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:159
+msgid "User readable description of maker and model."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:141
+msgid "Whether this print port is bi-directional."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:150
+msgctxt "mDNS/Bonjour/ZeroConf"
+msgid "Whether to advertise this printer via %s."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:132
+msgid "any"
+msgstr ""
 
-#: applications/luci-app-p910nd/luasrc/model/cbi/p910nd.lua:40
-msgid "TCP listener port."
-msgstr "TCP-Listen Port."
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:175
+msgid "enclosed within parentheses"
+msgstr ""
 
-#: applications/luci-app-p910nd/luasrc/model/cbi/p910nd.lua:18
-msgid "enable"
-msgstr "aktivieren"
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:65
+msgid "map ports 9100-9109 to local printers."
+msgstr ""
 
-#: applications/luci-app-p910nd/luasrc/model/cbi/p910nd.lua:9
 #: applications/luci-app-p910nd/root/usr/share/luci/menu.d/luci-app-p910nd.json:3
 msgid "p910nd - Printer server"
 msgstr "p910nd - Printserver"
 
-#~ msgid "p910nd listens on port 910+N. E.g. 9100 for the first printer."
-#~ msgstr "p910nd hoert auf Port 910+N. Z.B. 9100 fuer ersten Drucker"
index 16db48ca5c3b8ed6c9116e806fd6b1c9b68ba870..80c915250369c543d81533b585b266dfb1d14422 100644 (file)
@@ -14,58 +14,170 @@ msgstr ""
 "Plural-Forms: nplurals=2; plural=n != 1;\n"
 "X-Generator: Weblate 4.12-dev\n"
 
-#: applications/luci-app-p910nd/luasrc/model/cbi/p910nd.lua:46
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:104
+msgid "Add printer config"
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:123
+msgid "Be aware: %s also listens on port 9100."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:140
 msgid "Bidirectional mode"
 msgstr "Αμφίδρομη μέθοδος"
 
-#: applications/luci-app-p910nd/luasrc/model/cbi/p910nd.lua:20
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:167
+msgid "By the router"
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:112
+msgid "Connected %s devices show in this list."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:110
 msgid "Device"
 msgstr "Συσκευή"
 
-#: applications/luci-app-p910nd/luasrc/model/cbi/p910nd.lua:10
-msgid ""
-"First you have to install the packages to get support for USB (kmod-usb-"
-"printer) or parallel port (kmod-lp)."
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:107
+msgid "Enabled"
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:49
+msgid "Error calling \"opkg list-installed\":"
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:38
+msgid "Error executing \"find\" command:"
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:88
+msgid "For USB connected printers"
 msgstr ""
-"Πρώτα πρέπει να εγκατασταθούν τα πακέτα για να υπάρξει υποστήριξη για USB "
-"(kmod-usb-printer) ή παράλληλη θύρα (kmod-lp)."
 
 #: applications/luci-app-p910nd/root/usr/share/rpcd/acl.d/luci-app-p910nd.json:3
 msgid "Grant UCI access for luci-app-p910nd"
 msgstr "Παραχωρήστε πρόσβαση UCI στο luci-app-p910nd"
 
-#: applications/luci-app-p910nd/luasrc/model/cbi/p910nd.lua:22
-msgid "Interface"
-msgstr "Διεπαφή"
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:71
+msgid "It is safe to install both, even if only one is needed."
+msgstr ""
 
-#: applications/luci-app-p910nd/luasrc/model/cbi/p910nd.lua:40
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:129
+msgid "Listen IP"
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:130
+msgid "Listen on a specific IP."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:122
+msgid "Local TCP listen port for this printer."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:204
+msgid "Manufacturer"
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:151
+msgctxt "mDNS"
+msgid "Note: %s only advertises one (the first) printer on this host."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:231
+msgid "Note: Set only CMD languages that your printer understands."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:152
+msgid "Note: USB hotplug attempts to provide some of the values below."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:142
+msgid "Note: USB hotplug correctly detects this."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:111
+msgid ""
+"Note: character device assignment can change upon reboot/reconnect with "
+"multiple USB devices."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:175
+msgid "Note: must be %s."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:70
+msgid "One of these kernel modules is needed for p910nd to find your printer."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:146
+msgid "Overrides default of %s."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:81
+msgid "Parallel port line printer device support"
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:121
 msgid "Port"
 msgstr "Θύρα"
 
-#: applications/luci-app-p910nd/luasrc/model/cbi/p910nd.lua:14
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:15
+msgid "Port 910n print daemon"
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:145
+msgid "Run as root"
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:166
+msgid "Serves as Location in Apple standards."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:105
 msgid "Settings"
 msgstr "Ρυθμίσεις"
 
-#: applications/luci-app-p910nd/luasrc/model/cbi/p910nd.lua:22
-msgid "Specifies the interface to listen on."
-msgstr "Καθορίζει τη διεπαφή στην οποία θα ακούει."
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:227
+msgid "Some examples:"
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:158
+msgid "The %s type element."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:174
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:203
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:218
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:226
+msgid "The %s value."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:159
+msgid "User readable description of maker and model."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:141
+msgid "Whether this print port is bi-directional."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:150
+msgctxt "mDNS/Bonjour/ZeroConf"
+msgid "Whether to advertise this printer via %s."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:132
+msgid "any"
+msgstr ""
 
-#: applications/luci-app-p910nd/luasrc/model/cbi/p910nd.lua:40
-msgid "TCP listener port."
-msgstr "TCP Θύρα ακρόασης."
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:175
+msgid "enclosed within parentheses"
+msgstr ""
 
-#: applications/luci-app-p910nd/luasrc/model/cbi/p910nd.lua:18
-msgid "enable"
-msgstr "ενεργοποίηση"
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:65
+msgid "map ports 9100-9109 to local printers."
+msgstr ""
 
-#: applications/luci-app-p910nd/luasrc/model/cbi/p910nd.lua:9
 #: applications/luci-app-p910nd/root/usr/share/luci/menu.d/luci-app-p910nd.json:3
 msgid "p910nd - Printer server"
 msgstr "p910nd - Διακομιστής εκτυπωτή"
 
-#~ msgid "port_help"
-#~ msgstr "port_help"
-
-#~ msgid "p910nd listens on port 910+N. E.g. 9100 for the first printer."
-#~ msgstr ""
-#~ "p910nd ανταποκρίνεται στην πόρτα 910+N. π.χ. 9100 για τον πρώτο εκτυπωτή"
index 3e7b610e762990e19b1567b98e9323a26c74d21d..5155bd8c4cfd79c66207c16f9093608648629665 100644 (file)
@@ -14,54 +14,170 @@ msgstr ""
 "Plural-Forms: nplurals=2; plural=n != 1;\n"
 "X-Generator: Weblate 5.2\n"
 
-#: applications/luci-app-p910nd/luasrc/model/cbi/p910nd.lua:46
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:104
+msgid "Add printer config"
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:123
+msgid "Be aware: %s also listens on port 9100."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:140
 msgid "Bidirectional mode"
 msgstr "Bidirectional mode"
 
-#: applications/luci-app-p910nd/luasrc/model/cbi/p910nd.lua:20
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:167
+msgid "By the router"
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:112
+msgid "Connected %s devices show in this list."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:110
 msgid "Device"
 msgstr "Device"
 
-#: applications/luci-app-p910nd/luasrc/model/cbi/p910nd.lua:10
-msgid ""
-"First you have to install the packages to get support for USB (kmod-usb-"
-"printer) or parallel port (kmod-lp)."
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:107
+msgid "Enabled"
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:49
+msgid "Error calling \"opkg list-installed\":"
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:38
+msgid "Error executing \"find\" command:"
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:88
+msgid "For USB connected printers"
 msgstr ""
-"First you have to install the packages to get support for USB (kmod-usb-"
-"printer) or parallel port (kmod-lp)."
 
 #: applications/luci-app-p910nd/root/usr/share/rpcd/acl.d/luci-app-p910nd.json:3
 msgid "Grant UCI access for luci-app-p910nd"
 msgstr ""
 
-#: applications/luci-app-p910nd/luasrc/model/cbi/p910nd.lua:22
-msgid "Interface"
-msgstr "Interface"
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:71
+msgid "It is safe to install both, even if only one is needed."
+msgstr ""
 
-#: applications/luci-app-p910nd/luasrc/model/cbi/p910nd.lua:40
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:129
+msgid "Listen IP"
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:130
+msgid "Listen on a specific IP."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:122
+msgid "Local TCP listen port for this printer."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:204
+msgid "Manufacturer"
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:151
+msgctxt "mDNS"
+msgid "Note: %s only advertises one (the first) printer on this host."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:231
+msgid "Note: Set only CMD languages that your printer understands."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:152
+msgid "Note: USB hotplug attempts to provide some of the values below."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:142
+msgid "Note: USB hotplug correctly detects this."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:111
+msgid ""
+"Note: character device assignment can change upon reboot/reconnect with "
+"multiple USB devices."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:175
+msgid "Note: must be %s."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:70
+msgid "One of these kernel modules is needed for p910nd to find your printer."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:146
+msgid "Overrides default of %s."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:81
+msgid "Parallel port line printer device support"
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:121
 msgid "Port"
 msgstr "Port"
 
-#: applications/luci-app-p910nd/luasrc/model/cbi/p910nd.lua:14
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:15
+msgid "Port 910n print daemon"
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:145
+msgid "Run as root"
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:166
+msgid "Serves as Location in Apple standards."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:105
 msgid "Settings"
 msgstr ""
 
-#: applications/luci-app-p910nd/luasrc/model/cbi/p910nd.lua:22
-msgid "Specifies the interface to listen on."
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:227
+msgid "Some examples:"
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:158
+msgid "The %s type element."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:174
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:203
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:218
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:226
+msgid "The %s value."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:159
+msgid "User readable description of maker and model."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:141
+msgid "Whether this print port is bi-directional."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:150
+msgctxt "mDNS/Bonjour/ZeroConf"
+msgid "Whether to advertise this printer via %s."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:132
+msgid "any"
 msgstr ""
 
-#: applications/luci-app-p910nd/luasrc/model/cbi/p910nd.lua:40
-msgid "TCP listener port."
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:175
+msgid "enclosed within parentheses"
 msgstr ""
 
-#: applications/luci-app-p910nd/luasrc/model/cbi/p910nd.lua:18
-msgid "enable"
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:65
+msgid "map ports 9100-9109 to local printers."
 msgstr ""
 
-#: applications/luci-app-p910nd/luasrc/model/cbi/p910nd.lua:9
 #: applications/luci-app-p910nd/root/usr/share/luci/menu.d/luci-app-p910nd.json:3
 msgid "p910nd - Printer server"
 msgstr "p910nd - Printer server"
 
-#~ msgid "p910nd listens on port 910+N. E.g. 9100 for the first printer."
-#~ msgstr "p910nd listens on port 910+N. E.g. 9100 for the first printer."
index 825825e518076fc93e41d9a6a407304804f789b1..78a1906fed14ac896f2c7549896ad534846111a7 100644 (file)
@@ -14,54 +14,170 @@ msgstr ""
 "Plural-Forms: nplurals=2; plural=n != 1;\n"
 "X-Generator: Weblate 5.4-dev\n"
 
-#: applications/luci-app-p910nd/luasrc/model/cbi/p910nd.lua:46
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:104
+msgid "Add printer config"
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:123
+msgid "Be aware: %s also listens on port 9100."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:140
 msgid "Bidirectional mode"
 msgstr "Modo bidireccional"
 
-#: applications/luci-app-p910nd/luasrc/model/cbi/p910nd.lua:20
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:167
+msgid "By the router"
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:112
+msgid "Connected %s devices show in this list."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:110
 msgid "Device"
 msgstr "Dispositivo"
 
-#: applications/luci-app-p910nd/luasrc/model/cbi/p910nd.lua:10
-msgid ""
-"First you have to install the packages to get support for USB (kmod-usb-"
-"printer) or parallel port (kmod-lp)."
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:107
+msgid "Enabled"
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:49
+msgid "Error calling \"opkg list-installed\":"
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:38
+msgid "Error executing \"find\" command:"
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:88
+msgid "For USB connected printers"
 msgstr ""
-"Debe instalar primero el soporte para puertos USB (kmod-usb-printer) o "
-"paralelo (kmod-lp)."
 
 #: applications/luci-app-p910nd/root/usr/share/rpcd/acl.d/luci-app-p910nd.json:3
 msgid "Grant UCI access for luci-app-p910nd"
 msgstr "Conceder acceso UCI para luci-app-p910nd"
 
-#: applications/luci-app-p910nd/luasrc/model/cbi/p910nd.lua:22
-msgid "Interface"
-msgstr "Interfaz"
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:71
+msgid "It is safe to install both, even if only one is needed."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:129
+msgid "Listen IP"
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:130
+msgid "Listen on a specific IP."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:122
+msgid "Local TCP listen port for this printer."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:204
+msgid "Manufacturer"
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:151
+msgctxt "mDNS"
+msgid "Note: %s only advertises one (the first) printer on this host."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:231
+msgid "Note: Set only CMD languages that your printer understands."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:152
+msgid "Note: USB hotplug attempts to provide some of the values below."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:142
+msgid "Note: USB hotplug correctly detects this."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:111
+msgid ""
+"Note: character device assignment can change upon reboot/reconnect with "
+"multiple USB devices."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:175
+msgid "Note: must be %s."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:70
+msgid "One of these kernel modules is needed for p910nd to find your printer."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:146
+msgid "Overrides default of %s."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:81
+msgid "Parallel port line printer device support"
+msgstr ""
 
-#: applications/luci-app-p910nd/luasrc/model/cbi/p910nd.lua:40
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:121
 msgid "Port"
 msgstr "Puerto"
 
-#: applications/luci-app-p910nd/luasrc/model/cbi/p910nd.lua:14
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:15
+msgid "Port 910n print daemon"
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:145
+msgid "Run as root"
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:166
+msgid "Serves as Location in Apple standards."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:105
 msgid "Settings"
 msgstr "Ajustes"
 
-#: applications/luci-app-p910nd/luasrc/model/cbi/p910nd.lua:22
-msgid "Specifies the interface to listen on."
-msgstr "Especifica la interfaz en la que se escucha."
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:227
+msgid "Some examples:"
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:158
+msgid "The %s type element."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:174
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:203
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:218
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:226
+msgid "The %s value."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:159
+msgid "User readable description of maker and model."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:141
+msgid "Whether this print port is bi-directional."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:150
+msgctxt "mDNS/Bonjour/ZeroConf"
+msgid "Whether to advertise this printer via %s."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:132
+msgid "any"
+msgstr ""
 
-#: applications/luci-app-p910nd/luasrc/model/cbi/p910nd.lua:40
-msgid "TCP listener port."
-msgstr "Puerto TCP."
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:175
+msgid "enclosed within parentheses"
+msgstr ""
 
-#: applications/luci-app-p910nd/luasrc/model/cbi/p910nd.lua:18
-msgid "enable"
-msgstr "Activar"
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:65
+msgid "map ports 9100-9109 to local printers."
+msgstr ""
 
-#: applications/luci-app-p910nd/luasrc/model/cbi/p910nd.lua:9
 #: applications/luci-app-p910nd/root/usr/share/luci/menu.d/luci-app-p910nd.json:3
 msgid "p910nd - Printer server"
 msgstr "Servidor de Impresión"
 
-#~ msgid "port_help"
-#~ msgstr "puerto_ayuda"
index 9edb32cc7af7fa1b5a6d29a082230936851559ea..df0e7a3a16aabab164e9e552bccd14d1fa61391d 100644 (file)
@@ -14,54 +14,170 @@ msgstr ""
 "Plural-Forms: nplurals=2; plural=n != 1;\n"
 "X-Generator: Weblate 4.2-dev\n"
 
-#: applications/luci-app-p910nd/luasrc/model/cbi/p910nd.lua:46
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:104
+msgid "Add printer config"
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:123
+msgid "Be aware: %s also listens on port 9100."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:140
 msgid "Bidirectional mode"
 msgstr "Kaksisuuntainen tila"
 
-#: applications/luci-app-p910nd/luasrc/model/cbi/p910nd.lua:20
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:167
+msgid "By the router"
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:112
+msgid "Connected %s devices show in this list."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:110
 msgid "Device"
 msgstr "Laite"
 
-#: applications/luci-app-p910nd/luasrc/model/cbi/p910nd.lua:10
-msgid ""
-"First you have to install the packages to get support for USB (kmod-usb-"
-"printer) or parallel port (kmod-lp)."
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:107
+msgid "Enabled"
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:49
+msgid "Error calling \"opkg list-installed\":"
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:38
+msgid "Error executing \"find\" command:"
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:88
+msgid "For USB connected printers"
 msgstr ""
-"Sinun täytyy asentaa tarvitsemasi paketit USB (kmod-usb-printer) tai "
-"rinnakkaisportti (kmod-lp) ensin."
 
 #: applications/luci-app-p910nd/root/usr/share/rpcd/acl.d/luci-app-p910nd.json:3
 msgid "Grant UCI access for luci-app-p910nd"
 msgstr "Myönnä UCI-käyttöoikeus luci-app-p910nd: lle"
 
-#: applications/luci-app-p910nd/luasrc/model/cbi/p910nd.lua:22
-msgid "Interface"
-msgstr "Sovitin"
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:71
+msgid "It is safe to install both, even if only one is needed."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:129
+msgid "Listen IP"
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:130
+msgid "Listen on a specific IP."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:122
+msgid "Local TCP listen port for this printer."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:204
+msgid "Manufacturer"
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:151
+msgctxt "mDNS"
+msgid "Note: %s only advertises one (the first) printer on this host."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:231
+msgid "Note: Set only CMD languages that your printer understands."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:152
+msgid "Note: USB hotplug attempts to provide some of the values below."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:142
+msgid "Note: USB hotplug correctly detects this."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:111
+msgid ""
+"Note: character device assignment can change upon reboot/reconnect with "
+"multiple USB devices."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:175
+msgid "Note: must be %s."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:70
+msgid "One of these kernel modules is needed for p910nd to find your printer."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:146
+msgid "Overrides default of %s."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:81
+msgid "Parallel port line printer device support"
+msgstr ""
 
-#: applications/luci-app-p910nd/luasrc/model/cbi/p910nd.lua:40
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:121
 msgid "Port"
 msgstr "Portti"
 
-#: applications/luci-app-p910nd/luasrc/model/cbi/p910nd.lua:14
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:15
+msgid "Port 910n print daemon"
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:145
+msgid "Run as root"
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:166
+msgid "Serves as Location in Apple standards."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:105
 msgid "Settings"
 msgstr "Asetukset"
 
-#: applications/luci-app-p910nd/luasrc/model/cbi/p910nd.lua:22
-msgid "Specifies the interface to listen on."
-msgstr "Määrittää sovittimen jota kuunnellaan."
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:227
+msgid "Some examples:"
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:158
+msgid "The %s type element."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:174
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:203
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:218
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:226
+msgid "The %s value."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:159
+msgid "User readable description of maker and model."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:141
+msgid "Whether this print port is bi-directional."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:150
+msgctxt "mDNS/Bonjour/ZeroConf"
+msgid "Whether to advertise this printer via %s."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:132
+msgid "any"
+msgstr ""
 
-#: applications/luci-app-p910nd/luasrc/model/cbi/p910nd.lua:40
-msgid "TCP listener port."
-msgstr "TCP-kuunteluportti."
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:175
+msgid "enclosed within parentheses"
+msgstr ""
 
-#: applications/luci-app-p910nd/luasrc/model/cbi/p910nd.lua:18
-msgid "enable"
-msgstr "ota käyttöön"
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:65
+msgid "map ports 9100-9109 to local printers."
+msgstr ""
 
-#: applications/luci-app-p910nd/luasrc/model/cbi/p910nd.lua:9
 #: applications/luci-app-p910nd/root/usr/share/luci/menu.d/luci-app-p910nd.json:3
 msgid "p910nd - Printer server"
 msgstr "p910nd - Tulostinpalvelin"
 
-#~ msgid "p910nd listens on port 910+N. E.g. 9100 for the first printer."
-#~ msgstr "p910nd listens on port 910+N. E.g. 9100 for the first printer."
index bfccac6ece1b6d6c621a43e3b0f43f5c8315a940..655c064452e312c9651a2c0ebc544e032ab3429a 100644 (file)
@@ -14,59 +14,170 @@ msgstr ""
 "Plural-Forms: nplurals=2; plural=n > 1;\n"
 "X-Generator: Weblate 4.18.1\n"
 
-#: applications/luci-app-p910nd/luasrc/model/cbi/p910nd.lua:46
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:104
+msgid "Add printer config"
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:123
+msgid "Be aware: %s also listens on port 9100."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:140
 msgid "Bidirectional mode"
 msgstr "Mode bidirectionnel"
 
-#: applications/luci-app-p910nd/luasrc/model/cbi/p910nd.lua:20
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:167
+msgid "By the router"
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:112
+msgid "Connected %s devices show in this list."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:110
 msgid "Device"
 msgstr "Appareil"
 
-#: applications/luci-app-p910nd/luasrc/model/cbi/p910nd.lua:10
-msgid ""
-"First you have to install the packages to get support for USB (kmod-usb-"
-"printer) or parallel port (kmod-lp)."
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:107
+msgid "Enabled"
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:49
+msgid "Error calling \"opkg list-installed\":"
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:38
+msgid "Error executing \"find\" command:"
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:88
+msgid "For USB connected printers"
 msgstr ""
-"Vous devez d'abord installer les paquets pour gérer des imprimantes USB "
-"(kmod-usb-printer) ou sur port parallèle (kmod-lp)."
 
 #: applications/luci-app-p910nd/root/usr/share/rpcd/acl.d/luci-app-p910nd.json:3
 msgid "Grant UCI access for luci-app-p910nd"
 msgstr "Accorder l’accès à l’UCI pour luci-app-p910nd"
 
-#: applications/luci-app-p910nd/luasrc/model/cbi/p910nd.lua:22
-msgid "Interface"
-msgstr "Interface"
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:71
+msgid "It is safe to install both, even if only one is needed."
+msgstr ""
 
-#: applications/luci-app-p910nd/luasrc/model/cbi/p910nd.lua:40
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:129
+msgid "Listen IP"
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:130
+msgid "Listen on a specific IP."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:122
+msgid "Local TCP listen port for this printer."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:204
+msgid "Manufacturer"
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:151
+msgctxt "mDNS"
+msgid "Note: %s only advertises one (the first) printer on this host."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:231
+msgid "Note: Set only CMD languages that your printer understands."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:152
+msgid "Note: USB hotplug attempts to provide some of the values below."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:142
+msgid "Note: USB hotplug correctly detects this."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:111
+msgid ""
+"Note: character device assignment can change upon reboot/reconnect with "
+"multiple USB devices."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:175
+msgid "Note: must be %s."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:70
+msgid "One of these kernel modules is needed for p910nd to find your printer."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:146
+msgid "Overrides default of %s."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:81
+msgid "Parallel port line printer device support"
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:121
 msgid "Port"
 msgstr "Port"
 
-#: applications/luci-app-p910nd/luasrc/model/cbi/p910nd.lua:14
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:15
+msgid "Port 910n print daemon"
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:145
+msgid "Run as root"
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:166
+msgid "Serves as Location in Apple standards."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:105
 msgid "Settings"
 msgstr "Paramètres"
 
-#: applications/luci-app-p910nd/luasrc/model/cbi/p910nd.lua:22
-msgid "Specifies the interface to listen on."
-msgstr "Précise les interfaces à écouter."
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:227
+msgid "Some examples:"
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:158
+msgid "The %s type element."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:174
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:203
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:218
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:226
+msgid "The %s value."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:159
+msgid "User readable description of maker and model."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:141
+msgid "Whether this print port is bi-directional."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:150
+msgctxt "mDNS/Bonjour/ZeroConf"
+msgid "Whether to advertise this printer via %s."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:132
+msgid "any"
+msgstr ""
 
-#: applications/luci-app-p910nd/luasrc/model/cbi/p910nd.lua:40
-msgid "TCP listener port."
-msgstr "Port d'écoute TCP."
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:175
+msgid "enclosed within parentheses"
+msgstr ""
 
-#: applications/luci-app-p910nd/luasrc/model/cbi/p910nd.lua:18
-msgid "enable"
-msgstr "activer"
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:65
+msgid "map ports 9100-9109 to local printers."
+msgstr ""
 
-#: applications/luci-app-p910nd/luasrc/model/cbi/p910nd.lua:9
 #: applications/luci-app-p910nd/root/usr/share/luci/menu.d/luci-app-p910nd.json:3
 msgid "p910nd - Printer server"
 msgstr "p910nd - Serveur d'impression"
 
-#~ msgid "port_help"
-#~ msgstr "aide_port"
-
-#~ msgid "p910nd listens on port 910+N. E.g. 9100 for the first printer."
-#~ msgstr ""
-#~ "p910nd écoute sur le port 910+N, par exemple 9100 pour la première "
-#~ "imprimante."
index 79b4467d03c78870dddcf103bed1a4a9f95bb30e..cd6770a94ae7f03122d9ee6988dca48e2b9a1fc3 100644 (file)
@@ -14,55 +14,171 @@ msgstr ""
 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
 "X-Generator: Weblate 4.5-dev\n"
 
-#: applications/luci-app-p910nd/luasrc/model/cbi/p910nd.lua:46
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:104
+msgid "Add printer config"
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:123
+msgid "Be aware: %s also listens on port 9100."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:140
 msgid "Bidirectional mode"
 msgstr "מצב דו־כיווני"
 
-#: applications/luci-app-p910nd/luasrc/model/cbi/p910nd.lua:20
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:167
+msgid "By the router"
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:112
+msgid "Connected %s devices show in this list."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:110
 msgid "Device"
 msgstr "מכשיר"
 
-#: applications/luci-app-p910nd/luasrc/model/cbi/p910nd.lua:10
-msgid ""
-"First you have to install the packages to get support for USB (kmod-usb-"
-"printer) or parallel port (kmod-lp)."
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:107
+msgid "Enabled"
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:49
+msgid "Error calling \"opkg list-installed\":"
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:38
+msgid "Error executing \"find\" command:"
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:88
+msgid "For USB connected printers"
 msgstr ""
-"ראשית עליך להתקין את החבילות כדי לקבל תמיכה ב־USB‏ (kmod-usb-printer) או "
-"בחיבור מקבילי (kmod-lp)."
 
 #: applications/luci-app-p910nd/root/usr/share/rpcd/acl.d/luci-app-p910nd.json:3
 msgid "Grant UCI access for luci-app-p910nd"
 msgstr "הענקת גישת UCI ל־luci-app-p910nd"
 
-#: applications/luci-app-p910nd/luasrc/model/cbi/p910nd.lua:22
-msgid "Interface"
-msgstr "מנשק"
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:71
+msgid "It is safe to install both, even if only one is needed."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:129
+msgid "Listen IP"
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:130
+msgid "Listen on a specific IP."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:122
+msgid "Local TCP listen port for this printer."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:204
+msgid "Manufacturer"
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:151
+msgctxt "mDNS"
+msgid "Note: %s only advertises one (the first) printer on this host."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:231
+msgid "Note: Set only CMD languages that your printer understands."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:152
+msgid "Note: USB hotplug attempts to provide some of the values below."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:142
+msgid "Note: USB hotplug correctly detects this."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:111
+msgid ""
+"Note: character device assignment can change upon reboot/reconnect with "
+"multiple USB devices."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:175
+msgid "Note: must be %s."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:70
+msgid "One of these kernel modules is needed for p910nd to find your printer."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:146
+msgid "Overrides default of %s."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:81
+msgid "Parallel port line printer device support"
+msgstr ""
 
 # "יציאה" או "יציאת התקן" ?
-#: applications/luci-app-p910nd/luasrc/model/cbi/p910nd.lua:40
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:121
 msgid "Port"
 msgstr "פתחה"
 
-#: applications/luci-app-p910nd/luasrc/model/cbi/p910nd.lua:14
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:15
+msgid "Port 910n print daemon"
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:145
+msgid "Run as root"
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:166
+msgid "Serves as Location in Apple standards."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:105
 msgid "Settings"
 msgstr "הגדרות"
 
-#: applications/luci-app-p910nd/luasrc/model/cbi/p910nd.lua:22
-msgid "Specifies the interface to listen on."
-msgstr "מציין לאיזה מנשק להאזין."
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:227
+msgid "Some examples:"
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:158
+msgid "The %s type element."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:174
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:203
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:218
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:226
+msgid "The %s value."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:159
+msgid "User readable description of maker and model."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:141
+msgid "Whether this print port is bi-directional."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:150
+msgctxt "mDNS/Bonjour/ZeroConf"
+msgid "Whether to advertise this printer via %s."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:132
+msgid "any"
+msgstr ""
 
-#: applications/luci-app-p910nd/luasrc/model/cbi/p910nd.lua:40
-msgid "TCP listener port."
-msgstr "פתחת האזנה ל־TCP."
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:175
+msgid "enclosed within parentheses"
+msgstr ""
 
-#: applications/luci-app-p910nd/luasrc/model/cbi/p910nd.lua:18
-msgid "enable"
-msgstr "לאפשר"
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:65
+msgid "map ports 9100-9109 to local printers."
+msgstr ""
 
-#: applications/luci-app-p910nd/luasrc/model/cbi/p910nd.lua:9
 #: applications/luci-app-p910nd/root/usr/share/luci/menu.d/luci-app-p910nd.json:3
 msgid "p910nd - Printer server"
 msgstr "p910nd - שרת מדפסות"
 
-#~ msgid "p910nd listens on port 910+N. E.g. 9100 for the first printer."
-#~ msgstr "p910nd מאזין לפורט 910+N (למשל 9100) עבור המדפסת הראשונה."
index 5fbee542d87cb188b636a144a32c733326075448..5218fe359b85e2f8c1a00e467687216e0cebee57 100644 (file)
@@ -12,52 +12,170 @@ msgstr ""
 "Content-Transfer-Encoding: 8bit\n"
 "X-Generator: Translate Toolkit 1.1.1\n"
 
-#: applications/luci-app-p910nd/luasrc/model/cbi/p910nd.lua:46
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:104
+msgid "Add printer config"
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:123
+msgid "Be aware: %s also listens on port 9100."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:140
 msgid "Bidirectional mode"
 msgstr ""
 
-#: applications/luci-app-p910nd/luasrc/model/cbi/p910nd.lua:20
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:167
+msgid "By the router"
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:112
+msgid "Connected %s devices show in this list."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:110
 msgid "Device"
 msgstr ""
 
-#: applications/luci-app-p910nd/luasrc/model/cbi/p910nd.lua:10
-msgid ""
-"First you have to install the packages to get support for USB (kmod-usb-"
-"printer) or parallel port (kmod-lp)."
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:107
+msgid "Enabled"
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:49
+msgid "Error calling \"opkg list-installed\":"
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:38
+msgid "Error executing \"find\" command:"
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:88
+msgid "For USB connected printers"
 msgstr ""
 
 #: applications/luci-app-p910nd/root/usr/share/rpcd/acl.d/luci-app-p910nd.json:3
 msgid "Grant UCI access for luci-app-p910nd"
 msgstr ""
 
-#: applications/luci-app-p910nd/luasrc/model/cbi/p910nd.lua:22
-msgid "Interface"
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:71
+msgid "It is safe to install both, even if only one is needed."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:129
+msgid "Listen IP"
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:130
+msgid "Listen on a specific IP."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:122
+msgid "Local TCP listen port for this printer."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:204
+msgid "Manufacturer"
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:151
+msgctxt "mDNS"
+msgid "Note: %s only advertises one (the first) printer on this host."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:231
+msgid "Note: Set only CMD languages that your printer understands."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:152
+msgid "Note: USB hotplug attempts to provide some of the values below."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:142
+msgid "Note: USB hotplug correctly detects this."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:111
+msgid ""
+"Note: character device assignment can change upon reboot/reconnect with "
+"multiple USB devices."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:175
+msgid "Note: must be %s."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:70
+msgid "One of these kernel modules is needed for p910nd to find your printer."
 msgstr ""
 
-#: applications/luci-app-p910nd/luasrc/model/cbi/p910nd.lua:40
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:146
+msgid "Overrides default of %s."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:81
+msgid "Parallel port line printer device support"
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:121
 msgid "Port"
 msgstr ""
 
-#: applications/luci-app-p910nd/luasrc/model/cbi/p910nd.lua:14
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:15
+msgid "Port 910n print daemon"
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:145
+msgid "Run as root"
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:166
+msgid "Serves as Location in Apple standards."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:105
 msgid "Settings"
 msgstr ""
 
-#: applications/luci-app-p910nd/luasrc/model/cbi/p910nd.lua:22
-msgid "Specifies the interface to listen on."
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:227
+msgid "Some examples:"
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:158
+msgid "The %s type element."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:174
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:203
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:218
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:226
+msgid "The %s value."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:159
+msgid "User readable description of maker and model."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:141
+msgid "Whether this print port is bi-directional."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:150
+msgctxt "mDNS/Bonjour/ZeroConf"
+msgid "Whether to advertise this printer via %s."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:132
+msgid "any"
 msgstr ""
 
-#: applications/luci-app-p910nd/luasrc/model/cbi/p910nd.lua:40
-msgid "TCP listener port."
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:175
+msgid "enclosed within parentheses"
 msgstr ""
 
-#: applications/luci-app-p910nd/luasrc/model/cbi/p910nd.lua:18
-msgid "enable"
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:65
+msgid "map ports 9100-9109 to local printers."
 msgstr ""
 
-#: applications/luci-app-p910nd/luasrc/model/cbi/p910nd.lua:9
 #: applications/luci-app-p910nd/root/usr/share/luci/menu.d/luci-app-p910nd.json:3
 msgid "p910nd - Printer server"
 msgstr ""
 
-#~ msgid "p910nd listens on port 910+N. E.g. 9100 for the first printer."
-#~ msgstr "p910nd listens on port 910+N. E.g. 9100 for the first printer."
index 6deeaec7ec7ce97965762a9006d35f171fe1808b..2f5cda89d0902f852119e57235cc775c2d37c849 100644 (file)
@@ -12,54 +12,170 @@ msgstr ""
 "Plural-Forms: nplurals=2; plural=n != 1;\n"
 "X-Generator: Weblate 4.7-dev\n"
 
-#: applications/luci-app-p910nd/luasrc/model/cbi/p910nd.lua:46
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:104
+msgid "Add printer config"
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:123
+msgid "Be aware: %s also listens on port 9100."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:140
 msgid "Bidirectional mode"
 msgstr "Kétirányú mód"
 
-#: applications/luci-app-p910nd/luasrc/model/cbi/p910nd.lua:20
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:167
+msgid "By the router"
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:112
+msgid "Connected %s devices show in this list."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:110
 msgid "Device"
 msgstr "Eszköz"
 
-#: applications/luci-app-p910nd/luasrc/model/cbi/p910nd.lua:10
-msgid ""
-"First you have to install the packages to get support for USB (kmod-usb-"
-"printer) or parallel port (kmod-lp)."
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:107
+msgid "Enabled"
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:49
+msgid "Error calling \"opkg list-installed\":"
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:38
+msgid "Error executing \"find\" command:"
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:88
+msgid "For USB connected printers"
 msgstr ""
-"Először telepítenie kell a csomagokat, hogy támogatást kapjon az USB (kmod-"
-"usb-printer) vagy a párhuzamos port (kmod-lp) használatához."
 
 #: applications/luci-app-p910nd/root/usr/share/rpcd/acl.d/luci-app-p910nd.json:3
 msgid "Grant UCI access for luci-app-p910nd"
 msgstr "UCI hozzáférés megadása a luci-app-p910nd-hez"
 
-#: applications/luci-app-p910nd/luasrc/model/cbi/p910nd.lua:22
-msgid "Interface"
-msgstr "Csatoló"
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:71
+msgid "It is safe to install both, even if only one is needed."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:129
+msgid "Listen IP"
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:130
+msgid "Listen on a specific IP."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:122
+msgid "Local TCP listen port for this printer."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:204
+msgid "Manufacturer"
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:151
+msgctxt "mDNS"
+msgid "Note: %s only advertises one (the first) printer on this host."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:231
+msgid "Note: Set only CMD languages that your printer understands."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:152
+msgid "Note: USB hotplug attempts to provide some of the values below."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:142
+msgid "Note: USB hotplug correctly detects this."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:111
+msgid ""
+"Note: character device assignment can change upon reboot/reconnect with "
+"multiple USB devices."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:175
+msgid "Note: must be %s."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:70
+msgid "One of these kernel modules is needed for p910nd to find your printer."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:146
+msgid "Overrides default of %s."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:81
+msgid "Parallel port line printer device support"
+msgstr ""
 
-#: applications/luci-app-p910nd/luasrc/model/cbi/p910nd.lua:40
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:121
 msgid "Port"
 msgstr "Port"
 
-#: applications/luci-app-p910nd/luasrc/model/cbi/p910nd.lua:14
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:15
+msgid "Port 910n print daemon"
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:145
+msgid "Run as root"
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:166
+msgid "Serves as Location in Apple standards."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:105
 msgid "Settings"
 msgstr "Beállítások"
 
-#: applications/luci-app-p910nd/luasrc/model/cbi/p910nd.lua:22
-msgid "Specifies the interface to listen on."
-msgstr "Megadja azt a csatolót, amelyen figyelni kell."
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:227
+msgid "Some examples:"
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:158
+msgid "The %s type element."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:174
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:203
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:218
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:226
+msgid "The %s value."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:159
+msgid "User readable description of maker and model."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:141
+msgid "Whether this print port is bi-directional."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:150
+msgctxt "mDNS/Bonjour/ZeroConf"
+msgid "Whether to advertise this printer via %s."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:132
+msgid "any"
+msgstr ""
 
-#: applications/luci-app-p910nd/luasrc/model/cbi/p910nd.lua:40
-msgid "TCP listener port."
-msgstr "TCP figyelési port."
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:175
+msgid "enclosed within parentheses"
+msgstr ""
 
-#: applications/luci-app-p910nd/luasrc/model/cbi/p910nd.lua:18
-msgid "enable"
-msgstr "engedélyezés"
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:65
+msgid "map ports 9100-9109 to local printers."
+msgstr ""
 
-#: applications/luci-app-p910nd/luasrc/model/cbi/p910nd.lua:9
 #: applications/luci-app-p910nd/root/usr/share/luci/menu.d/luci-app-p910nd.json:3
 msgid "p910nd - Printer server"
 msgstr "p910nd – nyomtatókiszolgáló"
 
-#~ msgid "port_help"
-#~ msgstr "port_súgó"
index 5a90cb504f01bd8ba4d7aa5d1715f25429b6a37b..1a249d52068a7470a1b1c60ac932e0a6e7f59737 100644 (file)
@@ -14,58 +14,170 @@ msgstr ""
 "Plural-Forms: nplurals=2; plural=n != 1;\n"
 "X-Generator: Weblate 4.11-dev\n"
 
-#: applications/luci-app-p910nd/luasrc/model/cbi/p910nd.lua:46
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:104
+msgid "Add printer config"
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:123
+msgid "Be aware: %s also listens on port 9100."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:140
 msgid "Bidirectional mode"
 msgstr "Modalità bidirezionale"
 
-#: applications/luci-app-p910nd/luasrc/model/cbi/p910nd.lua:20
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:167
+msgid "By the router"
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:112
+msgid "Connected %s devices show in this list."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:110
 msgid "Device"
 msgstr "Dispositivo"
 
-#: applications/luci-app-p910nd/luasrc/model/cbi/p910nd.lua:10
-msgid ""
-"First you have to install the packages to get support for USB (kmod-usb-"
-"printer) or parallel port (kmod-lp)."
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:107
+msgid "Enabled"
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:49
+msgid "Error calling \"opkg list-installed\":"
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:38
+msgid "Error executing \"find\" command:"
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:88
+msgid "For USB connected printers"
 msgstr ""
-"Devi prima aver installato i pacchetti per avere il supporto dell'USB (kmod-"
-"usb-printer) o della porta parallela (kmod-lp)."
 
 #: applications/luci-app-p910nd/root/usr/share/rpcd/acl.d/luci-app-p910nd.json:3
 msgid "Grant UCI access for luci-app-p910nd"
 msgstr "Concedere l'accesso UCI per luci-app-p910nd"
 
-#: applications/luci-app-p910nd/luasrc/model/cbi/p910nd.lua:22
-msgid "Interface"
-msgstr "Interfaccia"
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:71
+msgid "It is safe to install both, even if only one is needed."
+msgstr ""
 
-#: applications/luci-app-p910nd/luasrc/model/cbi/p910nd.lua:40
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:129
+msgid "Listen IP"
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:130
+msgid "Listen on a specific IP."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:122
+msgid "Local TCP listen port for this printer."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:204
+msgid "Manufacturer"
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:151
+msgctxt "mDNS"
+msgid "Note: %s only advertises one (the first) printer on this host."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:231
+msgid "Note: Set only CMD languages that your printer understands."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:152
+msgid "Note: USB hotplug attempts to provide some of the values below."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:142
+msgid "Note: USB hotplug correctly detects this."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:111
+msgid ""
+"Note: character device assignment can change upon reboot/reconnect with "
+"multiple USB devices."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:175
+msgid "Note: must be %s."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:70
+msgid "One of these kernel modules is needed for p910nd to find your printer."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:146
+msgid "Overrides default of %s."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:81
+msgid "Parallel port line printer device support"
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:121
 msgid "Port"
 msgstr "Porta"
 
-#: applications/luci-app-p910nd/luasrc/model/cbi/p910nd.lua:14
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:15
+msgid "Port 910n print daemon"
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:145
+msgid "Run as root"
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:166
+msgid "Serves as Location in Apple standards."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:105
 msgid "Settings"
 msgstr "Impostazioni"
 
-#: applications/luci-app-p910nd/luasrc/model/cbi/p910nd.lua:22
-msgid "Specifies the interface to listen on."
-msgstr "Specifica l'interfaccia per l'ascolto."
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:227
+msgid "Some examples:"
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:158
+msgid "The %s type element."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:174
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:203
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:218
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:226
+msgid "The %s value."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:159
+msgid "User readable description of maker and model."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:141
+msgid "Whether this print port is bi-directional."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:150
+msgctxt "mDNS/Bonjour/ZeroConf"
+msgid "Whether to advertise this printer via %s."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:132
+msgid "any"
+msgstr ""
 
-#: applications/luci-app-p910nd/luasrc/model/cbi/p910nd.lua:40
-msgid "TCP listener port."
-msgstr "Porta d'ascolto TCP."
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:175
+msgid "enclosed within parentheses"
+msgstr ""
 
-#: applications/luci-app-p910nd/luasrc/model/cbi/p910nd.lua:18
-msgid "enable"
-msgstr "abilita"
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:65
+msgid "map ports 9100-9109 to local printers."
+msgstr ""
 
-#: applications/luci-app-p910nd/luasrc/model/cbi/p910nd.lua:9
 #: applications/luci-app-p910nd/root/usr/share/luci/menu.d/luci-app-p910nd.json:3
 msgid "p910nd - Printer server"
 msgstr "p910nd - Server di stampa"
 
-#~ msgid "port_help"
-#~ msgstr "Porta d'aiuto"
-
-#~ msgid "p910nd listens on port 910+N. E.g. 9100 for the first printer."
-#~ msgstr ""
-#~ "p910nd è in ascolto sulla porta 910+N. Ad es. 9100 per la prima stampante."
index d4b0fbed79c6cc491fcb25a435c3a8f68e3ef177..d8229deb87d6a4de86d77e7f2f52ec6b43517e60 100644 (file)
@@ -14,54 +14,170 @@ msgstr ""
 "Plural-Forms: nplurals=1; plural=0;\n"
 "X-Generator: Weblate 4.4-dev\n"
 
-#: applications/luci-app-p910nd/luasrc/model/cbi/p910nd.lua:46
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:104
+msgid "Add printer config"
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:123
+msgid "Be aware: %s also listens on port 9100."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:140
 msgid "Bidirectional mode"
 msgstr "双方向モード"
 
-#: applications/luci-app-p910nd/luasrc/model/cbi/p910nd.lua:20
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:167
+msgid "By the router"
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:112
+msgid "Connected %s devices show in this list."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:110
 msgid "Device"
 msgstr "デバイス"
 
-#: applications/luci-app-p910nd/luasrc/model/cbi/p910nd.lua:10
-msgid ""
-"First you have to install the packages to get support for USB (kmod-usb-"
-"printer) or parallel port (kmod-lp)."
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:107
+msgid "Enabled"
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:49
+msgid "Error calling \"opkg list-installed\":"
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:38
+msgid "Error executing \"find\" command:"
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:88
+msgid "For USB connected printers"
 msgstr ""
-"まず初めに、USB(kmod-usb-printer)または、パラレルポート(kmod-lp)をサポートす"
-"るためのパッケージをインストールしてください。"
 
 #: applications/luci-app-p910nd/root/usr/share/rpcd/acl.d/luci-app-p910nd.json:3
 msgid "Grant UCI access for luci-app-p910nd"
 msgstr "luci-app-p910ndにUCIアクセスを許可"
 
-#: applications/luci-app-p910nd/luasrc/model/cbi/p910nd.lua:22
-msgid "Interface"
-msgstr "インターフェース"
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:71
+msgid "It is safe to install both, even if only one is needed."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:129
+msgid "Listen IP"
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:130
+msgid "Listen on a specific IP."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:122
+msgid "Local TCP listen port for this printer."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:204
+msgid "Manufacturer"
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:151
+msgctxt "mDNS"
+msgid "Note: %s only advertises one (the first) printer on this host."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:231
+msgid "Note: Set only CMD languages that your printer understands."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:152
+msgid "Note: USB hotplug attempts to provide some of the values below."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:142
+msgid "Note: USB hotplug correctly detects this."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:111
+msgid ""
+"Note: character device assignment can change upon reboot/reconnect with "
+"multiple USB devices."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:175
+msgid "Note: must be %s."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:70
+msgid "One of these kernel modules is needed for p910nd to find your printer."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:146
+msgid "Overrides default of %s."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:81
+msgid "Parallel port line printer device support"
+msgstr ""
 
-#: applications/luci-app-p910nd/luasrc/model/cbi/p910nd.lua:40
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:121
 msgid "Port"
 msgstr "ポート"
 
-#: applications/luci-app-p910nd/luasrc/model/cbi/p910nd.lua:14
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:15
+msgid "Port 910n print daemon"
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:145
+msgid "Run as root"
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:166
+msgid "Serves as Location in Apple standards."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:105
 msgid "Settings"
 msgstr "設定"
 
-#: applications/luci-app-p910nd/luasrc/model/cbi/p910nd.lua:22
-msgid "Specifies the interface to listen on."
-msgstr "リッスンするインターフェースを指定します。"
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:227
+msgid "Some examples:"
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:158
+msgid "The %s type element."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:174
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:203
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:218
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:226
+msgid "The %s value."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:159
+msgid "User readable description of maker and model."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:141
+msgid "Whether this print port is bi-directional."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:150
+msgctxt "mDNS/Bonjour/ZeroConf"
+msgid "Whether to advertise this printer via %s."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:132
+msgid "any"
+msgstr ""
 
-#: applications/luci-app-p910nd/luasrc/model/cbi/p910nd.lua:40
-msgid "TCP listener port."
-msgstr "TCP接続待ちポート"
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:175
+msgid "enclosed within parentheses"
+msgstr ""
 
-#: applications/luci-app-p910nd/luasrc/model/cbi/p910nd.lua:18
-msgid "enable"
-msgstr "有効にする"
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:65
+msgid "map ports 9100-9109 to local printers."
+msgstr ""
 
-#: applications/luci-app-p910nd/luasrc/model/cbi/p910nd.lua:9
 #: applications/luci-app-p910nd/root/usr/share/luci/menu.d/luci-app-p910nd.json:3
 msgid "p910nd - Printer server"
 msgstr "p910nd - プリンタサーバー"
 
-#~ msgid "port_help"
-#~ msgstr "port_help"
index 4cb44ad71b6f0d098a3de3baa70402e0b610c6f7..297e5a93812a82413989ead7a150a068d9de406d 100644 (file)
@@ -14,52 +14,170 @@ msgstr ""
 "Plural-Forms: nplurals=1; plural=0;\n"
 "X-Generator: Weblate 5.4-dev\n"
 
-#: applications/luci-app-p910nd/luasrc/model/cbi/p910nd.lua:46
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:104
+msgid "Add printer config"
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:123
+msgid "Be aware: %s also listens on port 9100."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:140
 msgid "Bidirectional mode"
 msgstr "양방향 모드"
 
-#: applications/luci-app-p910nd/luasrc/model/cbi/p910nd.lua:20
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:167
+msgid "By the router"
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:112
+msgid "Connected %s devices show in this list."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:110
 msgid "Device"
 msgstr "장비"
 
-#: applications/luci-app-p910nd/luasrc/model/cbi/p910nd.lua:10
-msgid ""
-"First you have to install the packages to get support for USB (kmod-usb-"
-"printer) or parallel port (kmod-lp)."
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:107
+msgid "Enabled"
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:49
+msgid "Error calling \"opkg list-installed\":"
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:38
+msgid "Error executing \"find\" command:"
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:88
+msgid "For USB connected printers"
 msgstr ""
 
 #: applications/luci-app-p910nd/root/usr/share/rpcd/acl.d/luci-app-p910nd.json:3
 msgid "Grant UCI access for luci-app-p910nd"
 msgstr ""
 
-#: applications/luci-app-p910nd/luasrc/model/cbi/p910nd.lua:22
-msgid "Interface"
-msgstr "인터페이스"
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:71
+msgid "It is safe to install both, even if only one is needed."
+msgstr ""
 
-#: applications/luci-app-p910nd/luasrc/model/cbi/p910nd.lua:40
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:129
+msgid "Listen IP"
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:130
+msgid "Listen on a specific IP."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:122
+msgid "Local TCP listen port for this printer."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:204
+msgid "Manufacturer"
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:151
+msgctxt "mDNS"
+msgid "Note: %s only advertises one (the first) printer on this host."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:231
+msgid "Note: Set only CMD languages that your printer understands."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:152
+msgid "Note: USB hotplug attempts to provide some of the values below."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:142
+msgid "Note: USB hotplug correctly detects this."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:111
+msgid ""
+"Note: character device assignment can change upon reboot/reconnect with "
+"multiple USB devices."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:175
+msgid "Note: must be %s."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:70
+msgid "One of these kernel modules is needed for p910nd to find your printer."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:146
+msgid "Overrides default of %s."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:81
+msgid "Parallel port line printer device support"
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:121
 msgid "Port"
 msgstr "포트"
 
-#: applications/luci-app-p910nd/luasrc/model/cbi/p910nd.lua:14
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:15
+msgid "Port 910n print daemon"
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:145
+msgid "Run as root"
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:166
+msgid "Serves as Location in Apple standards."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:105
 msgid "Settings"
 msgstr ""
 
-#: applications/luci-app-p910nd/luasrc/model/cbi/p910nd.lua:22
-msgid "Specifies the interface to listen on."
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:227
+msgid "Some examples:"
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:158
+msgid "The %s type element."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:174
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:203
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:218
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:226
+msgid "The %s value."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:159
+msgid "User readable description of maker and model."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:141
+msgid "Whether this print port is bi-directional."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:150
+msgctxt "mDNS/Bonjour/ZeroConf"
+msgid "Whether to advertise this printer via %s."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:132
+msgid "any"
 msgstr ""
 
-#: applications/luci-app-p910nd/luasrc/model/cbi/p910nd.lua:40
-msgid "TCP listener port."
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:175
+msgid "enclosed within parentheses"
 msgstr ""
 
-#: applications/luci-app-p910nd/luasrc/model/cbi/p910nd.lua:18
-msgid "enable"
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:65
+msgid "map ports 9100-9109 to local printers."
 msgstr ""
 
-#: applications/luci-app-p910nd/luasrc/model/cbi/p910nd.lua:9
 #: applications/luci-app-p910nd/root/usr/share/luci/menu.d/luci-app-p910nd.json:3
 msgid "p910nd - Printer server"
 msgstr ""
 
-#~ msgid "p910nd listens on port 910+N. E.g. 9100 for the first printer."
-#~ msgstr "p910nd listens on port 910+N. E.g. 9100 for the first printer."
index ec5c5e3d52d5935da1a37572a113882837fc2350..1527a16431aab5dba402be2da2c9fbf6b0cae826 100644 (file)
@@ -14,53 +14,170 @@ msgstr ""
 "1 : 2);\n"
 "X-Generator: Weblate 5.4-dev\n"
 
-#: applications/luci-app-p910nd/luasrc/model/cbi/p910nd.lua:46
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:104
+msgid "Add printer config"
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:123
+msgid "Be aware: %s also listens on port 9100."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:140
 msgid "Bidirectional mode"
 msgstr "Dvikryptis režimas"
 
-#: applications/luci-app-p910nd/luasrc/model/cbi/p910nd.lua:20
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:167
+msgid "By the router"
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:112
+msgid "Connected %s devices show in this list."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:110
 msgid "Device"
 msgstr "Įrenginys"
 
-#: applications/luci-app-p910nd/luasrc/model/cbi/p910nd.lua:10
-msgid ""
-"First you have to install the packages to get support for USB (kmod-usb-"
-"printer) or parallel port (kmod-lp)."
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:107
+msgid "Enabled"
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:49
+msgid "Error calling \"opkg list-installed\":"
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:38
+msgid "Error executing \"find\" command:"
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:88
+msgid "For USB connected printers"
 msgstr ""
-"Jūs pirma turite įdiegti paketus, norint gauti „USB“ palaikymą („kmod-usb-"
-"printer“) arba pararelinį prievadą („kmod-lp“)."
 
 #: applications/luci-app-p910nd/root/usr/share/rpcd/acl.d/luci-app-p910nd.json:3
 msgid "Grant UCI access for luci-app-p910nd"
 msgstr "Suteikti „UCI“ prieigą – „luci-app-p910nd“"
 
-#: applications/luci-app-p910nd/luasrc/model/cbi/p910nd.lua:22
-msgid "Interface"
-msgstr "Sąsaja ir Sietuvas"
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:71
+msgid "It is safe to install both, even if only one is needed."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:129
+msgid "Listen IP"
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:130
+msgid "Listen on a specific IP."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:122
+msgid "Local TCP listen port for this printer."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:204
+msgid "Manufacturer"
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:151
+msgctxt "mDNS"
+msgid "Note: %s only advertises one (the first) printer on this host."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:231
+msgid "Note: Set only CMD languages that your printer understands."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:152
+msgid "Note: USB hotplug attempts to provide some of the values below."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:142
+msgid "Note: USB hotplug correctly detects this."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:111
+msgid ""
+"Note: character device assignment can change upon reboot/reconnect with "
+"multiple USB devices."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:175
+msgid "Note: must be %s."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:70
+msgid "One of these kernel modules is needed for p910nd to find your printer."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:146
+msgid "Overrides default of %s."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:81
+msgid "Parallel port line printer device support"
+msgstr ""
 
-#: applications/luci-app-p910nd/luasrc/model/cbi/p910nd.lua:40
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:121
 msgid "Port"
 msgstr "Prievadas"
 
-#: applications/luci-app-p910nd/luasrc/model/cbi/p910nd.lua:14
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:15
+msgid "Port 910n print daemon"
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:145
+msgid "Run as root"
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:166
+msgid "Serves as Location in Apple standards."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:105
 msgid "Settings"
 msgstr "Nustatymai"
 
-#: applications/luci-app-p910nd/luasrc/model/cbi/p910nd.lua:22
-msgid "Specifies the interface to listen on."
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:227
+msgid "Some examples:"
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:158
+msgid "The %s type element."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:174
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:203
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:218
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:226
+msgid "The %s value."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:159
+msgid "User readable description of maker and model."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:141
+msgid "Whether this print port is bi-directional."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:150
+msgctxt "mDNS/Bonjour/ZeroConf"
+msgid "Whether to advertise this printer via %s."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:132
+msgid "any"
 msgstr ""
-"Nurodo kurią sąsają ir/arba sietuvą, per kurią laukti prisijungimo/jungties "
-"ryšio."
 
-#: applications/luci-app-p910nd/luasrc/model/cbi/p910nd.lua:40
-msgid "TCP listener port."
-msgstr "„TCP“ laukiamojo prisijungimo/jungties ryšio prievadas."
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:175
+msgid "enclosed within parentheses"
+msgstr ""
 
-#: applications/luci-app-p910nd/luasrc/model/cbi/p910nd.lua:18
-msgid "enable"
-msgstr "įjungti/įgalinti"
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:65
+msgid "map ports 9100-9109 to local printers."
+msgstr ""
 
-#: applications/luci-app-p910nd/luasrc/model/cbi/p910nd.lua:9
 #: applications/luci-app-p910nd/root/usr/share/luci/menu.d/luci-app-p910nd.json:3
 msgid "p910nd - Printer server"
 msgstr "„p910nd“ – Spausdintuvo serveris"
+
index 42f68b7b0be7f058e3546ab92cf171c30eba9045..e145cc46083fa4bb3669cdc1158a6e19c6a278d7 100644 (file)
@@ -14,52 +14,170 @@ msgstr ""
 "Plural-Forms: nplurals=2; plural=n > 1;\n"
 "X-Generator: Weblate 3.11-dev\n"
 
-#: applications/luci-app-p910nd/luasrc/model/cbi/p910nd.lua:46
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:104
+msgid "Add printer config"
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:123
+msgid "Be aware: %s also listens on port 9100."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:140
 msgid "Bidirectional mode"
 msgstr ""
 
-#: applications/luci-app-p910nd/luasrc/model/cbi/p910nd.lua:20
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:167
+msgid "By the router"
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:112
+msgid "Connected %s devices show in this list."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:110
 msgid "Device"
 msgstr "डिव्हाइस"
 
-#: applications/luci-app-p910nd/luasrc/model/cbi/p910nd.lua:10
-msgid ""
-"First you have to install the packages to get support for USB (kmod-usb-"
-"printer) or parallel port (kmod-lp)."
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:107
+msgid "Enabled"
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:49
+msgid "Error calling \"opkg list-installed\":"
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:38
+msgid "Error executing \"find\" command:"
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:88
+msgid "For USB connected printers"
 msgstr ""
 
 #: applications/luci-app-p910nd/root/usr/share/rpcd/acl.d/luci-app-p910nd.json:3
 msgid "Grant UCI access for luci-app-p910nd"
 msgstr ""
 
-#: applications/luci-app-p910nd/luasrc/model/cbi/p910nd.lua:22
-msgid "Interface"
-msgstr "इंटरफेस"
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:71
+msgid "It is safe to install both, even if only one is needed."
+msgstr ""
 
-#: applications/luci-app-p910nd/luasrc/model/cbi/p910nd.lua:40
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:129
+msgid "Listen IP"
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:130
+msgid "Listen on a specific IP."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:122
+msgid "Local TCP listen port for this printer."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:204
+msgid "Manufacturer"
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:151
+msgctxt "mDNS"
+msgid "Note: %s only advertises one (the first) printer on this host."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:231
+msgid "Note: Set only CMD languages that your printer understands."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:152
+msgid "Note: USB hotplug attempts to provide some of the values below."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:142
+msgid "Note: USB hotplug correctly detects this."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:111
+msgid ""
+"Note: character device assignment can change upon reboot/reconnect with "
+"multiple USB devices."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:175
+msgid "Note: must be %s."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:70
+msgid "One of these kernel modules is needed for p910nd to find your printer."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:146
+msgid "Overrides default of %s."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:81
+msgid "Parallel port line printer device support"
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:121
 msgid "Port"
 msgstr "पोर्ट"
 
-#: applications/luci-app-p910nd/luasrc/model/cbi/p910nd.lua:14
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:15
+msgid "Port 910n print daemon"
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:145
+msgid "Run as root"
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:166
+msgid "Serves as Location in Apple standards."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:105
 msgid "Settings"
 msgstr "सेटिंग्ज"
 
-#: applications/luci-app-p910nd/luasrc/model/cbi/p910nd.lua:22
-msgid "Specifies the interface to listen on."
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:227
+msgid "Some examples:"
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:158
+msgid "The %s type element."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:174
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:203
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:218
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:226
+msgid "The %s value."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:159
+msgid "User readable description of maker and model."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:141
+msgid "Whether this print port is bi-directional."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:150
+msgctxt "mDNS/Bonjour/ZeroConf"
+msgid "Whether to advertise this printer via %s."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:132
+msgid "any"
 msgstr ""
 
-#: applications/luci-app-p910nd/luasrc/model/cbi/p910nd.lua:40
-msgid "TCP listener port."
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:175
+msgid "enclosed within parentheses"
 msgstr ""
 
-#: applications/luci-app-p910nd/luasrc/model/cbi/p910nd.lua:18
-msgid "enable"
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:65
+msgid "map ports 9100-9109 to local printers."
 msgstr ""
 
-#: applications/luci-app-p910nd/luasrc/model/cbi/p910nd.lua:9
 #: applications/luci-app-p910nd/root/usr/share/luci/menu.d/luci-app-p910nd.json:3
 msgid "p910nd - Printer server"
 msgstr ""
 
-#~ msgid "p910nd listens on port 910+N. E.g. 9100 for the first printer."
-#~ msgstr "p910nd listens on port 910+N. E.g. 9100 for the first printer."
index aac894386a7b9868b5898d0a46871174291c1c64..3fdfe976807a1c41a5c606111e96f4e2abcf1cf8 100644 (file)
@@ -14,49 +14,170 @@ msgstr ""
 "Plural-Forms: nplurals=1; plural=0;\n"
 "X-Generator: Weblate 5.4-dev\n"
 
-#: applications/luci-app-p910nd/luasrc/model/cbi/p910nd.lua:46
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:104
+msgid "Add printer config"
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:123
+msgid "Be aware: %s also listens on port 9100."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:140
 msgid "Bidirectional mode"
 msgstr "Mod dwihala"
 
-#: applications/luci-app-p910nd/luasrc/model/cbi/p910nd.lua:20
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:167
+msgid "By the router"
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:112
+msgid "Connected %s devices show in this list."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:110
 msgid "Device"
 msgstr "Peranti"
 
-#: applications/luci-app-p910nd/luasrc/model/cbi/p910nd.lua:10
-msgid ""
-"First you have to install the packages to get support for USB (kmod-usb-"
-"printer) or parallel port (kmod-lp)."
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:107
+msgid "Enabled"
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:49
+msgid "Error calling \"opkg list-installed\":"
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:38
+msgid "Error executing \"find\" command:"
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:88
+msgid "For USB connected printers"
 msgstr ""
 
 #: applications/luci-app-p910nd/root/usr/share/rpcd/acl.d/luci-app-p910nd.json:3
 msgid "Grant UCI access for luci-app-p910nd"
 msgstr ""
 
-#: applications/luci-app-p910nd/luasrc/model/cbi/p910nd.lua:22
-msgid "Interface"
-msgstr "Antara muka"
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:71
+msgid "It is safe to install both, even if only one is needed."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:129
+msgid "Listen IP"
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:130
+msgid "Listen on a specific IP."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:122
+msgid "Local TCP listen port for this printer."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:204
+msgid "Manufacturer"
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:151
+msgctxt "mDNS"
+msgid "Note: %s only advertises one (the first) printer on this host."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:231
+msgid "Note: Set only CMD languages that your printer understands."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:152
+msgid "Note: USB hotplug attempts to provide some of the values below."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:142
+msgid "Note: USB hotplug correctly detects this."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:111
+msgid ""
+"Note: character device assignment can change upon reboot/reconnect with "
+"multiple USB devices."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:175
+msgid "Note: must be %s."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:70
+msgid "One of these kernel modules is needed for p910nd to find your printer."
+msgstr ""
 
-#: applications/luci-app-p910nd/luasrc/model/cbi/p910nd.lua:40
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:146
+msgid "Overrides default of %s."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:81
+msgid "Parallel port line printer device support"
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:121
 msgid "Port"
 msgstr "Port"
 
-#: applications/luci-app-p910nd/luasrc/model/cbi/p910nd.lua:14
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:15
+msgid "Port 910n print daemon"
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:145
+msgid "Run as root"
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:166
+msgid "Serves as Location in Apple standards."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:105
 msgid "Settings"
 msgstr ""
 
-#: applications/luci-app-p910nd/luasrc/model/cbi/p910nd.lua:22
-msgid "Specifies the interface to listen on."
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:227
+msgid "Some examples:"
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:158
+msgid "The %s type element."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:174
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:203
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:218
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:226
+msgid "The %s value."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:159
+msgid "User readable description of maker and model."
 msgstr ""
 
-#: applications/luci-app-p910nd/luasrc/model/cbi/p910nd.lua:40
-msgid "TCP listener port."
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:141
+msgid "Whether this print port is bi-directional."
 msgstr ""
 
-#: applications/luci-app-p910nd/luasrc/model/cbi/p910nd.lua:18
-msgid "enable"
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:150
+msgctxt "mDNS/Bonjour/ZeroConf"
+msgid "Whether to advertise this printer via %s."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:132
+msgid "any"
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:175
+msgid "enclosed within parentheses"
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:65
+msgid "map ports 9100-9109 to local printers."
 msgstr ""
 
-#: applications/luci-app-p910nd/luasrc/model/cbi/p910nd.lua:9
 #: applications/luci-app-p910nd/root/usr/share/luci/menu.d/luci-app-p910nd.json:3
 msgid "p910nd - Printer server"
 msgstr ""
+
index e8c901f489a21e8a54a11d0f11cc2df86b0813be..5c864830fa0e48c68adb945d54e5db143178e839 100644 (file)
@@ -10,55 +10,170 @@ msgstr ""
 "Plural-Forms: nplurals=2; plural=n != 1;\n"
 "X-Generator: Weblate 4.18.1\n"
 
-#: applications/luci-app-p910nd/luasrc/model/cbi/p910nd.lua:46
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:104
+msgid "Add printer config"
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:123
+msgid "Be aware: %s also listens on port 9100."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:140
 msgid "Bidirectional mode"
 msgstr "Toveis modus (bidirectional)"
 
-#: applications/luci-app-p910nd/luasrc/model/cbi/p910nd.lua:20
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:167
+msgid "By the router"
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:112
+msgid "Connected %s devices show in this list."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:110
 msgid "Device"
 msgstr "Enhet"
 
-#: applications/luci-app-p910nd/luasrc/model/cbi/p910nd.lua:10
-msgid ""
-"First you have to install the packages to get support for USB (kmod-usb-"
-"printer) or parallel port (kmod-lp)."
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:107
+msgid "Enabled"
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:49
+msgid "Error calling \"opkg list-installed\":"
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:38
+msgid "Error executing \"find\" command:"
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:88
+msgid "For USB connected printers"
 msgstr ""
-"Du må først installere pakkene som gir støtte for USB (kmod-usb-printer) "
-"eller parallellport (kmod-lp) skriver."
 
 #: applications/luci-app-p910nd/root/usr/share/rpcd/acl.d/luci-app-p910nd.json:3
 msgid "Grant UCI access for luci-app-p910nd"
 msgstr "Innvilg UCI-tilgang for luci-app-p910nd"
 
-#: applications/luci-app-p910nd/luasrc/model/cbi/p910nd.lua:22
-msgid "Interface"
-msgstr "Grensesnitt"
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:71
+msgid "It is safe to install both, even if only one is needed."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:129
+msgid "Listen IP"
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:130
+msgid "Listen on a specific IP."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:122
+msgid "Local TCP listen port for this printer."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:204
+msgid "Manufacturer"
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:151
+msgctxt "mDNS"
+msgid "Note: %s only advertises one (the first) printer on this host."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:231
+msgid "Note: Set only CMD languages that your printer understands."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:152
+msgid "Note: USB hotplug attempts to provide some of the values below."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:142
+msgid "Note: USB hotplug correctly detects this."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:111
+msgid ""
+"Note: character device assignment can change upon reboot/reconnect with "
+"multiple USB devices."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:175
+msgid "Note: must be %s."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:70
+msgid "One of these kernel modules is needed for p910nd to find your printer."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:146
+msgid "Overrides default of %s."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:81
+msgid "Parallel port line printer device support"
+msgstr ""
 
-#: applications/luci-app-p910nd/luasrc/model/cbi/p910nd.lua:40
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:121
 msgid "Port"
 msgstr "Port"
 
-#: applications/luci-app-p910nd/luasrc/model/cbi/p910nd.lua:14
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:15
+msgid "Port 910n print daemon"
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:145
+msgid "Run as root"
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:166
+msgid "Serves as Location in Apple standards."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:105
 msgid "Settings"
 msgstr "Innstillinger"
 
-#: applications/luci-app-p910nd/luasrc/model/cbi/p910nd.lua:22
-msgid "Specifies the interface to listen on."
-msgstr "Angir grensesnitt å lytte til."
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:227
+msgid "Some examples:"
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:158
+msgid "The %s type element."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:174
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:203
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:218
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:226
+msgid "The %s value."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:159
+msgid "User readable description of maker and model."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:141
+msgid "Whether this print port is bi-directional."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:150
+msgctxt "mDNS/Bonjour/ZeroConf"
+msgid "Whether to advertise this printer via %s."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:132
+msgid "any"
+msgstr ""
 
-#: applications/luci-app-p910nd/luasrc/model/cbi/p910nd.lua:40
-msgid "TCP listener port."
-msgstr "TCP lytte port."
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:175
+msgid "enclosed within parentheses"
+msgstr ""
 
-#: applications/luci-app-p910nd/luasrc/model/cbi/p910nd.lua:18
-msgid "enable"
-msgstr "Aktiver"
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:65
+msgid "map ports 9100-9109 to local printers."
+msgstr ""
 
-#: applications/luci-app-p910nd/luasrc/model/cbi/p910nd.lua:9
 #: applications/luci-app-p910nd/root/usr/share/luci/menu.d/luci-app-p910nd.json:3
 msgid "p910nd - Printer server"
 msgstr "p910nd - Skriverserver"
 
-#~ msgid "port_help"
-#~ msgstr ""
-#~ "p910nd lytter på port 910+N. (N=0 blir port 9100 for første skriver)"
index c20591ba1dd688d04c630bc5c49f9f81972feb4d..ced3356254a14637d6a9f713f021ebdb48dc5ad4 100644 (file)
@@ -14,54 +14,170 @@ msgstr ""
 "Plural-Forms: nplurals=2; plural=n != 1;\n"
 "X-Generator: Weblate 4.18-dev\n"
 
-#: applications/luci-app-p910nd/luasrc/model/cbi/p910nd.lua:46
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:104
+msgid "Add printer config"
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:123
+msgid "Be aware: %s also listens on port 9100."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:140
 msgid "Bidirectional mode"
 msgstr "Bidirectionele modus"
 
-#: applications/luci-app-p910nd/luasrc/model/cbi/p910nd.lua:20
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:167
+msgid "By the router"
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:112
+msgid "Connected %s devices show in this list."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:110
 msgid "Device"
 msgstr "Apparaat"
 
-#: applications/luci-app-p910nd/luasrc/model/cbi/p910nd.lua:10
-msgid ""
-"First you have to install the packages to get support for USB (kmod-usb-"
-"printer) or parallel port (kmod-lp)."
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:107
+msgid "Enabled"
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:49
+msgid "Error calling \"opkg list-installed\":"
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:38
+msgid "Error executing \"find\" command:"
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:88
+msgid "For USB connected printers"
 msgstr ""
-"Eerst moet je de pakketten installeren om ondersteuning te krijgen voor USB "
-"(kmod-usb-printer) of parallelle poort (kmod-lp)."
 
 #: applications/luci-app-p910nd/root/usr/share/rpcd/acl.d/luci-app-p910nd.json:3
 msgid "Grant UCI access for luci-app-p910nd"
 msgstr "Verleen UCI toegang voor luci-app-p910nd"
 
-#: applications/luci-app-p910nd/luasrc/model/cbi/p910nd.lua:22
-msgid "Interface"
-msgstr "Interface"
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:71
+msgid "It is safe to install both, even if only one is needed."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:129
+msgid "Listen IP"
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:130
+msgid "Listen on a specific IP."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:122
+msgid "Local TCP listen port for this printer."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:204
+msgid "Manufacturer"
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:151
+msgctxt "mDNS"
+msgid "Note: %s only advertises one (the first) printer on this host."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:231
+msgid "Note: Set only CMD languages that your printer understands."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:152
+msgid "Note: USB hotplug attempts to provide some of the values below."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:142
+msgid "Note: USB hotplug correctly detects this."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:111
+msgid ""
+"Note: character device assignment can change upon reboot/reconnect with "
+"multiple USB devices."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:175
+msgid "Note: must be %s."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:70
+msgid "One of these kernel modules is needed for p910nd to find your printer."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:146
+msgid "Overrides default of %s."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:81
+msgid "Parallel port line printer device support"
+msgstr ""
 
-#: applications/luci-app-p910nd/luasrc/model/cbi/p910nd.lua:40
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:121
 msgid "Port"
 msgstr "Poort"
 
-#: applications/luci-app-p910nd/luasrc/model/cbi/p910nd.lua:14
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:15
+msgid "Port 910n print daemon"
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:145
+msgid "Run as root"
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:166
+msgid "Serves as Location in Apple standards."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:105
 msgid "Settings"
 msgstr "Instellingen"
 
-#: applications/luci-app-p910nd/luasrc/model/cbi/p910nd.lua:22
-msgid "Specifies the interface to listen on."
-msgstr "Specifieeert de interface om te luisteren."
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:227
+msgid "Some examples:"
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:158
+msgid "The %s type element."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:174
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:203
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:218
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:226
+msgid "The %s value."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:159
+msgid "User readable description of maker and model."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:141
+msgid "Whether this print port is bi-directional."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:150
+msgctxt "mDNS/Bonjour/ZeroConf"
+msgid "Whether to advertise this printer via %s."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:132
+msgid "any"
+msgstr ""
 
-#: applications/luci-app-p910nd/luasrc/model/cbi/p910nd.lua:40
-msgid "TCP listener port."
-msgstr "TCP luisterpoort."
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:175
+msgid "enclosed within parentheses"
+msgstr ""
 
-#: applications/luci-app-p910nd/luasrc/model/cbi/p910nd.lua:18
-msgid "enable"
-msgstr "inschakelen"
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:65
+msgid "map ports 9100-9109 to local printers."
+msgstr ""
 
-#: applications/luci-app-p910nd/luasrc/model/cbi/p910nd.lua:9
 #: applications/luci-app-p910nd/root/usr/share/luci/menu.d/luci-app-p910nd.json:3
 msgid "p910nd - Printer server"
 msgstr "p910nd - Printer server"
 
-#~ msgid "p910nd listens on port 910+N. E.g. 9100 for the first printer."
-#~ msgstr "p910nd listens on port 910+N. E.g. 9100 for the first printer."
index b2379a1b491224ebe20289451479021ac9ca0352..c6219eddf62e5d3abdc851bc01eb122a086890c1 100644 (file)
@@ -15,58 +15,171 @@ msgstr ""
 "|| n%100>=20) ? 1 : 2;\n"
 "X-Generator: Weblate 5.2-dev\n"
 
-#: applications/luci-app-p910nd/luasrc/model/cbi/p910nd.lua:46
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:104
+msgid "Add printer config"
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:123
+msgid "Be aware: %s also listens on port 9100."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:140
 msgid "Bidirectional mode"
 msgstr "Tryb dwukierunkowy"
 
-#: applications/luci-app-p910nd/luasrc/model/cbi/p910nd.lua:20
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:167
+msgid "By the router"
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:112
+msgid "Connected %s devices show in this list."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:110
 msgid "Device"
 msgstr "Urządzenie"
 
-#: applications/luci-app-p910nd/luasrc/model/cbi/p910nd.lua:10
-msgid ""
-"First you have to install the packages to get support for USB (kmod-usb-"
-"printer) or parallel port (kmod-lp)."
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:107
+msgid "Enabled"
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:49
+msgid "Error calling \"opkg list-installed\":"
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:38
+msgid "Error executing \"find\" command:"
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:88
+msgid "For USB connected printers"
 msgstr ""
-"Po pierwsze, musisz zainstalować pakiety obsługujące interfejs USB (kmod-usb-"
-"printer) lub LPT (kmod-lp)."
 
 #: applications/luci-app-p910nd/root/usr/share/rpcd/acl.d/luci-app-p910nd.json:3
 msgid "Grant UCI access for luci-app-p910nd"
 msgstr "Przyznaj luci-app-p910nd dostęp do UCI"
 
-#: applications/luci-app-p910nd/luasrc/model/cbi/p910nd.lua:22
-msgid "Interface"
-msgstr "Interfejs"
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:71
+msgid "It is safe to install both, even if only one is needed."
+msgstr ""
 
-#: applications/luci-app-p910nd/luasrc/model/cbi/p910nd.lua:40
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:129
+msgid "Listen IP"
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:130
+msgid "Listen on a specific IP."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:122
+msgid "Local TCP listen port for this printer."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:204
+msgid "Manufacturer"
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:151
+msgctxt "mDNS"
+msgid "Note: %s only advertises one (the first) printer on this host."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:231
+msgid "Note: Set only CMD languages that your printer understands."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:152
+msgid "Note: USB hotplug attempts to provide some of the values below."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:142
+msgid "Note: USB hotplug correctly detects this."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:111
+msgid ""
+"Note: character device assignment can change upon reboot/reconnect with "
+"multiple USB devices."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:175
+msgid "Note: must be %s."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:70
+msgid "One of these kernel modules is needed for p910nd to find your printer."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:146
+msgid "Overrides default of %s."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:81
+msgid "Parallel port line printer device support"
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:121
 msgid "Port"
 msgstr "Port"
 
-#: applications/luci-app-p910nd/luasrc/model/cbi/p910nd.lua:14
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:15
+msgid "Port 910n print daemon"
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:145
+msgid "Run as root"
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:166
+msgid "Serves as Location in Apple standards."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:105
 msgid "Settings"
 msgstr "Ustawienia"
 
-#: applications/luci-app-p910nd/luasrc/model/cbi/p910nd.lua:22
-msgid "Specifies the interface to listen on."
-msgstr "Określa interfejs do nasłuchu."
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:227
+msgid "Some examples:"
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:158
+msgid "The %s type element."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:174
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:203
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:218
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:226
+msgid "The %s value."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:159
+msgid "User readable description of maker and model."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:141
+msgid "Whether this print port is bi-directional."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:150
+msgctxt "mDNS/Bonjour/ZeroConf"
+msgid "Whether to advertise this printer via %s."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:132
+msgid "any"
+msgstr ""
 
-#: applications/luci-app-p910nd/luasrc/model/cbi/p910nd.lua:40
-msgid "TCP listener port."
-msgstr "Port nasłuchu TCP."
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:175
+msgid "enclosed within parentheses"
+msgstr ""
 
-#: applications/luci-app-p910nd/luasrc/model/cbi/p910nd.lua:18
-msgid "enable"
-msgstr "włączony"
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:65
+msgid "map ports 9100-9109 to local printers."
+msgstr ""
 
 # W sambie usługa też się nazywa "network shares", więc nie ma specjalnie potrzeby używania nazwy własnej demona "p910nd".
-#: applications/luci-app-p910nd/luasrc/model/cbi/p910nd.lua:9
 #: applications/luci-app-p910nd/root/usr/share/luci/menu.d/luci-app-p910nd.json:3
 msgid "p910nd - Printer server"
 msgstr "Serwer wydruku"
 
-#~ msgid "port_help"
-#~ msgstr "port_help"
-
-#~ msgid "p910nd listens on port 910+N. E.g. 9100 for the first printer."
-#~ msgstr "p910nd nasłuchuje na porcie 910X, np. 9100 dla pierwszej drukarki."
index b5f11b7ec63216507d9875ed1509c40429cf7542..1882ae6d510dc18fcd12f2ad8793fc5dd12bcbdd 100644 (file)
@@ -14,54 +14,170 @@ msgstr ""
 "Plural-Forms: nplurals=2; plural=n != 1;\n"
 "X-Generator: Weblate 4.12-dev\n"
 
-#: applications/luci-app-p910nd/luasrc/model/cbi/p910nd.lua:46
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:104
+msgid "Add printer config"
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:123
+msgid "Be aware: %s also listens on port 9100."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:140
 msgid "Bidirectional mode"
 msgstr "Modo bidirecional"
 
-#: applications/luci-app-p910nd/luasrc/model/cbi/p910nd.lua:20
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:167
+msgid "By the router"
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:112
+msgid "Connected %s devices show in this list."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:110
 msgid "Device"
 msgstr "Aparelho"
 
-#: applications/luci-app-p910nd/luasrc/model/cbi/p910nd.lua:10
-msgid ""
-"First you have to install the packages to get support for USB (kmod-usb-"
-"printer) or parallel port (kmod-lp)."
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:107
+msgid "Enabled"
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:49
+msgid "Error calling \"opkg list-installed\":"
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:38
+msgid "Error executing \"find\" command:"
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:88
+msgid "For USB connected printers"
 msgstr ""
-"Primeiro você deve instalar os pacotes para obter suporte USB (kmod-usb-"
-"printer) ou porta paralela (kmod-lp)."
 
 #: applications/luci-app-p910nd/root/usr/share/rpcd/acl.d/luci-app-p910nd.json:3
 msgid "Grant UCI access for luci-app-p910nd"
 msgstr "Conceder acesso UCI ao luci-app-p910nd"
 
-#: applications/luci-app-p910nd/luasrc/model/cbi/p910nd.lua:22
-msgid "Interface"
-msgstr "Interface"
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:71
+msgid "It is safe to install both, even if only one is needed."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:129
+msgid "Listen IP"
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:130
+msgid "Listen on a specific IP."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:122
+msgid "Local TCP listen port for this printer."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:204
+msgid "Manufacturer"
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:151
+msgctxt "mDNS"
+msgid "Note: %s only advertises one (the first) printer on this host."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:231
+msgid "Note: Set only CMD languages that your printer understands."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:152
+msgid "Note: USB hotplug attempts to provide some of the values below."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:142
+msgid "Note: USB hotplug correctly detects this."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:111
+msgid ""
+"Note: character device assignment can change upon reboot/reconnect with "
+"multiple USB devices."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:175
+msgid "Note: must be %s."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:70
+msgid "One of these kernel modules is needed for p910nd to find your printer."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:146
+msgid "Overrides default of %s."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:81
+msgid "Parallel port line printer device support"
+msgstr ""
 
-#: applications/luci-app-p910nd/luasrc/model/cbi/p910nd.lua:40
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:121
 msgid "Port"
 msgstr "Porta"
 
-#: applications/luci-app-p910nd/luasrc/model/cbi/p910nd.lua:14
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:15
+msgid "Port 910n print daemon"
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:145
+msgid "Run as root"
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:166
+msgid "Serves as Location in Apple standards."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:105
 msgid "Settings"
 msgstr "Definições"
 
-#: applications/luci-app-p910nd/luasrc/model/cbi/p910nd.lua:22
-msgid "Specifies the interface to listen on."
-msgstr "Especifica a interface para escutar."
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:227
+msgid "Some examples:"
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:158
+msgid "The %s type element."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:174
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:203
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:218
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:226
+msgid "The %s value."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:159
+msgid "User readable description of maker and model."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:141
+msgid "Whether this print port is bi-directional."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:150
+msgctxt "mDNS/Bonjour/ZeroConf"
+msgid "Whether to advertise this printer via %s."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:132
+msgid "any"
+msgstr ""
 
-#: applications/luci-app-p910nd/luasrc/model/cbi/p910nd.lua:40
-msgid "TCP listener port."
-msgstr "Porta TCP ouvinte."
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:175
+msgid "enclosed within parentheses"
+msgstr ""
 
-#: applications/luci-app-p910nd/luasrc/model/cbi/p910nd.lua:18
-msgid "enable"
-msgstr "ativar"
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:65
+msgid "map ports 9100-9109 to local printers."
+msgstr ""
 
-#: applications/luci-app-p910nd/luasrc/model/cbi/p910nd.lua:9
 #: applications/luci-app-p910nd/root/usr/share/luci/menu.d/luci-app-p910nd.json:3
 msgid "p910nd - Printer server"
 msgstr "P910nd - Servidor de impressão"
 
-#~ msgid "p910nd listens on port 910+N. E.g. 9100 for the first printer."
-#~ msgstr "p910nd escuta na porta 910+N. Ex. 9100 para a primeira impressora."
index bbee4959e254714eb72ff9118bc136721f72083e..ac255bd87414f6d459d7e65f22ac8c3920c3c96e 100644 (file)
@@ -14,60 +14,172 @@ msgstr ""
 "Plural-Forms: nplurals=2; plural=n > 1;\n"
 "X-Generator: Weblate 4.1-dev\n"
 
-#: applications/luci-app-p910nd/luasrc/model/cbi/p910nd.lua:46
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:104
+msgid "Add printer config"
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:123
+msgid "Be aware: %s also listens on port 9100."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:140
 msgid "Bidirectional mode"
 msgstr "Modo bidirecional"
 
-#: applications/luci-app-p910nd/luasrc/model/cbi/p910nd.lua:20
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:167
+msgid "By the router"
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:112
+msgid "Connected %s devices show in this list."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:110
 msgid "Device"
 msgstr "Dispositivo"
 
-#: applications/luci-app-p910nd/luasrc/model/cbi/p910nd.lua:10
-msgid ""
-"First you have to install the packages to get support for USB (kmod-usb-"
-"printer) or parallel port (kmod-lp)."
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:107
+msgid "Enabled"
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:49
+msgid "Error calling \"opkg list-installed\":"
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:38
+msgid "Error executing \"find\" command:"
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:88
+msgid "For USB connected printers"
 msgstr ""
-"Primeiro você deve instalar os pacotes para obter suporte USB (kmod-usb-"
-"printer) ou porta paralela (kmod-lp)."
 
 #: applications/luci-app-p910nd/root/usr/share/rpcd/acl.d/luci-app-p910nd.json:3
 msgid "Grant UCI access for luci-app-p910nd"
 msgstr "Conceda acesso UCI ao luci-app-p910nd"
 
-# 20140621: edersg: tradução
-#: applications/luci-app-p910nd/luasrc/model/cbi/p910nd.lua:22
-msgid "Interface"
-msgstr "Interface"
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:71
+msgid "It is safe to install both, even if only one is needed."
+msgstr ""
 
-#: applications/luci-app-p910nd/luasrc/model/cbi/p910nd.lua:40
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:129
+msgid "Listen IP"
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:130
+msgid "Listen on a specific IP."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:122
+msgid "Local TCP listen port for this printer."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:204
+msgid "Manufacturer"
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:151
+msgctxt "mDNS"
+msgid "Note: %s only advertises one (the first) printer on this host."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:231
+msgid "Note: Set only CMD languages that your printer understands."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:152
+msgid "Note: USB hotplug attempts to provide some of the values below."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:142
+msgid "Note: USB hotplug correctly detects this."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:111
+msgid ""
+"Note: character device assignment can change upon reboot/reconnect with "
+"multiple USB devices."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:175
+msgid "Note: must be %s."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:70
+msgid "One of these kernel modules is needed for p910nd to find your printer."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:146
+msgid "Overrides default of %s."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:81
+msgid "Parallel port line printer device support"
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:121
 msgid "Port"
 msgstr "Porta"
 
-#: applications/luci-app-p910nd/luasrc/model/cbi/p910nd.lua:14
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:15
+msgid "Port 910n print daemon"
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:145
+msgid "Run as root"
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:166
+msgid "Serves as Location in Apple standards."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:105
 msgid "Settings"
 msgstr "Configurações"
 
-# 20140621: edersg: tradução
-#: applications/luci-app-p910nd/luasrc/model/cbi/p910nd.lua:22
-msgid "Specifies the interface to listen on."
-msgstr "Especifica a interface para escuta."
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:227
+msgid "Some examples:"
+msgstr ""
 
-#: applications/luci-app-p910nd/luasrc/model/cbi/p910nd.lua:40
-msgid "TCP listener port."
-msgstr "Porta TCP de escuta."
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:158
+msgid "The %s type element."
+msgstr ""
 
-#: applications/luci-app-p910nd/luasrc/model/cbi/p910nd.lua:18
-msgid "enable"
-msgstr "habilitado"
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:174
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:203
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:218
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:226
+msgid "The %s value."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:159
+msgid "User readable description of maker and model."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:141
+msgid "Whether this print port is bi-directional."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:150
+msgctxt "mDNS/Bonjour/ZeroConf"
+msgid "Whether to advertise this printer via %s."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:132
+msgid "any"
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:175
+msgid "enclosed within parentheses"
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:65
+msgid "map ports 9100-9109 to local printers."
+msgstr ""
 
-#: applications/luci-app-p910nd/luasrc/model/cbi/p910nd.lua:9
 #: applications/luci-app-p910nd/root/usr/share/luci/menu.d/luci-app-p910nd.json:3
 msgid "p910nd - Printer server"
 msgstr "p910nd - Servidor de impressão"
 
-#~ msgid "port_help"
-#~ msgstr ""
-#~ "p910nd escuta na porta 910x. Por exemplo, 9100 para a primeira impressora."
-
-#~ msgid "p910nd listens on port 910+N. E.g. 9100 for the first printer."
-#~ msgstr "p910nd escuta na porta 910+N. Ex. 9100 para a primeira impressora."
+# 20140621: edersg: tradução
+# 20140621: edersg: tradução
index 716c73ef591d853565e752be0fcad72c838d9ac9..ccb6b76795c3d4e8d39cabbb3c52d88bc7b29169 100644 (file)
@@ -15,51 +15,170 @@ msgstr ""
 "20)) ? 1 : 2;\n"
 "X-Generator: Weblate 4.9.1-dev\n"
 
-#: applications/luci-app-p910nd/luasrc/model/cbi/p910nd.lua:46
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:104
+msgid "Add printer config"
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:123
+msgid "Be aware: %s also listens on port 9100."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:140
 msgid "Bidirectional mode"
 msgstr "Mod bidirecțional"
 
-#: applications/luci-app-p910nd/luasrc/model/cbi/p910nd.lua:20
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:167
+msgid "By the router"
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:112
+msgid "Connected %s devices show in this list."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:110
 msgid "Device"
 msgstr "Dispozitiv"
 
-#: applications/luci-app-p910nd/luasrc/model/cbi/p910nd.lua:10
-msgid ""
-"First you have to install the packages to get support for USB (kmod-usb-"
-"printer) or parallel port (kmod-lp)."
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:107
+msgid "Enabled"
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:49
+msgid "Error calling \"opkg list-installed\":"
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:38
+msgid "Error executing \"find\" command:"
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:88
+msgid "For USB connected printers"
 msgstr ""
-"Mai întâi trebuie să instalați pachetele pentru a obține suport pentru USB "
-"(kmod-usb-printer) sau pentru portul paralel (kmod-lp)."
 
 #: applications/luci-app-p910nd/root/usr/share/rpcd/acl.d/luci-app-p910nd.json:3
 msgid "Grant UCI access for luci-app-p910nd"
 msgstr "Acordă acces la UCI pentru luci-app-p910nd"
 
-#: applications/luci-app-p910nd/luasrc/model/cbi/p910nd.lua:22
-msgid "Interface"
-msgstr "Interfață"
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:71
+msgid "It is safe to install both, even if only one is needed."
+msgstr ""
 
-#: applications/luci-app-p910nd/luasrc/model/cbi/p910nd.lua:40
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:129
+msgid "Listen IP"
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:130
+msgid "Listen on a specific IP."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:122
+msgid "Local TCP listen port for this printer."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:204
+msgid "Manufacturer"
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:151
+msgctxt "mDNS"
+msgid "Note: %s only advertises one (the first) printer on this host."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:231
+msgid "Note: Set only CMD languages that your printer understands."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:152
+msgid "Note: USB hotplug attempts to provide some of the values below."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:142
+msgid "Note: USB hotplug correctly detects this."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:111
+msgid ""
+"Note: character device assignment can change upon reboot/reconnect with "
+"multiple USB devices."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:175
+msgid "Note: must be %s."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:70
+msgid "One of these kernel modules is needed for p910nd to find your printer."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:146
+msgid "Overrides default of %s."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:81
+msgid "Parallel port line printer device support"
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:121
 msgid "Port"
 msgstr "Port"
 
-#: applications/luci-app-p910nd/luasrc/model/cbi/p910nd.lua:14
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:15
+msgid "Port 910n print daemon"
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:145
+msgid "Run as root"
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:166
+msgid "Serves as Location in Apple standards."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:105
 msgid "Settings"
 msgstr "Setări"
 
-#: applications/luci-app-p910nd/luasrc/model/cbi/p910nd.lua:22
-msgid "Specifies the interface to listen on."
-msgstr "Specifică interfața pe care se ascultă."
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:227
+msgid "Some examples:"
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:158
+msgid "The %s type element."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:174
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:203
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:218
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:226
+msgid "The %s value."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:159
+msgid "User readable description of maker and model."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:141
+msgid "Whether this print port is bi-directional."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:150
+msgctxt "mDNS/Bonjour/ZeroConf"
+msgid "Whether to advertise this printer via %s."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:132
+msgid "any"
+msgstr ""
 
-#: applications/luci-app-p910nd/luasrc/model/cbi/p910nd.lua:40
-msgid "TCP listener port."
-msgstr "Portul de ascultare TCP."
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:175
+msgid "enclosed within parentheses"
+msgstr ""
 
-#: applications/luci-app-p910nd/luasrc/model/cbi/p910nd.lua:18
-msgid "enable"
-msgstr "activează"
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:65
+msgid "map ports 9100-9109 to local printers."
+msgstr ""
 
-#: applications/luci-app-p910nd/luasrc/model/cbi/p910nd.lua:9
 #: applications/luci-app-p910nd/root/usr/share/luci/menu.d/luci-app-p910nd.json:3
 msgid "p910nd - Printer server"
 msgstr "p910nd - Server de imprimantă"
+
index c6d4030a92ec4eecc3c1be6ca8c5288ad4ae2b40..74f6e0ea907e223dad08204755f9744f163a07db 100644 (file)
@@ -16,51 +16,170 @@ msgstr ""
 "Project-Info: Это технический перевод, не дословный. Главное-удобный русский "
 "интерфейс, все проверялось в графическом режиме, совместим с другими apps\n"
 
-#: applications/luci-app-p910nd/luasrc/model/cbi/p910nd.lua:46
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:104
+msgid "Add printer config"
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:123
+msgid "Be aware: %s also listens on port 9100."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:140
 msgid "Bidirectional mode"
 msgstr "Двунаправленный режим"
 
-#: applications/luci-app-p910nd/luasrc/model/cbi/p910nd.lua:20
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:167
+msgid "By the router"
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:112
+msgid "Connected %s devices show in this list."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:110
 msgid "Device"
 msgstr "Устройство"
 
-#: applications/luci-app-p910nd/luasrc/model/cbi/p910nd.lua:10
-msgid ""
-"First you have to install the packages to get support for USB (kmod-usb-"
-"printer) or parallel port (kmod-lp)."
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:107
+msgid "Enabled"
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:49
+msgid "Error calling \"opkg list-installed\":"
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:38
+msgid "Error executing \"find\" command:"
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:88
+msgid "For USB connected printers"
 msgstr ""
-"Сначала вы должны установить пакеты модулей ядра, чтобы получить поддержку "
-"принтеров с интерфейсом USB (kmod-usb-printer) или LPT (kmod-lp)."
 
 #: applications/luci-app-p910nd/root/usr/share/rpcd/acl.d/luci-app-p910nd.json:3
 msgid "Grant UCI access for luci-app-p910nd"
 msgstr "Предоставить UCI доступ для luci-app-p910nd"
 
-#: applications/luci-app-p910nd/luasrc/model/cbi/p910nd.lua:22
-msgid "Interface"
-msgstr "Интерфейс"
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:71
+msgid "It is safe to install both, even if only one is needed."
+msgstr ""
 
-#: applications/luci-app-p910nd/luasrc/model/cbi/p910nd.lua:40
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:129
+msgid "Listen IP"
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:130
+msgid "Listen on a specific IP."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:122
+msgid "Local TCP listen port for this printer."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:204
+msgid "Manufacturer"
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:151
+msgctxt "mDNS"
+msgid "Note: %s only advertises one (the first) printer on this host."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:231
+msgid "Note: Set only CMD languages that your printer understands."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:152
+msgid "Note: USB hotplug attempts to provide some of the values below."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:142
+msgid "Note: USB hotplug correctly detects this."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:111
+msgid ""
+"Note: character device assignment can change upon reboot/reconnect with "
+"multiple USB devices."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:175
+msgid "Note: must be %s."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:70
+msgid "One of these kernel modules is needed for p910nd to find your printer."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:146
+msgid "Overrides default of %s."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:81
+msgid "Parallel port line printer device support"
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:121
 msgid "Port"
 msgstr "Порт"
 
-#: applications/luci-app-p910nd/luasrc/model/cbi/p910nd.lua:14
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:15
+msgid "Port 910n print daemon"
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:145
+msgid "Run as root"
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:166
+msgid "Serves as Location in Apple standards."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:105
 msgid "Settings"
 msgstr "Настройки"
 
-#: applications/luci-app-p910nd/luasrc/model/cbi/p910nd.lua:22
-msgid "Specifies the interface to listen on."
-msgstr "Задать интерфейс для входящих соединений."
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:227
+msgid "Some examples:"
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:158
+msgid "The %s type element."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:174
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:203
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:218
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:226
+msgid "The %s value."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:159
+msgid "User readable description of maker and model."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:141
+msgid "Whether this print port is bi-directional."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:150
+msgctxt "mDNS/Bonjour/ZeroConf"
+msgid "Whether to advertise this printer via %s."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:132
+msgid "any"
+msgstr ""
 
-#: applications/luci-app-p910nd/luasrc/model/cbi/p910nd.lua:40
-msgid "TCP listener port."
-msgstr "Порт для входящих соединений TCP."
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:175
+msgid "enclosed within parentheses"
+msgstr ""
 
-#: applications/luci-app-p910nd/luasrc/model/cbi/p910nd.lua:18
-msgid "enable"
-msgstr "включить"
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:65
+msgid "map ports 9100-9109 to local printers."
+msgstr ""
 
-#: applications/luci-app-p910nd/luasrc/model/cbi/p910nd.lua:9
 #: applications/luci-app-p910nd/root/usr/share/luci/menu.d/luci-app-p910nd.json:3
 msgid "p910nd - Printer server"
 msgstr "Сервер печати p910nd"
+
index 3380fa2da1075e49d42485907fc18f8c28bf125e..2e49e2c58051058cece0295f4f95e2766f4fce86 100644 (file)
@@ -12,52 +12,171 @@ msgstr ""
 "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
 "X-Generator: Weblate 4.14.2-dev\n"
 
-#: applications/luci-app-p910nd/luasrc/model/cbi/p910nd.lua:46
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:104
+msgid "Add printer config"
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:123
+msgid "Be aware: %s also listens on port 9100."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:140
 msgid "Bidirectional mode"
 msgstr "Obojsmerný režim"
 
-#: applications/luci-app-p910nd/luasrc/model/cbi/p910nd.lua:20
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:167
+msgid "By the router"
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:112
+msgid "Connected %s devices show in this list."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:110
 msgid "Device"
 msgstr "Zariadenie"
 
-#: applications/luci-app-p910nd/luasrc/model/cbi/p910nd.lua:10
-#, fuzzy
-msgid ""
-"First you have to install the packages to get support for USB (kmod-usb-"
-"printer) or parallel port (kmod-lp)."
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:107
+msgid "Enabled"
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:49
+msgid "Error calling \"opkg list-installed\":"
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:38
+msgid "Error executing \"find\" command:"
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:88
+msgid "For USB connected printers"
 msgstr ""
-"Najprv musíte nainštalovať balíčky, aby ste získali podporu pre USB (kmod-"
-"usb-printer) alebo paralelný port (kmod-lp)."
 
 #: applications/luci-app-p910nd/root/usr/share/rpcd/acl.d/luci-app-p910nd.json:3
 msgid "Grant UCI access for luci-app-p910nd"
 msgstr ""
 
-#: applications/luci-app-p910nd/luasrc/model/cbi/p910nd.lua:22
-msgid "Interface"
-msgstr "Rozhranie"
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:71
+msgid "It is safe to install both, even if only one is needed."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:129
+msgid "Listen IP"
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:130
+msgid "Listen on a specific IP."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:122
+msgid "Local TCP listen port for this printer."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:204
+msgid "Manufacturer"
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:151
+msgctxt "mDNS"
+msgid "Note: %s only advertises one (the first) printer on this host."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:231
+msgid "Note: Set only CMD languages that your printer understands."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:152
+msgid "Note: USB hotplug attempts to provide some of the values below."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:142
+msgid "Note: USB hotplug correctly detects this."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:111
+msgid ""
+"Note: character device assignment can change upon reboot/reconnect with "
+"multiple USB devices."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:175
+msgid "Note: must be %s."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:70
+msgid "One of these kernel modules is needed for p910nd to find your printer."
+msgstr ""
 
-#: applications/luci-app-p910nd/luasrc/model/cbi/p910nd.lua:40
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:146
+msgid "Overrides default of %s."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:81
+msgid "Parallel port line printer device support"
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:121
 msgid "Port"
 msgstr "Port"
 
-#: applications/luci-app-p910nd/luasrc/model/cbi/p910nd.lua:14
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:15
+msgid "Port 910n print daemon"
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:145
+msgid "Run as root"
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:166
+msgid "Serves as Location in Apple standards."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:105
 msgid "Settings"
 msgstr "Nastavenia"
 
-#: applications/luci-app-p910nd/luasrc/model/cbi/p910nd.lua:22
-msgid "Specifies the interface to listen on."
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:227
+msgid "Some examples:"
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:158
+msgid "The %s type element."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:174
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:203
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:218
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:226
+msgid "The %s value."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:159
+msgid "User readable description of maker and model."
 msgstr ""
 
-#: applications/luci-app-p910nd/luasrc/model/cbi/p910nd.lua:40
-msgid "TCP listener port."
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:141
+msgid "Whether this print port is bi-directional."
 msgstr ""
 
-#: applications/luci-app-p910nd/luasrc/model/cbi/p910nd.lua:18
-msgid "enable"
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:150
+msgctxt "mDNS/Bonjour/ZeroConf"
+msgid "Whether to advertise this printer via %s."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:132
+msgid "any"
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:175
+msgid "enclosed within parentheses"
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:65
+msgid "map ports 9100-9109 to local printers."
 msgstr ""
 
-#: applications/luci-app-p910nd/luasrc/model/cbi/p910nd.lua:9
 #: applications/luci-app-p910nd/root/usr/share/luci/menu.d/luci-app-p910nd.json:3
 msgid "p910nd - Printer server"
 msgstr ""
+
+#, fuzzy
index f18214c566f2803c69bc0425ee1882df314a1231..3ea9371b4ac30caad706e970cfe10750eb6a6ef7 100644 (file)
@@ -12,51 +12,170 @@ msgstr ""
 "Plural-Forms: nplurals=2; plural=n != 1;\n"
 "X-Generator: Weblate 4.9-dev\n"
 
-#: applications/luci-app-p910nd/luasrc/model/cbi/p910nd.lua:46
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:104
+msgid "Add printer config"
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:123
+msgid "Be aware: %s also listens on port 9100."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:140
 msgid "Bidirectional mode"
 msgstr "Dubbelriktat läge"
 
-#: applications/luci-app-p910nd/luasrc/model/cbi/p910nd.lua:20
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:167
+msgid "By the router"
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:112
+msgid "Connected %s devices show in this list."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:110
 msgid "Device"
 msgstr "Enhet"
 
-#: applications/luci-app-p910nd/luasrc/model/cbi/p910nd.lua:10
-msgid ""
-"First you have to install the packages to get support for USB (kmod-usb-"
-"printer) or parallel port (kmod-lp)."
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:107
+msgid "Enabled"
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:49
+msgid "Error calling \"opkg list-installed\":"
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:38
+msgid "Error executing \"find\" command:"
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:88
+msgid "For USB connected printers"
 msgstr ""
-"Först behöver du installera paket som ger stöd för USB (kmod-usb-printer) "
-"eller parallell port (kmod-lp)."
 
 #: applications/luci-app-p910nd/root/usr/share/rpcd/acl.d/luci-app-p910nd.json:3
 msgid "Grant UCI access for luci-app-p910nd"
 msgstr "Godkänn åtkomst för luci-app-p910nd"
 
-#: applications/luci-app-p910nd/luasrc/model/cbi/p910nd.lua:22
-msgid "Interface"
-msgstr "Gränssnitt"
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:71
+msgid "It is safe to install both, even if only one is needed."
+msgstr ""
 
-#: applications/luci-app-p910nd/luasrc/model/cbi/p910nd.lua:40
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:129
+msgid "Listen IP"
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:130
+msgid "Listen on a specific IP."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:122
+msgid "Local TCP listen port for this printer."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:204
+msgid "Manufacturer"
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:151
+msgctxt "mDNS"
+msgid "Note: %s only advertises one (the first) printer on this host."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:231
+msgid "Note: Set only CMD languages that your printer understands."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:152
+msgid "Note: USB hotplug attempts to provide some of the values below."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:142
+msgid "Note: USB hotplug correctly detects this."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:111
+msgid ""
+"Note: character device assignment can change upon reboot/reconnect with "
+"multiple USB devices."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:175
+msgid "Note: must be %s."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:70
+msgid "One of these kernel modules is needed for p910nd to find your printer."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:146
+msgid "Overrides default of %s."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:81
+msgid "Parallel port line printer device support"
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:121
 msgid "Port"
 msgstr "Port"
 
-#: applications/luci-app-p910nd/luasrc/model/cbi/p910nd.lua:14
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:15
+msgid "Port 910n print daemon"
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:145
+msgid "Run as root"
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:166
+msgid "Serves as Location in Apple standards."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:105
 msgid "Settings"
 msgstr "Inställningar"
 
-#: applications/luci-app-p910nd/luasrc/model/cbi/p910nd.lua:22
-msgid "Specifies the interface to listen on."
-msgstr "Anger gränssnittet att lyssna på."
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:227
+msgid "Some examples:"
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:158
+msgid "The %s type element."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:174
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:203
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:218
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:226
+msgid "The %s value."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:159
+msgid "User readable description of maker and model."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:141
+msgid "Whether this print port is bi-directional."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:150
+msgctxt "mDNS/Bonjour/ZeroConf"
+msgid "Whether to advertise this printer via %s."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:132
+msgid "any"
+msgstr ""
 
-#: applications/luci-app-p910nd/luasrc/model/cbi/p910nd.lua:40
-msgid "TCP listener port."
-msgstr "Port för TCP-lyssnare."
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:175
+msgid "enclosed within parentheses"
+msgstr ""
 
-#: applications/luci-app-p910nd/luasrc/model/cbi/p910nd.lua:18
-msgid "enable"
-msgstr "aktivera"
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:65
+msgid "map ports 9100-9109 to local printers."
+msgstr ""
 
-#: applications/luci-app-p910nd/luasrc/model/cbi/p910nd.lua:9
 #: applications/luci-app-p910nd/root/usr/share/luci/menu.d/luci-app-p910nd.json:3
 msgid "p910nd - Printer server"
 msgstr "p910nd- Skrivar-server"
+
index ce075a77f16472390cd3223feb3e3f9c07ca7c38..f429fb592189869f6cf93c24ae6ba6451e5fd475 100644 (file)
 msgid ""
 msgstr "Content-Type: text/plain; charset=UTF-8"
 
-#: applications/luci-app-p910nd/luasrc/model/cbi/p910nd.lua:46
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:104
+msgid "Add printer config"
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:123
+msgid "Be aware: %s also listens on port 9100."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:140
 msgid "Bidirectional mode"
 msgstr ""
 
-#: applications/luci-app-p910nd/luasrc/model/cbi/p910nd.lua:20
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:167
+msgid "By the router"
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:112
+msgid "Connected %s devices show in this list."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:110
 msgid "Device"
 msgstr ""
 
-#: applications/luci-app-p910nd/luasrc/model/cbi/p910nd.lua:10
-msgid ""
-"First you have to install the packages to get support for USB (kmod-usb-"
-"printer) or parallel port (kmod-lp)."
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:107
+msgid "Enabled"
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:49
+msgid "Error calling \"opkg list-installed\":"
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:38
+msgid "Error executing \"find\" command:"
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:88
+msgid "For USB connected printers"
 msgstr ""
 
 #: applications/luci-app-p910nd/root/usr/share/rpcd/acl.d/luci-app-p910nd.json:3
 msgid "Grant UCI access for luci-app-p910nd"
 msgstr ""
 
-#: applications/luci-app-p910nd/luasrc/model/cbi/p910nd.lua:22
-msgid "Interface"
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:71
+msgid "It is safe to install both, even if only one is needed."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:129
+msgid "Listen IP"
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:130
+msgid "Listen on a specific IP."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:122
+msgid "Local TCP listen port for this printer."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:204
+msgid "Manufacturer"
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:151
+msgctxt "mDNS"
+msgid "Note: %s only advertises one (the first) printer on this host."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:231
+msgid "Note: Set only CMD languages that your printer understands."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:152
+msgid "Note: USB hotplug attempts to provide some of the values below."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:142
+msgid "Note: USB hotplug correctly detects this."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:111
+msgid ""
+"Note: character device assignment can change upon reboot/reconnect with "
+"multiple USB devices."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:175
+msgid "Note: must be %s."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:70
+msgid "One of these kernel modules is needed for p910nd to find your printer."
 msgstr ""
 
-#: applications/luci-app-p910nd/luasrc/model/cbi/p910nd.lua:40
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:146
+msgid "Overrides default of %s."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:81
+msgid "Parallel port line printer device support"
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:121
 msgid "Port"
 msgstr ""
 
-#: applications/luci-app-p910nd/luasrc/model/cbi/p910nd.lua:14
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:15
+msgid "Port 910n print daemon"
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:145
+msgid "Run as root"
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:166
+msgid "Serves as Location in Apple standards."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:105
 msgid "Settings"
 msgstr ""
 
-#: applications/luci-app-p910nd/luasrc/model/cbi/p910nd.lua:22
-msgid "Specifies the interface to listen on."
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:227
+msgid "Some examples:"
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:158
+msgid "The %s type element."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:174
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:203
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:218
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:226
+msgid "The %s value."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:159
+msgid "User readable description of maker and model."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:141
+msgid "Whether this print port is bi-directional."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:150
+msgctxt "mDNS/Bonjour/ZeroConf"
+msgid "Whether to advertise this printer via %s."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:132
+msgid "any"
 msgstr ""
 
-#: applications/luci-app-p910nd/luasrc/model/cbi/p910nd.lua:40
-msgid "TCP listener port."
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:175
+msgid "enclosed within parentheses"
 msgstr ""
 
-#: applications/luci-app-p910nd/luasrc/model/cbi/p910nd.lua:18
-msgid "enable"
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:65
+msgid "map ports 9100-9109 to local printers."
 msgstr ""
 
-#: applications/luci-app-p910nd/luasrc/model/cbi/p910nd.lua:9
 #: applications/luci-app-p910nd/root/usr/share/luci/menu.d/luci-app-p910nd.json:3
 msgid "p910nd - Printer server"
 msgstr ""
index dc6053c7d3cbb5858c8071f72e7ff7a59626f1e1..acdcab43fb45de06983739af932c98875c6528cf 100644 (file)
@@ -12,51 +12,170 @@ msgstr ""
 "Plural-Forms: nplurals=1; plural=0;\n"
 "X-Generator: Weblate 4.6-dev\n"
 
-#: applications/luci-app-p910nd/luasrc/model/cbi/p910nd.lua:46
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:104
+msgid "Add printer config"
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:123
+msgid "Be aware: %s also listens on port 9100."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:140
 msgid "Bidirectional mode"
 msgstr "Çift Yönlü Mod"
 
-#: applications/luci-app-p910nd/luasrc/model/cbi/p910nd.lua:20
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:167
+msgid "By the router"
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:112
+msgid "Connected %s devices show in this list."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:110
 msgid "Device"
 msgstr "Cihaz"
 
-#: applications/luci-app-p910nd/luasrc/model/cbi/p910nd.lua:10
-msgid ""
-"First you have to install the packages to get support for USB (kmod-usb-"
-"printer) or parallel port (kmod-lp)."
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:107
+msgid "Enabled"
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:49
+msgid "Error calling \"opkg list-installed\":"
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:38
+msgid "Error executing \"find\" command:"
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:88
+msgid "For USB connected printers"
 msgstr ""
-"Önce USB (kmod-usb-printer) veya paralel bağlantı noktası (kmod-lp) desteği "
-"almak için paketleri kurmanız gerekir."
 
 #: applications/luci-app-p910nd/root/usr/share/rpcd/acl.d/luci-app-p910nd.json:3
 msgid "Grant UCI access for luci-app-p910nd"
 msgstr "luci-app-p910nd için UCI erişimi verin"
 
-#: applications/luci-app-p910nd/luasrc/model/cbi/p910nd.lua:22
-msgid "Interface"
-msgstr "Arayüz"
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:71
+msgid "It is safe to install both, even if only one is needed."
+msgstr ""
 
-#: applications/luci-app-p910nd/luasrc/model/cbi/p910nd.lua:40
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:129
+msgid "Listen IP"
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:130
+msgid "Listen on a specific IP."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:122
+msgid "Local TCP listen port for this printer."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:204
+msgid "Manufacturer"
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:151
+msgctxt "mDNS"
+msgid "Note: %s only advertises one (the first) printer on this host."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:231
+msgid "Note: Set only CMD languages that your printer understands."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:152
+msgid "Note: USB hotplug attempts to provide some of the values below."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:142
+msgid "Note: USB hotplug correctly detects this."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:111
+msgid ""
+"Note: character device assignment can change upon reboot/reconnect with "
+"multiple USB devices."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:175
+msgid "Note: must be %s."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:70
+msgid "One of these kernel modules is needed for p910nd to find your printer."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:146
+msgid "Overrides default of %s."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:81
+msgid "Parallel port line printer device support"
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:121
 msgid "Port"
 msgstr "Bağlantı noktası"
 
-#: applications/luci-app-p910nd/luasrc/model/cbi/p910nd.lua:14
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:15
+msgid "Port 910n print daemon"
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:145
+msgid "Run as root"
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:166
+msgid "Serves as Location in Apple standards."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:105
 msgid "Settings"
 msgstr "Ayarlar"
 
-#: applications/luci-app-p910nd/luasrc/model/cbi/p910nd.lua:22
-msgid "Specifies the interface to listen on."
-msgstr "Dinlenecek arayüzü belirtir."
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:227
+msgid "Some examples:"
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:158
+msgid "The %s type element."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:174
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:203
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:218
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:226
+msgid "The %s value."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:159
+msgid "User readable description of maker and model."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:141
+msgid "Whether this print port is bi-directional."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:150
+msgctxt "mDNS/Bonjour/ZeroConf"
+msgid "Whether to advertise this printer via %s."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:132
+msgid "any"
+msgstr ""
 
-#: applications/luci-app-p910nd/luasrc/model/cbi/p910nd.lua:40
-msgid "TCP listener port."
-msgstr "TCP dinleyici bağlantı noktası."
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:175
+msgid "enclosed within parentheses"
+msgstr ""
 
-#: applications/luci-app-p910nd/luasrc/model/cbi/p910nd.lua:18
-msgid "enable"
-msgstr "etkinleştir"
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:65
+msgid "map ports 9100-9109 to local printers."
+msgstr ""
 
-#: applications/luci-app-p910nd/luasrc/model/cbi/p910nd.lua:9
 #: applications/luci-app-p910nd/root/usr/share/luci/menu.d/luci-app-p910nd.json:3
 msgid "p910nd - Printer server"
 msgstr "P910nd_Yazıcı Sunucusu"
+
index 4dffb63f3d41c73fbb5eb70eaba3d9903a22dc3c..52351a83551104e62e3ed541cd4922a56bf71d35 100644 (file)
@@ -13,51 +13,170 @@ msgstr ""
 "%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
 "X-Generator: Weblate 4.15-dev\n"
 
-#: applications/luci-app-p910nd/luasrc/model/cbi/p910nd.lua:46
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:104
+msgid "Add printer config"
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:123
+msgid "Be aware: %s also listens on port 9100."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:140
 msgid "Bidirectional mode"
 msgstr "Двонаправлений режим"
 
-#: applications/luci-app-p910nd/luasrc/model/cbi/p910nd.lua:20
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:167
+msgid "By the router"
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:112
+msgid "Connected %s devices show in this list."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:110
 msgid "Device"
 msgstr "Пристрій"
 
-#: applications/luci-app-p910nd/luasrc/model/cbi/p910nd.lua:10
-msgid ""
-"First you have to install the packages to get support for USB (kmod-usb-"
-"printer) or parallel port (kmod-lp)."
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:107
+msgid "Enabled"
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:49
+msgid "Error calling \"opkg list-installed\":"
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:38
+msgid "Error executing \"find\" command:"
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:88
+msgid "For USB connected printers"
 msgstr ""
-"Спочатку вам слід інсталювати пакети для підтримки USB (kmod-usb-printer) "
-"або паралельного порту (kmod-lp)."
 
 #: applications/luci-app-p910nd/root/usr/share/rpcd/acl.d/luci-app-p910nd.json:3
 msgid "Grant UCI access for luci-app-p910nd"
 msgstr "Надати доступ до UCI для luci-app-p910nd"
 
-#: applications/luci-app-p910nd/luasrc/model/cbi/p910nd.lua:22
-msgid "Interface"
-msgstr "Інтерфейс"
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:71
+msgid "It is safe to install both, even if only one is needed."
+msgstr ""
 
-#: applications/luci-app-p910nd/luasrc/model/cbi/p910nd.lua:40
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:129
+msgid "Listen IP"
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:130
+msgid "Listen on a specific IP."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:122
+msgid "Local TCP listen port for this printer."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:204
+msgid "Manufacturer"
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:151
+msgctxt "mDNS"
+msgid "Note: %s only advertises one (the first) printer on this host."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:231
+msgid "Note: Set only CMD languages that your printer understands."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:152
+msgid "Note: USB hotplug attempts to provide some of the values below."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:142
+msgid "Note: USB hotplug correctly detects this."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:111
+msgid ""
+"Note: character device assignment can change upon reboot/reconnect with "
+"multiple USB devices."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:175
+msgid "Note: must be %s."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:70
+msgid "One of these kernel modules is needed for p910nd to find your printer."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:146
+msgid "Overrides default of %s."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:81
+msgid "Parallel port line printer device support"
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:121
 msgid "Port"
 msgstr "Порт"
 
-#: applications/luci-app-p910nd/luasrc/model/cbi/p910nd.lua:14
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:15
+msgid "Port 910n print daemon"
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:145
+msgid "Run as root"
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:166
+msgid "Serves as Location in Apple standards."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:105
 msgid "Settings"
 msgstr "Налаштування"
 
-#: applications/luci-app-p910nd/luasrc/model/cbi/p910nd.lua:22
-msgid "Specifies the interface to listen on."
-msgstr "Вказати інтерфейс для прослуховування."
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:227
+msgid "Some examples:"
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:158
+msgid "The %s type element."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:174
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:203
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:218
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:226
+msgid "The %s value."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:159
+msgid "User readable description of maker and model."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:141
+msgid "Whether this print port is bi-directional."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:150
+msgctxt "mDNS/Bonjour/ZeroConf"
+msgid "Whether to advertise this printer via %s."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:132
+msgid "any"
+msgstr ""
 
-#: applications/luci-app-p910nd/luasrc/model/cbi/p910nd.lua:40
-msgid "TCP listener port."
-msgstr "Порт TCP для прослуховування."
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:175
+msgid "enclosed within parentheses"
+msgstr ""
 
-#: applications/luci-app-p910nd/luasrc/model/cbi/p910nd.lua:18
-msgid "enable"
-msgstr "Увімкнути"
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:65
+msgid "map ports 9100-9109 to local printers."
+msgstr ""
 
-#: applications/luci-app-p910nd/luasrc/model/cbi/p910nd.lua:9
 #: applications/luci-app-p910nd/root/usr/share/luci/menu.d/luci-app-p910nd.json:3
 msgid "p910nd - Printer server"
 msgstr "p910nd - сервер друку"
+
index 3c2b3e8a6d1926108c4dc4af4c4666f21cdedcd5..6aa1b5f7ca9f8fb88f8e429801a12af3ef79f2d7 100644 (file)
@@ -16,54 +16,170 @@ msgstr ""
 "Plural-Forms: nplurals=1; plural=0;\n"
 "X-Generator: Weblate 4.18.1\n"
 
-#: applications/luci-app-p910nd/luasrc/model/cbi/p910nd.lua:46
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:104
+msgid "Add printer config"
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:123
+msgid "Be aware: %s also listens on port 9100."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:140
 msgid "Bidirectional mode"
 msgstr "Chế độ 2 chiều"
 
-#: applications/luci-app-p910nd/luasrc/model/cbi/p910nd.lua:20
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:167
+msgid "By the router"
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:112
+msgid "Connected %s devices show in this list."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:110
 msgid "Device"
 msgstr "Thiết bị"
 
-#: applications/luci-app-p910nd/luasrc/model/cbi/p910nd.lua:10
-msgid ""
-"First you have to install the packages to get support for USB (kmod-usb-"
-"printer) or parallel port (kmod-lp)."
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:107
+msgid "Enabled"
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:49
+msgid "Error calling \"opkg list-installed\":"
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:38
+msgid "Error executing \"find\" command:"
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:88
+msgid "For USB connected printers"
 msgstr ""
-"Trước tiên, bạn cần phải cài đặt các gói để hỗ trợ cho cổng USB (kmod-usb-"
-"in), hoặc cổng song song (kmod-lp)."
 
 #: applications/luci-app-p910nd/root/usr/share/rpcd/acl.d/luci-app-p910nd.json:3
 msgid "Grant UCI access for luci-app-p910nd"
 msgstr "Cấp quyền truy cập UCI cho luci-app-p910nd"
 
-#: applications/luci-app-p910nd/luasrc/model/cbi/p910nd.lua:22
-msgid "Interface"
-msgstr "Giao diện"
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:71
+msgid "It is safe to install both, even if only one is needed."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:129
+msgid "Listen IP"
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:130
+msgid "Listen on a specific IP."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:122
+msgid "Local TCP listen port for this printer."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:204
+msgid "Manufacturer"
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:151
+msgctxt "mDNS"
+msgid "Note: %s only advertises one (the first) printer on this host."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:231
+msgid "Note: Set only CMD languages that your printer understands."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:152
+msgid "Note: USB hotplug attempts to provide some of the values below."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:142
+msgid "Note: USB hotplug correctly detects this."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:111
+msgid ""
+"Note: character device assignment can change upon reboot/reconnect with "
+"multiple USB devices."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:175
+msgid "Note: must be %s."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:70
+msgid "One of these kernel modules is needed for p910nd to find your printer."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:146
+msgid "Overrides default of %s."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:81
+msgid "Parallel port line printer device support"
+msgstr ""
 
-#: applications/luci-app-p910nd/luasrc/model/cbi/p910nd.lua:40
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:121
 msgid "Port"
 msgstr "Cổng"
 
-#: applications/luci-app-p910nd/luasrc/model/cbi/p910nd.lua:14
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:15
+msgid "Port 910n print daemon"
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:145
+msgid "Run as root"
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:166
+msgid "Serves as Location in Apple standards."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:105
 msgid "Settings"
 msgstr "Cài đặt"
 
-#: applications/luci-app-p910nd/luasrc/model/cbi/p910nd.lua:22
-msgid "Specifies the interface to listen on."
-msgstr "Chỉ định giao thức để lắng nghe."
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:227
+msgid "Some examples:"
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:158
+msgid "The %s type element."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:174
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:203
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:218
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:226
+msgid "The %s value."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:159
+msgid "User readable description of maker and model."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:141
+msgid "Whether this print port is bi-directional."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:150
+msgctxt "mDNS/Bonjour/ZeroConf"
+msgid "Whether to advertise this printer via %s."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:132
+msgid "any"
+msgstr ""
 
-#: applications/luci-app-p910nd/luasrc/model/cbi/p910nd.lua:40
-msgid "TCP listener port."
-msgstr "Cổng lắng nghe TCP."
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:175
+msgid "enclosed within parentheses"
+msgstr ""
 
-#: applications/luci-app-p910nd/luasrc/model/cbi/p910nd.lua:18
-msgid "enable"
-msgstr "bật"
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:65
+msgid "map ports 9100-9109 to local printers."
+msgstr ""
 
-#: applications/luci-app-p910nd/luasrc/model/cbi/p910nd.lua:9
 #: applications/luci-app-p910nd/root/usr/share/luci/menu.d/luci-app-p910nd.json:3
 msgid "p910nd - Printer server"
 msgstr "p910nd - Máy chủ in"
 
-#~ msgid "p910nd listens on port 910+N. E.g. 9100 for the first printer."
-#~ msgstr "p910nd tiếp thu ở cổng 910+N. E.g. 9100 cho máy in đầu tiên."
index 97f5b8a2bba2b816759209ed36b59627d13d5321..88a095ebf9f8d7d5b98083b363e307687f199305 100644 (file)
@@ -17,52 +17,170 @@ msgstr ""
 "Plural-Forms: nplurals=1; plural=0;\n"
 "X-Generator: Weblate 4.4-dev\n"
 
-#: applications/luci-app-p910nd/luasrc/model/cbi/p910nd.lua:46
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:104
+msgid "Add printer config"
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:123
+msgid "Be aware: %s also listens on port 9100."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:140
 msgid "Bidirectional mode"
 msgstr "双向模式"
 
-#: applications/luci-app-p910nd/luasrc/model/cbi/p910nd.lua:20
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:167
+msgid "By the router"
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:112
+msgid "Connected %s devices show in this list."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:110
 msgid "Device"
 msgstr "设备"
 
-#: applications/luci-app-p910nd/luasrc/model/cbi/p910nd.lua:10
-msgid ""
-"First you have to install the packages to get support for USB (kmod-usb-"
-"printer) or parallel port (kmod-lp)."
-msgstr "必须安装 USB 打印机驱动(kmod-usb-printer)或者并口驱动(kmod-lp)。"
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:107
+msgid "Enabled"
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:49
+msgid "Error calling \"opkg list-installed\":"
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:38
+msgid "Error executing \"find\" command:"
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:88
+msgid "For USB connected printers"
+msgstr ""
 
 #: applications/luci-app-p910nd/root/usr/share/rpcd/acl.d/luci-app-p910nd.json:3
 msgid "Grant UCI access for luci-app-p910nd"
 msgstr "为 luci-app-p910nd 授予 UCI 的访问权限"
 
-#: applications/luci-app-p910nd/luasrc/model/cbi/p910nd.lua:22
-msgid "Interface"
-msgstr "接口"
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:71
+msgid "It is safe to install both, even if only one is needed."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:129
+msgid "Listen IP"
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:130
+msgid "Listen on a specific IP."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:122
+msgid "Local TCP listen port for this printer."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:204
+msgid "Manufacturer"
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:151
+msgctxt "mDNS"
+msgid "Note: %s only advertises one (the first) printer on this host."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:231
+msgid "Note: Set only CMD languages that your printer understands."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:152
+msgid "Note: USB hotplug attempts to provide some of the values below."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:142
+msgid "Note: USB hotplug correctly detects this."
+msgstr ""
 
-#: applications/luci-app-p910nd/luasrc/model/cbi/p910nd.lua:40
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:111
+msgid ""
+"Note: character device assignment can change upon reboot/reconnect with "
+"multiple USB devices."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:175
+msgid "Note: must be %s."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:70
+msgid "One of these kernel modules is needed for p910nd to find your printer."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:146
+msgid "Overrides default of %s."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:81
+msgid "Parallel port line printer device support"
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:121
 msgid "Port"
 msgstr "端口"
 
-#: applications/luci-app-p910nd/luasrc/model/cbi/p910nd.lua:14
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:15
+msgid "Port 910n print daemon"
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:145
+msgid "Run as root"
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:166
+msgid "Serves as Location in Apple standards."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:105
 msgid "Settings"
 msgstr "设置"
 
-#: applications/luci-app-p910nd/luasrc/model/cbi/p910nd.lua:22
-msgid "Specifies the interface to listen on."
-msgstr "指定监听端口。"
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:227
+msgid "Some examples:"
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:158
+msgid "The %s type element."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:174
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:203
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:218
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:226
+msgid "The %s value."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:159
+msgid "User readable description of maker and model."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:141
+msgid "Whether this print port is bi-directional."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:150
+msgctxt "mDNS/Bonjour/ZeroConf"
+msgid "Whether to advertise this printer via %s."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:132
+msgid "any"
+msgstr ""
 
-#: applications/luci-app-p910nd/luasrc/model/cbi/p910nd.lua:40
-msgid "TCP listener port."
-msgstr "TCP 监听端口。"
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:175
+msgid "enclosed within parentheses"
+msgstr ""
 
-#: applications/luci-app-p910nd/luasrc/model/cbi/p910nd.lua:18
-msgid "enable"
-msgstr "启用"
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:65
+msgid "map ports 9100-9109 to local printers."
+msgstr ""
 
-#: applications/luci-app-p910nd/luasrc/model/cbi/p910nd.lua:9
 #: applications/luci-app-p910nd/root/usr/share/luci/menu.d/luci-app-p910nd.json:3
 msgid "p910nd - Printer server"
 msgstr "p910nd - 打印服务器"
 
-#~ msgid "p910nd listens on port 910+N. E.g. 9100 for the first printer."
-#~ msgstr "p910nd 的监听端口是910+N,举例:9100用于监听第一台打印机"
index d2f42687337fc56edfeec8c34bfd687312590fc8..8bf000ce6964c33b3918c5d133efc502ab601dd0 100644 (file)
@@ -17,52 +17,170 @@ msgstr ""
 "Plural-Forms: nplurals=1; plural=0;\n"
 "X-Generator: Weblate 5.3\n"
 
-#: applications/luci-app-p910nd/luasrc/model/cbi/p910nd.lua:46
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:104
+msgid "Add printer config"
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:123
+msgid "Be aware: %s also listens on port 9100."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:140
 msgid "Bidirectional mode"
 msgstr "雙向模式"
 
-#: applications/luci-app-p910nd/luasrc/model/cbi/p910nd.lua:20
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:167
+msgid "By the router"
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:112
+msgid "Connected %s devices show in this list."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:110
 msgid "Device"
 msgstr "裝置"
 
-#: applications/luci-app-p910nd/luasrc/model/cbi/p910nd.lua:10
-msgid ""
-"First you have to install the packages to get support for USB (kmod-usb-"
-"printer) or parallel port (kmod-lp)."
-msgstr "必須安裝 USB 印表機驅動(kmod-usb-printer)或者並口驅動(kmod-lp)。"
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:107
+msgid "Enabled"
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:49
+msgid "Error calling \"opkg list-installed\":"
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:38
+msgid "Error executing \"find\" command:"
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:88
+msgid "For USB connected printers"
+msgstr ""
 
 #: applications/luci-app-p910nd/root/usr/share/rpcd/acl.d/luci-app-p910nd.json:3
 msgid "Grant UCI access for luci-app-p910nd"
 msgstr "授予 luci-app-p910nd 擁有 UCI 存取的權限"
 
-#: applications/luci-app-p910nd/luasrc/model/cbi/p910nd.lua:22
-msgid "Interface"
-msgstr "介面"
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:71
+msgid "It is safe to install both, even if only one is needed."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:129
+msgid "Listen IP"
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:130
+msgid "Listen on a specific IP."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:122
+msgid "Local TCP listen port for this printer."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:204
+msgid "Manufacturer"
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:151
+msgctxt "mDNS"
+msgid "Note: %s only advertises one (the first) printer on this host."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:231
+msgid "Note: Set only CMD languages that your printer understands."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:152
+msgid "Note: USB hotplug attempts to provide some of the values below."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:142
+msgid "Note: USB hotplug correctly detects this."
+msgstr ""
 
-#: applications/luci-app-p910nd/luasrc/model/cbi/p910nd.lua:40
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:111
+msgid ""
+"Note: character device assignment can change upon reboot/reconnect with "
+"multiple USB devices."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:175
+msgid "Note: must be %s."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:70
+msgid "One of these kernel modules is needed for p910nd to find your printer."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:146
+msgid "Overrides default of %s."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:81
+msgid "Parallel port line printer device support"
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:121
 msgid "Port"
 msgstr "連接埠"
 
-#: applications/luci-app-p910nd/luasrc/model/cbi/p910nd.lua:14
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:15
+msgid "Port 910n print daemon"
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:145
+msgid "Run as root"
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:166
+msgid "Serves as Location in Apple standards."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:105
 msgid "Settings"
 msgstr "設定"
 
-#: applications/luci-app-p910nd/luasrc/model/cbi/p910nd.lua:22
-msgid "Specifies the interface to listen on."
-msgstr "指定監聽埠。"
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:227
+msgid "Some examples:"
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:158
+msgid "The %s type element."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:174
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:203
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:218
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:226
+msgid "The %s value."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:159
+msgid "User readable description of maker and model."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:141
+msgid "Whether this print port is bi-directional."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:150
+msgctxt "mDNS/Bonjour/ZeroConf"
+msgid "Whether to advertise this printer via %s."
+msgstr ""
+
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:132
+msgid "any"
+msgstr ""
 
-#: applications/luci-app-p910nd/luasrc/model/cbi/p910nd.lua:40
-msgid "TCP listener port."
-msgstr "TCP 監聽埠。"
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:175
+msgid "enclosed within parentheses"
+msgstr ""
 
-#: applications/luci-app-p910nd/luasrc/model/cbi/p910nd.lua:18
-msgid "enable"
-msgstr "啟用"
+#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:65
+msgid "map ports 9100-9109 to local printers."
+msgstr ""
 
-#: applications/luci-app-p910nd/luasrc/model/cbi/p910nd.lua:9
 #: applications/luci-app-p910nd/root/usr/share/luci/menu.d/luci-app-p910nd.json:3
 msgid "p910nd - Printer server"
 msgstr "p910nd - 列印伺服器"
 
-#~ msgid "p910nd listens on port 910+N. E.g. 9100 for the first printer."
-#~ msgstr "p910nd 的監聽埠是910+N,舉例:9100用於監聽第一臺印表機"
index 4f3cb810c6e3cfff6faf44bd538185cf849daf88..b67523168b26704228494e462b7e2c9fc5b924f1 100644 (file)
@@ -3,9 +3,8 @@
                "title": "p910nd - Printer server",
                "order": 60,
                "action": {
-                       "type": "cbi",
-                       "path": "p910nd",
-                       "post": { "cbi.submit": true }
+                       "type": "view",
+                       "path": "p910nd"
                },
                "depends": {
                        "acl": [ "luci-app-p910nd" ],
index b2e7476e61bb87ca2aa552b1f8f515fc0969bb24..7111081bb91d51b08391f4741d4f39f66ff4174e 100644 (file)
@@ -2,7 +2,14 @@
        "luci-app-p910nd": {
                "description": "Grant UCI access for luci-app-p910nd",
                "read": {
-                       "uci": [ "p910nd" ]
+                       "uci": [ "p910nd" ],
+                       "file": {
+                               "/usr/bin/find -L /dev -maxdepth 3 -type c -name lp*": ["exec"],
+                               "/usr/libexec/opkg-call list-installed": ["exec"]
+                       },
+                       "ubus": {
+                               "luci": [ "p910nd" ]
+                       }
                },
                "write": {
                        "uci": [ "p910nd" ]