#
-# 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 .
#
--- /dev/null
+//
+// 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()]);
+ }
+});
+++ /dev/null
--- 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
"&& 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."
"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)."
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."
"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."
"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)."
"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"
"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."
"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"
"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 για τον πρώτο εκτυπωτή"
"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."
"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"
"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."
"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."
"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) עבור המדפסת הראשונה."
"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."
"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ó"
"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."
"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"
"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."
"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"
+
"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."
"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 ""
+
"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)"
"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."
"|| 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."
"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."
"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
"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ă"
+
"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"
+
"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
"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"
+
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 ""
"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"
+
"%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 - сервер друку"
+
"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."
"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用于监听第一台打印机"
"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用於監聽第一臺印表機"
"title": "p910nd - Printer server",
"order": 60,
"action": {
- "type": "cbi",
- "path": "p910nd",
- "post": { "cbi.submit": true }
+ "type": "view",
+ "path": "p910nd"
},
"depends": {
"acl": [ "luci-app-p910nd" ],
"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" ]