From 4cb66552b7b2e57c0e9af9b4d102c5bb42931264 Mon Sep 17 00:00:00 2001 From: Paul Donald Date: Mon, 12 Feb 2024 16:07:58 +0100 Subject: [PATCH] luci-app-p910nd: convert to JS Simple p910nd printer management, and some level of automation that detects whether the typically necessary kmods are installed, and if not provides quick links to install those. Tested on: 21.02.1, 22.03.6, 23.05.2 Signed-off-by: Paul Donald --- applications/luci-app-p910nd/Makefile | 2 +- .../luci-static/resources/view/p910nd.js | 268 ++++++++++++++++++ .../luasrc/model/cbi/p910nd.lua | 48 ---- applications/luci-app-p910nd/po/ar/p910nd.po | 159 +++++++++-- applications/luci-app-p910nd/po/bg/p910nd.po | 161 +++++++++-- .../luci-app-p910nd/po/bn_BD/p910nd.po | 159 +++++++++-- applications/luci-app-p910nd/po/ca/p910nd.po | 183 ++++++++++-- applications/luci-app-p910nd/po/cs/p910nd.po | 183 ++++++++++-- applications/luci-app-p910nd/po/da/p910nd.po | 183 ++++++++++-- applications/luci-app-p910nd/po/de/p910nd.po | 183 ++++++++++-- applications/luci-app-p910nd/po/el/p910nd.po | 183 ++++++++++-- applications/luci-app-p910nd/po/en/p910nd.po | 168 +++++++++-- applications/luci-app-p910nd/po/es/p910nd.po | 183 ++++++++++-- applications/luci-app-p910nd/po/fi/p910nd.po | 183 ++++++++++-- applications/luci-app-p910nd/po/fr/p910nd.po | 183 ++++++++++-- applications/luci-app-p910nd/po/he/p910nd.po | 183 ++++++++++-- applications/luci-app-p910nd/po/hi/p910nd.po | 154 ++++++++-- applications/luci-app-p910nd/po/hu/p910nd.po | 183 ++++++++++-- applications/luci-app-p910nd/po/it/p910nd.po | 183 ++++++++++-- applications/luci-app-p910nd/po/ja/p910nd.po | 183 ++++++++++-- applications/luci-app-p910nd/po/ko/p910nd.po | 159 +++++++++-- applications/luci-app-p910nd/po/lt/p910nd.po | 185 ++++++++++-- applications/luci-app-p910nd/po/mr/p910nd.po | 159 +++++++++-- applications/luci-app-p910nd/po/ms/p910nd.po | 159 +++++++++-- .../luci-app-p910nd/po/nb_NO/p910nd.po | 183 ++++++++++-- applications/luci-app-p910nd/po/nl/p910nd.po | 183 ++++++++++-- applications/luci-app-p910nd/po/pl/p910nd.po | 183 ++++++++++-- applications/luci-app-p910nd/po/pt/p910nd.po | 183 ++++++++++-- .../luci-app-p910nd/po/pt_BR/p910nd.po | 187 ++++++++++-- applications/luci-app-p910nd/po/ro/p910nd.po | 183 ++++++++++-- applications/luci-app-p910nd/po/ru/p910nd.po | 184 ++++++++++-- applications/luci-app-p910nd/po/sk/p910nd.po | 170 +++++++++-- applications/luci-app-p910nd/po/sv/p910nd.po | 183 ++++++++++-- .../luci-app-p910nd/po/templates/p910nd.pot | 154 ++++++++-- applications/luci-app-p910nd/po/tr/p910nd.po | 183 ++++++++++-- applications/luci-app-p910nd/po/uk/p910nd.po | 183 ++++++++++-- applications/luci-app-p910nd/po/vi/p910nd.po | 183 ++++++++++-- .../luci-app-p910nd/po/zh_Hans/p910nd.po | 182 ++++++++++-- .../luci-app-p910nd/po/zh_Hant/p910nd.po | 182 ++++++++++-- .../share/luci/menu.d/luci-app-p910nd.json | 5 +- .../usr/share/rpcd/acl.d/luci-app-p910nd.json | 9 +- 41 files changed, 5861 insertions(+), 836 deletions(-) create mode 100644 applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js delete mode 100644 applications/luci-app-p910nd/luasrc/model/cbi/p910nd.lua diff --git a/applications/luci-app-p910nd/Makefile b/applications/luci-app-p910nd/Makefile index 4b33020cbd55..4ea967dd2a9b 100644 --- a/applications/luci-app-p910nd/Makefile +++ b/applications/luci-app-p910nd/Makefile @@ -1,5 +1,5 @@ # -# Copyright (C) 2008-2014 The LuCI Team +# Copyright (C) 2024 systemcrash # # This is free software, licensed under the Apache License, Version 2.0 . # diff --git a/applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js b/applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js new file mode 100644 index 000000000000..efcb1b640e1a --- /dev/null +++ b/applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js @@ -0,0 +1,268 @@ +// +// Copyright (c) 2024 systemcrash +// + +'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.') + '
' + + _('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.') + '
' + + _('Connected %s devices show in this list.').format('lpX')); + 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.') + '
' + + _('Be aware: %s also listens on port 9100.').format('node_exporter')); + 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.') + '
' + + _('Note: USB hotplug correctly detects this.')); + o.modalonly = true; + + o = s.option(form.Flag, 'runas_root', _('Run as root'), + _('Overrides default of %s.').format('user p910nd, group lp')); + o.modalonly = true; + + o = s.option(form.Flag, 'mdns', 'mDNS', + _('Whether to advertise this printer via %s.', 'mDNS/Bonjour/ZeroConf').format('mDNS/Bonjour/ZeroConf') + '
' + + _('Note: %s only advertises one (the first) printer on this host.', 'mDNS').format('mDNS') + '
' + + _('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') + '
' + + _('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('IEEE1284 Product') + '
' + + _('Note: must be %s.').format('(' + _('enclosed within parentheses') + ')')); + 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_to_array = function(string, uppercase=false) { + if (string && !Array.isArray(string)) { + return [...new Set(string.split(',') + .map(element => uppercase? element.toUpperCase().trim(): element.trim() ) + .filter(el => el!=' ' && el!='') + .sort() ) ]; + } + }; + + o = s.option(form.Value, 'mdns_mfg', 'mdns_mfg', + _('The %s value.').format('IEEE1284 MANUFACTURER/MFG')); + o.placeholder = _('Manufacturer'); + const mfrs = string_to_array('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('IEEE1284 MODEL/MDL')); + 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('IEEE1284 CMD/COMMAND SET') + '
' + + _('Some examples: ') + + 'ACL, ESC/P, PCL, PDF17,' + + 'PJL, POSTSCRIPT, PS' + + '
'+ + _('Note: Set only CMD languages that your printer understands.')); + + o.cfgvalue = function(section_id) { + var value = uci.get(pkg.Name, section_id, 'mdns_cmd'); + if (value && !Array.isArray(value)) + value = value.split(',').map(el => el.trim()); + return value; + } + o.rmempty = true; + o.optional = true; + o.modalonly = true; + o.modalonly = true; + o.depends({mdns: '1'}); + o.write = function(section_id, value) { + if(value){ + var newvalue = value.map(element => element.toUpperCase().trim()) + .filter(el => el!=' ') + .filter(el => el!='') + .sort().join(','); + uci.set(pkg.Name, section_id, 'mdns_cmd', newvalue); + } + } + const cmds = string_to_array('ACL,BDC,BIDI-ECP,BSCCe,CAPT,CEZD,CPCA,CPCL,\ + D4,D4PX,DESKJET,DPL,DW-PCL,DYN,\ + END4,EPL,EPSONFX,ESC/P,ESCPL2,EXT,FWV,GDI,HAPS,\ + HBP,HIPERMIP,IBMPPR,IPL,LIPSLX,MLC,\ + PCL,PCL3,PCL3GUI,PCL5c,PCL5e,PCL6,PCLXL,\ + PDF,PDF17,\ + PJL,PML,\ + POSTSCRIPT,PostScript Emulation,PS,\ + PWG_RASTER,RCS,URF,URP,XL,XPP,XPS,ZPL'); + for(var cmd in cmds){ + o.value(cmds[cmd]); + } + + return Promise.all([m.render()]); + } +}); diff --git a/applications/luci-app-p910nd/luasrc/model/cbi/p910nd.lua b/applications/luci-app-p910nd/luasrc/model/cbi/p910nd.lua deleted file mode 100644 index 6a94db7cdde4..000000000000 --- a/applications/luci-app-p910nd/luasrc/model/cbi/p910nd.lua +++ /dev/null @@ -1,48 +0,0 @@ --- Copyright 2008 Yanira --- Copyright 2012 Jo-Philipp Wich --- 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 diff --git a/applications/luci-app-p910nd/po/ar/p910nd.po b/applications/luci-app-p910nd/po/ar/p910nd.po index 94d3ea9b2ecc..d17d7c7e84d5 100644 --- a/applications/luci-app-p910nd/po/ar/p910nd.po +++ b/applications/luci-app-p910nd/po/ar/p910nd.po @@ -15,52 +15,175 @@ msgstr "" "&& n%100<=10 ? 3 : n%100>=11 ? 4 : 5;\n" "X-Generator: Weblate 4.5.1\n" -#: applications/luci-app-p910nd/luasrc/model/cbi/p910nd.lua:46 +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:104 +msgid "Add printer config" +msgstr "" + +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:123 +msgid "Be aware: %s also listens on port 9100." +msgstr "" + +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:140 msgid "Bidirectional mode" msgstr "" -#: applications/luci-app-p910nd/luasrc/model/cbi/p910nd.lua:20 +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:167 +msgid "By the router" +msgstr "" + +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:112 +msgid "Connected %s devices show in this list." +msgstr "" + +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:110 msgid "Device" msgstr "جهاز" -#: applications/luci-app-p910nd/luasrc/model/cbi/p910nd.lua:10 -msgid "" -"First you have to install the packages to get support for USB (kmod-usb-" -"printer) or parallel port (kmod-lp)." +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:107 +msgid "Enabled" +msgstr "" + +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:49 +msgid "Error calling \"opkg list-installed\":" +msgstr "" + +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:38 +msgid "Error executing \"find\" command:" +msgstr "" + +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:88 +msgid "For USB connected printers" msgstr "" #: applications/luci-app-p910nd/root/usr/share/rpcd/acl.d/luci-app-p910nd.json:3 msgid "Grant UCI access for luci-app-p910nd" msgstr "" -#: applications/luci-app-p910nd/luasrc/model/cbi/p910nd.lua:22 -msgid "Interface" -msgstr "واجهه" +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:71 +msgid "It is safe to install both, even if only one is needed." +msgstr "" + +#: applications/luci-app-p910nd/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." +#: 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 "" +#~ msgid "Interface" +#~ 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." diff --git a/applications/luci-app-p910nd/po/bg/p910nd.po b/applications/luci-app-p910nd/po/bg/p910nd.po index 6eb9cf312672..5c77ca51e715 100644 --- a/applications/luci-app-p910nd/po/bg/p910nd.po +++ b/applications/luci-app-p910nd/po/bg/p910nd.po @@ -14,18 +14,44 @@ msgstr "" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Generator: Weblate 5.5-dev\n" -#: applications/luci-app-p910nd/luasrc/model/cbi/p910nd.lua:46 +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:104 +msgid "Add printer config" +msgstr "" + +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:123 +msgid "Be aware: %s also listens on port 9100." +msgstr "" + +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:140 msgid "Bidirectional mode" msgstr "Двупосочен режим" -#: applications/luci-app-p910nd/luasrc/model/cbi/p910nd.lua:20 +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:167 +msgid "By the router" +msgstr "" + +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:112 +msgid "Connected %s devices show in this list." +msgstr "" + +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:110 msgid "Device" msgstr "Устройство" -#: applications/luci-app-p910nd/luasrc/model/cbi/p910nd.lua:10 -msgid "" -"First you have to install the packages to get support for USB (kmod-usb-" -"printer) or parallel port (kmod-lp)." +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:107 +msgid "Enabled" +msgstr "" + +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:49 +msgid "Error calling \"opkg list-installed\":" +msgstr "" + +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:38 +msgid "Error executing \"find\" command:" +msgstr "" + +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:88 +msgid "For USB connected printers" msgstr "" "Първо трябва да инсталирате пакетите за поддръжка на USB (kmod-usb-printer) " "или паралелен порт (kmod-lp)." @@ -34,34 +60,131 @@ msgstr "" msgid "Grant UCI access for luci-app-p910nd" msgstr "" -#: applications/luci-app-p910nd/luasrc/model/cbi/p910nd.lua:22 -msgid "Interface" -msgstr "Интерфейс" +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:71 +msgid "It is safe to install both, even if only one is needed." +msgstr "" + +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:129 +msgid "Listen IP" +msgstr "" + +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:130 +msgid "Listen on a specific IP." +msgstr "" + +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:122 +msgid "Local TCP listen port for this printer." +msgstr "" + +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:204 +msgid "Manufacturer" +msgstr "" + +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:151 +msgctxt "mDNS" +msgid "Note: %s only advertises one (the first) printer on this host." +msgstr "" + +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:231 +msgid "Note: Set only CMD languages that your printer understands." +msgstr "" + +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:152 +msgid "Note: USB hotplug attempts to provide some of the values below." +msgstr "" + +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:142 +msgid "Note: USB hotplug correctly detects this." +msgstr "" -#: applications/luci-app-p910nd/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." +#: 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/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 "p910nd - Принтер сървър" +#~ msgid "Interface" +#~ 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." diff --git a/applications/luci-app-p910nd/po/bn_BD/p910nd.po b/applications/luci-app-p910nd/po/bn_BD/p910nd.po index f11dd752d258..39f37eac9b4d 100644 --- a/applications/luci-app-p910nd/po/bn_BD/p910nd.po +++ b/applications/luci-app-p910nd/po/bn_BD/p910nd.po @@ -14,52 +14,175 @@ msgstr "" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Generator: Weblate 4.9-dev\n" -#: applications/luci-app-p910nd/luasrc/model/cbi/p910nd.lua:46 +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:104 +msgid "Add printer config" +msgstr "" + +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:123 +msgid "Be aware: %s also listens on port 9100." +msgstr "" + +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:140 msgid "Bidirectional mode" msgstr "" -#: applications/luci-app-p910nd/luasrc/model/cbi/p910nd.lua:20 +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:167 +msgid "By the router" +msgstr "" + +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:112 +msgid "Connected %s devices show in this list." +msgstr "" + +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:110 msgid "Device" msgstr "ডিভাইস" -#: applications/luci-app-p910nd/luasrc/model/cbi/p910nd.lua:10 -msgid "" -"First you have to install the packages to get support for USB (kmod-usb-" -"printer) or parallel port (kmod-lp)." +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:107 +msgid "Enabled" +msgstr "" + +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:49 +msgid "Error calling \"opkg list-installed\":" +msgstr "" + +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:38 +msgid "Error executing \"find\" command:" +msgstr "" + +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:88 +msgid "For USB connected printers" msgstr "" #: applications/luci-app-p910nd/root/usr/share/rpcd/acl.d/luci-app-p910nd.json:3 msgid "Grant UCI access for luci-app-p910nd" msgstr "" -#: applications/luci-app-p910nd/luasrc/model/cbi/p910nd.lua:22 -msgid "Interface" -msgstr "ইন্টারফেস" +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:71 +msgid "It is safe to install both, even if only one is needed." +msgstr "" + +#: applications/luci-app-p910nd/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." +#: 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 "" +#~ msgid "Interface" +#~ 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." diff --git a/applications/luci-app-p910nd/po/ca/p910nd.po b/applications/luci-app-p910nd/po/ca/p910nd.po index 046b42f0d729..4a65fe6551aa 100644 --- a/applications/luci-app-p910nd/po/ca/p910nd.po +++ b/applications/luci-app-p910nd/po/ca/p910nd.po @@ -16,55 +16,192 @@ msgstr "" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Generator: Weblate 4.5.1\n" -#: applications/luci-app-p910nd/luasrc/model/cbi/p910nd.lua:46 +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:104 +msgid "Add printer config" +msgstr "" + +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:123 +msgid "Be aware: %s also listens on port 9100." +msgstr "" + +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:140 msgid "Bidirectional mode" msgstr "Mode bidireccional" -#: applications/luci-app-p910nd/luasrc/model/cbi/p910nd.lua:20 +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:167 +msgid "By the router" +msgstr "" + +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:112 +msgid "Connected %s devices show in this list." +msgstr "" + +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:110 msgid "Device" msgstr "Dispositiu" -#: applications/luci-app-p910nd/luasrc/model/cbi/p910nd.lua:10 -msgid "" -"First you have to install the packages to get support for USB (kmod-usb-" -"printer) or parallel port (kmod-lp)." +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:107 +msgid "Enabled" +msgstr "" + +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:49 +msgid "Error calling \"opkg list-installed\":" +msgstr "" + +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:38 +msgid "Error executing \"find\" command:" +msgstr "" + +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:88 +msgid "For USB connected printers" msgstr "" -"Primer heu d'instal·lar els paquets de suport USB (kmod-usb-printer) o de " -"port paral·lel (kmod-lp)." #: applications/luci-app-p910nd/root/usr/share/rpcd/acl.d/luci-app-p910nd.json:3 msgid "Grant UCI access for luci-app-p910nd" msgstr "" -#: applications/luci-app-p910nd/luasrc/model/cbi/p910nd.lua:22 -msgid "Interface" -msgstr "Interfície" +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:71 +msgid "It is safe to install both, even if only one is needed." +msgstr "" + +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:129 +msgid "Listen IP" +msgstr "" + +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:130 +msgid "Listen on a specific IP." +msgstr "" + +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:122 +msgid "Local TCP listen port for this printer." +msgstr "" + +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:204 +msgid "Manufacturer" +msgstr "" + +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:151 +msgctxt "mDNS" +msgid "Note: %s only advertises one (the first) printer on this host." +msgstr "" + +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:231 +msgid "Note: Set only CMD languages that your printer understands." +msgstr "" + +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:152 +msgid "Note: USB hotplug attempts to provide some of the values below." +msgstr "" + +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:142 +msgid "Note: USB hotplug correctly detects this." +msgstr "" + +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:111 +msgid "" +"Note: character device assignment can change upon reboot/reconnect with " +"multiple USB devices." +msgstr "" + +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:175 +msgid "Note: must be %s." +msgstr "" -#: applications/luci-app-p910nd/luasrc/model/cbi/p910nd.lua:40 +#: 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 "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/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:158 +msgid "The %s type element." +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: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 d'impressió" +#~ msgid "" +#~ "First you have to install the packages to get support for USB (kmod-usb-" +#~ "printer) or parallel port (kmod-lp)." +#~ msgstr "" +#~ "Primer heu d'instal·lar els paquets de suport USB (kmod-usb-printer) o de " +#~ "port paral·lel (kmod-lp)." + +#~ msgid "Interface" +#~ msgstr "Interfície" + +#~ msgid "Specifies the interface to listen on." +#~ msgstr "Especifica la interfície en que escoltar." + +#~ msgid "TCP listener port." +#~ msgstr "Port d'escolta TCP." + +#~ msgid "enable" +#~ msgstr "habilita" + #~ msgid "port_help" #~ msgstr "" #~ "El p910nd escolta al port 910+N. Per exemple, 9100 per la primera " diff --git a/applications/luci-app-p910nd/po/cs/p910nd.po b/applications/luci-app-p910nd/po/cs/p910nd.po index 867d363fd8e9..8969b99f6727 100644 --- a/applications/luci-app-p910nd/po/cs/p910nd.po +++ b/applications/luci-app-p910nd/po/cs/p910nd.po @@ -12,54 +12,191 @@ msgstr "" "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" "X-Generator: Weblate 5.1-dev\n" -#: applications/luci-app-p910nd/luasrc/model/cbi/p910nd.lua:46 +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:104 +msgid "Add printer config" +msgstr "" + +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:123 +msgid "Be aware: %s also listens on port 9100." +msgstr "" + +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:140 msgid "Bidirectional mode" msgstr "Obousměrný režim" -#: applications/luci-app-p910nd/luasrc/model/cbi/p910nd.lua:20 +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:167 +msgid "By the router" +msgstr "" + +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:112 +msgid "Connected %s devices show in this list." +msgstr "" + +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:110 msgid "Device" msgstr "Zařízení" -#: applications/luci-app-p910nd/luasrc/model/cbi/p910nd.lua:10 -msgid "" -"First you have to install the packages to get support for USB (kmod-usb-" -"printer) or parallel port (kmod-lp)." +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:107 +msgid "Enabled" +msgstr "" + +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:49 +msgid "Error calling \"opkg list-installed\":" +msgstr "" + +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:38 +msgid "Error executing \"find\" command:" +msgstr "" + +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:88 +msgid "For USB connected printers" msgstr "" -"Nejprve je třeba nainstalovat balíčky přinášející podporu USB (kmod-usb-" -"printer) či paralelního portu (kmod-lp)." #: applications/luci-app-p910nd/root/usr/share/rpcd/acl.d/luci-app-p910nd.json:3 msgid "Grant UCI access for luci-app-p910nd" msgstr "Udělit oprávnění k UCI pro luci-app-p910nd" -#: applications/luci-app-p910nd/luasrc/model/cbi/p910nd.lua:22 -msgid "Interface" -msgstr "Rozhraní" +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:71 +msgid "It is safe to install both, even if only one is needed." +msgstr "" + +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:129 +msgid "Listen IP" +msgstr "" + +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:130 +msgid "Listen on a specific IP." +msgstr "" + +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:122 +msgid "Local TCP listen port for this printer." +msgstr "" + +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:204 +msgid "Manufacturer" +msgstr "" + +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:151 +msgctxt "mDNS" +msgid "Note: %s only advertises one (the first) printer on this host." +msgstr "" + +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:231 +msgid "Note: Set only CMD languages that your printer understands." +msgstr "" + +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:152 +msgid "Note: USB hotplug attempts to provide some of the values below." +msgstr "" + +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:142 +msgid "Note: USB hotplug correctly detects this." +msgstr "" + +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:111 +msgid "" +"Note: character device assignment can change upon reboot/reconnect with " +"multiple USB devices." +msgstr "" -#: applications/luci-app-p910nd/luasrc/model/cbi/p910nd.lua:40 +#: 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 "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/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:159 +msgid "User readable description of maker and model." +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: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 – tiskový server" +#~ msgid "" +#~ "First you have to install the packages to get support for USB (kmod-usb-" +#~ "printer) or parallel port (kmod-lp)." +#~ msgstr "" +#~ "Nejprve je třeba nainstalovat balíčky přinášející podporu USB (kmod-usb-" +#~ "printer) či paralelního portu (kmod-lp)." + +#~ msgid "Interface" +#~ msgstr "Rozhraní" + +#~ msgid "Specifies the interface to listen on." +#~ msgstr "Určuje rozhraní, na kterém očekávat spojení." + +#~ msgid "TCP listener port." +#~ msgstr "TCP port, na kterém očekávat spojení." + +#~ msgid "enable" +#~ msgstr "povolit" + #~ msgid "port_help" #~ msgstr "Nápověda pro výběr portu" diff --git a/applications/luci-app-p910nd/po/da/p910nd.po b/applications/luci-app-p910nd/po/da/p910nd.po index dd9e04f1bccc..3a94f9b531c6 100644 --- a/applications/luci-app-p910nd/po/da/p910nd.po +++ b/applications/luci-app-p910nd/po/da/p910nd.po @@ -14,54 +14,191 @@ msgstr "" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Generator: Weblate 4.9.1-dev\n" -#: applications/luci-app-p910nd/luasrc/model/cbi/p910nd.lua:46 +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:104 +msgid "Add printer config" +msgstr "" + +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:123 +msgid "Be aware: %s also listens on port 9100." +msgstr "" + +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:140 msgid "Bidirectional mode" msgstr "Tovejstilstand" -#: applications/luci-app-p910nd/luasrc/model/cbi/p910nd.lua:20 +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:167 +msgid "By the router" +msgstr "" + +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:112 +msgid "Connected %s devices show in this list." +msgstr "" + +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:110 msgid "Device" msgstr "Enhed" -#: applications/luci-app-p910nd/luasrc/model/cbi/p910nd.lua:10 -msgid "" -"First you have to install the packages to get support for USB (kmod-usb-" -"printer) or parallel port (kmod-lp)." +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:107 +msgid "Enabled" +msgstr "" + +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:49 +msgid "Error calling \"opkg list-installed\":" +msgstr "" + +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:38 +msgid "Error executing \"find\" command:" +msgstr "" + +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:88 +msgid "For USB connected printers" msgstr "" -"Først skal du installere pakkerne for at få understøttelse af USB (kmod-usb-" -"printer) eller parallelport (kmod-lp)." #: applications/luci-app-p910nd/root/usr/share/rpcd/acl.d/luci-app-p910nd.json:3 msgid "Grant UCI access for luci-app-p910nd" msgstr "Giv UCI-adgang til luci-app-p910nd" -#: applications/luci-app-p910nd/luasrc/model/cbi/p910nd.lua:22 -msgid "Interface" -msgstr "Interface" +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:71 +msgid "It is safe to install both, even if only one is needed." +msgstr "" + +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:129 +msgid "Listen IP" +msgstr "" + +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:130 +msgid "Listen on a specific IP." +msgstr "" + +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:122 +msgid "Local TCP listen port for this printer." +msgstr "" + +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:204 +msgid "Manufacturer" +msgstr "" + +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:151 +msgctxt "mDNS" +msgid "Note: %s only advertises one (the first) printer on this host." +msgstr "" + +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:231 +msgid "Note: Set only CMD languages that your printer understands." +msgstr "" + +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:152 +msgid "Note: USB hotplug attempts to provide some of the values below." +msgstr "" + +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:142 +msgid "Note: USB hotplug correctly detects this." +msgstr "" + +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:111 +msgid "" +"Note: character device assignment can change upon reboot/reconnect with " +"multiple USB devices." +msgstr "" -#: applications/luci-app-p910nd/luasrc/model/cbi/p910nd.lua:40 +#: 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 "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/luasrc/model/cbi/p910nd.lua:40 -msgid "TCP listener port." -msgstr "TCP lytterport." +#: 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:18 -msgid "enable" -msgstr "Aktiver" +#: 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 - Printerserver" +#~ msgid "" +#~ "First you have to install the packages to get support for USB (kmod-usb-" +#~ "printer) or parallel port (kmod-lp)." +#~ msgstr "" +#~ "Først skal du installere pakkerne for at få understøttelse af USB (kmod-" +#~ "usb-printer) eller parallelport (kmod-lp)." + +#~ msgid "Interface" +#~ msgstr "Interface" + +#~ msgid "Specifies the interface to listen on." +#~ msgstr "Specificerer interface til at lytte på." + +#~ msgid "TCP listener port." +#~ msgstr "TCP lytterport." + +#~ msgid "enable" +#~ msgstr "Aktiver" + #~ 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." diff --git a/applications/luci-app-p910nd/po/de/p910nd.po b/applications/luci-app-p910nd/po/de/p910nd.po index 438f20a00875..7a945a86adef 100644 --- a/applications/luci-app-p910nd/po/de/p910nd.po +++ b/applications/luci-app-p910nd/po/de/p910nd.po @@ -14,54 +14,191 @@ msgstr "" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Generator: Weblate 4.2-dev\n" -#: applications/luci-app-p910nd/luasrc/model/cbi/p910nd.lua:46 +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:104 +msgid "Add printer config" +msgstr "" + +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:123 +msgid "Be aware: %s also listens on port 9100." +msgstr "" + +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:140 msgid "Bidirectional mode" msgstr "Bidirektionaler Modus" -#: applications/luci-app-p910nd/luasrc/model/cbi/p910nd.lua:20 +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:167 +msgid "By the router" +msgstr "" + +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:112 +msgid "Connected %s devices show in this list." +msgstr "" + +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:110 msgid "Device" msgstr "Gerät" -#: applications/luci-app-p910nd/luasrc/model/cbi/p910nd.lua:10 -msgid "" -"First you have to install the packages to get support for USB (kmod-usb-" -"printer) or parallel port (kmod-lp)." +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:107 +msgid "Enabled" +msgstr "" + +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:49 +msgid "Error calling \"opkg list-installed\":" +msgstr "" + +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:38 +msgid "Error executing \"find\" command:" +msgstr "" + +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:88 +msgid "For USB connected printers" msgstr "" -"Bevor p910nd verwendet werden kann müssen Pakete für USB (kmod-usb-printer) " -"und Parallelport (kmod-lp)-Support installiert werden." #: applications/luci-app-p910nd/root/usr/share/rpcd/acl.d/luci-app-p910nd.json:3 msgid "Grant UCI access for luci-app-p910nd" msgstr "Gewähre UCI Zugriff auf luci-app-p910nd" -#: applications/luci-app-p910nd/luasrc/model/cbi/p910nd.lua:22 -msgid "Interface" -msgstr "Schnittstelle" +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:71 +msgid "It is safe to install both, even if only one is needed." +msgstr "" + +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:129 +msgid "Listen IP" +msgstr "" + +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:130 +msgid "Listen on a specific IP." +msgstr "" + +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:122 +msgid "Local TCP listen port for this printer." +msgstr "" + +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:204 +msgid "Manufacturer" +msgstr "" + +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:151 +msgctxt "mDNS" +msgid "Note: %s only advertises one (the first) printer on this host." +msgstr "" + +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:231 +msgid "Note: Set only CMD languages that your printer understands." +msgstr "" + +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:152 +msgid "Note: USB hotplug attempts to provide some of the values below." +msgstr "" + +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:142 +msgid "Note: USB hotplug correctly detects this." +msgstr "" + +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:111 +msgid "" +"Note: character device assignment can change upon reboot/reconnect with " +"multiple USB devices." +msgstr "" -#: applications/luci-app-p910nd/luasrc/model/cbi/p910nd.lua:40 +#: 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 "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/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:159 +msgid "User readable description of maker and model." +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: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 - Printserver" +#~ msgid "" +#~ "First you have to install the packages to get support for USB (kmod-usb-" +#~ "printer) or parallel port (kmod-lp)." +#~ msgstr "" +#~ "Bevor p910nd verwendet werden kann müssen Pakete für USB (kmod-usb-" +#~ "printer) und Parallelport (kmod-lp)-Support installiert werden." + +#~ msgid "Interface" +#~ msgstr "Schnittstelle" + +#~ msgid "Specifies the interface to listen on." +#~ msgstr "Gibt die zu überwachende Schnittstelle an." + +#~ msgid "TCP listener port." +#~ msgstr "TCP-Listen Port." + +#~ msgid "enable" +#~ msgstr "aktivieren" + #~ 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" diff --git a/applications/luci-app-p910nd/po/el/p910nd.po b/applications/luci-app-p910nd/po/el/p910nd.po index 16db48ca5c3b..62e19e91ad0d 100644 --- a/applications/luci-app-p910nd/po/el/p910nd.po +++ b/applications/luci-app-p910nd/po/el/p910nd.po @@ -14,55 +14,192 @@ msgstr "" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Generator: Weblate 4.12-dev\n" -#: applications/luci-app-p910nd/luasrc/model/cbi/p910nd.lua:46 +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:104 +msgid "Add printer config" +msgstr "" + +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:123 +msgid "Be aware: %s also listens on port 9100." +msgstr "" + +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:140 msgid "Bidirectional mode" msgstr "Αμφίδρομη μέθοδος" -#: applications/luci-app-p910nd/luasrc/model/cbi/p910nd.lua:20 +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:167 +msgid "By the router" +msgstr "" + +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:112 +msgid "Connected %s devices show in this list." +msgstr "" + +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:110 msgid "Device" msgstr "Συσκευή" -#: applications/luci-app-p910nd/luasrc/model/cbi/p910nd.lua:10 -msgid "" -"First you have to install the packages to get support for USB (kmod-usb-" -"printer) or parallel port (kmod-lp)." +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:107 +msgid "Enabled" +msgstr "" + +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:49 +msgid "Error calling \"opkg list-installed\":" +msgstr "" + +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:38 +msgid "Error executing \"find\" command:" +msgstr "" + +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:88 +msgid "For USB connected printers" msgstr "" -"Πρώτα πρέπει να εγκατασταθούν τα πακέτα για να υπάρξει υποστήριξη για USB " -"(kmod-usb-printer) ή παράλληλη θύρα (kmod-lp)." #: applications/luci-app-p910nd/root/usr/share/rpcd/acl.d/luci-app-p910nd.json:3 msgid "Grant UCI access for luci-app-p910nd" msgstr "Παραχωρήστε πρόσβαση UCI στο luci-app-p910nd" -#: applications/luci-app-p910nd/luasrc/model/cbi/p910nd.lua:22 -msgid "Interface" -msgstr "Διεπαφή" +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:71 +msgid "It is safe to install both, even if only one is needed." +msgstr "" + +#: applications/luci-app-p910nd/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/luasrc/model/cbi/p910nd.lua:40 +#: 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/luasrc/model/cbi/p910nd.lua:40 -msgid "TCP listener port." -msgstr "TCP Θύρα ακρόασης." +#: 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 "ενεργοποίηση" +#: 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 - Διακομιστής εκτυπωτή" +#~ 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)." + +#~ msgid "Interface" +#~ msgstr "Διεπαφή" + +#~ msgid "Specifies the interface to listen on." +#~ msgstr "Καθορίζει τη διεπαφή στην οποία θα ακούει." + +#~ msgid "TCP listener port." +#~ msgstr "TCP Θύρα ακρόασης." + +#~ msgid "enable" +#~ msgstr "ενεργοποίηση" + #~ msgid "port_help" #~ msgstr "port_help" diff --git a/applications/luci-app-p910nd/po/en/p910nd.po b/applications/luci-app-p910nd/po/en/p910nd.po index 3e7b610e7629..206caec74d03 100644 --- a/applications/luci-app-p910nd/po/en/p910nd.po +++ b/applications/luci-app-p910nd/po/en/p910nd.po @@ -14,54 +14,182 @@ msgstr "" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Generator: Weblate 5.2\n" -#: applications/luci-app-p910nd/luasrc/model/cbi/p910nd.lua:46 +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:104 +msgid "Add printer config" +msgstr "" + +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:123 +msgid "Be aware: %s also listens on port 9100." +msgstr "" + +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:140 msgid "Bidirectional mode" msgstr "Bidirectional mode" -#: applications/luci-app-p910nd/luasrc/model/cbi/p910nd.lua:20 +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:167 +msgid "By the router" +msgstr "" + +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:112 +msgid "Connected %s devices show in this list." +msgstr "" + +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:110 msgid "Device" msgstr "Device" -#: applications/luci-app-p910nd/luasrc/model/cbi/p910nd.lua:10 -msgid "" -"First you have to install the packages to get support for USB (kmod-usb-" -"printer) or parallel port (kmod-lp)." +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:107 +msgid "Enabled" +msgstr "" + +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:49 +msgid "Error calling \"opkg list-installed\":" +msgstr "" + +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:38 +msgid "Error executing \"find\" command:" +msgstr "" + +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:88 +msgid "For USB connected printers" msgstr "" -"First you have to install the packages to get support for USB (kmod-usb-" -"printer) or parallel port (kmod-lp)." #: applications/luci-app-p910nd/root/usr/share/rpcd/acl.d/luci-app-p910nd.json:3 msgid "Grant UCI access for luci-app-p910nd" msgstr "" -#: applications/luci-app-p910nd/luasrc/model/cbi/p910nd.lua:22 -msgid "Interface" -msgstr "Interface" +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:71 +msgid "It is safe to install both, even if only one is needed." +msgstr "" + +#: applications/luci-app-p910nd/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 "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 "p910nd - Printer server" +#~ msgid "" +#~ "First you have to install the packages to get support for USB (kmod-usb-" +#~ "printer) or parallel port (kmod-lp)." +#~ msgstr "" +#~ "First you have to install the packages to get support for USB (kmod-usb-" +#~ "printer) or parallel port (kmod-lp)." + +#~ msgid "Interface" +#~ msgstr "Interface" + #~ 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." diff --git a/applications/luci-app-p910nd/po/es/p910nd.po b/applications/luci-app-p910nd/po/es/p910nd.po index 825825e51807..6f28db31e640 100644 --- a/applications/luci-app-p910nd/po/es/p910nd.po +++ b/applications/luci-app-p910nd/po/es/p910nd.po @@ -14,54 +14,191 @@ msgstr "" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Generator: Weblate 5.4-dev\n" -#: applications/luci-app-p910nd/luasrc/model/cbi/p910nd.lua:46 +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:104 +msgid "Add printer config" +msgstr "" + +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:123 +msgid "Be aware: %s also listens on port 9100." +msgstr "" + +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:140 msgid "Bidirectional mode" msgstr "Modo bidireccional" -#: applications/luci-app-p910nd/luasrc/model/cbi/p910nd.lua:20 +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:167 +msgid "By the router" +msgstr "" + +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:112 +msgid "Connected %s devices show in this list." +msgstr "" + +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:110 msgid "Device" msgstr "Dispositivo" -#: applications/luci-app-p910nd/luasrc/model/cbi/p910nd.lua:10 -msgid "" -"First you have to install the packages to get support for USB (kmod-usb-" -"printer) or parallel port (kmod-lp)." +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:107 +msgid "Enabled" +msgstr "" + +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:49 +msgid "Error calling \"opkg list-installed\":" +msgstr "" + +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:38 +msgid "Error executing \"find\" command:" +msgstr "" + +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:88 +msgid "For USB connected printers" msgstr "" -"Debe instalar primero el soporte para puertos USB (kmod-usb-printer) o " -"paralelo (kmod-lp)." #: applications/luci-app-p910nd/root/usr/share/rpcd/acl.d/luci-app-p910nd.json:3 msgid "Grant UCI access for luci-app-p910nd" msgstr "Conceder acceso UCI para luci-app-p910nd" -#: applications/luci-app-p910nd/luasrc/model/cbi/p910nd.lua:22 -msgid "Interface" -msgstr "Interfaz" +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:71 +msgid "It is safe to install both, even if only one is needed." +msgstr "" + +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:129 +msgid "Listen IP" +msgstr "" + +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:130 +msgid "Listen on a specific IP." +msgstr "" + +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:122 +msgid "Local TCP listen port for this printer." +msgstr "" + +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:204 +msgid "Manufacturer" +msgstr "" + +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:151 +msgctxt "mDNS" +msgid "Note: %s only advertises one (the first) printer on this host." +msgstr "" + +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:231 +msgid "Note: Set only CMD languages that your printer understands." +msgstr "" + +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:152 +msgid "Note: USB hotplug attempts to provide some of the values below." +msgstr "" + +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:142 +msgid "Note: USB hotplug correctly detects this." +msgstr "" + +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:111 +msgid "" +"Note: character device assignment can change upon reboot/reconnect with " +"multiple USB devices." +msgstr "" -#: applications/luci-app-p910nd/luasrc/model/cbi/p910nd.lua:40 +#: 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 "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/luasrc/model/cbi/p910nd.lua:40 -msgid "TCP listener port." -msgstr "Puerto TCP." +#: 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:18 -msgid "enable" -msgstr "Activar" +#: 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 "Servidor de Impresión" +#~ msgid "" +#~ "First you have to install the packages to get support for USB (kmod-usb-" +#~ "printer) or parallel port (kmod-lp)." +#~ msgstr "" +#~ "Debe instalar primero el soporte para puertos USB (kmod-usb-printer) o " +#~ "paralelo (kmod-lp)." + +#~ msgid "Interface" +#~ msgstr "Interfaz" + +#~ msgid "Specifies the interface to listen on." +#~ msgstr "Especifica la interfaz en la que se escucha." + +#~ msgid "TCP listener port." +#~ msgstr "Puerto TCP." + +#~ msgid "enable" +#~ msgstr "Activar" + #~ msgid "port_help" #~ msgstr "puerto_ayuda" diff --git a/applications/luci-app-p910nd/po/fi/p910nd.po b/applications/luci-app-p910nd/po/fi/p910nd.po index 9edb32cc7af7..d16629569048 100644 --- a/applications/luci-app-p910nd/po/fi/p910nd.po +++ b/applications/luci-app-p910nd/po/fi/p910nd.po @@ -14,54 +14,191 @@ msgstr "" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Generator: Weblate 4.2-dev\n" -#: applications/luci-app-p910nd/luasrc/model/cbi/p910nd.lua:46 +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:104 +msgid "Add printer config" +msgstr "" + +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:123 +msgid "Be aware: %s also listens on port 9100." +msgstr "" + +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:140 msgid "Bidirectional mode" msgstr "Kaksisuuntainen tila" -#: applications/luci-app-p910nd/luasrc/model/cbi/p910nd.lua:20 +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:167 +msgid "By the router" +msgstr "" + +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:112 +msgid "Connected %s devices show in this list." +msgstr "" + +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:110 msgid "Device" msgstr "Laite" -#: applications/luci-app-p910nd/luasrc/model/cbi/p910nd.lua:10 -msgid "" -"First you have to install the packages to get support for USB (kmod-usb-" -"printer) or parallel port (kmod-lp)." +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:107 +msgid "Enabled" +msgstr "" + +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:49 +msgid "Error calling \"opkg list-installed\":" +msgstr "" + +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:38 +msgid "Error executing \"find\" command:" +msgstr "" + +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:88 +msgid "For USB connected printers" msgstr "" -"Sinun täytyy asentaa tarvitsemasi paketit USB (kmod-usb-printer) tai " -"rinnakkaisportti (kmod-lp) ensin." #: applications/luci-app-p910nd/root/usr/share/rpcd/acl.d/luci-app-p910nd.json:3 msgid "Grant UCI access for luci-app-p910nd" msgstr "Myönnä UCI-käyttöoikeus luci-app-p910nd: lle" -#: applications/luci-app-p910nd/luasrc/model/cbi/p910nd.lua:22 -msgid "Interface" -msgstr "Sovitin" +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:71 +msgid "It is safe to install both, even if only one is needed." +msgstr "" + +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:129 +msgid "Listen IP" +msgstr "" + +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:130 +msgid "Listen on a specific IP." +msgstr "" + +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:122 +msgid "Local TCP listen port for this printer." +msgstr "" + +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:204 +msgid "Manufacturer" +msgstr "" + +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:151 +msgctxt "mDNS" +msgid "Note: %s only advertises one (the first) printer on this host." +msgstr "" + +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:231 +msgid "Note: Set only CMD languages that your printer understands." +msgstr "" + +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:152 +msgid "Note: USB hotplug attempts to provide some of the values below." +msgstr "" + +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:142 +msgid "Note: USB hotplug correctly detects this." +msgstr "" + +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:111 +msgid "" +"Note: character device assignment can change upon reboot/reconnect with " +"multiple USB devices." +msgstr "" -#: applications/luci-app-p910nd/luasrc/model/cbi/p910nd.lua:40 +#: 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 "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/luasrc/model/cbi/p910nd.lua:40 -msgid "TCP listener port." -msgstr "TCP-kuunteluportti." +#: 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:18 -msgid "enable" -msgstr "ota käyttöön" +#: 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 - Tulostinpalvelin" +#~ msgid "" +#~ "First you have to install the packages to get support for USB (kmod-usb-" +#~ "printer) or parallel port (kmod-lp)." +#~ msgstr "" +#~ "Sinun täytyy asentaa tarvitsemasi paketit USB (kmod-usb-printer) tai " +#~ "rinnakkaisportti (kmod-lp) ensin." + +#~ msgid "Interface" +#~ msgstr "Sovitin" + +#~ msgid "Specifies the interface to listen on." +#~ msgstr "Määrittää sovittimen jota kuunnellaan." + +#~ msgid "TCP listener port." +#~ msgstr "TCP-kuunteluportti." + +#~ msgid "enable" +#~ msgstr "ota käyttöön" + #~ 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." diff --git a/applications/luci-app-p910nd/po/fr/p910nd.po b/applications/luci-app-p910nd/po/fr/p910nd.po index bfccac6ece1b..573b80b7503c 100644 --- a/applications/luci-app-p910nd/po/fr/p910nd.po +++ b/applications/luci-app-p910nd/po/fr/p910nd.po @@ -14,55 +14,192 @@ msgstr "" "Plural-Forms: nplurals=2; plural=n > 1;\n" "X-Generator: Weblate 4.18.1\n" -#: applications/luci-app-p910nd/luasrc/model/cbi/p910nd.lua:46 +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:104 +msgid "Add printer config" +msgstr "" + +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:123 +msgid "Be aware: %s also listens on port 9100." +msgstr "" + +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:140 msgid "Bidirectional mode" msgstr "Mode bidirectionnel" -#: applications/luci-app-p910nd/luasrc/model/cbi/p910nd.lua:20 +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:167 +msgid "By the router" +msgstr "" + +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:112 +msgid "Connected %s devices show in this list." +msgstr "" + +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:110 msgid "Device" msgstr "Appareil" -#: applications/luci-app-p910nd/luasrc/model/cbi/p910nd.lua:10 -msgid "" -"First you have to install the packages to get support for USB (kmod-usb-" -"printer) or parallel port (kmod-lp)." +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:107 +msgid "Enabled" +msgstr "" + +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:49 +msgid "Error calling \"opkg list-installed\":" +msgstr "" + +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:38 +msgid "Error executing \"find\" command:" +msgstr "" + +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:88 +msgid "For USB connected printers" msgstr "" -"Vous devez d'abord installer les paquets pour gérer des imprimantes USB " -"(kmod-usb-printer) ou sur port parallèle (kmod-lp)." #: applications/luci-app-p910nd/root/usr/share/rpcd/acl.d/luci-app-p910nd.json:3 msgid "Grant UCI access for luci-app-p910nd" msgstr "Accorder l’accès à l’UCI pour luci-app-p910nd" -#: applications/luci-app-p910nd/luasrc/model/cbi/p910nd.lua:22 -msgid "Interface" -msgstr "Interface" +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:71 +msgid "It is safe to install both, even if only one is needed." +msgstr "" + +#: applications/luci-app-p910nd/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/luasrc/model/cbi/p910nd.lua:40 +#: 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/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:158 +msgid "The %s type element." +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: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 - Serveur d'impression" +#~ msgid "" +#~ "First you have to install the packages to get support for USB (kmod-usb-" +#~ "printer) or parallel port (kmod-lp)." +#~ msgstr "" +#~ "Vous devez d'abord installer les paquets pour gérer des imprimantes USB " +#~ "(kmod-usb-printer) ou sur port parallèle (kmod-lp)." + +#~ msgid "Interface" +#~ msgstr "Interface" + +#~ msgid "Specifies the interface to listen on." +#~ msgstr "Précise les interfaces à écouter." + +#~ msgid "TCP listener port." +#~ msgstr "Port d'écoute TCP." + +#~ msgid "enable" +#~ msgstr "activer" + #~ msgid "port_help" #~ msgstr "aide_port" diff --git a/applications/luci-app-p910nd/po/he/p910nd.po b/applications/luci-app-p910nd/po/he/p910nd.po index 79b4467d03c7..a645012f8a97 100644 --- a/applications/luci-app-p910nd/po/he/p910nd.po +++ b/applications/luci-app-p910nd/po/he/p910nd.po @@ -14,55 +14,192 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Weblate 4.5-dev\n" -#: applications/luci-app-p910nd/luasrc/model/cbi/p910nd.lua:46 +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:104 +msgid "Add printer config" +msgstr "" + +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:123 +msgid "Be aware: %s also listens on port 9100." +msgstr "" + +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:140 msgid "Bidirectional mode" msgstr "מצב דו־כיווני" -#: applications/luci-app-p910nd/luasrc/model/cbi/p910nd.lua:20 +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:167 +msgid "By the router" +msgstr "" + +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:112 +msgid "Connected %s devices show in this list." +msgstr "" + +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:110 msgid "Device" msgstr "מכשיר" -#: applications/luci-app-p910nd/luasrc/model/cbi/p910nd.lua:10 -msgid "" -"First you have to install the packages to get support for USB (kmod-usb-" -"printer) or parallel port (kmod-lp)." +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:107 +msgid "Enabled" +msgstr "" + +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:49 +msgid "Error calling \"opkg list-installed\":" +msgstr "" + +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:38 +msgid "Error executing \"find\" command:" +msgstr "" + +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:88 +msgid "For USB connected printers" msgstr "" -"ראשית עליך להתקין את החבילות כדי לקבל תמיכה ב־USB‏ (kmod-usb-printer) או " -"בחיבור מקבילי (kmod-lp)." #: applications/luci-app-p910nd/root/usr/share/rpcd/acl.d/luci-app-p910nd.json:3 msgid "Grant UCI access for luci-app-p910nd" msgstr "הענקת גישת UCI ל־luci-app-p910nd" -#: applications/luci-app-p910nd/luasrc/model/cbi/p910nd.lua:22 -msgid "Interface" -msgstr "מנשק" +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:71 +msgid "It is safe to install both, even if only one is needed." +msgstr "" + +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:129 +msgid "Listen IP" +msgstr "" + +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:130 +msgid "Listen on a specific IP." +msgstr "" + +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:122 +msgid "Local TCP listen port for this printer." +msgstr "" + +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:204 +msgid "Manufacturer" +msgstr "" + +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:151 +msgctxt "mDNS" +msgid "Note: %s only advertises one (the first) printer on this host." +msgstr "" + +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:231 +msgid "Note: Set only CMD languages that your printer understands." +msgstr "" + +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:152 +msgid "Note: USB hotplug attempts to provide some of the values below." +msgstr "" + +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:142 +msgid "Note: USB hotplug correctly detects this." +msgstr "" + +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:111 +msgid "" +"Note: character device assignment can change upon reboot/reconnect with " +"multiple USB devices." +msgstr "" + +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:175 +msgid "Note: must be %s." +msgstr "" + +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:70 +msgid "One of these kernel modules is needed for p910nd to find your printer." +msgstr "" + +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:146 +msgid "Overrides default of %s." +msgstr "" + +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:81 +msgid "Parallel port line printer device support" +msgstr "" # "יציאה" או "יציאת התקן" ? -#: applications/luci-app-p910nd/luasrc/model/cbi/p910nd.lua:40 +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:121 msgid "Port" msgstr "פתחה" -#: applications/luci-app-p910nd/luasrc/model/cbi/p910nd.lua:14 +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:15 +msgid "Port 910n print daemon" +msgstr "" + +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:145 +msgid "Run as root" +msgstr "" + +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:166 +msgid "Serves as Location in Apple standards." +msgstr "" + +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:105 msgid "Settings" msgstr "הגדרות" -#: applications/luci-app-p910nd/luasrc/model/cbi/p910nd.lua:22 -msgid "Specifies the interface to listen on." -msgstr "מציין לאיזה מנשק להאזין." +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:227 +msgid "Some examples:" +msgstr "" + +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:158 +msgid "The %s type element." +msgstr "" + +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:174 +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:203 +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:218 +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:226 +msgid "The %s value." +msgstr "" -#: applications/luci-app-p910nd/luasrc/model/cbi/p910nd.lua:40 -msgid "TCP listener port." -msgstr "פתחת האזנה ל־TCP." +#: 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:18 -msgid "enable" -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 - שרת מדפסות" +#~ 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)." + +#~ msgid "Interface" +#~ msgstr "מנשק" + +#~ msgid "Specifies the interface to listen on." +#~ msgstr "מציין לאיזה מנשק להאזין." + +#~ msgid "TCP listener port." +#~ msgstr "פתחת האזנה ל־TCP." + +#~ msgid "enable" +#~ msgstr "לאפשר" + #~ msgid "p910nd listens on port 910+N. E.g. 9100 for the first printer." #~ msgstr "p910nd מאזין לפורט 910+N (למשל 9100) עבור המדפסת הראשונה." diff --git a/applications/luci-app-p910nd/po/hi/p910nd.po b/applications/luci-app-p910nd/po/hi/p910nd.po index 5fbee542d87c..43b2263ff2d6 100644 --- a/applications/luci-app-p910nd/po/hi/p910nd.po +++ b/applications/luci-app-p910nd/po/hi/p910nd.po @@ -12,49 +12,169 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "X-Generator: Translate Toolkit 1.1.1\n" -#: applications/luci-app-p910nd/luasrc/model/cbi/p910nd.lua:46 +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:104 +msgid "Add printer config" +msgstr "" + +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:123 +msgid "Be aware: %s also listens on port 9100." +msgstr "" + +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:140 msgid "Bidirectional mode" msgstr "" -#: applications/luci-app-p910nd/luasrc/model/cbi/p910nd.lua:20 +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:167 +msgid "By the router" +msgstr "" + +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:112 +msgid "Connected %s devices show in this list." +msgstr "" + +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:110 msgid "Device" msgstr "" -#: applications/luci-app-p910nd/luasrc/model/cbi/p910nd.lua:10 -msgid "" -"First you have to install the packages to get support for USB (kmod-usb-" -"printer) or parallel port (kmod-lp)." +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:107 +msgid "Enabled" +msgstr "" + +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:49 +msgid "Error calling \"opkg list-installed\":" +msgstr "" + +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:38 +msgid "Error executing \"find\" command:" +msgstr "" + +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:88 +msgid "For USB connected printers" msgstr "" #: applications/luci-app-p910nd/root/usr/share/rpcd/acl.d/luci-app-p910nd.json:3 msgid "Grant UCI access for luci-app-p910nd" msgstr "" -#: applications/luci-app-p910nd/luasrc/model/cbi/p910nd.lua:22 -msgid "Interface" +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:71 +msgid "It is safe to install both, even if only one is needed." +msgstr "" + +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:129 +msgid "Listen IP" +msgstr "" + +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:130 +msgid "Listen on a specific IP." +msgstr "" + +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:122 +msgid "Local TCP listen port for this printer." +msgstr "" + +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:204 +msgid "Manufacturer" +msgstr "" + +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:151 +msgctxt "mDNS" +msgid "Note: %s only advertises one (the first) printer on this host." +msgstr "" + +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:231 +msgid "Note: Set only CMD languages that your printer understands." +msgstr "" + +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:152 +msgid "Note: USB hotplug attempts to provide some of the values below." +msgstr "" + +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:142 +msgid "Note: USB hotplug correctly detects this." +msgstr "" + +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:111 +msgid "" +"Note: character device assignment can change upon reboot/reconnect with " +"multiple USB devices." +msgstr "" + +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:175 +msgid "Note: must be %s." +msgstr "" + +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:70 +msgid "One of these kernel modules is needed for p910nd to find your printer." msgstr "" -#: applications/luci-app-p910nd/luasrc/model/cbi/p910nd.lua:40 +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:146 +msgid "Overrides default of %s." +msgstr "" + +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:81 +msgid "Parallel port line printer device support" +msgstr "" + +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:121 msgid "Port" msgstr "" -#: applications/luci-app-p910nd/luasrc/model/cbi/p910nd.lua:14 +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:15 +msgid "Port 910n print daemon" +msgstr "" + +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:145 +msgid "Run as root" +msgstr "" + +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:166 +msgid "Serves as Location in Apple standards." +msgstr "" + +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:105 msgid "Settings" msgstr "" -#: applications/luci-app-p910nd/luasrc/model/cbi/p910nd.lua:22 -msgid "Specifies the interface to listen on." +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:227 +msgid "Some examples:" +msgstr "" + +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:158 +msgid "The %s type element." +msgstr "" + +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:174 +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:203 +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:218 +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:226 +msgid "The %s value." +msgstr "" + +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:159 +msgid "User readable description of maker and model." +msgstr "" + +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:141 +msgid "Whether this print port is bi-directional." +msgstr "" + +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:150 +msgctxt "mDNS/Bonjour/ZeroConf" +msgid "Whether to advertise this printer via %s." +msgstr "" + +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:132 +msgid "any" msgstr "" -#: applications/luci-app-p910nd/luasrc/model/cbi/p910nd.lua:40 -msgid "TCP listener port." +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:175 +msgid "enclosed within parentheses" msgstr "" -#: applications/luci-app-p910nd/luasrc/model/cbi/p910nd.lua:18 -msgid "enable" +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:65 +msgid "map ports 9100-9109 to local printers." msgstr "" -#: applications/luci-app-p910nd/luasrc/model/cbi/p910nd.lua:9 #: applications/luci-app-p910nd/root/usr/share/luci/menu.d/luci-app-p910nd.json:3 msgid "p910nd - Printer server" msgstr "" diff --git a/applications/luci-app-p910nd/po/hu/p910nd.po b/applications/luci-app-p910nd/po/hu/p910nd.po index 6deeaec7ec7c..1e8d7c407ede 100644 --- a/applications/luci-app-p910nd/po/hu/p910nd.po +++ b/applications/luci-app-p910nd/po/hu/p910nd.po @@ -12,54 +12,191 @@ msgstr "" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Generator: Weblate 4.7-dev\n" -#: applications/luci-app-p910nd/luasrc/model/cbi/p910nd.lua:46 +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:104 +msgid "Add printer config" +msgstr "" + +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:123 +msgid "Be aware: %s also listens on port 9100." +msgstr "" + +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:140 msgid "Bidirectional mode" msgstr "Kétirányú mód" -#: applications/luci-app-p910nd/luasrc/model/cbi/p910nd.lua:20 +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:167 +msgid "By the router" +msgstr "" + +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:112 +msgid "Connected %s devices show in this list." +msgstr "" + +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:110 msgid "Device" msgstr "Eszköz" -#: applications/luci-app-p910nd/luasrc/model/cbi/p910nd.lua:10 -msgid "" -"First you have to install the packages to get support for USB (kmod-usb-" -"printer) or parallel port (kmod-lp)." +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:107 +msgid "Enabled" +msgstr "" + +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:49 +msgid "Error calling \"opkg list-installed\":" +msgstr "" + +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:38 +msgid "Error executing \"find\" command:" +msgstr "" + +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:88 +msgid "For USB connected printers" msgstr "" -"Először telepítenie kell a csomagokat, hogy támogatást kapjon az USB (kmod-" -"usb-printer) vagy a párhuzamos port (kmod-lp) használatához." #: applications/luci-app-p910nd/root/usr/share/rpcd/acl.d/luci-app-p910nd.json:3 msgid "Grant UCI access for luci-app-p910nd" msgstr "UCI hozzáférés megadása a luci-app-p910nd-hez" -#: applications/luci-app-p910nd/luasrc/model/cbi/p910nd.lua:22 -msgid "Interface" -msgstr "Csatoló" +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:71 +msgid "It is safe to install both, even if only one is needed." +msgstr "" + +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:129 +msgid "Listen IP" +msgstr "" + +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:130 +msgid "Listen on a specific IP." +msgstr "" + +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:122 +msgid "Local TCP listen port for this printer." +msgstr "" + +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:204 +msgid "Manufacturer" +msgstr "" + +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:151 +msgctxt "mDNS" +msgid "Note: %s only advertises one (the first) printer on this host." +msgstr "" + +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:231 +msgid "Note: Set only CMD languages that your printer understands." +msgstr "" + +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:152 +msgid "Note: USB hotplug attempts to provide some of the values below." +msgstr "" + +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:142 +msgid "Note: USB hotplug correctly detects this." +msgstr "" + +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:111 +msgid "" +"Note: character device assignment can change upon reboot/reconnect with " +"multiple USB devices." +msgstr "" -#: applications/luci-app-p910nd/luasrc/model/cbi/p910nd.lua:40 +#: 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 "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/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:159 +msgid "User readable description of maker and model." +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: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 – nyomtatókiszolgáló" +#~ msgid "" +#~ "First you have to install the packages to get support for USB (kmod-usb-" +#~ "printer) or parallel port (kmod-lp)." +#~ 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." + +#~ msgid "Interface" +#~ msgstr "Csatoló" + +#~ msgid "Specifies the interface to listen on." +#~ msgstr "Megadja azt a csatolót, amelyen figyelni kell." + +#~ msgid "TCP listener port." +#~ msgstr "TCP figyelési port." + +#~ msgid "enable" +#~ msgstr "engedélyezés" + #~ msgid "port_help" #~ msgstr "port_súgó" diff --git a/applications/luci-app-p910nd/po/it/p910nd.po b/applications/luci-app-p910nd/po/it/p910nd.po index 5a90cb504f01..af64dd11f908 100644 --- a/applications/luci-app-p910nd/po/it/p910nd.po +++ b/applications/luci-app-p910nd/po/it/p910nd.po @@ -14,55 +14,192 @@ msgstr "" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Generator: Weblate 4.11-dev\n" -#: applications/luci-app-p910nd/luasrc/model/cbi/p910nd.lua:46 +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:104 +msgid "Add printer config" +msgstr "" + +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:123 +msgid "Be aware: %s also listens on port 9100." +msgstr "" + +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:140 msgid "Bidirectional mode" msgstr "Modalità bidirezionale" -#: applications/luci-app-p910nd/luasrc/model/cbi/p910nd.lua:20 +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:167 +msgid "By the router" +msgstr "" + +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:112 +msgid "Connected %s devices show in this list." +msgstr "" + +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:110 msgid "Device" msgstr "Dispositivo" -#: applications/luci-app-p910nd/luasrc/model/cbi/p910nd.lua:10 -msgid "" -"First you have to install the packages to get support for USB (kmod-usb-" -"printer) or parallel port (kmod-lp)." +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:107 +msgid "Enabled" +msgstr "" + +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:49 +msgid "Error calling \"opkg list-installed\":" +msgstr "" + +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:38 +msgid "Error executing \"find\" command:" +msgstr "" + +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:88 +msgid "For USB connected printers" msgstr "" -"Devi prima aver installato i pacchetti per avere il supporto dell'USB (kmod-" -"usb-printer) o della porta parallela (kmod-lp)." #: applications/luci-app-p910nd/root/usr/share/rpcd/acl.d/luci-app-p910nd.json:3 msgid "Grant UCI access for luci-app-p910nd" msgstr "Concedere l'accesso UCI per luci-app-p910nd" -#: applications/luci-app-p910nd/luasrc/model/cbi/p910nd.lua:22 -msgid "Interface" -msgstr "Interfaccia" +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:71 +msgid "It is safe to install both, even if only one is needed." +msgstr "" + +#: applications/luci-app-p910nd/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/luasrc/model/cbi/p910nd.lua:40 +#: 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/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:158 +msgid "The %s type element." +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: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 - Server di stampa" +#~ msgid "" +#~ "First you have to install the packages to get support for USB (kmod-usb-" +#~ "printer) or parallel port (kmod-lp)." +#~ msgstr "" +#~ "Devi prima aver installato i pacchetti per avere il supporto dell'USB " +#~ "(kmod-usb-printer) o della porta parallela (kmod-lp)." + +#~ msgid "Interface" +#~ msgstr "Interfaccia" + +#~ msgid "Specifies the interface to listen on." +#~ msgstr "Specifica l'interfaccia per l'ascolto." + +#~ msgid "TCP listener port." +#~ msgstr "Porta d'ascolto TCP." + +#~ msgid "enable" +#~ msgstr "abilita" + #~ msgid "port_help" #~ msgstr "Porta d'aiuto" diff --git a/applications/luci-app-p910nd/po/ja/p910nd.po b/applications/luci-app-p910nd/po/ja/p910nd.po index d4b0fbed79c6..8b8994e3a271 100644 --- a/applications/luci-app-p910nd/po/ja/p910nd.po +++ b/applications/luci-app-p910nd/po/ja/p910nd.po @@ -14,54 +14,191 @@ msgstr "" "Plural-Forms: nplurals=1; plural=0;\n" "X-Generator: Weblate 4.4-dev\n" -#: applications/luci-app-p910nd/luasrc/model/cbi/p910nd.lua:46 +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:104 +msgid "Add printer config" +msgstr "" + +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:123 +msgid "Be aware: %s also listens on port 9100." +msgstr "" + +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:140 msgid "Bidirectional mode" msgstr "双方向モード" -#: applications/luci-app-p910nd/luasrc/model/cbi/p910nd.lua:20 +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:167 +msgid "By the router" +msgstr "" + +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:112 +msgid "Connected %s devices show in this list." +msgstr "" + +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:110 msgid "Device" msgstr "デバイス" -#: applications/luci-app-p910nd/luasrc/model/cbi/p910nd.lua:10 -msgid "" -"First you have to install the packages to get support for USB (kmod-usb-" -"printer) or parallel port (kmod-lp)." +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:107 +msgid "Enabled" +msgstr "" + +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:49 +msgid "Error calling \"opkg list-installed\":" +msgstr "" + +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:38 +msgid "Error executing \"find\" command:" +msgstr "" + +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:88 +msgid "For USB connected printers" msgstr "" -"まず初めに、USB(kmod-usb-printer)または、パラレルポート(kmod-lp)をサポートす" -"るためのパッケージをインストールしてください。" #: applications/luci-app-p910nd/root/usr/share/rpcd/acl.d/luci-app-p910nd.json:3 msgid "Grant UCI access for luci-app-p910nd" msgstr "luci-app-p910ndにUCIアクセスを許可" -#: applications/luci-app-p910nd/luasrc/model/cbi/p910nd.lua:22 -msgid "Interface" -msgstr "インターフェース" +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:71 +msgid "It is safe to install both, even if only one is needed." +msgstr "" + +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:129 +msgid "Listen IP" +msgstr "" + +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:130 +msgid "Listen on a specific IP." +msgstr "" + +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:122 +msgid "Local TCP listen port for this printer." +msgstr "" + +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:204 +msgid "Manufacturer" +msgstr "" + +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:151 +msgctxt "mDNS" +msgid "Note: %s only advertises one (the first) printer on this host." +msgstr "" + +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:231 +msgid "Note: Set only CMD languages that your printer understands." +msgstr "" + +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:152 +msgid "Note: USB hotplug attempts to provide some of the values below." +msgstr "" + +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:142 +msgid "Note: USB hotplug correctly detects this." +msgstr "" + +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:111 +msgid "" +"Note: character device assignment can change upon reboot/reconnect with " +"multiple USB devices." +msgstr "" -#: applications/luci-app-p910nd/luasrc/model/cbi/p910nd.lua:40 +#: 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/luasrc/model/cbi/p910nd.lua:40 -msgid "TCP listener port." -msgstr "TCP接続待ちポート" +#: 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:18 -msgid "enable" -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 - プリンタサーバー" +#~ 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)をサポート" +#~ "するためのパッケージをインストールしてください。" + +#~ msgid "Interface" +#~ msgstr "インターフェース" + +#~ msgid "Specifies the interface to listen on." +#~ msgstr "リッスンするインターフェースを指定します。" + +#~ msgid "TCP listener port." +#~ msgstr "TCP接続待ちポート" + +#~ msgid "enable" +#~ msgstr "有効にする" + #~ msgid "port_help" #~ msgstr "port_help" diff --git a/applications/luci-app-p910nd/po/ko/p910nd.po b/applications/luci-app-p910nd/po/ko/p910nd.po index 4cb44ad71b6f..1b267f25473f 100644 --- a/applications/luci-app-p910nd/po/ko/p910nd.po +++ b/applications/luci-app-p910nd/po/ko/p910nd.po @@ -14,52 +14,175 @@ msgstr "" "Plural-Forms: nplurals=1; plural=0;\n" "X-Generator: Weblate 5.4-dev\n" -#: applications/luci-app-p910nd/luasrc/model/cbi/p910nd.lua:46 +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:104 +msgid "Add printer config" +msgstr "" + +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:123 +msgid "Be aware: %s also listens on port 9100." +msgstr "" + +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:140 msgid "Bidirectional mode" msgstr "양방향 모드" -#: applications/luci-app-p910nd/luasrc/model/cbi/p910nd.lua:20 +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:167 +msgid "By the router" +msgstr "" + +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:112 +msgid "Connected %s devices show in this list." +msgstr "" + +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:110 msgid "Device" msgstr "장비" -#: applications/luci-app-p910nd/luasrc/model/cbi/p910nd.lua:10 -msgid "" -"First you have to install the packages to get support for USB (kmod-usb-" -"printer) or parallel port (kmod-lp)." +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:107 +msgid "Enabled" +msgstr "" + +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:49 +msgid "Error calling \"opkg list-installed\":" +msgstr "" + +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:38 +msgid "Error executing \"find\" command:" +msgstr "" + +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:88 +msgid "For USB connected printers" msgstr "" #: applications/luci-app-p910nd/root/usr/share/rpcd/acl.d/luci-app-p910nd.json:3 msgid "Grant UCI access for luci-app-p910nd" msgstr "" -#: applications/luci-app-p910nd/luasrc/model/cbi/p910nd.lua:22 -msgid "Interface" -msgstr "인터페이스" +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:71 +msgid "It is safe to install both, even if only one is needed." +msgstr "" + +#: applications/luci-app-p910nd/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." +#: 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 "" +#~ msgid "Interface" +#~ 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." diff --git a/applications/luci-app-p910nd/po/lt/p910nd.po b/applications/luci-app-p910nd/po/lt/p910nd.po index ec5c5e3d52d5..c2797ce6b103 100644 --- a/applications/luci-app-p910nd/po/lt/p910nd.po +++ b/applications/luci-app-p910nd/po/lt/p910nd.po @@ -14,53 +14,190 @@ msgstr "" "1 : 2);\n" "X-Generator: Weblate 5.4-dev\n" -#: applications/luci-app-p910nd/luasrc/model/cbi/p910nd.lua:46 +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:104 +msgid "Add printer config" +msgstr "" + +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:123 +msgid "Be aware: %s also listens on port 9100." +msgstr "" + +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:140 msgid "Bidirectional mode" msgstr "Dvikryptis režimas" -#: applications/luci-app-p910nd/luasrc/model/cbi/p910nd.lua:20 +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:167 +msgid "By the router" +msgstr "" + +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:112 +msgid "Connected %s devices show in this list." +msgstr "" + +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:110 msgid "Device" msgstr "Įrenginys" -#: applications/luci-app-p910nd/luasrc/model/cbi/p910nd.lua:10 -msgid "" -"First you have to install the packages to get support for USB (kmod-usb-" -"printer) or parallel port (kmod-lp)." +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:107 +msgid "Enabled" +msgstr "" + +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:49 +msgid "Error calling \"opkg list-installed\":" +msgstr "" + +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:38 +msgid "Error executing \"find\" command:" +msgstr "" + +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:88 +msgid "For USB connected printers" msgstr "" -"Jūs pirma turite įdiegti paketus, norint gauti „USB“ palaikymą („kmod-usb-" -"printer“) arba pararelinį prievadą („kmod-lp“)." #: applications/luci-app-p910nd/root/usr/share/rpcd/acl.d/luci-app-p910nd.json:3 msgid "Grant UCI access for luci-app-p910nd" msgstr "Suteikti „UCI“ prieigą – „luci-app-p910nd“" -#: applications/luci-app-p910nd/luasrc/model/cbi/p910nd.lua:22 -msgid "Interface" -msgstr "Sąsaja ir Sietuvas" +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:71 +msgid "It is safe to install both, even if only one is needed." +msgstr "" + +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:129 +msgid "Listen IP" +msgstr "" + +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:130 +msgid "Listen on a specific IP." +msgstr "" + +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:122 +msgid "Local TCP listen port for this printer." +msgstr "" + +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:204 +msgid "Manufacturer" +msgstr "" + +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:151 +msgctxt "mDNS" +msgid "Note: %s only advertises one (the first) printer on this host." +msgstr "" + +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:231 +msgid "Note: Set only CMD languages that your printer understands." +msgstr "" + +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:152 +msgid "Note: USB hotplug attempts to provide some of the values below." +msgstr "" + +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:142 +msgid "Note: USB hotplug correctly detects this." +msgstr "" + +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:111 +msgid "" +"Note: character device assignment can change upon reboot/reconnect with " +"multiple USB devices." +msgstr "" + +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:175 +msgid "Note: must be %s." +msgstr "" + +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:70 +msgid "One of these kernel modules is needed for p910nd to find your printer." +msgstr "" + +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:146 +msgid "Overrides default of %s." +msgstr "" + +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:81 +msgid "Parallel port line printer device support" +msgstr "" -#: applications/luci-app-p910nd/luasrc/model/cbi/p910nd.lua:40 +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:121 msgid "Port" msgstr "Prievadas" -#: applications/luci-app-p910nd/luasrc/model/cbi/p910nd.lua:14 +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:15 +msgid "Port 910n print daemon" +msgstr "" + +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:145 +msgid "Run as root" +msgstr "" + +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:166 +msgid "Serves as Location in Apple standards." +msgstr "" + +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:105 msgid "Settings" msgstr "Nustatymai" -#: applications/luci-app-p910nd/luasrc/model/cbi/p910nd.lua:22 -msgid "Specifies the interface to listen on." +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:227 +msgid "Some examples:" +msgstr "" + +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:158 +msgid "The %s type element." msgstr "" -"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: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/luasrc/model/cbi/p910nd.lua:18 -msgid "enable" -msgstr "įjungti/įgalinti" +#: 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“ – Spausdintuvo serveris" + +#~ msgid "" +#~ "First you have to install the packages to get support for USB (kmod-usb-" +#~ "printer) or parallel port (kmod-lp)." +#~ msgstr "" +#~ "Jūs pirma turite įdiegti paketus, norint gauti „USB“ palaikymą („kmod-usb-" +#~ "printer“) arba pararelinį prievadą („kmod-lp“)." + +#~ msgid "Interface" +#~ msgstr "Sąsaja ir Sietuvas" + +#~ msgid "Specifies the interface to listen on." +#~ msgstr "" +#~ "Nurodo kurią sąsają ir/arba sietuvą, per kurią laukti prisijungimo/" +#~ "jungties ryšio." + +#~ msgid "TCP listener port." +#~ msgstr "„TCP“ laukiamojo prisijungimo/jungties ryšio prievadas." + +#~ msgid "enable" +#~ msgstr "įjungti/įgalinti" diff --git a/applications/luci-app-p910nd/po/mr/p910nd.po b/applications/luci-app-p910nd/po/mr/p910nd.po index 42f68b7b0be7..295e9e20094f 100644 --- a/applications/luci-app-p910nd/po/mr/p910nd.po +++ b/applications/luci-app-p910nd/po/mr/p910nd.po @@ -14,52 +14,175 @@ msgstr "" "Plural-Forms: nplurals=2; plural=n > 1;\n" "X-Generator: Weblate 3.11-dev\n" -#: applications/luci-app-p910nd/luasrc/model/cbi/p910nd.lua:46 +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:104 +msgid "Add printer config" +msgstr "" + +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:123 +msgid "Be aware: %s also listens on port 9100." +msgstr "" + +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:140 msgid "Bidirectional mode" msgstr "" -#: applications/luci-app-p910nd/luasrc/model/cbi/p910nd.lua:20 +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:167 +msgid "By the router" +msgstr "" + +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:112 +msgid "Connected %s devices show in this list." +msgstr "" + +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:110 msgid "Device" msgstr "डिव्हाइस" -#: applications/luci-app-p910nd/luasrc/model/cbi/p910nd.lua:10 -msgid "" -"First you have to install the packages to get support for USB (kmod-usb-" -"printer) or parallel port (kmod-lp)." +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:107 +msgid "Enabled" +msgstr "" + +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:49 +msgid "Error calling \"opkg list-installed\":" +msgstr "" + +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:38 +msgid "Error executing \"find\" command:" +msgstr "" + +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:88 +msgid "For USB connected printers" msgstr "" #: applications/luci-app-p910nd/root/usr/share/rpcd/acl.d/luci-app-p910nd.json:3 msgid "Grant UCI access for luci-app-p910nd" msgstr "" -#: applications/luci-app-p910nd/luasrc/model/cbi/p910nd.lua:22 -msgid "Interface" -msgstr "इंटरफेस" +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:71 +msgid "It is safe to install both, even if only one is needed." +msgstr "" + +#: applications/luci-app-p910nd/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." +#: 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 "" +#~ msgid "Interface" +#~ 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." diff --git a/applications/luci-app-p910nd/po/ms/p910nd.po b/applications/luci-app-p910nd/po/ms/p910nd.po index aac894386a7b..69be22b56255 100644 --- a/applications/luci-app-p910nd/po/ms/p910nd.po +++ b/applications/luci-app-p910nd/po/ms/p910nd.po @@ -14,49 +14,172 @@ msgstr "" "Plural-Forms: nplurals=1; plural=0;\n" "X-Generator: Weblate 5.4-dev\n" -#: applications/luci-app-p910nd/luasrc/model/cbi/p910nd.lua:46 +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:104 +msgid "Add printer config" +msgstr "" + +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:123 +msgid "Be aware: %s also listens on port 9100." +msgstr "" + +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:140 msgid "Bidirectional mode" msgstr "Mod dwihala" -#: applications/luci-app-p910nd/luasrc/model/cbi/p910nd.lua:20 +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:167 +msgid "By the router" +msgstr "" + +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:112 +msgid "Connected %s devices show in this list." +msgstr "" + +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:110 msgid "Device" msgstr "Peranti" -#: applications/luci-app-p910nd/luasrc/model/cbi/p910nd.lua:10 -msgid "" -"First you have to install the packages to get support for USB (kmod-usb-" -"printer) or parallel port (kmod-lp)." +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:107 +msgid "Enabled" +msgstr "" + +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:49 +msgid "Error calling \"opkg list-installed\":" +msgstr "" + +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:38 +msgid "Error executing \"find\" command:" +msgstr "" + +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:88 +msgid "For USB connected printers" msgstr "" #: applications/luci-app-p910nd/root/usr/share/rpcd/acl.d/luci-app-p910nd.json:3 msgid "Grant UCI access for luci-app-p910nd" msgstr "" -#: applications/luci-app-p910nd/luasrc/model/cbi/p910nd.lua:22 -msgid "Interface" -msgstr "Antara muka" +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:71 +msgid "It is safe to install both, even if only one is needed." +msgstr "" + +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:129 +msgid "Listen IP" +msgstr "" + +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:130 +msgid "Listen on a specific IP." +msgstr "" + +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:122 +msgid "Local TCP listen port for this printer." +msgstr "" + +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:204 +msgid "Manufacturer" +msgstr "" + +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:151 +msgctxt "mDNS" +msgid "Note: %s only advertises one (the first) printer on this host." +msgstr "" + +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:231 +msgid "Note: Set only CMD languages that your printer understands." +msgstr "" + +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:152 +msgid "Note: USB hotplug attempts to provide some of the values below." +msgstr "" + +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:142 +msgid "Note: USB hotplug correctly detects this." +msgstr "" + +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:111 +msgid "" +"Note: character device assignment can change upon reboot/reconnect with " +"multiple USB devices." +msgstr "" + +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:175 +msgid "Note: must be %s." +msgstr "" + +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:70 +msgid "One of these kernel modules is needed for p910nd to find your printer." +msgstr "" -#: applications/luci-app-p910nd/luasrc/model/cbi/p910nd.lua:40 +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:146 +msgid "Overrides default of %s." +msgstr "" + +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:81 +msgid "Parallel port line printer device support" +msgstr "" + +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:121 msgid "Port" msgstr "Port" -#: applications/luci-app-p910nd/luasrc/model/cbi/p910nd.lua:14 +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:15 +msgid "Port 910n print daemon" +msgstr "" + +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:145 +msgid "Run as root" +msgstr "" + +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:166 +msgid "Serves as Location in Apple standards." +msgstr "" + +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:105 msgid "Settings" msgstr "" -#: applications/luci-app-p910nd/luasrc/model/cbi/p910nd.lua:22 -msgid "Specifies the interface to listen on." +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:227 +msgid "Some examples:" +msgstr "" + +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:158 +msgid "The %s type element." +msgstr "" + +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:174 +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:203 +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:218 +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:226 +msgid "The %s value." +msgstr "" + +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:159 +msgid "User readable description of maker and model." msgstr "" -#: applications/luci-app-p910nd/luasrc/model/cbi/p910nd.lua:40 -msgid "TCP listener port." +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:141 +msgid "Whether this print port is bi-directional." msgstr "" -#: applications/luci-app-p910nd/luasrc/model/cbi/p910nd.lua:18 -msgid "enable" +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:150 +msgctxt "mDNS/Bonjour/ZeroConf" +msgid "Whether to advertise this printer via %s." +msgstr "" + +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:132 +msgid "any" +msgstr "" + +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:175 +msgid "enclosed within parentheses" +msgstr "" + +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:65 +msgid "map ports 9100-9109 to local printers." msgstr "" -#: applications/luci-app-p910nd/luasrc/model/cbi/p910nd.lua:9 #: applications/luci-app-p910nd/root/usr/share/luci/menu.d/luci-app-p910nd.json:3 msgid "p910nd - Printer server" msgstr "" + +#~ msgid "Interface" +#~ msgstr "Antara muka" diff --git a/applications/luci-app-p910nd/po/nb_NO/p910nd.po b/applications/luci-app-p910nd/po/nb_NO/p910nd.po index e8c901f489a2..36e4b6f64801 100644 --- a/applications/luci-app-p910nd/po/nb_NO/p910nd.po +++ b/applications/luci-app-p910nd/po/nb_NO/p910nd.po @@ -10,55 +10,192 @@ 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/luasrc/model/cbi/p910nd.lua:40 +#: 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 "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/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:158 +msgid "The %s type element." +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: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 - Skriverserver" +#~ msgid "" +#~ "First you have to install the packages to get support for USB (kmod-usb-" +#~ "printer) or parallel port (kmod-lp)." +#~ msgstr "" +#~ "Du må først installere pakkene som gir støtte for USB (kmod-usb-printer) " +#~ "eller parallellport (kmod-lp) skriver." + +#~ msgid "Interface" +#~ msgstr "Grensesnitt" + +#~ msgid "Specifies the interface to listen on." +#~ msgstr "Angir grensesnitt å lytte til." + +#~ msgid "TCP listener port." +#~ msgstr "TCP lytte port." + +#~ msgid "enable" +#~ msgstr "Aktiver" + #~ msgid "port_help" #~ msgstr "" #~ "p910nd lytter på port 910+N. (N=0 blir port 9100 for første skriver)" diff --git a/applications/luci-app-p910nd/po/nl/p910nd.po b/applications/luci-app-p910nd/po/nl/p910nd.po index c20591ba1dd6..576ca4aa6f73 100644 --- a/applications/luci-app-p910nd/po/nl/p910nd.po +++ b/applications/luci-app-p910nd/po/nl/p910nd.po @@ -14,54 +14,191 @@ msgstr "" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Generator: Weblate 4.18-dev\n" -#: applications/luci-app-p910nd/luasrc/model/cbi/p910nd.lua:46 +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:104 +msgid "Add printer config" +msgstr "" + +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:123 +msgid "Be aware: %s also listens on port 9100." +msgstr "" + +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:140 msgid "Bidirectional mode" msgstr "Bidirectionele modus" -#: applications/luci-app-p910nd/luasrc/model/cbi/p910nd.lua:20 +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:167 +msgid "By the router" +msgstr "" + +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:112 +msgid "Connected %s devices show in this list." +msgstr "" + +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:110 msgid "Device" msgstr "Apparaat" -#: applications/luci-app-p910nd/luasrc/model/cbi/p910nd.lua:10 -msgid "" -"First you have to install the packages to get support for USB (kmod-usb-" -"printer) or parallel port (kmod-lp)." +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:107 +msgid "Enabled" +msgstr "" + +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:49 +msgid "Error calling \"opkg list-installed\":" +msgstr "" + +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:38 +msgid "Error executing \"find\" command:" +msgstr "" + +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:88 +msgid "For USB connected printers" msgstr "" -"Eerst moet je de pakketten installeren om ondersteuning te krijgen voor USB " -"(kmod-usb-printer) of parallelle poort (kmod-lp)." #: applications/luci-app-p910nd/root/usr/share/rpcd/acl.d/luci-app-p910nd.json:3 msgid "Grant UCI access for luci-app-p910nd" msgstr "Verleen UCI toegang voor luci-app-p910nd" -#: applications/luci-app-p910nd/luasrc/model/cbi/p910nd.lua:22 -msgid "Interface" -msgstr "Interface" +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:71 +msgid "It is safe to install both, even if only one is needed." +msgstr "" + +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:129 +msgid "Listen IP" +msgstr "" + +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:130 +msgid "Listen on a specific IP." +msgstr "" + +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:122 +msgid "Local TCP listen port for this printer." +msgstr "" + +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:204 +msgid "Manufacturer" +msgstr "" + +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:151 +msgctxt "mDNS" +msgid "Note: %s only advertises one (the first) printer on this host." +msgstr "" + +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:231 +msgid "Note: Set only CMD languages that your printer understands." +msgstr "" + +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:152 +msgid "Note: USB hotplug attempts to provide some of the values below." +msgstr "" + +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:142 +msgid "Note: USB hotplug correctly detects this." +msgstr "" + +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:111 +msgid "" +"Note: character device assignment can change upon reboot/reconnect with " +"multiple USB devices." +msgstr "" -#: applications/luci-app-p910nd/luasrc/model/cbi/p910nd.lua:40 +#: 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 "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/luasrc/model/cbi/p910nd.lua:40 -msgid "TCP listener port." -msgstr "TCP luisterpoort." +#: 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:18 -msgid "enable" -msgstr "inschakelen" +#: 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 - Printer server" +#~ msgid "" +#~ "First you have to install the packages to get support for USB (kmod-usb-" +#~ "printer) or parallel port (kmod-lp)." +#~ msgstr "" +#~ "Eerst moet je de pakketten installeren om ondersteuning te krijgen voor " +#~ "USB (kmod-usb-printer) of parallelle poort (kmod-lp)." + +#~ msgid "Interface" +#~ msgstr "Interface" + +#~ msgid "Specifies the interface to listen on." +#~ msgstr "Specifieeert de interface om te luisteren." + +#~ msgid "TCP listener port." +#~ msgstr "TCP luisterpoort." + +#~ msgid "enable" +#~ msgstr "inschakelen" + #~ 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." diff --git a/applications/luci-app-p910nd/po/pl/p910nd.po b/applications/luci-app-p910nd/po/pl/p910nd.po index b2379a1b4912..5d355b07974a 100644 --- a/applications/luci-app-p910nd/po/pl/p910nd.po +++ b/applications/luci-app-p910nd/po/pl/p910nd.po @@ -15,56 +15,193 @@ msgstr "" "|| n%100>=20) ? 1 : 2;\n" "X-Generator: Weblate 5.2-dev\n" -#: applications/luci-app-p910nd/luasrc/model/cbi/p910nd.lua:46 +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:104 +msgid "Add printer config" +msgstr "" + +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:123 +msgid "Be aware: %s also listens on port 9100." +msgstr "" + +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:140 msgid "Bidirectional mode" msgstr "Tryb dwukierunkowy" -#: applications/luci-app-p910nd/luasrc/model/cbi/p910nd.lua:20 +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:167 +msgid "By the router" +msgstr "" + +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:112 +msgid "Connected %s devices show in this list." +msgstr "" + +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:110 msgid "Device" msgstr "Urządzenie" -#: applications/luci-app-p910nd/luasrc/model/cbi/p910nd.lua:10 -msgid "" -"First you have to install the packages to get support for USB (kmod-usb-" -"printer) or parallel port (kmod-lp)." +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:107 +msgid "Enabled" +msgstr "" + +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:49 +msgid "Error calling \"opkg list-installed\":" +msgstr "" + +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:38 +msgid "Error executing \"find\" command:" +msgstr "" + +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:88 +msgid "For USB connected printers" msgstr "" -"Po pierwsze, musisz zainstalować pakiety obsługujące interfejs USB (kmod-usb-" -"printer) lub LPT (kmod-lp)." #: applications/luci-app-p910nd/root/usr/share/rpcd/acl.d/luci-app-p910nd.json:3 msgid "Grant UCI access for luci-app-p910nd" msgstr "Przyznaj luci-app-p910nd dostęp do UCI" -#: applications/luci-app-p910nd/luasrc/model/cbi/p910nd.lua:22 -msgid "Interface" -msgstr "Interfejs" +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:71 +msgid "It is safe to install both, even if only one is needed." +msgstr "" + +#: applications/luci-app-p910nd/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/luasrc/model/cbi/p910nd.lua:40 +#: 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/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:159 +msgid "User readable description of maker and model." +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: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 "" # 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 "" +#~ "First you have to install the packages to get support for USB (kmod-usb-" +#~ "printer) or parallel port (kmod-lp)." +#~ msgstr "" +#~ "Po pierwsze, musisz zainstalować pakiety obsługujące interfejs USB (kmod-" +#~ "usb-printer) lub LPT (kmod-lp)." + +#~ msgid "Interface" +#~ msgstr "Interfejs" + +#~ msgid "Specifies the interface to listen on." +#~ msgstr "Określa interfejs do nasłuchu." + +#~ msgid "TCP listener port." +#~ msgstr "Port nasłuchu TCP." + +#~ msgid "enable" +#~ msgstr "włączony" + #~ msgid "port_help" #~ msgstr "port_help" diff --git a/applications/luci-app-p910nd/po/pt/p910nd.po b/applications/luci-app-p910nd/po/pt/p910nd.po index b5f11b7ec632..439ab847b188 100644 --- a/applications/luci-app-p910nd/po/pt/p910nd.po +++ b/applications/luci-app-p910nd/po/pt/p910nd.po @@ -14,54 +14,191 @@ msgstr "" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Generator: Weblate 4.12-dev\n" -#: applications/luci-app-p910nd/luasrc/model/cbi/p910nd.lua:46 +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:104 +msgid "Add printer config" +msgstr "" + +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:123 +msgid "Be aware: %s also listens on port 9100." +msgstr "" + +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:140 msgid "Bidirectional mode" msgstr "Modo bidirecional" -#: applications/luci-app-p910nd/luasrc/model/cbi/p910nd.lua:20 +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:167 +msgid "By the router" +msgstr "" + +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:112 +msgid "Connected %s devices show in this list." +msgstr "" + +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:110 msgid "Device" msgstr "Aparelho" -#: applications/luci-app-p910nd/luasrc/model/cbi/p910nd.lua:10 -msgid "" -"First you have to install the packages to get support for USB (kmod-usb-" -"printer) or parallel port (kmod-lp)." +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:107 +msgid "Enabled" +msgstr "" + +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:49 +msgid "Error calling \"opkg list-installed\":" +msgstr "" + +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:38 +msgid "Error executing \"find\" command:" +msgstr "" + +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:88 +msgid "For USB connected printers" msgstr "" -"Primeiro você deve instalar os pacotes para obter suporte USB (kmod-usb-" -"printer) ou porta paralela (kmod-lp)." #: applications/luci-app-p910nd/root/usr/share/rpcd/acl.d/luci-app-p910nd.json:3 msgid "Grant UCI access for luci-app-p910nd" msgstr "Conceder acesso UCI ao luci-app-p910nd" -#: applications/luci-app-p910nd/luasrc/model/cbi/p910nd.lua:22 -msgid "Interface" -msgstr "Interface" +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:71 +msgid "It is safe to install both, even if only one is needed." +msgstr "" + +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:129 +msgid "Listen IP" +msgstr "" + +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:130 +msgid "Listen on a specific IP." +msgstr "" + +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:122 +msgid "Local TCP listen port for this printer." +msgstr "" + +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:204 +msgid "Manufacturer" +msgstr "" + +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:151 +msgctxt "mDNS" +msgid "Note: %s only advertises one (the first) printer on this host." +msgstr "" + +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:231 +msgid "Note: Set only CMD languages that your printer understands." +msgstr "" + +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:152 +msgid "Note: USB hotplug attempts to provide some of the values below." +msgstr "" + +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:142 +msgid "Note: USB hotplug correctly detects this." +msgstr "" + +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:111 +msgid "" +"Note: character device assignment can change upon reboot/reconnect with " +"multiple USB devices." +msgstr "" -#: applications/luci-app-p910nd/luasrc/model/cbi/p910nd.lua:40 +#: 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 "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/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:159 +msgid "User readable description of maker and model." +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: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 "" +#~ "First you have to install the packages to get support for USB (kmod-usb-" +#~ "printer) or parallel port (kmod-lp)." +#~ msgstr "" +#~ "Primeiro você deve instalar os pacotes para obter suporte USB (kmod-usb-" +#~ "printer) ou porta paralela (kmod-lp)." + +#~ msgid "Interface" +#~ msgstr "Interface" + +#~ msgid "Specifies the interface to listen on." +#~ msgstr "Especifica a interface para escutar." + +#~ msgid "TCP listener port." +#~ msgstr "Porta TCP ouvinte." + +#~ msgid "enable" +#~ msgstr "ativar" + #~ 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." diff --git a/applications/luci-app-p910nd/po/pt_BR/p910nd.po b/applications/luci-app-p910nd/po/pt_BR/p910nd.po index bbee4959e254..90f42d2b7f4c 100644 --- a/applications/luci-app-p910nd/po/pt_BR/p910nd.po +++ b/applications/luci-app-p910nd/po/pt_BR/p910nd.po @@ -14,57 +14,194 @@ msgstr "" "Plural-Forms: nplurals=2; plural=n > 1;\n" "X-Generator: Weblate 4.1-dev\n" -#: applications/luci-app-p910nd/luasrc/model/cbi/p910nd.lua:46 +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:104 +msgid "Add printer config" +msgstr "" + +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:123 +msgid "Be aware: %s also listens on port 9100." +msgstr "" + +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:140 msgid "Bidirectional mode" msgstr "Modo bidirecional" -#: applications/luci-app-p910nd/luasrc/model/cbi/p910nd.lua:20 +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:167 +msgid "By the router" +msgstr "" + +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:112 +msgid "Connected %s devices show in this list." +msgstr "" + +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:110 msgid "Device" msgstr "Dispositivo" -#: applications/luci-app-p910nd/luasrc/model/cbi/p910nd.lua:10 -msgid "" -"First you have to install the packages to get support for USB (kmod-usb-" -"printer) or parallel port (kmod-lp)." +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:107 +msgid "Enabled" +msgstr "" + +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:49 +msgid "Error calling \"opkg list-installed\":" +msgstr "" + +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:38 +msgid "Error executing \"find\" command:" +msgstr "" + +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:88 +msgid "For USB connected printers" msgstr "" -"Primeiro você deve instalar os pacotes para obter suporte USB (kmod-usb-" -"printer) ou porta paralela (kmod-lp)." #: applications/luci-app-p910nd/root/usr/share/rpcd/acl.d/luci-app-p910nd.json:3 msgid "Grant UCI access for luci-app-p910nd" msgstr "Conceda acesso UCI ao luci-app-p910nd" -# 20140621: edersg: tradução -#: applications/luci-app-p910nd/luasrc/model/cbi/p910nd.lua:22 -msgid "Interface" -msgstr "Interface" +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:71 +msgid "It is safe to install both, even if only one is needed." +msgstr "" + +#: applications/luci-app-p910nd/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/luasrc/model/cbi/p910nd.lua:40 +#: 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/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/luasrc/model/cbi/p910nd.lua:18 -msgid "enable" -msgstr "habilitado" +#: 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 "" +#~ "First you have to install the packages to get support for USB (kmod-usb-" +#~ "printer) or parallel port (kmod-lp)." +#~ msgstr "" +#~ "Primeiro você deve instalar os pacotes para obter suporte USB (kmod-usb-" +#~ "printer) ou porta paralela (kmod-lp)." + +# 20140621: edersg: tradução +#~ msgid "Interface" +#~ msgstr "Interface" + +# 20140621: edersg: tradução +#~ msgid "Specifies the interface to listen on." +#~ msgstr "Especifica a interface para escuta." + +#~ msgid "TCP listener port." +#~ msgstr "Porta TCP de escuta." + +#~ msgid "enable" +#~ msgstr "habilitado" + #~ msgid "port_help" #~ msgstr "" #~ "p910nd escuta na porta 910x. Por exemplo, 9100 para a primeira impressora." diff --git a/applications/luci-app-p910nd/po/ro/p910nd.po b/applications/luci-app-p910nd/po/ro/p910nd.po index 716c73ef591d..6b67fd3d140b 100644 --- a/applications/luci-app-p910nd/po/ro/p910nd.po +++ b/applications/luci-app-p910nd/po/ro/p910nd.po @@ -15,51 +15,188 @@ msgstr "" "20)) ? 1 : 2;\n" "X-Generator: Weblate 4.9.1-dev\n" -#: applications/luci-app-p910nd/luasrc/model/cbi/p910nd.lua:46 +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:104 +msgid "Add printer config" +msgstr "" + +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:123 +msgid "Be aware: %s also listens on port 9100." +msgstr "" + +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:140 msgid "Bidirectional mode" msgstr "Mod bidirecțional" -#: applications/luci-app-p910nd/luasrc/model/cbi/p910nd.lua:20 +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:167 +msgid "By the router" +msgstr "" + +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:112 +msgid "Connected %s devices show in this list." +msgstr "" + +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:110 msgid "Device" msgstr "Dispozitiv" -#: applications/luci-app-p910nd/luasrc/model/cbi/p910nd.lua:10 -msgid "" -"First you have to install the packages to get support for USB (kmod-usb-" -"printer) or parallel port (kmod-lp)." +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:107 +msgid "Enabled" +msgstr "" + +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:49 +msgid "Error calling \"opkg list-installed\":" +msgstr "" + +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:38 +msgid "Error executing \"find\" command:" +msgstr "" + +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:88 +msgid "For USB connected printers" msgstr "" -"Mai întâi trebuie să instalați pachetele pentru a obține suport pentru USB " -"(kmod-usb-printer) sau pentru portul paralel (kmod-lp)." #: applications/luci-app-p910nd/root/usr/share/rpcd/acl.d/luci-app-p910nd.json:3 msgid "Grant UCI access for luci-app-p910nd" msgstr "Acordă acces la UCI pentru luci-app-p910nd" -#: applications/luci-app-p910nd/luasrc/model/cbi/p910nd.lua:22 -msgid "Interface" -msgstr "Interfață" +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:71 +msgid "It is safe to install both, even if only one is needed." +msgstr "" + +#: applications/luci-app-p910nd/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/luasrc/model/cbi/p910nd.lua:40 +#: 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/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:159 +msgid "User readable description of maker and model." +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: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 - Server de imprimantă" + +#~ msgid "" +#~ "First you have to install the packages to get support for USB (kmod-usb-" +#~ "printer) or parallel port (kmod-lp)." +#~ 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)." + +#~ msgid "Interface" +#~ msgstr "Interfață" + +#~ msgid "Specifies the interface to listen on." +#~ msgstr "Specifică interfața pe care se ascultă." + +#~ msgid "TCP listener port." +#~ msgstr "Portul de ascultare TCP." + +#~ msgid "enable" +#~ msgstr "activează" diff --git a/applications/luci-app-p910nd/po/ru/p910nd.po b/applications/luci-app-p910nd/po/ru/p910nd.po index c6d4030a92ec..d2ca56fc29a6 100644 --- a/applications/luci-app-p910nd/po/ru/p910nd.po +++ b/applications/luci-app-p910nd/po/ru/p910nd.po @@ -16,51 +16,189 @@ msgstr "" "Project-Info: Это технический перевод, не дословный. Главное-удобный русский " "интерфейс, все проверялось в графическом режиме, совместим с другими apps\n" -#: applications/luci-app-p910nd/luasrc/model/cbi/p910nd.lua:46 +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:104 +msgid "Add printer config" +msgstr "" + +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:123 +msgid "Be aware: %s also listens on port 9100." +msgstr "" + +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:140 msgid "Bidirectional mode" msgstr "Двунаправленный режим" -#: applications/luci-app-p910nd/luasrc/model/cbi/p910nd.lua:20 +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:167 +msgid "By the router" +msgstr "" + +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:112 +msgid "Connected %s devices show in this list." +msgstr "" + +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:110 msgid "Device" msgstr "Устройство" -#: applications/luci-app-p910nd/luasrc/model/cbi/p910nd.lua:10 -msgid "" -"First you have to install the packages to get support for USB (kmod-usb-" -"printer) or parallel port (kmod-lp)." +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:107 +msgid "Enabled" +msgstr "" + +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:49 +msgid "Error calling \"opkg list-installed\":" +msgstr "" + +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:38 +msgid "Error executing \"find\" command:" +msgstr "" + +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:88 +msgid "For USB connected printers" msgstr "" -"Сначала вы должны установить пакеты модулей ядра, чтобы получить поддержку " -"принтеров с интерфейсом USB (kmod-usb-printer) или LPT (kmod-lp)." #: applications/luci-app-p910nd/root/usr/share/rpcd/acl.d/luci-app-p910nd.json:3 msgid "Grant UCI access for luci-app-p910nd" msgstr "Предоставить UCI доступ для luci-app-p910nd" -#: applications/luci-app-p910nd/luasrc/model/cbi/p910nd.lua:22 -msgid "Interface" -msgstr "Интерфейс" +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:71 +msgid "It is safe to install both, even if only one is needed." +msgstr "" + +#: applications/luci-app-p910nd/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/luasrc/model/cbi/p910nd.lua:40 +#: 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/luasrc/model/cbi/p910nd.lua:40 -msgid "TCP listener port." -msgstr "Порт для входящих соединений TCP." +#: 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:18 -msgid "enable" -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" + +#~ 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) или LPT (kmod-" +#~ "lp)." + +#~ msgid "Interface" +#~ msgstr "Интерфейс" + +#~ msgid "Specifies the interface to listen on." +#~ msgstr "Задать интерфейс для входящих соединений." + +#~ msgid "TCP listener port." +#~ msgstr "Порт для входящих соединений TCP." + +#~ msgid "enable" +#~ msgstr "включить" diff --git a/applications/luci-app-p910nd/po/sk/p910nd.po b/applications/luci-app-p910nd/po/sk/p910nd.po index 3380fa2da107..0be72f25182f 100644 --- a/applications/luci-app-p910nd/po/sk/p910nd.po +++ b/applications/luci-app-p910nd/po/sk/p910nd.po @@ -12,52 +12,180 @@ msgstr "" "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" "X-Generator: Weblate 4.14.2-dev\n" -#: applications/luci-app-p910nd/luasrc/model/cbi/p910nd.lua:46 +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:104 +msgid "Add printer config" +msgstr "" + +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:123 +msgid "Be aware: %s also listens on port 9100." +msgstr "" + +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:140 msgid "Bidirectional mode" msgstr "Obojsmerný režim" -#: applications/luci-app-p910nd/luasrc/model/cbi/p910nd.lua:20 +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:167 +msgid "By the router" +msgstr "" + +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:112 +msgid "Connected %s devices show in this list." +msgstr "" + +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:110 msgid "Device" msgstr "Zariadenie" -#: applications/luci-app-p910nd/luasrc/model/cbi/p910nd.lua:10 -#, fuzzy -msgid "" -"First you have to install the packages to get support for USB (kmod-usb-" -"printer) or parallel port (kmod-lp)." +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:107 +msgid "Enabled" +msgstr "" + +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:49 +msgid "Error calling \"opkg list-installed\":" +msgstr "" + +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:38 +msgid "Error executing \"find\" command:" +msgstr "" + +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:88 +msgid "For USB connected printers" msgstr "" -"Najprv musíte nainštalovať balíčky, aby ste získali podporu pre USB (kmod-" -"usb-printer) alebo paralelný port (kmod-lp)." #: applications/luci-app-p910nd/root/usr/share/rpcd/acl.d/luci-app-p910nd.json:3 msgid "Grant UCI access for luci-app-p910nd" msgstr "" -#: applications/luci-app-p910nd/luasrc/model/cbi/p910nd.lua:22 -msgid "Interface" -msgstr "Rozhranie" +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:71 +msgid "It is safe to install both, even if only one is needed." +msgstr "" + +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:129 +msgid "Listen IP" +msgstr "" + +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:130 +msgid "Listen on a specific IP." +msgstr "" + +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:122 +msgid "Local TCP listen port for this printer." +msgstr "" + +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:204 +msgid "Manufacturer" +msgstr "" + +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:151 +msgctxt "mDNS" +msgid "Note: %s only advertises one (the first) printer on this host." +msgstr "" + +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:231 +msgid "Note: Set only CMD languages that your printer understands." +msgstr "" + +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:152 +msgid "Note: USB hotplug attempts to provide some of the values below." +msgstr "" + +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:142 +msgid "Note: USB hotplug correctly detects this." +msgstr "" -#: applications/luci-app-p910nd/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 "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/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 "" + +#, fuzzy +#~ msgid "" +#~ "First you have to install the packages to get support for USB (kmod-usb-" +#~ "printer) or parallel port (kmod-lp)." +#~ msgstr "" +#~ "Najprv musíte nainštalovať balíčky, aby ste získali podporu pre USB (kmod-" +#~ "usb-printer) alebo paralelný port (kmod-lp)." + +#~ msgid "Interface" +#~ msgstr "Rozhranie" diff --git a/applications/luci-app-p910nd/po/sv/p910nd.po b/applications/luci-app-p910nd/po/sv/p910nd.po index f18214c566f2..d900e88b049d 100644 --- a/applications/luci-app-p910nd/po/sv/p910nd.po +++ b/applications/luci-app-p910nd/po/sv/p910nd.po @@ -12,51 +12,188 @@ msgstr "" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Generator: Weblate 4.9-dev\n" -#: applications/luci-app-p910nd/luasrc/model/cbi/p910nd.lua:46 +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:104 +msgid "Add printer config" +msgstr "" + +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:123 +msgid "Be aware: %s also listens on port 9100." +msgstr "" + +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:140 msgid "Bidirectional mode" msgstr "Dubbelriktat läge" -#: applications/luci-app-p910nd/luasrc/model/cbi/p910nd.lua:20 +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:167 +msgid "By the router" +msgstr "" + +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:112 +msgid "Connected %s devices show in this list." +msgstr "" + +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:110 msgid "Device" msgstr "Enhet" -#: applications/luci-app-p910nd/luasrc/model/cbi/p910nd.lua:10 -msgid "" -"First you have to install the packages to get support for USB (kmod-usb-" -"printer) or parallel port (kmod-lp)." +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:107 +msgid "Enabled" +msgstr "" + +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:49 +msgid "Error calling \"opkg list-installed\":" +msgstr "" + +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:38 +msgid "Error executing \"find\" command:" +msgstr "" + +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:88 +msgid "For USB connected printers" msgstr "" -"Först behöver du installera paket som ger stöd för USB (kmod-usb-printer) " -"eller parallell port (kmod-lp)." #: applications/luci-app-p910nd/root/usr/share/rpcd/acl.d/luci-app-p910nd.json:3 msgid "Grant UCI access for luci-app-p910nd" msgstr "Godkänn åtkomst för luci-app-p910nd" -#: applications/luci-app-p910nd/luasrc/model/cbi/p910nd.lua:22 -msgid "Interface" -msgstr "Gränssnitt" +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:71 +msgid "It is safe to install both, even if only one is needed." +msgstr "" + +#: applications/luci-app-p910nd/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/luasrc/model/cbi/p910nd.lua:40 +#: 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/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:159 +msgid "User readable description of maker and model." +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: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- Skrivar-server" + +#~ msgid "" +#~ "First you have to install the packages to get support for USB (kmod-usb-" +#~ "printer) or parallel port (kmod-lp)." +#~ msgstr "" +#~ "Först behöver du installera paket som ger stöd för USB (kmod-usb-printer) " +#~ "eller parallell port (kmod-lp)." + +#~ msgid "Interface" +#~ msgstr "Gränssnitt" + +#~ msgid "Specifies the interface to listen on." +#~ msgstr "Anger gränssnittet att lyssna på." + +#~ msgid "TCP listener port." +#~ msgstr "Port för TCP-lyssnare." + +#~ msgid "enable" +#~ msgstr "aktivera" diff --git a/applications/luci-app-p910nd/po/templates/p910nd.pot b/applications/luci-app-p910nd/po/templates/p910nd.pot index ce075a77f164..f429fb592189 100644 --- a/applications/luci-app-p910nd/po/templates/p910nd.pot +++ b/applications/luci-app-p910nd/po/templates/p910nd.pot @@ -1,49 +1,169 @@ 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 "" diff --git a/applications/luci-app-p910nd/po/tr/p910nd.po b/applications/luci-app-p910nd/po/tr/p910nd.po index dc6053c7d3cb..f7f02ca30280 100644 --- a/applications/luci-app-p910nd/po/tr/p910nd.po +++ b/applications/luci-app-p910nd/po/tr/p910nd.po @@ -12,51 +12,188 @@ 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/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/luasrc/model/cbi/p910nd.lua:40 +#: 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/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:159 +msgid "User readable description of maker and model." +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: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_Yazıcı Sunucusu" + +#~ msgid "" +#~ "First you have to install the packages to get support for USB (kmod-usb-" +#~ "printer) or parallel port (kmod-lp)." +#~ msgstr "" +#~ "Önce USB (kmod-usb-printer) veya paralel bağlantı noktası (kmod-lp) " +#~ "desteği almak için paketleri kurmanız gerekir." + +#~ msgid "Interface" +#~ msgstr "Arayüz" + +#~ msgid "Specifies the interface to listen on." +#~ msgstr "Dinlenecek arayüzü belirtir." + +#~ msgid "TCP listener port." +#~ msgstr "TCP dinleyici bağlantı noktası." + +#~ msgid "enable" +#~ msgstr "etkinleştir" diff --git a/applications/luci-app-p910nd/po/uk/p910nd.po b/applications/luci-app-p910nd/po/uk/p910nd.po index 4dffb63f3d41..a10e159c05c2 100644 --- a/applications/luci-app-p910nd/po/uk/p910nd.po +++ b/applications/luci-app-p910nd/po/uk/p910nd.po @@ -13,51 +13,188 @@ msgstr "" "%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" "X-Generator: Weblate 4.15-dev\n" -#: applications/luci-app-p910nd/luasrc/model/cbi/p910nd.lua:46 +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:104 +msgid "Add printer config" +msgstr "" + +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:123 +msgid "Be aware: %s also listens on port 9100." +msgstr "" + +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:140 msgid "Bidirectional mode" msgstr "Двонаправлений режим" -#: applications/luci-app-p910nd/luasrc/model/cbi/p910nd.lua:20 +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:167 +msgid "By the router" +msgstr "" + +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:112 +msgid "Connected %s devices show in this list." +msgstr "" + +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:110 msgid "Device" msgstr "Пристрій" -#: applications/luci-app-p910nd/luasrc/model/cbi/p910nd.lua:10 -msgid "" -"First you have to install the packages to get support for USB (kmod-usb-" -"printer) or parallel port (kmod-lp)." +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:107 +msgid "Enabled" +msgstr "" + +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:49 +msgid "Error calling \"opkg list-installed\":" +msgstr "" + +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:38 +msgid "Error executing \"find\" command:" +msgstr "" + +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:88 +msgid "For USB connected printers" msgstr "" -"Спочатку вам слід інсталювати пакети для підтримки USB (kmod-usb-printer) " -"або паралельного порту (kmod-lp)." #: applications/luci-app-p910nd/root/usr/share/rpcd/acl.d/luci-app-p910nd.json:3 msgid "Grant UCI access for luci-app-p910nd" msgstr "Надати доступ до UCI для luci-app-p910nd" -#: applications/luci-app-p910nd/luasrc/model/cbi/p910nd.lua:22 -msgid "Interface" -msgstr "Інтерфейс" +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:71 +msgid "It is safe to install both, even if only one is needed." +msgstr "" + +#: applications/luci-app-p910nd/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/luasrc/model/cbi/p910nd.lua:40 +#: 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/luasrc/model/cbi/p910nd.lua:40 -msgid "TCP listener port." -msgstr "Порт TCP для прослуховування." +#: 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:18 -msgid "enable" -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 - сервер друку" + +#~ 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)." + +#~ msgid "Interface" +#~ msgstr "Інтерфейс" + +#~ msgid "Specifies the interface to listen on." +#~ msgstr "Вказати інтерфейс для прослуховування." + +#~ msgid "TCP listener port." +#~ msgstr "Порт TCP для прослуховування." + +#~ msgid "enable" +#~ msgstr "Увімкнути" diff --git a/applications/luci-app-p910nd/po/vi/p910nd.po b/applications/luci-app-p910nd/po/vi/p910nd.po index 3c2b3e8a6d19..0b33ce4c93fd 100644 --- a/applications/luci-app-p910nd/po/vi/p910nd.po +++ b/applications/luci-app-p910nd/po/vi/p910nd.po @@ -16,54 +16,191 @@ msgstr "" "Plural-Forms: nplurals=1; plural=0;\n" "X-Generator: Weblate 4.18.1\n" -#: applications/luci-app-p910nd/luasrc/model/cbi/p910nd.lua:46 +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:104 +msgid "Add printer config" +msgstr "" + +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:123 +msgid "Be aware: %s also listens on port 9100." +msgstr "" + +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:140 msgid "Bidirectional mode" msgstr "Chế độ 2 chiều" -#: applications/luci-app-p910nd/luasrc/model/cbi/p910nd.lua:20 +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:167 +msgid "By the router" +msgstr "" + +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:112 +msgid "Connected %s devices show in this list." +msgstr "" + +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:110 msgid "Device" msgstr "Thiết bị" -#: applications/luci-app-p910nd/luasrc/model/cbi/p910nd.lua:10 -msgid "" -"First you have to install the packages to get support for USB (kmod-usb-" -"printer) or parallel port (kmod-lp)." +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:107 +msgid "Enabled" +msgstr "" + +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:49 +msgid "Error calling \"opkg list-installed\":" +msgstr "" + +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:38 +msgid "Error executing \"find\" command:" +msgstr "" + +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:88 +msgid "For USB connected printers" msgstr "" -"Trước tiên, bạn cần phải cài đặt các gói để hỗ trợ cho cổng USB (kmod-usb-" -"in), hoặc cổng song song (kmod-lp)." #: applications/luci-app-p910nd/root/usr/share/rpcd/acl.d/luci-app-p910nd.json:3 msgid "Grant UCI access for luci-app-p910nd" msgstr "Cấp quyền truy cập UCI cho luci-app-p910nd" -#: applications/luci-app-p910nd/luasrc/model/cbi/p910nd.lua:22 -msgid "Interface" -msgstr "Giao diện" +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:71 +msgid "It is safe to install both, even if only one is needed." +msgstr "" + +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:129 +msgid "Listen IP" +msgstr "" + +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:130 +msgid "Listen on a specific IP." +msgstr "" + +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:122 +msgid "Local TCP listen port for this printer." +msgstr "" + +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:204 +msgid "Manufacturer" +msgstr "" + +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:151 +msgctxt "mDNS" +msgid "Note: %s only advertises one (the first) printer on this host." +msgstr "" + +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:231 +msgid "Note: Set only CMD languages that your printer understands." +msgstr "" + +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:152 +msgid "Note: USB hotplug attempts to provide some of the values below." +msgstr "" + +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:142 +msgid "Note: USB hotplug correctly detects this." +msgstr "" + +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:111 +msgid "" +"Note: character device assignment can change upon reboot/reconnect with " +"multiple USB devices." +msgstr "" -#: applications/luci-app-p910nd/luasrc/model/cbi/p910nd.lua:40 +#: 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 "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/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:159 +msgid "User readable description of maker and model." +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: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 - Máy chủ in" +#~ msgid "" +#~ "First you have to install the packages to get support for USB (kmod-usb-" +#~ "printer) or parallel port (kmod-lp)." +#~ 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)." + +#~ msgid "Interface" +#~ msgstr "Giao diện" + +#~ msgid "Specifies the interface to listen on." +#~ msgstr "Chỉ định giao thức để lắng nghe." + +#~ msgid "TCP listener port." +#~ msgstr "Cổng lắng nghe TCP." + +#~ msgid "enable" +#~ msgstr "bật" + #~ 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." diff --git a/applications/luci-app-p910nd/po/zh_Hans/p910nd.po b/applications/luci-app-p910nd/po/zh_Hans/p910nd.po index 97f5b8a2bba2..a03f1f0155b2 100644 --- a/applications/luci-app-p910nd/po/zh_Hans/p910nd.po +++ b/applications/luci-app-p910nd/po/zh_Hans/p910nd.po @@ -17,52 +17,190 @@ msgstr "" "Plural-Forms: nplurals=1; plural=0;\n" "X-Generator: Weblate 4.4-dev\n" -#: applications/luci-app-p910nd/luasrc/model/cbi/p910nd.lua:46 +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:104 +msgid "Add printer config" +msgstr "" + +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:123 +msgid "Be aware: %s also listens on port 9100." +msgstr "" + +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:140 msgid "Bidirectional mode" msgstr "双向模式" -#: applications/luci-app-p910nd/luasrc/model/cbi/p910nd.lua:20 +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:167 +msgid "By the router" +msgstr "" + +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:112 +msgid "Connected %s devices show in this list." +msgstr "" + +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:110 msgid "Device" msgstr "设备" -#: applications/luci-app-p910nd/luasrc/model/cbi/p910nd.lua:10 -msgid "" -"First you have to install the packages to get support for USB (kmod-usb-" -"printer) or parallel port (kmod-lp)." -msgstr "必须安装 USB 打印机驱动(kmod-usb-printer)或者并口驱动(kmod-lp)。" +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:107 +msgid "Enabled" +msgstr "" + +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:49 +msgid "Error calling \"opkg list-installed\":" +msgstr "" + +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:38 +msgid "Error executing \"find\" command:" +msgstr "" + +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:88 +msgid "For USB connected printers" +msgstr "" #: applications/luci-app-p910nd/root/usr/share/rpcd/acl.d/luci-app-p910nd.json:3 msgid "Grant UCI access for luci-app-p910nd" msgstr "为 luci-app-p910nd 授予 UCI 的访问权限" -#: applications/luci-app-p910nd/luasrc/model/cbi/p910nd.lua:22 -msgid "Interface" -msgstr "接口" +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:71 +msgid "It is safe to install both, even if only one is needed." +msgstr "" + +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:129 +msgid "Listen IP" +msgstr "" + +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:130 +msgid "Listen on a specific IP." +msgstr "" + +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:122 +msgid "Local TCP listen port for this printer." +msgstr "" + +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:204 +msgid "Manufacturer" +msgstr "" + +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:151 +msgctxt "mDNS" +msgid "Note: %s only advertises one (the first) printer on this host." +msgstr "" + +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:231 +msgid "Note: Set only CMD languages that your printer understands." +msgstr "" + +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:152 +msgid "Note: USB hotplug attempts to provide some of the values below." +msgstr "" + +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:142 +msgid "Note: USB hotplug correctly detects this." +msgstr "" + +#: applications/luci-app-p910nd/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/luasrc/model/cbi/p910nd.lua:40 -msgid "TCP listener port." -msgstr "TCP 监听端口。" +#: 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 "启用" +#: 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 - 打印服务器" +#~ 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)。" + +#~ msgid "Interface" +#~ msgstr "接口" + +#~ msgid "Specifies the interface to listen on." +#~ msgstr "指定监听端口。" + +#~ msgid "TCP listener port." +#~ msgstr "TCP 监听端口。" + +#~ msgid "enable" +#~ msgstr "启用" + #~ msgid "p910nd listens on port 910+N. E.g. 9100 for the first printer." #~ msgstr "p910nd 的监听端口是910+N,举例:9100用于监听第一台打印机" diff --git a/applications/luci-app-p910nd/po/zh_Hant/p910nd.po b/applications/luci-app-p910nd/po/zh_Hant/p910nd.po index d2f42687337f..f650884e8eab 100644 --- a/applications/luci-app-p910nd/po/zh_Hant/p910nd.po +++ b/applications/luci-app-p910nd/po/zh_Hant/p910nd.po @@ -17,52 +17,190 @@ msgstr "" "Plural-Forms: nplurals=1; plural=0;\n" "X-Generator: Weblate 5.3\n" -#: applications/luci-app-p910nd/luasrc/model/cbi/p910nd.lua:46 +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:104 +msgid "Add printer config" +msgstr "" + +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:123 +msgid "Be aware: %s also listens on port 9100." +msgstr "" + +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:140 msgid "Bidirectional mode" msgstr "雙向模式" -#: applications/luci-app-p910nd/luasrc/model/cbi/p910nd.lua:20 +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:167 +msgid "By the router" +msgstr "" + +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:112 +msgid "Connected %s devices show in this list." +msgstr "" + +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:110 msgid "Device" msgstr "裝置" -#: applications/luci-app-p910nd/luasrc/model/cbi/p910nd.lua:10 -msgid "" -"First you have to install the packages to get support for USB (kmod-usb-" -"printer) or parallel port (kmod-lp)." -msgstr "必須安裝 USB 印表機驅動(kmod-usb-printer)或者並口驅動(kmod-lp)。" +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:107 +msgid "Enabled" +msgstr "" + +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:49 +msgid "Error calling \"opkg list-installed\":" +msgstr "" + +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:38 +msgid "Error executing \"find\" command:" +msgstr "" + +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:88 +msgid "For USB connected printers" +msgstr "" #: applications/luci-app-p910nd/root/usr/share/rpcd/acl.d/luci-app-p910nd.json:3 msgid "Grant UCI access for luci-app-p910nd" msgstr "授予 luci-app-p910nd 擁有 UCI 存取的權限" -#: applications/luci-app-p910nd/luasrc/model/cbi/p910nd.lua:22 -msgid "Interface" -msgstr "介面" +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:71 +msgid "It is safe to install both, even if only one is needed." +msgstr "" + +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:129 +msgid "Listen IP" +msgstr "" + +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:130 +msgid "Listen on a specific IP." +msgstr "" + +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:122 +msgid "Local TCP listen port for this printer." +msgstr "" + +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:204 +msgid "Manufacturer" +msgstr "" + +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:151 +msgctxt "mDNS" +msgid "Note: %s only advertises one (the first) printer on this host." +msgstr "" + +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:231 +msgid "Note: Set only CMD languages that your printer understands." +msgstr "" + +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:152 +msgid "Note: USB hotplug attempts to provide some of the values below." +msgstr "" + +#: applications/luci-app-p910nd/htdocs/luci-static/resources/view/p910nd.js:142 +msgid "Note: USB hotplug correctly detects this." +msgstr "" + +#: applications/luci-app-p910nd/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/luasrc/model/cbi/p910nd.lua:40 -msgid "TCP listener port." -msgstr "TCP 監聽埠。" +#: 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 "啟用" +#: 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 - 列印伺服器" +#~ 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)。" + +#~ msgid "Interface" +#~ msgstr "介面" + +#~ msgid "Specifies the interface to listen on." +#~ msgstr "指定監聽埠。" + +#~ msgid "TCP listener port." +#~ msgstr "TCP 監聽埠。" + +#~ msgid "enable" +#~ msgstr "啟用" + #~ msgid "p910nd listens on port 910+N. E.g. 9100 for the first printer." #~ msgstr "p910nd 的監聽埠是910+N,舉例:9100用於監聽第一臺印表機" diff --git a/applications/luci-app-p910nd/root/usr/share/luci/menu.d/luci-app-p910nd.json b/applications/luci-app-p910nd/root/usr/share/luci/menu.d/luci-app-p910nd.json index 4f3cb810c6e3..b67523168b26 100644 --- a/applications/luci-app-p910nd/root/usr/share/luci/menu.d/luci-app-p910nd.json +++ b/applications/luci-app-p910nd/root/usr/share/luci/menu.d/luci-app-p910nd.json @@ -3,9 +3,8 @@ "title": "p910nd - Printer server", "order": 60, "action": { - "type": "cbi", - "path": "p910nd", - "post": { "cbi.submit": true } + "type": "view", + "path": "p910nd" }, "depends": { "acl": [ "luci-app-p910nd" ], diff --git a/applications/luci-app-p910nd/root/usr/share/rpcd/acl.d/luci-app-p910nd.json b/applications/luci-app-p910nd/root/usr/share/rpcd/acl.d/luci-app-p910nd.json index b2e7476e61bb..7111081bb91d 100644 --- a/applications/luci-app-p910nd/root/usr/share/rpcd/acl.d/luci-app-p910nd.json +++ b/applications/luci-app-p910nd/root/usr/share/rpcd/acl.d/luci-app-p910nd.json @@ -2,7 +2,14 @@ "luci-app-p910nd": { "description": "Grant UCI access for luci-app-p910nd", "read": { - "uci": [ "p910nd" ] + "uci": [ "p910nd" ], + "file": { + "/usr/bin/find -L /dev -maxdepth 3 -type c -name lp*": ["exec"], + "/usr/libexec/opkg-call list-installed": ["exec"] + }, + "ubus": { + "luci": [ "p910nd" ] + } }, "write": { "uci": [ "p910nd" ]